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
|
---|---|---|---|---|
body {
margin: 0px;
font-family: "Muli", sans-serif;
background: linear-gradient(#f9f3f3, #f7d9d9);
color: #666;
}
.header {
width: 100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header__img {
width: 50px;
margin-top: 10px;
margin-left: 10px;
}
.header__menu {
margin-right: 30px;
}
.header__menu ul {
display: none;
list-style: none;
padding: 0px;
position: absolute;
width: 100px;
text-align: right;
margin: 0px 0px 0px -37px;
}
.header__menu:hover ul, ul:hover {
display: block;
}
.header__menu li {
margin: 10px 0px;
}
.header__menu li a {
color: #333;
text-decoration: none;
}
.header__menu li a:hover {
color: #f25287;
}
.header__menu--profile {
margin-right: 8px;
display: flex;
align-items: center;
cursor: pointer;
color: #f25287;
}
.header__menu--profile:hover {
color: #f25287;
}
.header__menu--profile i {
margin-right: 8px;
width: 15px;
}
.header__menu--profile p {
margin: 0px;
color: #f25287;
}
.main {
height: 200px;
/* 300 */
align-items: center;
display: flex;
flex-direction: column;
}
.main__h2 {
font-size: 25px;
}
.input {
border: 2px solid #f25287;
border-radius: 50px;
font-size: 16px;
height: 50px;
padding: 0px 20px;
width: 70%;
background-color: rgba(255, 255, 255, 0.1);
text-decoration: none;
outline: none;
}
::placeholder {
color: #666;
}
.categories__title {
font-size: 16px;
position: absolute;
padding-left: 30px;
width: 100%;
margin-bottom: 30px;
}
.carrousel {
width: 100%;
overflow: scroll;
padding: 30px;
position: relative;
}
.carrousel__container {
white-space: nowrap;
margin: 0px 70px;
padding-bottom: 10px;
}
.carrousel-item {
background-color: purple;
width: 200px;
height: 250px;
border-radius: 20px;
overflow: hidden;
margin-right: 10px;
display: inline-block;
cursor: pointer;
transition: 450ms all;
transform-origin: center left;
position: relative;
}
.carrousel-item:hover ~ .carrousel-item {
transform: translate3d(100px, 0, 0);
}
.carrousel-item__img {
width: 200px;
height: 250px;
object-fit: cover;
}
.carrousel__container:hover .carrousel-item {
opacity: 0.3;
}
.carrousel__container:hover .carrousel-item:hover {
transform: scale(1.5);
opacity: 1;
}
.carrousel-item__details {
background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
font-size: 10px;
opacity: 0;
transition: 450 ms opacity;
padding: 10px;
position: absolute;
top: 76px;
left: 0;
right: 0;
bottom: 0;
color: white;
}
.carrousel-item__details:hover {
opacity: 1;
}
.carrousel-item__details > div > i {
font-size: 16px;
margin: 0px 12px 0px 0px;
}
::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 4px;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
background: rgba(255, 255, 255, 0.4);
border-radius: 4px;
}
::-webkit-scrollbar:hover {
background: #b3b3b3;
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar:hover:active {
background: #999;
}
.login {
/*background: linear-gradient(#f9f3f3, #dddddd);*/
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0px 30px;
min-height: calc(100vh -200px);
}
.login__container {
background: linear-gradient(#dddddd, #f9f3f3);
border: 1px solid #666;
border-radius: 40px;
padding: 60px 68px 40px;
min-height: 500px;
width: 300px;
display: flex;
justify-content: space-around;
flex-direction: column;
box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.5);
}
.login__container--form {
display: flex;
flex-direction: column;
}
.login__container--form label {
font-size: 14px;
}
.login__container--remenber {
color: #666;
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.login__container--remenber a {
color: #f25287;
font-size: 14px;
text-decoration: none;
}
.login__container--remenber a:hover {
text-decoration: underline;
}
.login__container--social-media > div {
display: flex;
align-items: center;
font-size: 14px;
margin-bottom: 10px;
}
.login__container--social-media > div > i {
margin-right: 10px;
}
.login__container--register {
font-size: 14px;
}
.login__container--register > a {
font-size: 16px;
color: #f25287;
font-weight: bold;
text-decoration: none;
}
.login__container--register > a:hover {
text-decoration: underline;
}
.login__container--form > .input {
border: 0px;
border-bottom: 2px solid #333;
background-color: transparent;
border-radius: 0px;
width: auto;
margin-bottom: 20px;
font-size: 16px;
padding: 0px 20px;
outline: none;
}
.login__container--form button {
background-color: #f7d9d9;
border: 1px solid #f25287;
border-radius: 25px;
font-size: 16px;
padding: 10px;
color: #f25287;
margin: 20px 0px;
cursor: pointer;
letter-spacing: 1px;
}
.footer {
display: flex;
align-items: center;
height: 200px;
justify-content: center;
}
.footer > a {
text-decoration: none;
color: #f25287;
margin: 0px 10px;
font-size: 12px;
cursor: pointer;
}
.footer > a:hover {
text-decoration: underline;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.pulse {
animation-name: pulse;
animation-duration: 1s;
}
.text {
text-align: center;
margin-top: 56px;
color: #f25287;
font-size: 8em;
}
.animated {
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite;
}
.error404__title {
justify-content: center;
display: flex;
color: #666;
}
@media only screen and (max-width: 600px) {
.login__container {
background: transparent;
border: none;
padding: 0px;
box-shadow: none;
}
.footer {
align-items: flex-start;
flex-direction: column;
}
h1 {
font-size: 25px;
}
}
/*# sourceMappingURL=style.css.map */
|
src/css/style.css
|
body {
margin: 0px;
font-family: "Muli", sans-serif;
background: linear-gradient(#f9f3f3, #f7d9d9);
color: #666;
}
.header {
width: 100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header__img {
width: 50px;
margin-top: 10px;
margin-left: 10px;
}
.header__menu {
margin-right: 30px;
}
.header__menu ul {
display: none;
list-style: none;
padding: 0px;
position: absolute;
width: 100px;
text-align: right;
margin: 0px 0px 0px -37px;
}
.header__menu:hover ul, ul:hover {
display: block;
}
.header__menu li {
margin: 10px 0px;
}
.header__menu li a {
color: #333;
text-decoration: none;
}
.header__menu li a:hover {
color: #f25287;
}
.header__menu--profile {
margin-right: 8px;
display: flex;
align-items: center;
cursor: pointer;
color: #f25287;
}
.header__menu--profile:hover {
color: #f25287;
}
.header__menu--profile i {
margin-right: 8px;
width: 15px;
}
.header__menu--profile p {
margin: 0px;
color: #f25287;
}
.main {
height: 200px;
/* 300 */
align-items: center;
display: flex;
flex-direction: column;
}
.main__h2 {
font-size: 25px;
}
.input {
border: 2px solid #f25287;
border-radius: 50px;
font-size: 16px;
height: 50px;
padding: 0px 20px;
width: 70%;
background-color: rgba(255, 255, 255, 0.1);
text-decoration: none;
outline: none;
}
::placeholder {
color: #666;
}
.categories__title {
font-size: 16px;
position: absolute;
padding-left: 30px;
width: 100%;
margin-bottom: 30px;
}
.carrousel {
width: 100%;
overflow: scroll;
padding: 30px;
position: relative;
}
.carrousel__container {
white-space: nowrap;
margin: 0px 70px;
padding-bottom: 10px;
}
.carrousel-item {
background-color: purple;
width: 200px;
height: 250px;
border-radius: 20px;
overflow: hidden;
margin-right: 10px;
display: inline-block;
cursor: pointer;
transition: 450ms all;
transform-origin: center left;
position: relative;
}
.carrousel-item:hover ~ .carrousel-item {
transform: translate3d(100px, 0, 0);
}
.carrousel-item__img {
width: 200px;
height: 250px;
object-fit: cover;
}
.carrousel__container:hover .carrousel-item {
opacity: 0.3;
}
.carrousel__container:hover .carrousel-item:hover {
transform: scale(1.5);
opacity: 1;
}
.carrousel-item__details {
background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
font-size: 10px;
opacity: 0;
transition: 450 ms opacity;
padding: 10px;
position: absolute;
top: 76px;
left: 0;
right: 0;
bottom: 0;
color: white;
}
.carrousel-item__details:hover {
opacity: 1;
}
.carrousel-item__details > div > i {
font-size: 16px;
margin: 0px 12px 0px 0px;
}
::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 4px;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
background: rgba(255, 255, 255, 0.4);
border-radius: 4px;
}
::-webkit-scrollbar:hover {
background: #b3b3b3;
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar:hover:active {
background: #999;
}
.login {
/*background: linear-gradient(#f9f3f3, #dddddd);*/
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0px 30px;
min-height: calc(100vh -200px);
}
.login__container {
background: linear-gradient(#dddddd, #f9f3f3);
border: 1px solid #666;
border-radius: 40px;
padding: 60px 68px 40px;
min-height: 500px;
width: 300px;
display: flex;
justify-content: space-around;
flex-direction: column;
box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.5);
}
.login__container--form {
display: flex;
flex-direction: column;
}
.login__container--form label {
font-size: 14px;
}
.login__container--remenber {
color: #666;
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.login__container--remenber a {
color: #f25287;
font-size: 14px;
text-decoration: none;
}
.login__container--remenber a:hover {
text-decoration: underline;
}
.login__container--social-media > div {
display: flex;
align-items: center;
font-size: 14px;
margin-bottom: 10px;
}
.login__container--social-media > div > i {
margin-right: 10px;
}
.login__container--register {
font-size: 14px;
}
.login__container--register > a {
font-size: 16px;
color: #f25287;
font-weight: bold;
text-decoration: none;
}
.login__container--register > a:hover {
text-decoration: underline;
}
.login__container--form > .input {
border: 0px;
border-bottom: 2px solid #333;
background-color: transparent;
border-radius: 0px;
width: auto;
margin-bottom: 20px;
font-size: 16px;
padding: 0px 20px;
outline: none;
}
.login__container--form button {
background-color: #f7d9d9;
border: 1px solid #f25287;
border-radius: 25px;
font-size: 16px;
padding: 10px;
color: #f25287;
margin: 20px 0px;
cursor: pointer;
letter-spacing: 1px;
}
.footer {
display: flex;
align-items: center;
height: 200px;
justify-content: center;
}
.footer > a {
text-decoration: none;
color: #f25287;
margin: 0px 10px;
font-size: 12px;
cursor: pointer;
}
.footer > a:hover {
text-decoration: underline;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.pulse {
animation-name: pulse;
animation-duration: 1s;
}
.text {
text-align: center;
margin-top: 56px;
color: #f25287;
font-size: 8em;
}
.animated {
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite;
}
.error404__title {
justify-content: center;
display: flex;
color: #666;
}
@media only screen and (max-width: 600px) {
.login__container {
background: transparent;
border: none;
padding: 0px;
box-shadow: none;
}
.footer {
align-items: flex-start;
flex-direction: column;
}
h1 {
font-size: 25px;
}
}
/*# sourceMappingURL=style.css.map */
| 0.400515 | 0.054049 |
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR|Open+Sans+Condensed:300');
*{
box-sizing: border-box;
}
html {
font-family: sans-serif;
}
main#register{
font-family: 'Noto Sans KR', sans-serif;
background-image: url("../img/sra_maleta.jpg");
background-repeat: no-repeat;
background-size: cover;
width:100%;
padding:5%;
background-position-x: center;
margin-top:-35px;
margin-left: 0px;
margin-right: 0px;
}
h3{
font-size:1.7em;
text-transform:uppercase;
padding-top:60px;
color: #189D98;
}
h3 span{
color:#ffffff;
}
div.card-header{
display: none;
}
p.frase{
color: rgb(49, 49, 49);
font-weight: bold;
line-height: 1.5;
margin: 5px;
max-width: 400px;
}
div.card{
padding: 3px;
margin: 3px;
}
div.form{
color:rgb(255, 255, 255);
font-weight: bold;
margin:10px 5px;
padding:0px;
background-color:rgba(44, 42, 42, 0.5);
width: 325px;
height: 50px;
flex-wrap: nowrap;
flex-direction: row;
display: flex;
align-items: center;
_align-content: space-around;
justify-content: space-between;
}
div.form label{
padding: 10px;
}
div.form input{
margin-right: 10px;
margin-bottom:3px;
width: 170px;
}
div.form select{
margin-right: 10px;
margin-bottom:3px;
width: 170px;
height: 21.33px;
}
button{
background-color:rgb(32,105,137);
padding: 15px 40px;
color:#fff;
font-family: 'Noto Sans KR', sans-serif;
text-transform: uppercase;
font-weight: bold;
}
button input:hover{
background-color:rgb(39, 153, 202);
transition: all .3s ease;
}
div.form-check{
margin-bottom: 20px;
}
a.btn.btn-link{
font-size: 0.7em;
color:#fff;
}
@media (min-width:767px){
main#register{
margin-top:0px;
_background-size: cover;
_width:100%;
_height:50%;
}
div.form{
width: 350px;
margin:15px 5px;
padding:10px;
}
h3{
padding-top:20px;
}
}
@media (min-width:979px){
main#register{
margin-top:0px;
padding-top:20px;
}
div.form{
width: 400px;
}
}
|
public/css/register.css
|
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR|Open+Sans+Condensed:300');
*{
box-sizing: border-box;
}
html {
font-family: sans-serif;
}
main#register{
font-family: 'Noto Sans KR', sans-serif;
background-image: url("../img/sra_maleta.jpg");
background-repeat: no-repeat;
background-size: cover;
width:100%;
padding:5%;
background-position-x: center;
margin-top:-35px;
margin-left: 0px;
margin-right: 0px;
}
h3{
font-size:1.7em;
text-transform:uppercase;
padding-top:60px;
color: #189D98;
}
h3 span{
color:#ffffff;
}
div.card-header{
display: none;
}
p.frase{
color: rgb(49, 49, 49);
font-weight: bold;
line-height: 1.5;
margin: 5px;
max-width: 400px;
}
div.card{
padding: 3px;
margin: 3px;
}
div.form{
color:rgb(255, 255, 255);
font-weight: bold;
margin:10px 5px;
padding:0px;
background-color:rgba(44, 42, 42, 0.5);
width: 325px;
height: 50px;
flex-wrap: nowrap;
flex-direction: row;
display: flex;
align-items: center;
_align-content: space-around;
justify-content: space-between;
}
div.form label{
padding: 10px;
}
div.form input{
margin-right: 10px;
margin-bottom:3px;
width: 170px;
}
div.form select{
margin-right: 10px;
margin-bottom:3px;
width: 170px;
height: 21.33px;
}
button{
background-color:rgb(32,105,137);
padding: 15px 40px;
color:#fff;
font-family: 'Noto Sans KR', sans-serif;
text-transform: uppercase;
font-weight: bold;
}
button input:hover{
background-color:rgb(39, 153, 202);
transition: all .3s ease;
}
div.form-check{
margin-bottom: 20px;
}
a.btn.btn-link{
font-size: 0.7em;
color:#fff;
}
@media (min-width:767px){
main#register{
margin-top:0px;
_background-size: cover;
_width:100%;
_height:50%;
}
div.form{
width: 350px;
margin:15px 5px;
padding:10px;
}
h3{
padding-top:20px;
}
}
@media (min-width:979px){
main#register{
margin-top:0px;
padding-top:20px;
}
div.form{
width: 400px;
}
}
| 0.319546 | 0.074198 |
.CampaignViewer {
width: 100%;
}
.CampaignViewer .ant-card-head-title {
display: flex;
align-items: center;
justify-content: space-between;
}
.CampaignViewer .ant-card-body {
display: flex;
flex-direction: column;
align-items: stretch;
}
/* ----------- DASHBOARD --------- */
.CampaignViewer .stats-section {
display: flex;
justify-content: space-between;
align-items: center;
margin: 1rem;
}
/* --------- ACTIONS ---------- */
.CampaignViewer .actions-section {
display: flex;
justify-content: space-between;
align-items: stretch;
margin: 1rem 0;
}
.CampaignViewer .contribution-col {
display: flex;
flex-direction: column;
margin: 2rem auto 2rem;
gap: 0.5rem;
font-size: 1rem;
border-top: 1px solid var(--sec-col);
border-bottom: 1px solid var(--sec-col);
padding: 1rem 0.5rem;
border-radius: 0.5rem;
}
.CampaignViewer .contribution-col * {
margin: 0 !important;
}
.CampaignViewer .contribution-col .ant-space * {
font-family: "IBM Plex Mono" !important;
}
.CampaignViewer .contribution-col .left {
width: 8rem;
display: inline-block;
}
.CampaignViewer .contribution-col .ant-space-item {
height: 1.5rem !important;
}
/* -------- MANAGE ---------- */
.CampaignViewer .manage-section {
display: flex;
justify-content: space-between;
align-items: stretch;
margin: 2rem 0 2.5rem;
}
.CampaignViewer .manage-col {
display: flex;
gap: 1.5rem;
flex-direction: column;
align-items: stretch;
width: 100%;
}
.CampaignViewer .manage-col .ant-btn {
width: 120px;
}
.CampaignViewer .manage-col .actions-row {
display: flex;
align-items: center;
gap: 1rem;
justify-content: space-between;
}
.CampaignViewer .manage-col .actions-row .left {
width: 120px;
display: inline-block;
}
.CampaignViewer .manage-col .actions-row .right {
margin-right: 1rem;
}
.CampaignViewer .manage-col .actions-row .info .warning {
color: var(--sec-col);
}
.CampaignViewer .manage-col .actions-row.advance {
justify-content: center;
}
.CampaignViewer .StatusProgress {
align-self: stretch;
margin-bottom: 1rem;
}
/* --------- ABOUT ---------- */
.CampaignViewer .info-section {
display: flex;
justify-content: space-between;
margin: 2rem 0;
}
.CampaignViewer .campaign-info {
width: 300px;
}
.CampaignViewer .info-row {
display: flex;
align-items: center;
justify-content: flex-start;
height: 2rem;
}
.CampaignViewer .campaign-info.right .info-row {
justify-content: flex-end;
}
.CampaignViewer .campaign-info .info-row .left {
width: 100px;
display: block;
color: black;
}
.CampaignViewer .info-row .Address {
padding: 0 !important;
}
|
packages/react-app/src/attra-core/campaign-display/CampaignViewer.css
|
.CampaignViewer {
width: 100%;
}
.CampaignViewer .ant-card-head-title {
display: flex;
align-items: center;
justify-content: space-between;
}
.CampaignViewer .ant-card-body {
display: flex;
flex-direction: column;
align-items: stretch;
}
/* ----------- DASHBOARD --------- */
.CampaignViewer .stats-section {
display: flex;
justify-content: space-between;
align-items: center;
margin: 1rem;
}
/* --------- ACTIONS ---------- */
.CampaignViewer .actions-section {
display: flex;
justify-content: space-between;
align-items: stretch;
margin: 1rem 0;
}
.CampaignViewer .contribution-col {
display: flex;
flex-direction: column;
margin: 2rem auto 2rem;
gap: 0.5rem;
font-size: 1rem;
border-top: 1px solid var(--sec-col);
border-bottom: 1px solid var(--sec-col);
padding: 1rem 0.5rem;
border-radius: 0.5rem;
}
.CampaignViewer .contribution-col * {
margin: 0 !important;
}
.CampaignViewer .contribution-col .ant-space * {
font-family: "IBM Plex Mono" !important;
}
.CampaignViewer .contribution-col .left {
width: 8rem;
display: inline-block;
}
.CampaignViewer .contribution-col .ant-space-item {
height: 1.5rem !important;
}
/* -------- MANAGE ---------- */
.CampaignViewer .manage-section {
display: flex;
justify-content: space-between;
align-items: stretch;
margin: 2rem 0 2.5rem;
}
.CampaignViewer .manage-col {
display: flex;
gap: 1.5rem;
flex-direction: column;
align-items: stretch;
width: 100%;
}
.CampaignViewer .manage-col .ant-btn {
width: 120px;
}
.CampaignViewer .manage-col .actions-row {
display: flex;
align-items: center;
gap: 1rem;
justify-content: space-between;
}
.CampaignViewer .manage-col .actions-row .left {
width: 120px;
display: inline-block;
}
.CampaignViewer .manage-col .actions-row .right {
margin-right: 1rem;
}
.CampaignViewer .manage-col .actions-row .info .warning {
color: var(--sec-col);
}
.CampaignViewer .manage-col .actions-row.advance {
justify-content: center;
}
.CampaignViewer .StatusProgress {
align-self: stretch;
margin-bottom: 1rem;
}
/* --------- ABOUT ---------- */
.CampaignViewer .info-section {
display: flex;
justify-content: space-between;
margin: 2rem 0;
}
.CampaignViewer .campaign-info {
width: 300px;
}
.CampaignViewer .info-row {
display: flex;
align-items: center;
justify-content: flex-start;
height: 2rem;
}
.CampaignViewer .campaign-info.right .info-row {
justify-content: flex-end;
}
.CampaignViewer .campaign-info .info-row .left {
width: 100px;
display: block;
color: black;
}
.CampaignViewer .info-row .Address {
padding: 0 !important;
}
| 0.412057 | 0.053924 |
@font-face {
font-family: 'Gotham-Book';
src: url('../../../templates/tt-torbara/styles/torbara/fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
url('../../../templates/tt-torbara/styles/torbara/fonts/Gotham-Book.woff') format('woff'),
url('../../../templates/tt-torbara/styles/torbara/fonts/Gotham-Book.ttf') format('truetype'),
url('../../../templates/tt-torbara/styles/torbara/fonts/Gotham-Book.svg#Gotham-Book') format('svg');
font-weight: normal;
font-style: normal;
}
#ak-frame-header {
background-color: #1a1d26;
height: 0px;
}
#ak-frame-header .logo {
float: left;
margin-top: 15px;
margin-left: 20px;
}
#responsivator {
list-style: none;
opacity: .9;
display: block;
float: right;
margin: 25px;
margin-right: 30px;
}
.ie #responsivator {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
#responsivator li {
width: 20px;
height: 16px;
cursor: pointer;
margin-left: 2px;
float: left;
}
.webkit #responsivator li {
width: 19px;
height: 16px;
}
#frame { overflow-x: hidden; opacity: 1;}
#responsivator #desktop { background: url('../images/preview/icons-grey.png') 0 0px; }
#responsivator #desktop.active { background: url('../images/preview/icons-white.png') 0px 0px; }
#responsivator #tablet-landscape { background: url('../images/preview/icons-grey.png') -36px 0px; }
#responsivator #tablet-landscape.active { background: url('../images/preview/icons-white.png') -36px 0px; }
#responsivator #tablet-portrait { background: url('../images/preview/icons-grey.png') -18px 0px; }
.webkit #responsivator #tablet-portrait { background: url('../images/preview/icons-grey.png') -17px 0px; }
#responsivator #tablet-portrait.active { background: url('../images/preview/icons-white.png') -18px 0px; }
.webkit #responsivator #tablet-portrait.active { background: url('../images/preview/icons-white.png') -17px 0px; }
#responsivator #iphone-landscape { background: url('../images/preview/icons-grey.png') -58px 0px; }
#responsivator #iphone-landscape.active { background: url('../images/preview/icons-white.png') -58px 0px; }
#responsivator #iphone-portrait { background: url('../images/preview/icons-grey.png') -76px 0px; width: 16px;}
#responsivator #iphone-portrait.active { background: url('../images/preview/icons-white.png') -76px 0px; width: 14px; }
#iframelive.tablet-landscape,
#iframelive.tablet-portrait,
#iframelive.iphone-landscape,
#iframelive.iphone-portrait {
height: 94%;
overflow: auto;
}
#iframelive {
height: 100%;
background: #1d1d1d;
}
/* DESKTOP */
#iframelive.desktop iframe {
width: 100%;
margin: 0;
height: 100%;
}
#iframelive.desktop #preview-wrapper {
background: none;
margin: 0;
/*overflow: auto;*/
height: 100%;
}
#iframelive.desktop {
}
/* tablet-landscape */
#iframelive.tablet-landscape iframe {
width: 1039px;
height: 690px !important;
margin: 51px 0 0 80px;
}
#iframelive.tablet-landscape #preview-wrapper {
background: url('../images/preview/pad-land-1d1d1d.jpg');
width: 1242px;
height: 798px;
margin: 20px auto;
overflow: auto;
}
#iframelive.tablet-landscape #preview-wrapper iframe {
overflow-x: hidden;
}
/* tablet-portrait */
#iframelive.tablet-portrait iframe {
width: 785px;
height: 1038px !important;
margin: 65px 0 0 58px;
}
#iframelive.tablet-portrait #preview-wrapper {
background: url('../images/preview/pad-port-1d1d1d.jpg');
width: 901px;
height: 1213px;
margin: 20px auto;
}
/* iphone-landscape */
#iframelive.iphone-landscape iframe {
width: 495px;
height: 335px !important;
margin: 28px 0 0 133px;
}
#iframelive.iphone-landscape #preview-wrapper {
background: url('../images/preview/phone-land-1d1d1d.jpg');
width: 759px;
height: 395px;
margin: 150px auto 20px;
}
/* iphone-portrait */
#iframelive.iphone-portrait iframe {
width: 337px;
height: 495px !important;
margin: 133px 0 0 30px;
}
#iframelive.iphone-portrait #preview-wrapper {
background: url('../images/preview/phone-port-1d1d1d.jpg');
width: 395px;
height: 762px;
margin: 20px auto;
}
.ak-close,
.ak-purchase,
.ak-details {
float: right;
}
.ak-close {
width: 10px;
height: 10px;
display: block;
background: url(../images/cross.png) no-repeat center center;
text-decoration: none;
margin-top: 26px;
margin-right: 14px;
}
.ak-purchase {
font-family: 'Gotham-Book';
background-color: #fcff00;
color: #1a1d26;
font-size: 12px;
font-weight: 700;
border: none;
text-transform: uppercase;
outline: none;
text-decoration: none;
padding: 10px 15px;
margin-top: 17px;
line-height: 1;
margin-right: 15px;
}
.ak-details {
font-family: 'Gotham-Book';
background-color: #0fa2e6;
color: #ffffff;
box-shadow: inset 0 0 10px 30px #0fa2e6;
color: #1a1d26;
font-size: 12px;
font-weight: 700;
border: none;
text-transform: uppercase;
outline: none;
text-decoration: none;
padding: 10px 15px;
margin-top: 17px;
line-height: 1;
margin-right: 15px;
}
|
public/css/preview-responsive.css
|
@font-face {
font-family: 'Gotham-Book';
src: url('../../../templates/tt-torbara/styles/torbara/fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
url('../../../templates/tt-torbara/styles/torbara/fonts/Gotham-Book.woff') format('woff'),
url('../../../templates/tt-torbara/styles/torbara/fonts/Gotham-Book.ttf') format('truetype'),
url('../../../templates/tt-torbara/styles/torbara/fonts/Gotham-Book.svg#Gotham-Book') format('svg');
font-weight: normal;
font-style: normal;
}
#ak-frame-header {
background-color: #1a1d26;
height: 0px;
}
#ak-frame-header .logo {
float: left;
margin-top: 15px;
margin-left: 20px;
}
#responsivator {
list-style: none;
opacity: .9;
display: block;
float: right;
margin: 25px;
margin-right: 30px;
}
.ie #responsivator {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
#responsivator li {
width: 20px;
height: 16px;
cursor: pointer;
margin-left: 2px;
float: left;
}
.webkit #responsivator li {
width: 19px;
height: 16px;
}
#frame { overflow-x: hidden; opacity: 1;}
#responsivator #desktop { background: url('../images/preview/icons-grey.png') 0 0px; }
#responsivator #desktop.active { background: url('../images/preview/icons-white.png') 0px 0px; }
#responsivator #tablet-landscape { background: url('../images/preview/icons-grey.png') -36px 0px; }
#responsivator #tablet-landscape.active { background: url('../images/preview/icons-white.png') -36px 0px; }
#responsivator #tablet-portrait { background: url('../images/preview/icons-grey.png') -18px 0px; }
.webkit #responsivator #tablet-portrait { background: url('../images/preview/icons-grey.png') -17px 0px; }
#responsivator #tablet-portrait.active { background: url('../images/preview/icons-white.png') -18px 0px; }
.webkit #responsivator #tablet-portrait.active { background: url('../images/preview/icons-white.png') -17px 0px; }
#responsivator #iphone-landscape { background: url('../images/preview/icons-grey.png') -58px 0px; }
#responsivator #iphone-landscape.active { background: url('../images/preview/icons-white.png') -58px 0px; }
#responsivator #iphone-portrait { background: url('../images/preview/icons-grey.png') -76px 0px; width: 16px;}
#responsivator #iphone-portrait.active { background: url('../images/preview/icons-white.png') -76px 0px; width: 14px; }
#iframelive.tablet-landscape,
#iframelive.tablet-portrait,
#iframelive.iphone-landscape,
#iframelive.iphone-portrait {
height: 94%;
overflow: auto;
}
#iframelive {
height: 100%;
background: #1d1d1d;
}
/* DESKTOP */
#iframelive.desktop iframe {
width: 100%;
margin: 0;
height: 100%;
}
#iframelive.desktop #preview-wrapper {
background: none;
margin: 0;
/*overflow: auto;*/
height: 100%;
}
#iframelive.desktop {
}
/* tablet-landscape */
#iframelive.tablet-landscape iframe {
width: 1039px;
height: 690px !important;
margin: 51px 0 0 80px;
}
#iframelive.tablet-landscape #preview-wrapper {
background: url('../images/preview/pad-land-1d1d1d.jpg');
width: 1242px;
height: 798px;
margin: 20px auto;
overflow: auto;
}
#iframelive.tablet-landscape #preview-wrapper iframe {
overflow-x: hidden;
}
/* tablet-portrait */
#iframelive.tablet-portrait iframe {
width: 785px;
height: 1038px !important;
margin: 65px 0 0 58px;
}
#iframelive.tablet-portrait #preview-wrapper {
background: url('../images/preview/pad-port-1d1d1d.jpg');
width: 901px;
height: 1213px;
margin: 20px auto;
}
/* iphone-landscape */
#iframelive.iphone-landscape iframe {
width: 495px;
height: 335px !important;
margin: 28px 0 0 133px;
}
#iframelive.iphone-landscape #preview-wrapper {
background: url('../images/preview/phone-land-1d1d1d.jpg');
width: 759px;
height: 395px;
margin: 150px auto 20px;
}
/* iphone-portrait */
#iframelive.iphone-portrait iframe {
width: 337px;
height: 495px !important;
margin: 133px 0 0 30px;
}
#iframelive.iphone-portrait #preview-wrapper {
background: url('../images/preview/phone-port-1d1d1d.jpg');
width: 395px;
height: 762px;
margin: 20px auto;
}
.ak-close,
.ak-purchase,
.ak-details {
float: right;
}
.ak-close {
width: 10px;
height: 10px;
display: block;
background: url(../images/cross.png) no-repeat center center;
text-decoration: none;
margin-top: 26px;
margin-right: 14px;
}
.ak-purchase {
font-family: 'Gotham-Book';
background-color: #fcff00;
color: #1a1d26;
font-size: 12px;
font-weight: 700;
border: none;
text-transform: uppercase;
outline: none;
text-decoration: none;
padding: 10px 15px;
margin-top: 17px;
line-height: 1;
margin-right: 15px;
}
.ak-details {
font-family: 'Gotham-Book';
background-color: #0fa2e6;
color: #ffffff;
box-shadow: inset 0 0 10px 30px #0fa2e6;
color: #1a1d26;
font-size: 12px;
font-weight: 700;
border: none;
text-transform: uppercase;
outline: none;
text-decoration: none;
padding: 10px 15px;
margin-top: 17px;
line-height: 1;
margin-right: 15px;
}
| 0.208179 | 0.077868 |
text-decoration:underline;
}
.letra{
width: 60px !important;
height: 60px !important;
text-align: center !important;
font-size: 40px !important;
line-height: 60px !important;
border: 2px solid black !important;
border-radius: 8px !important;
box-shadow: 3px 3px #888888 !important;
}
.tecla{
padding: 0;
}
.letra:hover
{
filter: brightness(85%);
}
.botaonovo-space
{
box-shadow: 0 0 0 0 rgba(34,36,38,.15) inset;
color: #fff;
text-shadow: none;
background-image: none;
background: #21ba45;
vertical-align: bottom;
font-size: x-small;
padding: 0;
border-radius: 57px;
font-size: small;
text-align: center;
min-height: 20px;
min-width: 21px;
padding-top: 0.75% !important;
}
.new
{
color: blue;
text-decoration: underline;
font-size: small;
margin-left: 14px;
}
.centro
{
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
body, body.pushable>.pusher {
background: url('../img/background.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.sobra{
height: 100%;
background: blue;
}
input{
/* border: 0.5px solid gray !important; */
}
.mob-div{
min-width: 40%;
max-width: 90%;
border-radius: 9px !important;
margin-top:40px !important;
}
.row-seg{
display: block !important;
}
.div-pad{
margin-top: 10px;
}
@media screen and (max-width: 1300px)
{
.mob-div{
min-width: 60% !important;
}
}
@media screen and (max-width: 350px)
{
.cron{
font-size: 12px !important;
}
.versus{
margin-left: 8% !important;
/* margin-right: !important; */
font-size: 8pt;
}
.nome-time{
font-size: 9pt;
}
.dt{
font-size: 9pt;
}
.casa{
margin-left: -13px !important;
}
}
@media screen and (max-width: 473px)
{
.versus{
margin-left: 6.5% ;
margin-right: 1px ;
}
.col-esc-out{
margin-left: 0 !important;
}
.thead{
font-size: 11.5px;
}
.thead > span, .ult > span
{
margin-left: -0.6em;
}
.cron{
font-size: 13px;
}
.data-jogo{
margin-left: -10pt !important;
margin-right: 10pt;
}
.hund{
margin-left: -0.45em;
}
}
@media screen and (max-width: 780px) {
#sair{
margin-left: -50%;
}
.div-pad{
padding: 4.5pt !important;
}
.ui.column{
width:90% !important;
}
.mob-div{
padding: 0 !important;
}
.seg-mob{
padding: 0 !important;
}
.nome-time{
font-size: 12px !important;
max-width: 80px !important;
margin-left: -12px;
}
.fora{
margin-left: 0px;
}
.escudo{
margin-top: -5px !important;
margin-left: auto;
}
.versus
{
min-width: 50px !important;
}
.col-esc-out{
margin-left: 1% !important;
}
.col-esc-home{
margin-left: -4% !important;
}
.input-palpite{
width: 45px !important;
}
.golfora{
margin-left: -25px !important;
}
.div-btn{
margin-left: -20px !important;
}
.col-gf{
padding-left: 1em !important;
}
.col-gc{
/* padding-right: 1em; */
}
.select-jg{
max-width: 60%;
}
.data-jogo{
margin-left: 0px;
}
}
/*
@media screen and (min-width: 451px and max-width: 720px) {
.ui.column{
width:90% !important;
}
.mob-div{
max-width: 95%;
padding: 7pt !important;
}
.seg-mob{
padding: 0 !important;
}
.nome-time{
font-size: 12px !important;
}
.escudo{
margin-top: -5px !important;
margin-left: auto;
}
.versus
{
margin-left: 5% !important;
max-width: 10px !important;
}
.col-esc-out{
margin-left: 3% !important;
margin-left: 1% !important;
}
.col-esc-home{
margin-left: -2% !important;
}
.input-palpite{
min-width: 40px !important;
max-width: 40px !important;
}
.div-btn{
margin-left: -20px !important;
}
} */
.escudo{
width: 50px;
margin-top: -9.799px;
min-width: 40px;
max-width: 45px;
}
.btn-icon{
width: 1px !important;
}
.icon-btn{
margin-left: -6px !important;
}
.div-btn{
width: 20px !important;
margin-left: -6%;
margin-top: -5px;
}
.data-jogo{
text-align: left !important;
margin-left: 7%;
width:100%;
}
.input-palpite{
margin-top: -10px !important;
min-width: 60px;
max-width: 60px;
}
.versus
{
max-width: 72px;
}
.nome-time{
font-size: 17px;
max-width: 50px;
margin-top: -50%;
font-weight: bold;
}
.col-esc-out{
margin-left: 15px;
}
.cron{
background: #2185D0;
border-radius: 9px;
color: white;
height: 1.5em;
}
.user-badge{
background: lightgray;
border-radius: 9px;
line-height: 2.5em;
height: 2.5em;
text-justify: auto;
/* min-width: 10%; */
padding-left: 1em;
}
.point-badge{
border-radius: 18px;
background: green;
color: white;
padding: 5px;
}
.txt-user
{
margin: 10px;
}
@media screen and (min-width: 780px) {
.col-gf{
padding-left: 0px !important;
}
}
@keyframes piscar {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 0; }
}
.piscar {
-webkit-animation: piscar .75s linear infinite;
-moz-animation: piscar .75s linear infinite;
-ms-animation: piscar .75s linear infinite;
-o-animation: piscar .75s linear infinite;
animation: piscar .75s linear infinite;
}
.sidebar{
z-index: 3;
}
.thead{
font-weight: bold;
border-top: 1px solid lightgray;
border-bottom: 1px solid lightgray;
background: #e6e6e6;
}
.resul{
border-left: 1px solid lightgray;
border-right: 1px solid lightgray;
border-bottom: 1px solid lightgray;
}
.first, .last{
border-left: 1px solid lightgray;
border-right: 1px solid lightgray;
}
.middle2{
border-right: 1px solid lightgray;
}
.coluna{
}
.pos{
color: blue;
background: #e6e6e6;
}
.invis{
display: none !important;
}
|
assets/css/estilo.css
|
text-decoration:underline;
}
.letra{
width: 60px !important;
height: 60px !important;
text-align: center !important;
font-size: 40px !important;
line-height: 60px !important;
border: 2px solid black !important;
border-radius: 8px !important;
box-shadow: 3px 3px #888888 !important;
}
.tecla{
padding: 0;
}
.letra:hover
{
filter: brightness(85%);
}
.botaonovo-space
{
box-shadow: 0 0 0 0 rgba(34,36,38,.15) inset;
color: #fff;
text-shadow: none;
background-image: none;
background: #21ba45;
vertical-align: bottom;
font-size: x-small;
padding: 0;
border-radius: 57px;
font-size: small;
text-align: center;
min-height: 20px;
min-width: 21px;
padding-top: 0.75% !important;
}
.new
{
color: blue;
text-decoration: underline;
font-size: small;
margin-left: 14px;
}
.centro
{
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
body, body.pushable>.pusher {
background: url('../img/background.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.sobra{
height: 100%;
background: blue;
}
input{
/* border: 0.5px solid gray !important; */
}
.mob-div{
min-width: 40%;
max-width: 90%;
border-radius: 9px !important;
margin-top:40px !important;
}
.row-seg{
display: block !important;
}
.div-pad{
margin-top: 10px;
}
@media screen and (max-width: 1300px)
{
.mob-div{
min-width: 60% !important;
}
}
@media screen and (max-width: 350px)
{
.cron{
font-size: 12px !important;
}
.versus{
margin-left: 8% !important;
/* margin-right: !important; */
font-size: 8pt;
}
.nome-time{
font-size: 9pt;
}
.dt{
font-size: 9pt;
}
.casa{
margin-left: -13px !important;
}
}
@media screen and (max-width: 473px)
{
.versus{
margin-left: 6.5% ;
margin-right: 1px ;
}
.col-esc-out{
margin-left: 0 !important;
}
.thead{
font-size: 11.5px;
}
.thead > span, .ult > span
{
margin-left: -0.6em;
}
.cron{
font-size: 13px;
}
.data-jogo{
margin-left: -10pt !important;
margin-right: 10pt;
}
.hund{
margin-left: -0.45em;
}
}
@media screen and (max-width: 780px) {
#sair{
margin-left: -50%;
}
.div-pad{
padding: 4.5pt !important;
}
.ui.column{
width:90% !important;
}
.mob-div{
padding: 0 !important;
}
.seg-mob{
padding: 0 !important;
}
.nome-time{
font-size: 12px !important;
max-width: 80px !important;
margin-left: -12px;
}
.fora{
margin-left: 0px;
}
.escudo{
margin-top: -5px !important;
margin-left: auto;
}
.versus
{
min-width: 50px !important;
}
.col-esc-out{
margin-left: 1% !important;
}
.col-esc-home{
margin-left: -4% !important;
}
.input-palpite{
width: 45px !important;
}
.golfora{
margin-left: -25px !important;
}
.div-btn{
margin-left: -20px !important;
}
.col-gf{
padding-left: 1em !important;
}
.col-gc{
/* padding-right: 1em; */
}
.select-jg{
max-width: 60%;
}
.data-jogo{
margin-left: 0px;
}
}
/*
@media screen and (min-width: 451px and max-width: 720px) {
.ui.column{
width:90% !important;
}
.mob-div{
max-width: 95%;
padding: 7pt !important;
}
.seg-mob{
padding: 0 !important;
}
.nome-time{
font-size: 12px !important;
}
.escudo{
margin-top: -5px !important;
margin-left: auto;
}
.versus
{
margin-left: 5% !important;
max-width: 10px !important;
}
.col-esc-out{
margin-left: 3% !important;
margin-left: 1% !important;
}
.col-esc-home{
margin-left: -2% !important;
}
.input-palpite{
min-width: 40px !important;
max-width: 40px !important;
}
.div-btn{
margin-left: -20px !important;
}
} */
.escudo{
width: 50px;
margin-top: -9.799px;
min-width: 40px;
max-width: 45px;
}
.btn-icon{
width: 1px !important;
}
.icon-btn{
margin-left: -6px !important;
}
.div-btn{
width: 20px !important;
margin-left: -6%;
margin-top: -5px;
}
.data-jogo{
text-align: left !important;
margin-left: 7%;
width:100%;
}
.input-palpite{
margin-top: -10px !important;
min-width: 60px;
max-width: 60px;
}
.versus
{
max-width: 72px;
}
.nome-time{
font-size: 17px;
max-width: 50px;
margin-top: -50%;
font-weight: bold;
}
.col-esc-out{
margin-left: 15px;
}
.cron{
background: #2185D0;
border-radius: 9px;
color: white;
height: 1.5em;
}
.user-badge{
background: lightgray;
border-radius: 9px;
line-height: 2.5em;
height: 2.5em;
text-justify: auto;
/* min-width: 10%; */
padding-left: 1em;
}
.point-badge{
border-radius: 18px;
background: green;
color: white;
padding: 5px;
}
.txt-user
{
margin: 10px;
}
@media screen and (min-width: 780px) {
.col-gf{
padding-left: 0px !important;
}
}
@keyframes piscar {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 0; }
}
.piscar {
-webkit-animation: piscar .75s linear infinite;
-moz-animation: piscar .75s linear infinite;
-ms-animation: piscar .75s linear infinite;
-o-animation: piscar .75s linear infinite;
animation: piscar .75s linear infinite;
}
.sidebar{
z-index: 3;
}
.thead{
font-weight: bold;
border-top: 1px solid lightgray;
border-bottom: 1px solid lightgray;
background: #e6e6e6;
}
.resul{
border-left: 1px solid lightgray;
border-right: 1px solid lightgray;
border-bottom: 1px solid lightgray;
}
.first, .last{
border-left: 1px solid lightgray;
border-right: 1px solid lightgray;
}
.middle2{
border-right: 1px solid lightgray;
}
.coluna{
}
.pos{
color: blue;
background: #e6e6e6;
}
.invis{
display: none !important;
}
| 0.354433 | 0.076167 |
.ms-side-panel .ms-header.ms-primary .row:first-child {
background-color: #fff;
color: #000;
}
.col-xs-8 > h4 > span {
color: #000;
font-weight: bolder;
font-size: large;
}
.mapstore-switch-btn input:checked + .m-slider{
background-color: #c00;
}
.modal-header{
background-color: #fff;
border-bottom: #000
}
.glyphicon{
color: #c00 !important;
}
.btn-default{
background-color: #fff;
border-color: #c00;
color: #c00;
}
.modal-title > .ms-title > span,
.ms-header-btn {
color: #c00;
}
.square-button.btn-primary,
.square-button-md.btn-primary{
background-color: #fff;
border-color: #fff !important;
}
.btn-primary{
background-color: #fff;
border-color: #c00 !important;
color: #c00;
}
.btn-primary > span {
color: #c00;
}
button.close:first-child:before{
color: #c00;
}
.modal-title > span {
color: #000;
font-weight: bolder;
font-size: larger;
}
button.close > span {
color: #c00;
}
.search-button.btn-primary{
background-color: #fff;
border-color: #c00;
color: #c00;
}
.row > h3 > span,
div > h2 > span {
font-weight: bolder;
font-size: 25pt;
}
.ms-grid-container .ms-map-card-col .gridcard .gridcard-title {
color: #c00;
}
li > a,
.gridcard-title {
font-weight: bolder;
font-size: 13pt;
color: #000;
}
button > span.glyphicon {
color: #c00;
}
.req-btn,
.form-close-btn {
border: .05em solid #c00;
color: #c00
}
.noUi-target,
.noUi-handle{
background-color: #fff;
}
.bg-primary {
background-color: #fff !important;
}
.bg-primary:hover {
background-color: #fff;
}
li > a > span {
color: #000;
font-weight: bold;
}
li.active > a > span {
color:#c00;
font-weight: bold;
}
.btn-primary.disabled.active,
.btn-primary[disabled].active,
.bg-primary.active,
.btn-primary.disabled{
background-color: #fff;
}
.btn-primary.disabled.active:hover,
.btn-primary[disabled].active:hover,
.bg-primary.active:hover,
.btn-primary.disabled:hover,
.btn-primary:hover {
background-color: rgb(201, 200, 200);
}
/* ------------------------------------------------------------------- */
.app-nav{
box-shadow: .05px .05px .05px .05px rgba(0, 0, 0, .175);
}
.attribution{
width: 78px;
height: 60px;
border: .25em solid #fff;
position: fixed;
bottom: 17%;
left: 0.3%;
padding: .5%;
}
.attribution > .logo {
width: 100%;
height: 100%;
}
.map-view-wrapper{
position: fixed;
top: 0;
bottom: 20px;
left: 0;
right: 0;
}
.name-logo{
font-size: 20pt;
}
.name-cover{
width: 20%;
line-height: normal;
}
.name-trans{
color: white;
-webkit-text-stroke: 1px black;
}
.image-logo{
height: 100px;
width: 100px;
position: fixed;
top: -2.78%;
left: 4%;
}
.image-logo{
z-index: 100;
}
.widget-title{
color: #c00;
}
.image-container-logo{
padding-left: 10%;
}
.tag-line{
display: block;
}
.view-wrapper{
position: relative;
}
.wps-mode-wrapper{
position: fixed;
top: 34.8vh;
right: .27%;
height: 52px;
width: 52px;
padding-top: 20px;
padding-left: 20px;
z-index: 1001 !important;
}
.fa-white{
color: #c00;
font-size: 14pt;
}
.form-modal{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .175);
z-index: 1082 !important;
padding-top: 10%;
}
.form-wrapper{
padding: 2%;
margin: auto;
width: 20%;
height: fit-content;
background-color: #fff;
border-radius: 10px;
}
@keyframes pop-trans-xs{
0% {
transform: scaleY(0.5);
}
25%{
opacity: 0.25
}
50% {
opacity: 0.50;
}
100%{
opacity: 1;
transform: scaleY(1);
}
}
.forms-pop{
animation: pop-trans-xs 0.3s;
-webkit-animation : pop-trans-xs 0.3s;
}
@-webkit-keyframes wrapperfadein {
from {bottom: 15px; opacity: 0;}
to {bottom: 100px; opacity: 1;}
}
@keyframes wrapperfadein {
from {bottom: 15px; opacity: 0;}
to {bottom: 100px; opacity: 1;}
}
|
js/styles/root-style.css
|
.ms-side-panel .ms-header.ms-primary .row:first-child {
background-color: #fff;
color: #000;
}
.col-xs-8 > h4 > span {
color: #000;
font-weight: bolder;
font-size: large;
}
.mapstore-switch-btn input:checked + .m-slider{
background-color: #c00;
}
.modal-header{
background-color: #fff;
border-bottom: #000
}
.glyphicon{
color: #c00 !important;
}
.btn-default{
background-color: #fff;
border-color: #c00;
color: #c00;
}
.modal-title > .ms-title > span,
.ms-header-btn {
color: #c00;
}
.square-button.btn-primary,
.square-button-md.btn-primary{
background-color: #fff;
border-color: #fff !important;
}
.btn-primary{
background-color: #fff;
border-color: #c00 !important;
color: #c00;
}
.btn-primary > span {
color: #c00;
}
button.close:first-child:before{
color: #c00;
}
.modal-title > span {
color: #000;
font-weight: bolder;
font-size: larger;
}
button.close > span {
color: #c00;
}
.search-button.btn-primary{
background-color: #fff;
border-color: #c00;
color: #c00;
}
.row > h3 > span,
div > h2 > span {
font-weight: bolder;
font-size: 25pt;
}
.ms-grid-container .ms-map-card-col .gridcard .gridcard-title {
color: #c00;
}
li > a,
.gridcard-title {
font-weight: bolder;
font-size: 13pt;
color: #000;
}
button > span.glyphicon {
color: #c00;
}
.req-btn,
.form-close-btn {
border: .05em solid #c00;
color: #c00
}
.noUi-target,
.noUi-handle{
background-color: #fff;
}
.bg-primary {
background-color: #fff !important;
}
.bg-primary:hover {
background-color: #fff;
}
li > a > span {
color: #000;
font-weight: bold;
}
li.active > a > span {
color:#c00;
font-weight: bold;
}
.btn-primary.disabled.active,
.btn-primary[disabled].active,
.bg-primary.active,
.btn-primary.disabled{
background-color: #fff;
}
.btn-primary.disabled.active:hover,
.btn-primary[disabled].active:hover,
.bg-primary.active:hover,
.btn-primary.disabled:hover,
.btn-primary:hover {
background-color: rgb(201, 200, 200);
}
/* ------------------------------------------------------------------- */
.app-nav{
box-shadow: .05px .05px .05px .05px rgba(0, 0, 0, .175);
}
.attribution{
width: 78px;
height: 60px;
border: .25em solid #fff;
position: fixed;
bottom: 17%;
left: 0.3%;
padding: .5%;
}
.attribution > .logo {
width: 100%;
height: 100%;
}
.map-view-wrapper{
position: fixed;
top: 0;
bottom: 20px;
left: 0;
right: 0;
}
.name-logo{
font-size: 20pt;
}
.name-cover{
width: 20%;
line-height: normal;
}
.name-trans{
color: white;
-webkit-text-stroke: 1px black;
}
.image-logo{
height: 100px;
width: 100px;
position: fixed;
top: -2.78%;
left: 4%;
}
.image-logo{
z-index: 100;
}
.widget-title{
color: #c00;
}
.image-container-logo{
padding-left: 10%;
}
.tag-line{
display: block;
}
.view-wrapper{
position: relative;
}
.wps-mode-wrapper{
position: fixed;
top: 34.8vh;
right: .27%;
height: 52px;
width: 52px;
padding-top: 20px;
padding-left: 20px;
z-index: 1001 !important;
}
.fa-white{
color: #c00;
font-size: 14pt;
}
.form-modal{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .175);
z-index: 1082 !important;
padding-top: 10%;
}
.form-wrapper{
padding: 2%;
margin: auto;
width: 20%;
height: fit-content;
background-color: #fff;
border-radius: 10px;
}
@keyframes pop-trans-xs{
0% {
transform: scaleY(0.5);
}
25%{
opacity: 0.25
}
50% {
opacity: 0.50;
}
100%{
opacity: 1;
transform: scaleY(1);
}
}
.forms-pop{
animation: pop-trans-xs 0.3s;
-webkit-animation : pop-trans-xs 0.3s;
}
@-webkit-keyframes wrapperfadein {
from {bottom: 15px; opacity: 0;}
to {bottom: 100px; opacity: 1;}
}
@keyframes wrapperfadein {
from {bottom: 15px; opacity: 0;}
to {bottom: 100px; opacity: 1;}
}
| 0.468061 | 0.078043 |
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1&display=swap");
* {
margin: 0;
padding: 0;
}
*:focus {
outline: none;
}
.App {
font-family: "Gothic A1" !important;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
p {
margin: 2rem auto;
}
.heading {
width: 500px;
margin: 10px 0;
appearance: none;
background-color: #FFFFFF;
box-shadow: rgba(0, 0, 0,0.4) 0 -12px 6px inset;
border-radius: 0.4em;
border-style: none;
box-sizing: border-box;
color: #000000;
display: inline-block;
font-size: 2rem;
font-weight: bold;
letter-spacing: -0.24px;
padding: 1rem 1.3rem;
quotes: auto;
text-align: center;
transition: all 0.15s;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.canvas {
border-radius: 10px;
}
.btn_group_div {
display: flex;
align-items: center;
justify-content: center;
}
.btn_group_div > Button {
margin: 10px 10px;
width: 240px;
}
.btn_clear {
background-color: rgba(230, 226, 7, 0.7) !important;
color: rgb(48, 10, 45) !important;
font-size: 20px;
font-weight: bold;
border-radius: 5px;
border: none !important;
box-shadow: none !important;
}
.btn_clear:hover {
color: rgb(230, 226, 7) !important;
background-color: rgba(48, 10, 45, 0.7) !important;
border: none;
}
.btn_predict {
background-color: rgba(11, 236, 79, 0.7) !important;
color: rgb(37, 10, 48) !important;
font-size: 20px;
font-weight: bold;
border-radius: 5px;
box-shadow: none !important;
border: none !important;
}
.btn_predict:hover {
color: rgb(11, 236, 79) !important;
background-color: rgba(37, 10, 48, 0.7) !important;
}
.alert {
width: 500px;
margin: 5px 0 0 5px;
height: 50px;
background-color: rgba(0, 255, 100, 0.5) !important;
color: rgb(19, 8, 34) !important;
align-items: center;
justify-content: center;
display: flex;
}
.inner_alert {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.alert_green_tick_img {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.alert_heading {
font-size: 20px;
color: rgb(47, 255, 47);
width: 100%;
margin-top: 10px;
border-radius: 5px;
}
.alert_prediction {
width: 100%;
margin: 10px;
}
.alert_btn {
margin: 20px !important;
}
.my_button {
appearance: none;
background-color: #ffffff;
border-radius: 0.4em;
border-style: none;
box-shadow: rgba(0, 0, 0,0.4) 0 -12px 6px inset; box-sizing: border-box;
color: #000000;
cursor: pointer;
display: inline-block;
font-family: -apple-system, sans-serif;
font-size: 1.2rem;
font-weight: 700;
letter-spacing: -0.24px;
margin: 0;
outline: none;
padding: 1rem 1.3rem;
quotes: auto;
text-align: center;
text-decoration: none;
transition: all 0.15s;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.my_button:hover {
background-color: rgba(255, 194, 41,0.7);
box-shadow: rgba(252, 97, 20, 0.7) 0 -6px 8px inset;
transform: scale(1);
}
.my_button:active {
transform: scale(1.05);
}
@media (min-width: 650px) {
.my_button {
font-size: 1.5rem;
padding: 0.75rem 2rem;
}
}
@media (max-width:651px){
.heading{
width: 350px;
margin: 15px;
}
.canvas{
width: 350px !important;
height: 350px !important;
}
.btn_group_div{
margin: 15px;
}
.my_button{
width: 165px !important;
}
}
|
frontend/src/App.css
|
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1&display=swap");
* {
margin: 0;
padding: 0;
}
*:focus {
outline: none;
}
.App {
font-family: "Gothic A1" !important;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
p {
margin: 2rem auto;
}
.heading {
width: 500px;
margin: 10px 0;
appearance: none;
background-color: #FFFFFF;
box-shadow: rgba(0, 0, 0,0.4) 0 -12px 6px inset;
border-radius: 0.4em;
border-style: none;
box-sizing: border-box;
color: #000000;
display: inline-block;
font-size: 2rem;
font-weight: bold;
letter-spacing: -0.24px;
padding: 1rem 1.3rem;
quotes: auto;
text-align: center;
transition: all 0.15s;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.canvas {
border-radius: 10px;
}
.btn_group_div {
display: flex;
align-items: center;
justify-content: center;
}
.btn_group_div > Button {
margin: 10px 10px;
width: 240px;
}
.btn_clear {
background-color: rgba(230, 226, 7, 0.7) !important;
color: rgb(48, 10, 45) !important;
font-size: 20px;
font-weight: bold;
border-radius: 5px;
border: none !important;
box-shadow: none !important;
}
.btn_clear:hover {
color: rgb(230, 226, 7) !important;
background-color: rgba(48, 10, 45, 0.7) !important;
border: none;
}
.btn_predict {
background-color: rgba(11, 236, 79, 0.7) !important;
color: rgb(37, 10, 48) !important;
font-size: 20px;
font-weight: bold;
border-radius: 5px;
box-shadow: none !important;
border: none !important;
}
.btn_predict:hover {
color: rgb(11, 236, 79) !important;
background-color: rgba(37, 10, 48, 0.7) !important;
}
.alert {
width: 500px;
margin: 5px 0 0 5px;
height: 50px;
background-color: rgba(0, 255, 100, 0.5) !important;
color: rgb(19, 8, 34) !important;
align-items: center;
justify-content: center;
display: flex;
}
.inner_alert {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.alert_green_tick_img {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.alert_heading {
font-size: 20px;
color: rgb(47, 255, 47);
width: 100%;
margin-top: 10px;
border-radius: 5px;
}
.alert_prediction {
width: 100%;
margin: 10px;
}
.alert_btn {
margin: 20px !important;
}
.my_button {
appearance: none;
background-color: #ffffff;
border-radius: 0.4em;
border-style: none;
box-shadow: rgba(0, 0, 0,0.4) 0 -12px 6px inset; box-sizing: border-box;
color: #000000;
cursor: pointer;
display: inline-block;
font-family: -apple-system, sans-serif;
font-size: 1.2rem;
font-weight: 700;
letter-spacing: -0.24px;
margin: 0;
outline: none;
padding: 1rem 1.3rem;
quotes: auto;
text-align: center;
text-decoration: none;
transition: all 0.15s;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.my_button:hover {
background-color: rgba(255, 194, 41,0.7);
box-shadow: rgba(252, 97, 20, 0.7) 0 -6px 8px inset;
transform: scale(1);
}
.my_button:active {
transform: scale(1.05);
}
@media (min-width: 650px) {
.my_button {
font-size: 1.5rem;
padding: 0.75rem 2rem;
}
}
@media (max-width:651px){
.heading{
width: 350px;
margin: 15px;
}
.canvas{
width: 350px !important;
height: 350px !important;
}
.btn_group_div{
margin: 15px;
}
.my_button{
width: 165px !important;
}
}
| 0.264168 | 0.089296 |
body{
background-image: url(../img/mobile/index/imageFond.jpg);
background-repeat: no-repeat;
background-size: cover;
font-family: Optima;
width: 95%;
margin: auto;
}
a, main{
color:black;
text-decoration: none;
}
a{
font-size: 1.5em;
}
header{
height: 170px;
width: 95%;
margin: auto;
position:fixed;
top:0;
background-color: rgba(0, 0, 0, 0.6);
}
header section{
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
h1{
display: inline-block;
color:white;
}
h2{
color: white;
}
header section img{
width: 9%;
height: 50%;
border: 4px solid #000;
display: inline-block;
}
header nav{
width: 100%;
flex-basis: 20%;
display:flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 30px 0 30px 0;
}
main, header nav{
background-color: rgba(255, 255, 255, 0.7);
}
/*****************FIN HEADER*********************/
/*****************MAIN*********************/
main{
margin-top: 170px;
}
h2, h3{
text-align: center;
}
section article{
flex-direction: column;
}
section article div{
flex-direction: row;
width: 80%;
}
section article div img{
height: 50%;
width: 50%;
}
section article div div{
display: flex;
flex-direction: column;
align-items: center;
}
section article, section article div {
display: flex;
align-items: center;
justify-content: space-around;
}
/*****************FIN MAIN*********************/
/**********************************************/
/****************Tablette************************/
/**********************************************/
@media screen and (min-width: 750px){
header section img{
width: 5%;
}
main{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
align-items: flex-start;
}
main section{
width: 50%;
}
}
/**********************************************/
/****************Fin Tablette************************/
/**********************************************/
/**********************************************/
/****************Ordinateur************************/
/**********************************************/
@media screen and (min-width: 1200px){
header section img{
width: 5%;
}
/*****************MAIN*********************/
main section{
width: 30%;
}
section article div div{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-around;
}
section article div img{
height: 80%;
width: 50%;
}
}
/**********************************************/
/****************Fin ordinateur************************/
/**********************************************/
|
css/blog.css
|
body{
background-image: url(../img/mobile/index/imageFond.jpg);
background-repeat: no-repeat;
background-size: cover;
font-family: Optima;
width: 95%;
margin: auto;
}
a, main{
color:black;
text-decoration: none;
}
a{
font-size: 1.5em;
}
header{
height: 170px;
width: 95%;
margin: auto;
position:fixed;
top:0;
background-color: rgba(0, 0, 0, 0.6);
}
header section{
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
h1{
display: inline-block;
color:white;
}
h2{
color: white;
}
header section img{
width: 9%;
height: 50%;
border: 4px solid #000;
display: inline-block;
}
header nav{
width: 100%;
flex-basis: 20%;
display:flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 30px 0 30px 0;
}
main, header nav{
background-color: rgba(255, 255, 255, 0.7);
}
/*****************FIN HEADER*********************/
/*****************MAIN*********************/
main{
margin-top: 170px;
}
h2, h3{
text-align: center;
}
section article{
flex-direction: column;
}
section article div{
flex-direction: row;
width: 80%;
}
section article div img{
height: 50%;
width: 50%;
}
section article div div{
display: flex;
flex-direction: column;
align-items: center;
}
section article, section article div {
display: flex;
align-items: center;
justify-content: space-around;
}
/*****************FIN MAIN*********************/
/**********************************************/
/****************Tablette************************/
/**********************************************/
@media screen and (min-width: 750px){
header section img{
width: 5%;
}
main{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
align-items: flex-start;
}
main section{
width: 50%;
}
}
/**********************************************/
/****************Fin Tablette************************/
/**********************************************/
/**********************************************/
/****************Ordinateur************************/
/**********************************************/
@media screen and (min-width: 1200px){
header section img{
width: 5%;
}
/*****************MAIN*********************/
main section{
width: 30%;
}
section article div div{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-around;
}
section article div img{
height: 80%;
width: 50%;
}
}
/**********************************************/
/****************Fin ordinateur************************/
/**********************************************/
| 0.261991 | 0.051702 |
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'),
url('fonts/roboto-v20-latin-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/roboto-v20-latin-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'),
url('fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* kaushan-script-regular - latin */
@font-face {
font-family: 'Kaushan Script';
font-style: normal;
font-weight: 400;
src: local('Kaushan Script'), local('KaushanScript-Regular'),
url('fonts/kaushan-script-v8-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/kaushan-script-v8-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-regular - latin */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
src: local('Montserrat Regular'), local('Montserrat-Regular'),
url('fonts/montserrat-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/montserrat-v14-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-700 - latin */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
src: local('Montserrat Bold'), local('Montserrat-Bold'),
url('fonts/montserrat-v14-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/montserrat-v14-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-800 - latin */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 800;
src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'),
url('fonts/montserrat-v14-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/montserrat-v14-latin-800.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
html{
box-sizing: border-box;
text-shadow: #333333;
}
*,
*::before,
*::after{
box-sizing: inherit;
}
.unordered-list {
list-style: none;
margin: 0;
padding: 0px;
}
body {
margin: 0;
padding: 0;
}
p {
line-height: 24px;
margin: 0;
padding: 0;
}
h1,h2, h3, h4, h5 {
margin: 0;
padding: 0;
}
/* header starts here --------------------------------------- */
.header-container {
height: 900px;
}
.site-navigation__logo {
display: -webkit-box;
display: flex;
margin: 0;
font-family: 'Montserrat';
font-style: normal;
font-weight: 800;
}
.site-navigation__logo--link {
color: white;
text-decoration: none;
}
.header-container__img {
background-image: -webkit-gradient(linear, left top, left bottom, from(#e78282), to(#efd88995) ), url(img/[email protected]);
background-image: linear-gradient(to bottom, #e78282, #efd88995 ), url(img/[email protected]);
width: 100%;
background-size: cover;
}
.site-header {
padding-top: 30px;
width: 1200px;
margin: 0 auto;
}
.site-navigation {
margin-bottom: 100px;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
}
.site-navigation-list {
display: -webkit-box;
display: flex;
width: 611px;
padding: 0;
margin: 0;
-webkit-box-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
align-items: center;
}
.site-navigation__btn {
background: transparent;
outline: none;
border: none;
-webkit-transition: linear 180ms;
transition: linear 180ms;
cursor: pointer;
}
.site-navigation__svg {
width: 22px;
height: 22px;
fill: white;
-webkit-transition: 200ms linear;
transition: 200ms linear;
}
.site-navigation__svg:hover {
fill: #fce38a;
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
.site-navigation__link {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
position: relative;
text-decoration: none;
color: white;
text-transform: uppercase;
-webkit-transition: 200ms linear;
transition: 200ms linear;
-webkit-box-pack: justify;
justify-content: space-between;
}
.site-navigation__link:hover {
color: #fce38a;
}
.site-navigation__link::after{
content: '';
display: block;
position: absolute;
left: 50%;
top: 140%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 0%;
height: 3px;
background-color: #fce38a;
-webkit-transition: linear 200ms;
transition: linear 200ms;
}
.site-navigation__link:hover::after {
width: 100%;
}
.header-about {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
width: 820px;
margin: 0 auto;
}
.header-about__motto {
color: white;
text-align: center;
text-transform: uppercase;
font-size: 150px;
margin-bottom: 100px;
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
}
.header-about__motto--text{
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
text-transform: none;
font-size: 72px;
margin-bottom: 70px;
}
.header-about__btn {
align-self: center;
width: 155px;
background: transparent;
border: 3px solid white;
height: 40px;
text-transform: uppercase;
color: white;
-webkit-transition: 200ms linear;
transition: 200ms linear;
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
}
.header-about__btn:hover {
color: #fce38a;
border: #fce38a 2px solid;
-webkit-transform: skew(5deg);
transform: skew(5deg);
border-radius: 10px;
}
/* main starts here -----------------------------------*/
.site-main {
width: 1200px;
margin: 0 auto;
padding: 50px 0px;
}
.section__title {
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
text-align: center;
text-transform: uppercase;
}
.main-header__span{
font-family: 'Kaushan Script';
font-style: normal;
font-weight: 400;
display: block;
text-transform: none;
}
.section__title::after {
width: 60px;
content: '';
display: block;
height: 3px;
background-color: #f38181;
margin: 0px auto;
margin-top: 40px;
margin-bottom: 70px;
}
.site-main-list {
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-pack: justify;
justify-content: space-between;
padding-left: 110px;
}
.section-services {
margin-bottom: 100px;
}
.site-main-list-item {
width: 290px;
height: 105px;
}
.site-main-list-item:nth-child(-n+3) {
margin-bottom: 90px;
}
.main-item__service {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
text-transform: uppercase;
font-size: 15px;
margin-bottom: 20px;
}
.main-item__description {
line-height: 24px;
font-family: 'Roboto';
font-style: normal;
font-size: 15px;
font-weight: 400;
font-size: 15px;
width: 270px;
color: #b3b3b3;
}
.main-item-container {
position: relative;
}
.main-item-container__icon::before {
display: block;
position: absolute;
content: '';
width: 32px;
height: 32px;
left: -20%;
background-repeat: no-repeat;
}
.main-item-container__icon--clock::before {
background-image: url(img/ALARM.svg);
}
.main-item-container__icon--graph::before {
background-image: url(img/GRAPH.svg);
}
.main-item-container__icon--computer::before {
background-image: url(img/COMPUTER\ _\ OK.svg);
}
.main-item-container__icon--book::before {
background-image: url(img/BOOK.svg);
}
.main-item-container__icon--home::before {
background-image: url(img/HOME.svg);
}
.main-item-container__icon--cross::before {
background-image: url(img/CROSS.svg);
}
/* main team part of the site __---------------------------------------------------------- */
.section-team__paragraph {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 15px;
text-align: center;
width: 950px;
margin: 0 auto;
margin-bottom: 100px;
color: #999999;
}
.team-members {
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
}
.team-list__bg {
width: 380px;
height: 470px;
background-color: #95e1d3;
margin-bottom: 30px;
}.team-list {
position: relative;
}
.team-list-container {
position: absolute;
top: 0%;
-webkit-transition: linear 200ms;
transition: linear 200ms;
}
.team-list-container:hover {
-webkit-transform: translate(-10px, -10px) rotate(1deg);
transform: translate(-10px, -10px) rotate(1deg);
}
.team-list-gradient {
width: 380px;
height: 470px;
position: absolute;
top: 0;
-webkit-transition: linear 200ms;
transition: linear 200ms;
}
.team-list-gradient:hover {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(237,214,134,0.8)), to(rgba(236,136,138,0.8)));
background-image: linear-gradient(to bottom, rgba(237,214,134,0.8), rgba(236,136,138,0.8));
}
.team-list-gradient:hover .social-icon {
opacity: 1;
}
.social-icon {
display: -webkit-box;
display: flex;
width: 225px;
height: 55px;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: justify;
justify-content: space-between;
margin: 57% auto;
opacity: 0;
}
.social-icon-item {
background-color: #fce38a;
width: 56px;
height: 100%;
}
.social-icon-item:nth-child(-n+3) {
border-right: solid 1px #f59583;
}
.social-icon__link--icon {
fill: #f38181;
-webkit-transition: linear 200ms;
transition: linear 200ms;
}
.social-icon__link:hover .social-icon__link--icon {
fill: white;
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
.social-icon__link {
width: 100%;
height: 100%;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}
.member-info {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-align: center;
align-items: center;
}
.member-info__name {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
text-transform: uppercase;
margin-bottom: 15px;
font-size: 14px;
}
.member-info__position {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-size: 15px;
color: #999999;;
}
/* ------------------==========================footer============================--------------------- */
.site-footer {
width: 1200px;
height: 65px;
margin: 0 auto;
border-top: 1px solid #e5e5e5;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
}
.left-wrap {
align-self: center;
}
.left-wrap__rights {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
}
.left-wrap__link {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
text-decoration: none;
color: #f6a1a1;
}
.right-wrap {
align-self: center;
border: 1px solid #e7e7e7;
}
.right-wrap__input--email {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
width: 230px;
height: 43px;
padding-left: 7px;
outline: none;
border: none;
}
.right-wrap__input--btn {
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
width: 150px;
height: 41px;
outline: none;
border: none;
background-color: #95e1d3;
color: white;
text-transform: uppercase;
-webkit-transition: 200ms linear;
transition: 200ms linear;
}
.right-wrap__input--btn:hover {
background-color: #f38181;
}
|
module-10/style.css
|
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'),
url('fonts/roboto-v20-latin-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/roboto-v20-latin-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'),
url('fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* kaushan-script-regular - latin */
@font-face {
font-family: 'Kaushan Script';
font-style: normal;
font-weight: 400;
src: local('Kaushan Script'), local('KaushanScript-Regular'),
url('fonts/kaushan-script-v8-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/kaushan-script-v8-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-regular - latin */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
src: local('Montserrat Regular'), local('Montserrat-Regular'),
url('fonts/montserrat-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/montserrat-v14-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-700 - latin */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
src: local('Montserrat Bold'), local('Montserrat-Bold'),
url('fonts/montserrat-v14-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/montserrat-v14-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-800 - latin */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 800;
src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'),
url('fonts/montserrat-v14-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/montserrat-v14-latin-800.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
html{
box-sizing: border-box;
text-shadow: #333333;
}
*,
*::before,
*::after{
box-sizing: inherit;
}
.unordered-list {
list-style: none;
margin: 0;
padding: 0px;
}
body {
margin: 0;
padding: 0;
}
p {
line-height: 24px;
margin: 0;
padding: 0;
}
h1,h2, h3, h4, h5 {
margin: 0;
padding: 0;
}
/* header starts here --------------------------------------- */
.header-container {
height: 900px;
}
.site-navigation__logo {
display: -webkit-box;
display: flex;
margin: 0;
font-family: 'Montserrat';
font-style: normal;
font-weight: 800;
}
.site-navigation__logo--link {
color: white;
text-decoration: none;
}
.header-container__img {
background-image: -webkit-gradient(linear, left top, left bottom, from(#e78282), to(#efd88995) ), url(img/[email protected]);
background-image: linear-gradient(to bottom, #e78282, #efd88995 ), url(img/[email protected]);
width: 100%;
background-size: cover;
}
.site-header {
padding-top: 30px;
width: 1200px;
margin: 0 auto;
}
.site-navigation {
margin-bottom: 100px;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
}
.site-navigation-list {
display: -webkit-box;
display: flex;
width: 611px;
padding: 0;
margin: 0;
-webkit-box-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
align-items: center;
}
.site-navigation__btn {
background: transparent;
outline: none;
border: none;
-webkit-transition: linear 180ms;
transition: linear 180ms;
cursor: pointer;
}
.site-navigation__svg {
width: 22px;
height: 22px;
fill: white;
-webkit-transition: 200ms linear;
transition: 200ms linear;
}
.site-navigation__svg:hover {
fill: #fce38a;
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
.site-navigation__link {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
position: relative;
text-decoration: none;
color: white;
text-transform: uppercase;
-webkit-transition: 200ms linear;
transition: 200ms linear;
-webkit-box-pack: justify;
justify-content: space-between;
}
.site-navigation__link:hover {
color: #fce38a;
}
.site-navigation__link::after{
content: '';
display: block;
position: absolute;
left: 50%;
top: 140%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 0%;
height: 3px;
background-color: #fce38a;
-webkit-transition: linear 200ms;
transition: linear 200ms;
}
.site-navigation__link:hover::after {
width: 100%;
}
.header-about {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
width: 820px;
margin: 0 auto;
}
.header-about__motto {
color: white;
text-align: center;
text-transform: uppercase;
font-size: 150px;
margin-bottom: 100px;
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
}
.header-about__motto--text{
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
text-transform: none;
font-size: 72px;
margin-bottom: 70px;
}
.header-about__btn {
align-self: center;
width: 155px;
background: transparent;
border: 3px solid white;
height: 40px;
text-transform: uppercase;
color: white;
-webkit-transition: 200ms linear;
transition: 200ms linear;
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
}
.header-about__btn:hover {
color: #fce38a;
border: #fce38a 2px solid;
-webkit-transform: skew(5deg);
transform: skew(5deg);
border-radius: 10px;
}
/* main starts here -----------------------------------*/
.site-main {
width: 1200px;
margin: 0 auto;
padding: 50px 0px;
}
.section__title {
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
text-align: center;
text-transform: uppercase;
}
.main-header__span{
font-family: 'Kaushan Script';
font-style: normal;
font-weight: 400;
display: block;
text-transform: none;
}
.section__title::after {
width: 60px;
content: '';
display: block;
height: 3px;
background-color: #f38181;
margin: 0px auto;
margin-top: 40px;
margin-bottom: 70px;
}
.site-main-list {
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-pack: justify;
justify-content: space-between;
padding-left: 110px;
}
.section-services {
margin-bottom: 100px;
}
.site-main-list-item {
width: 290px;
height: 105px;
}
.site-main-list-item:nth-child(-n+3) {
margin-bottom: 90px;
}
.main-item__service {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
text-transform: uppercase;
font-size: 15px;
margin-bottom: 20px;
}
.main-item__description {
line-height: 24px;
font-family: 'Roboto';
font-style: normal;
font-size: 15px;
font-weight: 400;
font-size: 15px;
width: 270px;
color: #b3b3b3;
}
.main-item-container {
position: relative;
}
.main-item-container__icon::before {
display: block;
position: absolute;
content: '';
width: 32px;
height: 32px;
left: -20%;
background-repeat: no-repeat;
}
.main-item-container__icon--clock::before {
background-image: url(img/ALARM.svg);
}
.main-item-container__icon--graph::before {
background-image: url(img/GRAPH.svg);
}
.main-item-container__icon--computer::before {
background-image: url(img/COMPUTER\ _\ OK.svg);
}
.main-item-container__icon--book::before {
background-image: url(img/BOOK.svg);
}
.main-item-container__icon--home::before {
background-image: url(img/HOME.svg);
}
.main-item-container__icon--cross::before {
background-image: url(img/CROSS.svg);
}
/* main team part of the site __---------------------------------------------------------- */
.section-team__paragraph {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 15px;
text-align: center;
width: 950px;
margin: 0 auto;
margin-bottom: 100px;
color: #999999;
}
.team-members {
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
}
.team-list__bg {
width: 380px;
height: 470px;
background-color: #95e1d3;
margin-bottom: 30px;
}.team-list {
position: relative;
}
.team-list-container {
position: absolute;
top: 0%;
-webkit-transition: linear 200ms;
transition: linear 200ms;
}
.team-list-container:hover {
-webkit-transform: translate(-10px, -10px) rotate(1deg);
transform: translate(-10px, -10px) rotate(1deg);
}
.team-list-gradient {
width: 380px;
height: 470px;
position: absolute;
top: 0;
-webkit-transition: linear 200ms;
transition: linear 200ms;
}
.team-list-gradient:hover {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(237,214,134,0.8)), to(rgba(236,136,138,0.8)));
background-image: linear-gradient(to bottom, rgba(237,214,134,0.8), rgba(236,136,138,0.8));
}
.team-list-gradient:hover .social-icon {
opacity: 1;
}
.social-icon {
display: -webkit-box;
display: flex;
width: 225px;
height: 55px;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: justify;
justify-content: space-between;
margin: 57% auto;
opacity: 0;
}
.social-icon-item {
background-color: #fce38a;
width: 56px;
height: 100%;
}
.social-icon-item:nth-child(-n+3) {
border-right: solid 1px #f59583;
}
.social-icon__link--icon {
fill: #f38181;
-webkit-transition: linear 200ms;
transition: linear 200ms;
}
.social-icon__link:hover .social-icon__link--icon {
fill: white;
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
.social-icon__link {
width: 100%;
height: 100%;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}
.member-info {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-align: center;
align-items: center;
}
.member-info__name {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
text-transform: uppercase;
margin-bottom: 15px;
font-size: 14px;
}
.member-info__position {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-size: 15px;
color: #999999;;
}
/* ------------------==========================footer============================--------------------- */
.site-footer {
width: 1200px;
height: 65px;
margin: 0 auto;
border-top: 1px solid #e5e5e5;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
}
.left-wrap {
align-self: center;
}
.left-wrap__rights {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
}
.left-wrap__link {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
text-decoration: none;
color: #f6a1a1;
}
.right-wrap {
align-self: center;
border: 1px solid #e7e7e7;
}
.right-wrap__input--email {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
width: 230px;
height: 43px;
padding-left: 7px;
outline: none;
border: none;
}
.right-wrap__input--btn {
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
width: 150px;
height: 41px;
outline: none;
border: none;
background-color: #95e1d3;
color: white;
text-transform: uppercase;
-webkit-transition: 200ms linear;
transition: 200ms linear;
}
.right-wrap__input--btn:hover {
background-color: #f38181;
}
| 0.325842 | 0.064212 |
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:800&display=swap');
* {
margin: 0;
padding: 0;
outline: 0;
box-sizing: border-box;
}
html,
body,
#root {
height: 100%;
}
html {
background: #dae5e8;
-webkit-font-smoothing: antialiased !important;
}
body::-webkit-scrollbar {
width: 8px;
height: 10px;
}
body::-webkit-scrollbar-thumb {
border-radius: 8px;
background: #666;
}
::selection {
background: #15e8cd; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #15e8cd; /* Gecko Browsers */
}
body,
input,
button {
font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
a {
text-decoration: none;
color: inherit;
}
.container {
margin: 0 auto;
max-width: 1200px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.container .title-box {
background-color: #a277f6;
padding: 20px 20px 0 20px;
color: #353244;
border-radius: 0 0 12px 12px;
font-size: 44px;
}
.container .content {
max-width: 100%;
}
.container h1 {
font-family: 'Open Sans';
text-transform: uppercase;
font-size: 42px;
}
.container .box-situation {
margin-top: 50px;
text-align: center;
}
.container .box-situation .box-rn {
text-align: center;
margin-top: 10px;
}
.container .box-situation p {
font-size: 42px;
color: #0b402f;
}
.container .box-datetime {
font-size: 20px;
text-align: center;
margin-top: 10px;
}
.container .box-situation .box-rn mark {
line-height: 1px;
font-size: 48px;
background-color: #15e8cd;
color: #0b402f;
}
.container .box-scrollboxes {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-bottom: 30px;
}
.container footer {
margin-top: 150px;
display: flex;
flex-direction: row;
align-items: inherit;
text-align: justify;
max-width: 1200px;
width: 100%;
height: 100px;
}
.container footer .slogan-rn {
margin-right: auto;
display: inline-block;
width: 33%;
color: #7d1918;
line-height: 25px;
}
.container footer .emblema-rn {
margin: 0 auto;
align-items: center;
justify-content: center;
}
.container footer .emblema-rn img {
width: 86px;
height: 86px;
}
.container footer .hashtag {
display: inline-block;
width: 33%;
display: flex;
flex-direction: column;
}
.container footer .hashtag .hashtag-item {
margin-left: auto;
font-size: 16px;
background-color: #fbe12a;
font-weight: bold;
color: #322935;
width: 50%;
text-align: center;
margin-top: 6px;
}
.map {
display: flex;
flex-direction: column;
width: 100%;
height: 550px;
}
.box-map {
text-align: left;
font-size: 24px;
height: 20px;
width: 100%;
background: #f5f5f2;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.15);
}
.box-contact {
text-align: center;
width: 100%;
padding-top: 1rem;
margin-bottom: 50px;
background: #f5f5f2;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.15);
}
.box-contact button {
border: 0;
background: transparent;
cursor: pointer;
margin: 1.7rem 1rem 1rem 1rem;
opacity: 0.5;
transition: opacity 0.2s;
}
.box-contact button:hover {
opacity: 1;
}
.box-contact p:hover {
opacity: 1;
}
@media (max-width: 650px) {
body {
overflow-x: hidden;
}
.container footer {
flex-direction: column;
align-items: center;
position: static;
width: 100%;
margin-top: 30px;
}
.container footer .emblema-rn,
.container footer .hashtag,
.container footer .slogan-rn {
width: auto;
margin: 0 auto;
}
.box-contact {
opacity: 1;
}
.box-map {
display: none;
}
.container .box-scrollboxes {
grid-template-columns: 1fr;
padding: 0 18px;
}
.map {
height: 500px;
}
}
|
src/App.css
|
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:800&display=swap');
* {
margin: 0;
padding: 0;
outline: 0;
box-sizing: border-box;
}
html,
body,
#root {
height: 100%;
}
html {
background: #dae5e8;
-webkit-font-smoothing: antialiased !important;
}
body::-webkit-scrollbar {
width: 8px;
height: 10px;
}
body::-webkit-scrollbar-thumb {
border-radius: 8px;
background: #666;
}
::selection {
background: #15e8cd; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #15e8cd; /* Gecko Browsers */
}
body,
input,
button {
font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
a {
text-decoration: none;
color: inherit;
}
.container {
margin: 0 auto;
max-width: 1200px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.container .title-box {
background-color: #a277f6;
padding: 20px 20px 0 20px;
color: #353244;
border-radius: 0 0 12px 12px;
font-size: 44px;
}
.container .content {
max-width: 100%;
}
.container h1 {
font-family: 'Open Sans';
text-transform: uppercase;
font-size: 42px;
}
.container .box-situation {
margin-top: 50px;
text-align: center;
}
.container .box-situation .box-rn {
text-align: center;
margin-top: 10px;
}
.container .box-situation p {
font-size: 42px;
color: #0b402f;
}
.container .box-datetime {
font-size: 20px;
text-align: center;
margin-top: 10px;
}
.container .box-situation .box-rn mark {
line-height: 1px;
font-size: 48px;
background-color: #15e8cd;
color: #0b402f;
}
.container .box-scrollboxes {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-bottom: 30px;
}
.container footer {
margin-top: 150px;
display: flex;
flex-direction: row;
align-items: inherit;
text-align: justify;
max-width: 1200px;
width: 100%;
height: 100px;
}
.container footer .slogan-rn {
margin-right: auto;
display: inline-block;
width: 33%;
color: #7d1918;
line-height: 25px;
}
.container footer .emblema-rn {
margin: 0 auto;
align-items: center;
justify-content: center;
}
.container footer .emblema-rn img {
width: 86px;
height: 86px;
}
.container footer .hashtag {
display: inline-block;
width: 33%;
display: flex;
flex-direction: column;
}
.container footer .hashtag .hashtag-item {
margin-left: auto;
font-size: 16px;
background-color: #fbe12a;
font-weight: bold;
color: #322935;
width: 50%;
text-align: center;
margin-top: 6px;
}
.map {
display: flex;
flex-direction: column;
width: 100%;
height: 550px;
}
.box-map {
text-align: left;
font-size: 24px;
height: 20px;
width: 100%;
background: #f5f5f2;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.15);
}
.box-contact {
text-align: center;
width: 100%;
padding-top: 1rem;
margin-bottom: 50px;
background: #f5f5f2;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.15);
}
.box-contact button {
border: 0;
background: transparent;
cursor: pointer;
margin: 1.7rem 1rem 1rem 1rem;
opacity: 0.5;
transition: opacity 0.2s;
}
.box-contact button:hover {
opacity: 1;
}
.box-contact p:hover {
opacity: 1;
}
@media (max-width: 650px) {
body {
overflow-x: hidden;
}
.container footer {
flex-direction: column;
align-items: center;
position: static;
width: 100%;
margin-top: 30px;
}
.container footer .emblema-rn,
.container footer .hashtag,
.container footer .slogan-rn {
width: auto;
margin: 0 auto;
}
.box-contact {
opacity: 1;
}
.box-map {
display: none;
}
.container .box-scrollboxes {
grid-template-columns: 1fr;
padding: 0 18px;
}
.map {
height: 500px;
}
}
| 0.40028 | 0.081228 |
*,
*:after,
*:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin: 0;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
.form-area {
position: relative;
background: #FFF;
color: #7e7975;
-webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.4);
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.4);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
padding:0 20px;
}
.form-area h1 {
font-size: 24px;
margin-left:-20px;
margin-right:-20px;
margin-bottom:10px;
border-bottom: 1px solid #EBE6E2;
text-shadow: 0 2px 0 rgba(255,255,255,0.8);
box-shadow: 0 1px 0 rgba(255,255,255,0.8);
background: #fbd568;
background: -moz-linear-gradient(#fbd568, #ffb347);
background: -ms-linear-gradient(#fbd568, #ffb347);
background: -o-linear-gradient(#fbd568, #ffb347);
background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
background: -webkit-linear-gradient(#fbd568, #ffb347);
background: linear-gradient(#fbd568, #ffb347);
border: 1px solid #f4ab4c;
color: #996319;
text-shadow: 0 1px rgba(255,255,255,0.3);
padding:20px;
position:relative;
-webkit-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
font-weight: 400;
letter-spacing: -1px;
}
.form-area h1 strong {
font-weight:bold;
font-size:26px;
text-transform: uppercase;
}
.form-area-bottom {
clear:both;
margin-top:15px;
background: #fbd568;
background: -moz-linear-gradient(#fbd568, #ffb347);
background: -ms-linear-gradient(#fbd568, #ffb347);
background: -o-linear-gradient(#fbd568, #ffb347);
background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
background: -webkit-linear-gradient(#fbd568, #ffb347);
background: linear-gradient(#fbd568, #ffb347);
border: 1px solid #f4ab4c;
height:10px;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
margin-left:-20px;
margin-right:-20px;
}
.form-area input, #buttom-subscribe input{
font-family: 'open Sans', Lucida Sans Unicode, Arial, sans-serif;
font-size: 12px;
font-weight: 400;
display: block;
width: 100%;
padding: 10px 5px;
min-height: 40px;
margin-bottom: 15px!important;
border: 2px solid #ebe6e2;
border-radius: 5px;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
margin-bottom: 10px;
}
.form-area input[type="submit"], #buttom-subscribe input[type="submit"] {
border: 1px solid rgba(0,0,0,0.05);
font-weight:bold;
font-size: 13px;
text-transform: uppercase;
background: #fbd568;
background: -moz-linear-gradient(#fbd568, #ffb347);
background: -ms-linear-gradient(#fbd568, #ffb347);
background: -o-linear-gradient(#fbd568, #ffb347);
background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
background: -webkit-linear-gradient(#fbd568, #ffb347);
background: linear-gradient(#fbd568, #ffb347);
color: #996319;
}
.form-area input[type="submit"]:hover, #buttom-subscribe input[type="submit"]:hover {
background: #65bdfe;
background: -moz-linear-gradient(top, #65bdfe 0%, #429cff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#65bdfe), color-stop(100%,#429cff));
background: -webkit-linear-gradient(top, #65bdfe 0%,#429cff 100%);
background: -o-linear-gradient(top, #65bdfe 0%,#429cff 100%);
background: -ms-linear-gradient(top, #65bdfe 0%,#429cff 100%);
background: linear-gradient(to bottom, #65bdfe 0%,#429cff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#65bdfe', endColorstr='#429cff',GradientType=0 );
color: #FFF;
border: 1px solid rgba(0,0,0.5);
}
|
WebContent/resources/land/css/form.css
|
*,
*:after,
*:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin: 0;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
.form-area {
position: relative;
background: #FFF;
color: #7e7975;
-webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.4);
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.4);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
padding:0 20px;
}
.form-area h1 {
font-size: 24px;
margin-left:-20px;
margin-right:-20px;
margin-bottom:10px;
border-bottom: 1px solid #EBE6E2;
text-shadow: 0 2px 0 rgba(255,255,255,0.8);
box-shadow: 0 1px 0 rgba(255,255,255,0.8);
background: #fbd568;
background: -moz-linear-gradient(#fbd568, #ffb347);
background: -ms-linear-gradient(#fbd568, #ffb347);
background: -o-linear-gradient(#fbd568, #ffb347);
background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
background: -webkit-linear-gradient(#fbd568, #ffb347);
background: linear-gradient(#fbd568, #ffb347);
border: 1px solid #f4ab4c;
color: #996319;
text-shadow: 0 1px rgba(255,255,255,0.3);
padding:20px;
position:relative;
-webkit-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
font-weight: 400;
letter-spacing: -1px;
}
.form-area h1 strong {
font-weight:bold;
font-size:26px;
text-transform: uppercase;
}
.form-area-bottom {
clear:both;
margin-top:15px;
background: #fbd568;
background: -moz-linear-gradient(#fbd568, #ffb347);
background: -ms-linear-gradient(#fbd568, #ffb347);
background: -o-linear-gradient(#fbd568, #ffb347);
background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
background: -webkit-linear-gradient(#fbd568, #ffb347);
background: linear-gradient(#fbd568, #ffb347);
border: 1px solid #f4ab4c;
height:10px;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
margin-left:-20px;
margin-right:-20px;
}
.form-area input, #buttom-subscribe input{
font-family: 'open Sans', Lucida Sans Unicode, Arial, sans-serif;
font-size: 12px;
font-weight: 400;
display: block;
width: 100%;
padding: 10px 5px;
min-height: 40px;
margin-bottom: 15px!important;
border: 2px solid #ebe6e2;
border-radius: 5px;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
margin-bottom: 10px;
}
.form-area input[type="submit"], #buttom-subscribe input[type="submit"] {
border: 1px solid rgba(0,0,0,0.05);
font-weight:bold;
font-size: 13px;
text-transform: uppercase;
background: #fbd568;
background: -moz-linear-gradient(#fbd568, #ffb347);
background: -ms-linear-gradient(#fbd568, #ffb347);
background: -o-linear-gradient(#fbd568, #ffb347);
background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
background: -webkit-linear-gradient(#fbd568, #ffb347);
background: linear-gradient(#fbd568, #ffb347);
color: #996319;
}
.form-area input[type="submit"]:hover, #buttom-subscribe input[type="submit"]:hover {
background: #65bdfe;
background: -moz-linear-gradient(top, #65bdfe 0%, #429cff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#65bdfe), color-stop(100%,#429cff));
background: -webkit-linear-gradient(top, #65bdfe 0%,#429cff 100%);
background: -o-linear-gradient(top, #65bdfe 0%,#429cff 100%);
background: -ms-linear-gradient(top, #65bdfe 0%,#429cff 100%);
background: linear-gradient(to bottom, #65bdfe 0%,#429cff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#65bdfe', endColorstr='#429cff',GradientType=0 );
color: #FFF;
border: 1px solid rgba(0,0,0.5);
}
| 0.293404 | 0.115361 |
.chatboxOpen{
position: fixed;
bottom: 5px;
right: 0;
margin-right:30px;
margin-left: auto;
width:200px;
height:400px;
z-index:100;
}
.chatboxClosed{
position: fixed;
bottom: 0px;
right: 0;
margin-right:30px;
margin-left: auto;
width:200px;
height:20px;
z-index:100;
}
.chatboxTitle{
font-size:10px;
color: #FFFFFF;
text-align:center;
width:200p;
height:20px;
background-color:#2E9AFE;
border-radius: 5px 5px 0px 0px;
}
.chatElement{
display: block;
clear:both;
margin-top:5px;
}
.chatCommentRightElement{
color:#000000;
font-size:10px;
border-radius: 2px 2px 2px 2px;
background-color:#EFFBFB;
float:right;
margin-right:5px;
margin-bottom:5px;
width:100px;
}
.chatCommentLeftElement{
color:#000000;
font-size:10px;
border-radius: 2px 2px 2px 2px;
background-color:#EFFBFB;
float:left;
margin-left:5px;
margin-bottom:5px;
width:100px;
}
.chatboxDisp{
border: thin solid #ddd;
width:200p;
height:360px;
background-color:white;
overflow-y: scroll;
}
.chatboxInput{
border: thin solid #ddd;
width:195px;
height:20px;
}
.loader {
text-align: center;
}
.loader span {
display: inline-block;
vertical-align: middle;
width: 5px;
height: 5px;
background: black;
border-radius: 10px;
-webkit-animation: loader 0.9s infinite alternate;
-moz-animation: loader 0.9s infinite alternate;
}
.loader span:nth-of-type(2) {
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
}
.loader span:nth-of-type(3) {
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
}
@-webkit-keyframes loader {
0% {
width: 5px;
height: 5px;
opacity: 0.9;
-webkit-transform: translateY(0);
}
100% {
width: 10px;
height: 10px;
opacity: 0.1;
-webkit-transform: translateY(-10px);
}
}
@-moz-keyframes loader {
0% {
width: 5px;
height: 5px;
opacity: 0.9;
-moz-transform: translateY(0);
}
100% {
width: 10px;
height: 10px;
opacity: 0.1;
-moz-transform: translateY(-10px);
}
}
|
ui/v0.1/src/css/chatbox.css
|
.chatboxOpen{
position: fixed;
bottom: 5px;
right: 0;
margin-right:30px;
margin-left: auto;
width:200px;
height:400px;
z-index:100;
}
.chatboxClosed{
position: fixed;
bottom: 0px;
right: 0;
margin-right:30px;
margin-left: auto;
width:200px;
height:20px;
z-index:100;
}
.chatboxTitle{
font-size:10px;
color: #FFFFFF;
text-align:center;
width:200p;
height:20px;
background-color:#2E9AFE;
border-radius: 5px 5px 0px 0px;
}
.chatElement{
display: block;
clear:both;
margin-top:5px;
}
.chatCommentRightElement{
color:#000000;
font-size:10px;
border-radius: 2px 2px 2px 2px;
background-color:#EFFBFB;
float:right;
margin-right:5px;
margin-bottom:5px;
width:100px;
}
.chatCommentLeftElement{
color:#000000;
font-size:10px;
border-radius: 2px 2px 2px 2px;
background-color:#EFFBFB;
float:left;
margin-left:5px;
margin-bottom:5px;
width:100px;
}
.chatboxDisp{
border: thin solid #ddd;
width:200p;
height:360px;
background-color:white;
overflow-y: scroll;
}
.chatboxInput{
border: thin solid #ddd;
width:195px;
height:20px;
}
.loader {
text-align: center;
}
.loader span {
display: inline-block;
vertical-align: middle;
width: 5px;
height: 5px;
background: black;
border-radius: 10px;
-webkit-animation: loader 0.9s infinite alternate;
-moz-animation: loader 0.9s infinite alternate;
}
.loader span:nth-of-type(2) {
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
}
.loader span:nth-of-type(3) {
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
}
@-webkit-keyframes loader {
0% {
width: 5px;
height: 5px;
opacity: 0.9;
-webkit-transform: translateY(0);
}
100% {
width: 10px;
height: 10px;
opacity: 0.1;
-webkit-transform: translateY(-10px);
}
}
@-moz-keyframes loader {
0% {
width: 5px;
height: 5px;
opacity: 0.9;
-moz-transform: translateY(0);
}
100% {
width: 10px;
height: 10px;
opacity: 0.1;
-moz-transform: translateY(-10px);
}
}
| 0.560614 | 0.239917 |
.navMenu {
overflow: hidden;
}
.navMenu a {
float: left;
font-family: 'Vollkorn', serif;
color: #ffcc00;
text-align: center;
padding: 10px 20px;
background-color: #333;
width: 100%;
}
.dropdown {
width: 120px;
height: 40px;
}
.dropButton {
border-radius: 5px;
border: 2px solid black;
width: 100%;
height: 100%;
background: #ffcc00;
}
.dropButton:hover {
background: #00ff99;
}
.dropdown-links {
display: none;
position: absolute;
max-width: 100px;
min-width: 100px;
}
.dropdown-links a {
float: none;
display: block;
text-align: left;
}
.dropdown-links a:hover {
display: block;
background-color: #666;
color: #00ff99;
width: 100%;
}
.dropdown:hover .dropdown-links {
display: block;
width: 100%;
}
/* PROJECTS CAROUSEL/SLIDESHOW */
.projectSlide {
display: none;
border: 2px solid black;
background: #ddd;
}
.projectSlide h3 {
margin-left: 1rem;
}
.projectsCarousel {
max-width: 800px;
position: relative;
margin: auto;
}
img{
max-width: 725px;
display: block;
margin-left: auto;
margin-right: auto;
}
.prev, .next {
cursor: pointer;
position: absolute;
font-weight: bolder;
font-size: 50px;
background-color: #ffcc00;
padding: 0 10px 8px 10px;
}
.prev:hover, .next:hover {
background-color: #00ff99;
}
.next {
right: -80px;
top: 200px;
}
.prev {
left: -80px;
top: 200px;
}
/* EXPAND PROJECT DETAILS */
#projectOneDescription {
display: none;
margin: 0 10rem 3rem 10rem;
}
#projectOneDescription.open{
display: block;
}
#projectTwoDescription {
display: none;
margin: 0 10rem 3rem 10rem;
}
#projectTwoDescription.open{
display: block;
}
#projectThreeDescription {
display: none;
margin: 0 10rem 3rem 10rem;
}
#projectThreeDescription.open{
display: block;
}
/* OTHER*/
.container {
margin: 10vh 10vw;
}
figure figcaption {
font-size: 12px;
float: right;
margin-top: 3px;
}
#projectOneButton, #projectTwoButton, #projectThreeButton {
background: #ffcc00;
border: 2px solid black;
border-radius: 5px;
padding: .5rem .5rem;
margin: 0 auto 2rem 20vw;
font-size: 18px;
}
#projectOneButton:hover, #projectTwoButton:hover, #projectThreeButton:hover {
background: #00ff99;
cursor: pointer;
}
|
src/css/projectsLayout.css
|
.navMenu {
overflow: hidden;
}
.navMenu a {
float: left;
font-family: 'Vollkorn', serif;
color: #ffcc00;
text-align: center;
padding: 10px 20px;
background-color: #333;
width: 100%;
}
.dropdown {
width: 120px;
height: 40px;
}
.dropButton {
border-radius: 5px;
border: 2px solid black;
width: 100%;
height: 100%;
background: #ffcc00;
}
.dropButton:hover {
background: #00ff99;
}
.dropdown-links {
display: none;
position: absolute;
max-width: 100px;
min-width: 100px;
}
.dropdown-links a {
float: none;
display: block;
text-align: left;
}
.dropdown-links a:hover {
display: block;
background-color: #666;
color: #00ff99;
width: 100%;
}
.dropdown:hover .dropdown-links {
display: block;
width: 100%;
}
/* PROJECTS CAROUSEL/SLIDESHOW */
.projectSlide {
display: none;
border: 2px solid black;
background: #ddd;
}
.projectSlide h3 {
margin-left: 1rem;
}
.projectsCarousel {
max-width: 800px;
position: relative;
margin: auto;
}
img{
max-width: 725px;
display: block;
margin-left: auto;
margin-right: auto;
}
.prev, .next {
cursor: pointer;
position: absolute;
font-weight: bolder;
font-size: 50px;
background-color: #ffcc00;
padding: 0 10px 8px 10px;
}
.prev:hover, .next:hover {
background-color: #00ff99;
}
.next {
right: -80px;
top: 200px;
}
.prev {
left: -80px;
top: 200px;
}
/* EXPAND PROJECT DETAILS */
#projectOneDescription {
display: none;
margin: 0 10rem 3rem 10rem;
}
#projectOneDescription.open{
display: block;
}
#projectTwoDescription {
display: none;
margin: 0 10rem 3rem 10rem;
}
#projectTwoDescription.open{
display: block;
}
#projectThreeDescription {
display: none;
margin: 0 10rem 3rem 10rem;
}
#projectThreeDescription.open{
display: block;
}
/* OTHER*/
.container {
margin: 10vh 10vw;
}
figure figcaption {
font-size: 12px;
float: right;
margin-top: 3px;
}
#projectOneButton, #projectTwoButton, #projectThreeButton {
background: #ffcc00;
border: 2px solid black;
border-radius: 5px;
padding: .5rem .5rem;
margin: 0 auto 2rem 20vw;
font-size: 18px;
}
#projectOneButton:hover, #projectTwoButton:hover, #projectThreeButton:hover {
background: #00ff99;
cursor: pointer;
}
| 0.31342 | 0.105027 |
@font-face {
font-family: GrayDesign;
src: url('./font/GrayDesign.eot');
src: url('./font/GrayDesign.woff') format('woff'),
url('./font/GrayDesign.ttf') format('truetype'),
url('./font/GrayDesign.svg') format('svg');
}
body,html {
height: 100%;
padding: 0;
margin: 0;
background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}
header {
height: 80px;
padding: 0 100px;
line-height: 80px;
}
header a {
float: right;
font-size: 18px;
font-family: 'MicroSoft Yahei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
align-items: center;
color: #364e68;
text-decoration: none;
}
.logoLink {
font-size: 40px;
font-family: GrayDesign;
background-image: linear-gradient(to right, #fbc2eb 0%, #a6c1ee 100%);
-webkit-background-clip: text;
color: transparent;
cursor: default;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
.logo {
font-size: 150px;
font-family: GrayDesign;
background-image: linear-gradient(to right, #fbc2eb 0%, #a6c1ee 50%);
-webkit-background-clip: text;
color: transparent;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#moveWrap {
position: absolute;
left: calc(50% - 270px);
top: 250px;
transform: translate(0px, 0px);
transition: transform 20ms;
}
.describeWrap {
margin: 0 auto;
margin-top: 450px;
}
.describeWrap h1 {
font-size: 35px;
text-align: center;
color: #364e68;
font-family: GrayDesign;
}
.jumpBtn {
margin: 0 auto;
text-align: center;
margin-top: 100px;
}
.startBtn {
display: inline-block;
width: 190px;
height: 56px;
margin: 0 35px;
font-size: 18px;
text-align: center;
line-height: 56px;
border-radius: 28px;
color: #fff;
background: #00aeff;
box-shadow: 0 2px 6px 0 rgba(51, 105, 231, .4);
-webkit-transition: all .3s;
transition: all .3s;
text-decoration: none;
}
.startBtn:hover {
background: #3369e7;
}
.gitBtn {
display: inline-block;
width: 190px;
height: 56px;
margin: 0 35px;
font-size: 18px;
text-align: center;
line-height: 56px;
border-radius: 28px;
color: #3369e7;
background: #fff;
box-shadow: 0 2px 6px 0 rgba(51, 105, 231, .4);
-webkit-transition: all .3s;
transition: all .3s;
text-decoration: none;
}
.gitBtn:hover {
background: #f5f7fa;
}
|
docs/style.css
|
@font-face {
font-family: GrayDesign;
src: url('./font/GrayDesign.eot');
src: url('./font/GrayDesign.woff') format('woff'),
url('./font/GrayDesign.ttf') format('truetype'),
url('./font/GrayDesign.svg') format('svg');
}
body,html {
height: 100%;
padding: 0;
margin: 0;
background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}
header {
height: 80px;
padding: 0 100px;
line-height: 80px;
}
header a {
float: right;
font-size: 18px;
font-family: 'MicroSoft Yahei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
align-items: center;
color: #364e68;
text-decoration: none;
}
.logoLink {
font-size: 40px;
font-family: GrayDesign;
background-image: linear-gradient(to right, #fbc2eb 0%, #a6c1ee 100%);
-webkit-background-clip: text;
color: transparent;
cursor: default;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
.logo {
font-size: 150px;
font-family: GrayDesign;
background-image: linear-gradient(to right, #fbc2eb 0%, #a6c1ee 50%);
-webkit-background-clip: text;
color: transparent;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#moveWrap {
position: absolute;
left: calc(50% - 270px);
top: 250px;
transform: translate(0px, 0px);
transition: transform 20ms;
}
.describeWrap {
margin: 0 auto;
margin-top: 450px;
}
.describeWrap h1 {
font-size: 35px;
text-align: center;
color: #364e68;
font-family: GrayDesign;
}
.jumpBtn {
margin: 0 auto;
text-align: center;
margin-top: 100px;
}
.startBtn {
display: inline-block;
width: 190px;
height: 56px;
margin: 0 35px;
font-size: 18px;
text-align: center;
line-height: 56px;
border-radius: 28px;
color: #fff;
background: #00aeff;
box-shadow: 0 2px 6px 0 rgba(51, 105, 231, .4);
-webkit-transition: all .3s;
transition: all .3s;
text-decoration: none;
}
.startBtn:hover {
background: #3369e7;
}
.gitBtn {
display: inline-block;
width: 190px;
height: 56px;
margin: 0 35px;
font-size: 18px;
text-align: center;
line-height: 56px;
border-radius: 28px;
color: #3369e7;
background: #fff;
box-shadow: 0 2px 6px 0 rgba(51, 105, 231, .4);
-webkit-transition: all .3s;
transition: all .3s;
text-decoration: none;
}
.gitBtn:hover {
background: #f5f7fa;
}
| 0.263884 | 0.081264 |
article {
width: 100%;
height: 820px;
background-color: #fff;
}
article .main {
width: 1250px;
height: 820px;
margin: 10px auto;
}
article .main .box {
float: left;
position: relative;
width: 400px;
height: 500px;
margin-right: 20px;
}
article .main .box .box-img {
width: 400px;
height: 400px;
border: 1px solid #ccc;
}
article .main .box .box-img img {
width: 398px;
height: 398px;
}
article .main .box .box-img .mask {
width: 200px;
position: absolute;
height: 200px;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.3);
display: none;
}
article .main .box .box-down-imgs {
margin-top: 10px;
width: 400px;
height: 100px;
position: relative;
}
article .main .box .box-down-imgs .itemLeft {
width: 20px;
height: 40px;
line-height: 40px;
display: inline-block;
position: absolute;
top: 25px;
left: 5px;
font-size: 24px;
}
article .main .box .box-down-imgs .itemzhong {
display: inline-block;
width: 82%;
height: 66px;
line-height: 40px;
overflow: hidden;
position: absolute;
top: 17px;
left: 35px;
position: relative;
}
article .main .box .box-down-imgs .itemzhong ul {
width: 993px;
height: 84px;
line-height: 40px;
position: absolute;
top: 0;
left: 0;
}
article .main .box .box-down-imgs .itemzhong ul li {
width: 65px;
height: 64px;
float: left;
margin: 5;
line-height: 58px;
text-align: center;
}
article .main .box .box-down-imgs .itemzhong ul li img {
width: 58px;
height: 58px;
}
article .main .box .box-down-imgs .itemzhong ul .item {
border: 2px solid orange;
}
article .main .box .box-down-imgs .itemRight {
display: inline-block;
width: 20px;
height: 40px;
line-height: 40px;
position: absolute;
top: 25px;
right: 5px;
font-size: 24px;
}
article .main .box .max-img {
width: 355.50px;
height: 355.50px;
overflow: hidden;
position: absolute;
left: 452px;
top: 20px;
display: none;
}
article .main .box .max-img img {
position: absolute;
left: 0;
top: 0;
}
article .main .Good-details {
float: left;
width: 610px;
height: 500px;
padding: 20px;
}
article .main .Good-details .name {
line-height: 1.5em;
overflow: hidden;
font-weight: 700;
font-size: 16px;
color: #333;
}
article .main .Good-details .details {
color: #ff6600;
font-size: 12px;
line-height: 20px;
word-break: break-all;
margin-top: 10px;
}
article .main .Good-details .summary-price-left-box {
width: 560px;
height: 108px;
background-color: #f7f7f7;
}
article .main .Good-details .summary-price-left-box .YinPinprice {
width: 50px;
height: 36px;
font-size: 14px;
color: #ccc;
text-align: center;
line-height: 36px;
display: inline-block;
margin-top: 15px;
}
article .main .Good-details .summary-price-left-box .price {
width: 150px;
height: 39px;
font-size: 30px;
color: orangered;
text-align: center;
line-height: 39px;
display: inline-block;
margin-top: 15px;
}
article .main .Good-details .summary-price-left-box .price span {
font-size: 20px;
}
article .main .Good-details .summary-price-left-box del {
width: 50px;
height: 36px;
font-size: 14px;
display: inline-block;
margin-top: 16px;
text-align: center;
line-height: 36px;
}
article .main .Good-details .summary-price-left-box .priceDowm {
width: 80px;
height: 36px;
font-size: 14px;
display: inline-block;
margin-top: 20px;
margin-left: 20px;
text-align: center;
line-height: 36px;
}
article .main .Good-details .summary-price-left-box .img1 {
margin-left: 1px;
margin-top: -12px;
}
article .main .Good-details .summary-price-left-box .img2 {
margin-left: 70px;
margin-top: -55px;
}
article .main .Good-details .btn-add-buy {
width: 600px;
height: 50px;
margin-top: 25px;
}
article .main .Good-details .btn-add-buy button {
display: inline-block;
width: 20px;
height: 30px;
line-height: 30px;
}
article .main .Good-details .btn-add-buy input {
display: inline-block;
width: 50px;
height: 30px;
line-height: 30px;
text-align: center;
border: 1px solid #ccc;
}
article .main .Good-details .btn-add-buy .buy {
display: inline-block;
width: 200px;
height: 50px;
line-height: 50px;
text-align: center;
background-color: red;
font-size: 24px;
font-weight: 700;
color: #fff;
margin-left: 50px;
}
article .main .Good-details .btn-add-buy .buyCar {
display: inline-block;
width: 200px;
height: 50px;
line-height: 50px;
text-align: center;
background-color: orangered;
font-size: 24px;
font-weight: 700;
color: #fff;
}
article .main .daRenLook {
width: 220px;
height: 500px;
float: left;
}
article .main .daRenLook h1 {
text-align: center;
}
article .main .daRenLook .mb {
width: 230px;
height: 600px;
border: 1px solid #ccc;
position: relative;
}
article .main .daRenLook .mb h2 {
width: 228px;
height: 40px;
padding-left: 20px;
background-color: #f7f7f7;
line-height: 40px;
border-bottom: 1px solid #ccc;
}
article .main .daRenLook .mb .mb-list {
display: none;
width: 230px;
height: 492px;
text-align: center;
float: left;
}
article .main .daRenLook .mb .mb-list li {
margin: 5px;
}
article .main .daRenLook .mb .mb-list li .mb-title {
color: red;
text-align: left;
font-size: 16px;
padding-left: 15px;
}
article .main .daRenLook .mb .mb-list li .mb-price {
font-size: 12px;
text-align: left;
color: #000;
padding-left: 15px;
}
article .main .daRenLook .mb .item {
display: block;
}
article .main .daRenLook .mb .mb-span {
display: inline-block;
width: 150px;
height: 30px;
position: absolute;
text-align: center;
line-height: 30px;
bottom: 20px;
left: 50%;
margin-left: -75px;
}
article .main .daRenLook .mb .mb-span span {
display: inline-block;
width: 15px;
height: 15px;
border: 1px solid orange;
background-color: #fff;
border-radius: 50%;
margin: 5px;
}
article .main .daRenLook .mb .mb-span .item {
background-color: orange;
}
|
YingPingMall/code/sass/04.css
|
article {
width: 100%;
height: 820px;
background-color: #fff;
}
article .main {
width: 1250px;
height: 820px;
margin: 10px auto;
}
article .main .box {
float: left;
position: relative;
width: 400px;
height: 500px;
margin-right: 20px;
}
article .main .box .box-img {
width: 400px;
height: 400px;
border: 1px solid #ccc;
}
article .main .box .box-img img {
width: 398px;
height: 398px;
}
article .main .box .box-img .mask {
width: 200px;
position: absolute;
height: 200px;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.3);
display: none;
}
article .main .box .box-down-imgs {
margin-top: 10px;
width: 400px;
height: 100px;
position: relative;
}
article .main .box .box-down-imgs .itemLeft {
width: 20px;
height: 40px;
line-height: 40px;
display: inline-block;
position: absolute;
top: 25px;
left: 5px;
font-size: 24px;
}
article .main .box .box-down-imgs .itemzhong {
display: inline-block;
width: 82%;
height: 66px;
line-height: 40px;
overflow: hidden;
position: absolute;
top: 17px;
left: 35px;
position: relative;
}
article .main .box .box-down-imgs .itemzhong ul {
width: 993px;
height: 84px;
line-height: 40px;
position: absolute;
top: 0;
left: 0;
}
article .main .box .box-down-imgs .itemzhong ul li {
width: 65px;
height: 64px;
float: left;
margin: 5;
line-height: 58px;
text-align: center;
}
article .main .box .box-down-imgs .itemzhong ul li img {
width: 58px;
height: 58px;
}
article .main .box .box-down-imgs .itemzhong ul .item {
border: 2px solid orange;
}
article .main .box .box-down-imgs .itemRight {
display: inline-block;
width: 20px;
height: 40px;
line-height: 40px;
position: absolute;
top: 25px;
right: 5px;
font-size: 24px;
}
article .main .box .max-img {
width: 355.50px;
height: 355.50px;
overflow: hidden;
position: absolute;
left: 452px;
top: 20px;
display: none;
}
article .main .box .max-img img {
position: absolute;
left: 0;
top: 0;
}
article .main .Good-details {
float: left;
width: 610px;
height: 500px;
padding: 20px;
}
article .main .Good-details .name {
line-height: 1.5em;
overflow: hidden;
font-weight: 700;
font-size: 16px;
color: #333;
}
article .main .Good-details .details {
color: #ff6600;
font-size: 12px;
line-height: 20px;
word-break: break-all;
margin-top: 10px;
}
article .main .Good-details .summary-price-left-box {
width: 560px;
height: 108px;
background-color: #f7f7f7;
}
article .main .Good-details .summary-price-left-box .YinPinprice {
width: 50px;
height: 36px;
font-size: 14px;
color: #ccc;
text-align: center;
line-height: 36px;
display: inline-block;
margin-top: 15px;
}
article .main .Good-details .summary-price-left-box .price {
width: 150px;
height: 39px;
font-size: 30px;
color: orangered;
text-align: center;
line-height: 39px;
display: inline-block;
margin-top: 15px;
}
article .main .Good-details .summary-price-left-box .price span {
font-size: 20px;
}
article .main .Good-details .summary-price-left-box del {
width: 50px;
height: 36px;
font-size: 14px;
display: inline-block;
margin-top: 16px;
text-align: center;
line-height: 36px;
}
article .main .Good-details .summary-price-left-box .priceDowm {
width: 80px;
height: 36px;
font-size: 14px;
display: inline-block;
margin-top: 20px;
margin-left: 20px;
text-align: center;
line-height: 36px;
}
article .main .Good-details .summary-price-left-box .img1 {
margin-left: 1px;
margin-top: -12px;
}
article .main .Good-details .summary-price-left-box .img2 {
margin-left: 70px;
margin-top: -55px;
}
article .main .Good-details .btn-add-buy {
width: 600px;
height: 50px;
margin-top: 25px;
}
article .main .Good-details .btn-add-buy button {
display: inline-block;
width: 20px;
height: 30px;
line-height: 30px;
}
article .main .Good-details .btn-add-buy input {
display: inline-block;
width: 50px;
height: 30px;
line-height: 30px;
text-align: center;
border: 1px solid #ccc;
}
article .main .Good-details .btn-add-buy .buy {
display: inline-block;
width: 200px;
height: 50px;
line-height: 50px;
text-align: center;
background-color: red;
font-size: 24px;
font-weight: 700;
color: #fff;
margin-left: 50px;
}
article .main .Good-details .btn-add-buy .buyCar {
display: inline-block;
width: 200px;
height: 50px;
line-height: 50px;
text-align: center;
background-color: orangered;
font-size: 24px;
font-weight: 700;
color: #fff;
}
article .main .daRenLook {
width: 220px;
height: 500px;
float: left;
}
article .main .daRenLook h1 {
text-align: center;
}
article .main .daRenLook .mb {
width: 230px;
height: 600px;
border: 1px solid #ccc;
position: relative;
}
article .main .daRenLook .mb h2 {
width: 228px;
height: 40px;
padding-left: 20px;
background-color: #f7f7f7;
line-height: 40px;
border-bottom: 1px solid #ccc;
}
article .main .daRenLook .mb .mb-list {
display: none;
width: 230px;
height: 492px;
text-align: center;
float: left;
}
article .main .daRenLook .mb .mb-list li {
margin: 5px;
}
article .main .daRenLook .mb .mb-list li .mb-title {
color: red;
text-align: left;
font-size: 16px;
padding-left: 15px;
}
article .main .daRenLook .mb .mb-list li .mb-price {
font-size: 12px;
text-align: left;
color: #000;
padding-left: 15px;
}
article .main .daRenLook .mb .item {
display: block;
}
article .main .daRenLook .mb .mb-span {
display: inline-block;
width: 150px;
height: 30px;
position: absolute;
text-align: center;
line-height: 30px;
bottom: 20px;
left: 50%;
margin-left: -75px;
}
article .main .daRenLook .mb .mb-span span {
display: inline-block;
width: 15px;
height: 15px;
border: 1px solid orange;
background-color: #fff;
border-radius: 50%;
margin: 5px;
}
article .main .daRenLook .mb .mb-span .item {
background-color: orange;
}
| 0.530236 | 0.043144 |
@media (max-width: 1367px){
}
/* Tablet && Mobile */
@media (max-width: 1025px){
.content__load-title:before {
content: '';
position: absolute;
left: 0;
top: 50%;
width: 18%;
height: 1px;
background-color: #000;
}
.content__load-title:after {
content: '';
position: absolute;
right: 0;
top: 50%;
width: 18%;
height: 1px;
background-color: #000;
}
.content__load-title h1 {
font-size: 22px;
margin-bottom: 0px;
display: block;
text-align: center;
padding: 60px 58px;
position: relative;
display: inline-block;
max-width: 800px;
width: 77%;
font-weight: 700;
text-transform: uppercase;
}
span[aria-label="Previous"] {
position: absolute;
font-size: 79px;
top: 30%;
left: -8%;
}
span[aria-label="Previous"]:hover {
position: absolute;
font-size: 79px;
top: 30%;
left: -8%;
}
span[aria-label="Next"] {
position: absolute;
font-size: 79px;
top: 30%;
right: -8%;
}
span[aria-label="Next"]:hover {
position: absolute;
font-size: 79px;
top: 30%;
right: -8%;
}
}
/* Tablet */
@media (min-width: 740px) and (max-width: 1023px){
.content__detailpost-banner img {
width: 100%;
height: 100%;
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 9%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 40px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
}
@media (max-width: 800px){
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 12px;
}
span[aria-label="Previous"] {
position: absolute;
font-size: 82px;
top: 30%;
left: -5%;
}
span[aria-label="Previous"]:hover {
position: absolute;
font-size: 82px;
top: 30%;
left: -5%;
}
span[aria-label="Next"] {
position: absolute;
font-size: 82px;
top: 30%;
right: -5%;
}
span[aria-label="Next"]:hover {
position: absolute;
font-size: 82px;
top: 30%;
right: -5%;
}
}
/* Mobile */
@media (max-width: 739px){
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 12px;
}
.content__load-text {
text-align: center;
padding: 0px 24px;
}
.content__commentpost {
background: #eee;
padding: 25px 9px 70px 11px;
margin-top: 53px;
}
.content__caption {
font-size: 21px;
font-family: inherit;
padding-bottom: 2px;
}
.content__commentpost-container {
background: #fff;
padding: 63px 32px;
border-radius: 14px;
position: relative;
}
.content__comment-icon i {
background: #333;
color: #fff;
padding: 11px;
font-size: 22px;
border-radius: 10px;
position: absolute;
top: -51px;
left: 8px;
}
.content__comment-send span {
font-size: 16px;
}
.content__comment-send span a {
text-decoration: none;
color: #333;
font-weight: 700;
font-size: 16px;
}
.comment_send {
padding: 5px 18px;
border-radius: 6px;
text-transform: uppercase;
opacity: 0.5;
background: #333;
color: #fff;
}
.content__commentpost h2 {
text-align: center;
padding: 7px 55px 19px;
text-transform: uppercase;
color: #655959;
font-weight: 300;
font-size: 32px;
}
.content__detailpost-banner img {
width: 100%;
height: 100%;
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 14%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 47px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
span[aria-label="Previous"] {
position: absolute;
font-size: 94px;
top: 27%;
left: -9%;
}
span[aria-label="Previous"]:hover {
position: absolute;
font-size: 94px;
top: 27%;
left: -9%;
}
span[aria-label="Next"] {
position: absolute;
top: 27%;
right: -9%;
font-size: 94px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 27%;
right: -9%;
font-size: 94px;
}
}
@media (max-width: 668px){
span[aria-label="Previous"] {
position: absolute;
font-size: 94px;
top: 27%;
left: -9%;
}
span[aria-label="Previous"]:hover {
position: absolute;
font-size: 94px;
top: 27%;
left: -9%;
}
span[aria-label="Next"] {
position: absolute;
top: 27%;
right: -9%;
font-size: 94px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 27%;
right: -9%;
font-size: 94px;
}
}
/* Mobile-small */
@media (max-width: 600px){
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 10px;
}
span[aria-label="Next"] {
position: absolute;
top: 63%;
right: 35%;
font-size: 75px;
}
span[aria-label="Previous"] {
position: absolute;
top: 63%;
left: 35%;
font-size: 75px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 63%;
right: 35%;
font-size: 75px;
}
span[aria-label="Previous"]:hover {
position: absolute;
top: 63%;
left: 35%;
font-size: 75px;
}
}
@media (max-width: 500px){
.content__detailpost-img {
display: block;
width: 30%!important;
margin-left: 0px;
}
.content__detailpost-banner img {
width: 100%;
height: 47vh;
}
.content__detailpost-wp h1 {
margin-bottom: 0px;
text-align: center;
padding: 35px 0px;
text-transform: uppercase;
font-size: 24px;
color: #7c7373fa;
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 19%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 47px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
}
@media (max-width: 415px){
.content__detailpost-img {
display: block;
width: 45%!important;
margin-left: 0px;
}
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 12px;
}
span[aria-label="Next"] {
position: absolute;
top: 58%;
right: 39%;
font-size: 75px;
}
span[aria-label="Previous"] {
position: absolute;
top: 58%;
left: 39%;
font-size: 75px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 58%;
right: 39%;
font-size: 75px;
}
span[aria-label="Previous"]:hover {
position: absolute;
top: 58%;
left: 39%;
font-size: 75px;
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 4%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 36px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 23%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 36px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
.content__detailpost-wp h1 {
margin-bottom: 0px;
text-align: center;
padding: 35px 0px;
text-transform: uppercase;
font-size: 16px;
color: #7c7373fa;
}
}
@media (max-width: 400px){
.content__detailpost-img {
display: block;
width: 56%!important;
margin-left: 0px;
}
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 12px;
}
span[aria-label="Next"] {
position: absolute;
top: 62%;
right: 35%;
font-size: 75px;
}
span[aria-label="Previous"] {
position: absolute;
top: 62%;
left: 35%;
font-size: 75px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 62%;
right: 35%;
font-size: 75px;
}
span[aria-label="Previous"]:hover {
position: absolute;
top: 62%;
left: 35%;
font-size: 75px;
}
}
@media (max-width: 320px){
}
|
lephu.fstack/public/css/responsive/responsive_post_detail.css
|
@media (max-width: 1367px){
}
/* Tablet && Mobile */
@media (max-width: 1025px){
.content__load-title:before {
content: '';
position: absolute;
left: 0;
top: 50%;
width: 18%;
height: 1px;
background-color: #000;
}
.content__load-title:after {
content: '';
position: absolute;
right: 0;
top: 50%;
width: 18%;
height: 1px;
background-color: #000;
}
.content__load-title h1 {
font-size: 22px;
margin-bottom: 0px;
display: block;
text-align: center;
padding: 60px 58px;
position: relative;
display: inline-block;
max-width: 800px;
width: 77%;
font-weight: 700;
text-transform: uppercase;
}
span[aria-label="Previous"] {
position: absolute;
font-size: 79px;
top: 30%;
left: -8%;
}
span[aria-label="Previous"]:hover {
position: absolute;
font-size: 79px;
top: 30%;
left: -8%;
}
span[aria-label="Next"] {
position: absolute;
font-size: 79px;
top: 30%;
right: -8%;
}
span[aria-label="Next"]:hover {
position: absolute;
font-size: 79px;
top: 30%;
right: -8%;
}
}
/* Tablet */
@media (min-width: 740px) and (max-width: 1023px){
.content__detailpost-banner img {
width: 100%;
height: 100%;
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 9%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 40px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
}
@media (max-width: 800px){
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 12px;
}
span[aria-label="Previous"] {
position: absolute;
font-size: 82px;
top: 30%;
left: -5%;
}
span[aria-label="Previous"]:hover {
position: absolute;
font-size: 82px;
top: 30%;
left: -5%;
}
span[aria-label="Next"] {
position: absolute;
font-size: 82px;
top: 30%;
right: -5%;
}
span[aria-label="Next"]:hover {
position: absolute;
font-size: 82px;
top: 30%;
right: -5%;
}
}
/* Mobile */
@media (max-width: 739px){
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 12px;
}
.content__load-text {
text-align: center;
padding: 0px 24px;
}
.content__commentpost {
background: #eee;
padding: 25px 9px 70px 11px;
margin-top: 53px;
}
.content__caption {
font-size: 21px;
font-family: inherit;
padding-bottom: 2px;
}
.content__commentpost-container {
background: #fff;
padding: 63px 32px;
border-radius: 14px;
position: relative;
}
.content__comment-icon i {
background: #333;
color: #fff;
padding: 11px;
font-size: 22px;
border-radius: 10px;
position: absolute;
top: -51px;
left: 8px;
}
.content__comment-send span {
font-size: 16px;
}
.content__comment-send span a {
text-decoration: none;
color: #333;
font-weight: 700;
font-size: 16px;
}
.comment_send {
padding: 5px 18px;
border-radius: 6px;
text-transform: uppercase;
opacity: 0.5;
background: #333;
color: #fff;
}
.content__commentpost h2 {
text-align: center;
padding: 7px 55px 19px;
text-transform: uppercase;
color: #655959;
font-weight: 300;
font-size: 32px;
}
.content__detailpost-banner img {
width: 100%;
height: 100%;
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 14%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 47px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
span[aria-label="Previous"] {
position: absolute;
font-size: 94px;
top: 27%;
left: -9%;
}
span[aria-label="Previous"]:hover {
position: absolute;
font-size: 94px;
top: 27%;
left: -9%;
}
span[aria-label="Next"] {
position: absolute;
top: 27%;
right: -9%;
font-size: 94px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 27%;
right: -9%;
font-size: 94px;
}
}
@media (max-width: 668px){
span[aria-label="Previous"] {
position: absolute;
font-size: 94px;
top: 27%;
left: -9%;
}
span[aria-label="Previous"]:hover {
position: absolute;
font-size: 94px;
top: 27%;
left: -9%;
}
span[aria-label="Next"] {
position: absolute;
top: 27%;
right: -9%;
font-size: 94px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 27%;
right: -9%;
font-size: 94px;
}
}
/* Mobile-small */
@media (max-width: 600px){
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 10px;
}
span[aria-label="Next"] {
position: absolute;
top: 63%;
right: 35%;
font-size: 75px;
}
span[aria-label="Previous"] {
position: absolute;
top: 63%;
left: 35%;
font-size: 75px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 63%;
right: 35%;
font-size: 75px;
}
span[aria-label="Previous"]:hover {
position: absolute;
top: 63%;
left: 35%;
font-size: 75px;
}
}
@media (max-width: 500px){
.content__detailpost-img {
display: block;
width: 30%!important;
margin-left: 0px;
}
.content__detailpost-banner img {
width: 100%;
height: 47vh;
}
.content__detailpost-wp h1 {
margin-bottom: 0px;
text-align: center;
padding: 35px 0px;
text-transform: uppercase;
font-size: 24px;
color: #7c7373fa;
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 19%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 47px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
}
@media (max-width: 415px){
.content__detailpost-img {
display: block;
width: 45%!important;
margin-left: 0px;
}
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 12px;
}
span[aria-label="Next"] {
position: absolute;
top: 58%;
right: 39%;
font-size: 75px;
}
span[aria-label="Previous"] {
position: absolute;
top: 58%;
left: 39%;
font-size: 75px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 58%;
right: 39%;
font-size: 75px;
}
span[aria-label="Previous"]:hover {
position: absolute;
top: 58%;
left: 39%;
font-size: 75px;
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 4%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 36px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
.content__detailpost-banner h2 {
position: absolute;
bottom: 23%;
left: 50%;
color: #fff;
text-transform: uppercase;
font-size: 36px;
font-weight: 700;
border-bottom: 3px solid;
transform: translateX(-50%);
}
.content__detailpost-wp h1 {
margin-bottom: 0px;
text-align: center;
padding: 35px 0px;
text-transform: uppercase;
font-size: 16px;
color: #7c7373fa;
}
}
@media (max-width: 400px){
.content__detailpost-img {
display: block;
width: 56%!important;
margin-left: 0px;
}
.content__detailpost-title a {
display: block;
padding: 10px 13px;
text-decoration: none;
text-transform: uppercase;
color: #333;
font-family: revert;
font-size: 12px;
}
span[aria-label="Next"] {
position: absolute;
top: 62%;
right: 35%;
font-size: 75px;
}
span[aria-label="Previous"] {
position: absolute;
top: 62%;
left: 35%;
font-size: 75px;
}
span[aria-label="Next"]:hover {
position: absolute;
top: 62%;
right: 35%;
font-size: 75px;
}
span[aria-label="Previous"]:hover {
position: absolute;
top: 62%;
left: 35%;
font-size: 75px;
}
}
@media (max-width: 320px){
}
| 0.446736 | 0.090414 |
html, body {
width: 100%; /* ウィンドウ全体に*/
height: 100%;
margin: 0; /* すきまなく */
overflow: hidden; /* はみ出た部分は表示されない */
}
.pane_container {
display: flex; /* CSS3 flexbox による配置を有効に */
flex-direction: row; /* 子要素を横方向に並べる*/
flex: auto;
/* pane_container 同士を同じ位置において z-index を制御するため,位置を絶対指定に.
abosulute を指定すると,親要素の左上を基準とした位置に配置される
*/
position: absolute;
}
/* 左側のラベルペーン */
.label_pane {
width: 400px; /* この幅は実際には Store の中で設定され,ここの値はダミー */
}
/* ラベルとパイプラインの間のスプリッタ */
.window_splitter {
width: 10px;
min-width: 10px;
max-width: 10px;
border-right: 1px solid #ccc;
background-color: #eeeeee; /* ラベル部分と一体化させる */
cursor: col-resize;
}
/* パイプライン表示のペーン */
.pipeline_pane {
background-color: #fff;
}
/* ラベルのツールチップ */
.tool_tip {
color: #fff;
background: rgba(51, 51, 51, 0.9);
padding: 10px;
border-radius: 4px;
font-size: "12px";
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
border: 0px;
/*
box-shadow: 0px 0px 6px 3px rgb(51, 51, 51);
*/
position: absolute;
z-index: 100;
}
/* コマンドパレット */
.command_pallete {
background: rgb(243, 243, 243);
box-shadow: rgb(168, 168, 168) 0px 5px 8px;
padding: 5px;
width: 300px;
/*line-height: 1.4em;*/
font-size: 12px;
/* absolute 配置 かつleft/top を 非 auto にして margin を auto にすると中央配置になる */
margin: 0 auto;
left: 0;
right: 0;
/* 初期は非表示 */
visibility: hidden;
/* 絶対位置 */
position: absolute;
z-index: 100;
}
.command_pallete_input {
width: 100%;
margin-bottom: 6px;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.command_pallete_hint_item {
margin-bottom: 7px;
margin-top: 7px;
}
.command_pallete_hint_item_text {
padding-bottom: 3px;
padding-top: 3px;
float: left;
}
.command_pallete_hint_item_command {
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
border: 1px solid #999;
background: #eee;
border-radius: 4px;/*角の丸み*/
padding-left: 4px;
padding-right: 4px;
float: right;
}
/* プログレスバーのコンテナ */
.progress_bar_container {
width: 100%;
/* 絶対位置にして,オーバーレイする */
position: absolute;
z-index: 100;
}
/* アクティブなタブのプログレスバー */
.progress_bar_active {
background: rgb(100, 150, 255);
width: 0%;
height: 3px;
transition: width 50ms linear; /* アニメーション */
}
/* バックグラウンドでファイルを読んでるタブのプログレスバー */
.progress_bar_background {
background: rgb(180, 180, 180);
width: 0%;
height: 3px;
transition: width 50ms linear; /* アニメーション */
}
|
viewer.css
|
html, body {
width: 100%; /* ウィンドウ全体に*/
height: 100%;
margin: 0; /* すきまなく */
overflow: hidden; /* はみ出た部分は表示されない */
}
.pane_container {
display: flex; /* CSS3 flexbox による配置を有効に */
flex-direction: row; /* 子要素を横方向に並べる*/
flex: auto;
/* pane_container 同士を同じ位置において z-index を制御するため,位置を絶対指定に.
abosulute を指定すると,親要素の左上を基準とした位置に配置される
*/
position: absolute;
}
/* 左側のラベルペーン */
.label_pane {
width: 400px; /* この幅は実際には Store の中で設定され,ここの値はダミー */
}
/* ラベルとパイプラインの間のスプリッタ */
.window_splitter {
width: 10px;
min-width: 10px;
max-width: 10px;
border-right: 1px solid #ccc;
background-color: #eeeeee; /* ラベル部分と一体化させる */
cursor: col-resize;
}
/* パイプライン表示のペーン */
.pipeline_pane {
background-color: #fff;
}
/* ラベルのツールチップ */
.tool_tip {
color: #fff;
background: rgba(51, 51, 51, 0.9);
padding: 10px;
border-radius: 4px;
font-size: "12px";
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
border: 0px;
/*
box-shadow: 0px 0px 6px 3px rgb(51, 51, 51);
*/
position: absolute;
z-index: 100;
}
/* コマンドパレット */
.command_pallete {
background: rgb(243, 243, 243);
box-shadow: rgb(168, 168, 168) 0px 5px 8px;
padding: 5px;
width: 300px;
/*line-height: 1.4em;*/
font-size: 12px;
/* absolute 配置 かつleft/top を 非 auto にして margin を auto にすると中央配置になる */
margin: 0 auto;
left: 0;
right: 0;
/* 初期は非表示 */
visibility: hidden;
/* 絶対位置 */
position: absolute;
z-index: 100;
}
.command_pallete_input {
width: 100%;
margin-bottom: 6px;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.command_pallete_hint_item {
margin-bottom: 7px;
margin-top: 7px;
}
.command_pallete_hint_item_text {
padding-bottom: 3px;
padding-top: 3px;
float: left;
}
.command_pallete_hint_item_command {
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
border: 1px solid #999;
background: #eee;
border-radius: 4px;/*角の丸み*/
padding-left: 4px;
padding-right: 4px;
float: right;
}
/* プログレスバーのコンテナ */
.progress_bar_container {
width: 100%;
/* 絶対位置にして,オーバーレイする */
position: absolute;
z-index: 100;
}
/* アクティブなタブのプログレスバー */
.progress_bar_active {
background: rgb(100, 150, 255);
width: 0%;
height: 3px;
transition: width 50ms linear; /* アニメーション */
}
/* バックグラウンドでファイルを読んでるタブのプログレスバー */
.progress_bar_background {
background: rgb(180, 180, 180);
width: 0%;
height: 3px;
transition: width 50ms linear; /* アニメーション */
}
| 0.33372 | 0.096748 |
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color:rgb(0, 0, 0);
text-align: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#main h1{
color: white;
text-shadow: 0 0 10px red, 0 0 10px red;
font-family:Georgia, 'Times New Roman', Times, serif;
}
.container {
width: 80%;
}
#main #pExcuse{
color: #fff;
font-weight: bold;
text-shadow: 1px 1px orangered, 0 0 20px rgba(255, 255, 255, 0.75);
background-color:#000;
padding:10px;
width: 60%;
margin-left: 20%;
margin-right: 20%;
margin-top:35px;
margin-bottom: 20px;
line-height:30px;
border-radius: 15px;
}
.button {
padding: 10px;
background-color: yellow;
color: black;
border: 0px;
border-radius: 10px;
padding: 0.5rem 2%;
font-size: smaller;
font-weight: bolder;
margin-top: 20px;
outline: 0 !important;
}
.button:hover {
box-shadow: 0 0 15px yellow;
outline: 0 !important;
}
.button:focus {
box-shadow: 0 0 15px yellow;
outline: 0 !important;
}
#main {
background-color: rgba(27, 27, 27, 0.205);
padding-top:85px;
padding-bottom: 15px;
border-radius: 0px 0px 15px 15px;
border: 1px solid orange;
box-shadow: 0 0 10px orange;
border-top: none;
}
.link {
text-align: center;
color: #fff;
margin-top: 25px;
}
.link a{
text-decoration: underline;
font-weight: bold;
color:tomato;
}
.link a:hover{
color: white;
text-shadow: 0 0px 10px orange, 0 0 15px orange;
}
.modal-body{
background-color: #000;
color:#fff;
border: 3px solid #fff;
border-radius: 10px;
}
#copy {
background-color: #000;
color: white;
font-weight: bold;
border: 1px solid white;
}
#copy:focus{
outline: 0;
box-shadow: 0 0 15px 0.3rem rgba(0, 123, 255, 0.36);
}
.btn-danger:focus{
box-shadow: 0 0 0px 0.3rem rgba(225,83,97,0.5);
}
#copy:hover{
background-color:white;
color:black;
}
.footer{
color:#fff;
font-size:x-large;
}
@media only screen and (max-width: 600px) {
#main h1{
font-size: 30px;
}
#main {
background-color: rgba(43, 42, 42, 0.34);
padding-top:30px;
padding-bottom: 15px;
border-radius: 15px;
margin-top: 80px;
border: 1px solid orange;
box-shadow: 0 0 10px orange;
}
.container {
width: 100%;
}
.modal-body{
border: 4px solid #fff;
}
#main #pExcuse{
text-shadow: 0.8px 0.8px orangered, 0 0 20px rgba(255, 255, 255, 0.856);
width: 75%;
margin-left: 12.5%;
margin-right: 12.5%;
margin-bottom: 20px;
}
.button {
margin-top: 25px;
padding: 0.5rem 4%;
}
.button:hover {
box-shadow: 0 0 10px yellow, 0 0 16px yellow;
}
#copy {
border: 0.5px solid white;
}
}
|
css/style.css
|
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color:rgb(0, 0, 0);
text-align: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#main h1{
color: white;
text-shadow: 0 0 10px red, 0 0 10px red;
font-family:Georgia, 'Times New Roman', Times, serif;
}
.container {
width: 80%;
}
#main #pExcuse{
color: #fff;
font-weight: bold;
text-shadow: 1px 1px orangered, 0 0 20px rgba(255, 255, 255, 0.75);
background-color:#000;
padding:10px;
width: 60%;
margin-left: 20%;
margin-right: 20%;
margin-top:35px;
margin-bottom: 20px;
line-height:30px;
border-radius: 15px;
}
.button {
padding: 10px;
background-color: yellow;
color: black;
border: 0px;
border-radius: 10px;
padding: 0.5rem 2%;
font-size: smaller;
font-weight: bolder;
margin-top: 20px;
outline: 0 !important;
}
.button:hover {
box-shadow: 0 0 15px yellow;
outline: 0 !important;
}
.button:focus {
box-shadow: 0 0 15px yellow;
outline: 0 !important;
}
#main {
background-color: rgba(27, 27, 27, 0.205);
padding-top:85px;
padding-bottom: 15px;
border-radius: 0px 0px 15px 15px;
border: 1px solid orange;
box-shadow: 0 0 10px orange;
border-top: none;
}
.link {
text-align: center;
color: #fff;
margin-top: 25px;
}
.link a{
text-decoration: underline;
font-weight: bold;
color:tomato;
}
.link a:hover{
color: white;
text-shadow: 0 0px 10px orange, 0 0 15px orange;
}
.modal-body{
background-color: #000;
color:#fff;
border: 3px solid #fff;
border-radius: 10px;
}
#copy {
background-color: #000;
color: white;
font-weight: bold;
border: 1px solid white;
}
#copy:focus{
outline: 0;
box-shadow: 0 0 15px 0.3rem rgba(0, 123, 255, 0.36);
}
.btn-danger:focus{
box-shadow: 0 0 0px 0.3rem rgba(225,83,97,0.5);
}
#copy:hover{
background-color:white;
color:black;
}
.footer{
color:#fff;
font-size:x-large;
}
@media only screen and (max-width: 600px) {
#main h1{
font-size: 30px;
}
#main {
background-color: rgba(43, 42, 42, 0.34);
padding-top:30px;
padding-bottom: 15px;
border-radius: 15px;
margin-top: 80px;
border: 1px solid orange;
box-shadow: 0 0 10px orange;
}
.container {
width: 100%;
}
.modal-body{
border: 4px solid #fff;
}
#main #pExcuse{
text-shadow: 0.8px 0.8px orangered, 0 0 20px rgba(255, 255, 255, 0.856);
width: 75%;
margin-left: 12.5%;
margin-right: 12.5%;
margin-bottom: 20px;
}
.button {
margin-top: 25px;
padding: 0.5rem 4%;
}
.button:hover {
box-shadow: 0 0 10px yellow, 0 0 16px yellow;
}
#copy {
border: 0.5px solid white;
}
}
| 0.438304 | 0.081886 |
body{
background-color: #edeff3;
}
.container{
padding-left: 0;
padding-right: 0;
}
/*轮播图*/
#carousel{
width: 100%;
position: relative;
overflow: hidden;
}
#carousel .imgList{
position: absolute;
left: 0;
top: 0;
height: 100%;
}
.imgList>img{
height: 100%;
display: block;
margin: auto;
}
#carousel .numIndicator{
position: absolute;
bottom: 15px;
right: 15px;
}
.numIndicator{
text-align: center;
background-color: rgba(0, 0, 0, 0.21);
color: white;
font-size: 12px;
padding: 2px 8px;
}
.numIndicator .currentIndex{
color: #34c86c;
}
#carousel .back{
position: absolute;
left: 15px;
top: 15px;
background-color: rgba(0, 0, 0, 0.21);
color: white;
text-align: center;
width: 30px;
height: 30px;
}
#carousel .back a span{
color: white;
line-height: 30px;
}
.lookImgHint {
position: absolute;
top: 0;
left: 0;
width: 100%;
color: white;
font-size: 10px;
text-align: center;
}
.lookImgHint span{
background-color: rgba(0, 0, 0, 0.21);
padding: 2px 6px;
margin-top:8px;
display: inline-block;
}
.houseBg{
background-color: white;
padding: 0 15px;
}
/*标题及发布时间*/
.titleInfo{
}
.titleInfo .collection{
}
.titleInfo .collection a{
height: 100%;
text-decoration: none;
/*width: 60px;*/
}
.titleInfo .collection a span{
text-align: center;
display: block;
color: #34c86c;
font-size: 13px;
}
.titleInfo .collection a span.glyphicon{
font-size: 20px;
margin-bottom: 5px;
}
.tags{
height: 34px;
padding-top: 8px;
}
.tags>div,.tags>span{
float: left;
margin-right: 5px;
font-size: 11px;
line-height: 17px;
padding: 0 3px;
background-color: rgba(89, 97, 103, 0.2);
}
.tags .rent-mode{
color: #337ab7;
background-color: rgba(51, 122, 183, 0.2);
}
.tags .benefit{
color: #34c86c;
background-color: rgba(52, 200, 108, 0.2);
}
.releaseDate{
}
.releaseDate span{
color: #8b8b8b;
font-size: 10px;
font-weight: normal;
margin-right: 6px;
display: inline-block;
}
/*房间概况*/
.general {
font-size: 13px;
}
.general .row{
height: 25px;
margin-left: 0;
margin-right: 0;
}
.col-xs-6{
padding-left: 0;
padding-right: 0;
}
.general .key{
margin-right: 8px;
}
/*房间配套*/
.facilities{
margin-top: 10px;
width: 100%;
}
.facilities ul li {
float: left;
/*margin-right: 5px;*/
margin-bottom: 10px;
width: 25%;
}
.facilities ul li .okSign {
font-size: 11px;
font-weight: 100;
}
.facilities ul li .facility{
font-size: 12px;
padding-top: 5px;
}
.facility-image {
height: 28px;
margin: 0 auto;
display: block;
}
/*联系人以及举报*/
.glyphicon-earphone, .glyphicon-envelope{
height: 100%;
font-weight: bold;
font-size: 18px;
margin-right: 15px;
color: #34c86c;
}
.contact {
padding-top: 10px;
}
.phone,.weixin,.qq{
/*height: 40px;*/
padding-bottom: 10px;
}
.contact-accusation .weixin>img {
width: 24px;
height: 24px;
margin-right: 10px;
}
.contact-accusation .accusation{
margin-top: 10px;
}
.contact-accusation .accusation a{
text-decoration: none;
}
.contact-accusation .accusation a span{
text-align: center;
display: block;
font-size: 13px;
}
.contact-accusation .accusation a span.glyphicon{
font-size: 20px;
margin-bottom: 5px;
}
/*查看大图页面*/
.bigCarousel{
background-color: black;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
}
.bigCarousel .bigImgList{
position: absolute;
top: 0;
left: 0;
}
.hidden{
display: none;
}
.numIndicatorBg{
position: absolute;
bottom: 60px;
left: 0;
width: 100%;
}
.bigCarousel .numIndicatorBg .numIndicator{
position: relative;
margin: 0 auto;
width: 50px;
}
|
web/m/css/detail.css
|
body{
background-color: #edeff3;
}
.container{
padding-left: 0;
padding-right: 0;
}
/*轮播图*/
#carousel{
width: 100%;
position: relative;
overflow: hidden;
}
#carousel .imgList{
position: absolute;
left: 0;
top: 0;
height: 100%;
}
.imgList>img{
height: 100%;
display: block;
margin: auto;
}
#carousel .numIndicator{
position: absolute;
bottom: 15px;
right: 15px;
}
.numIndicator{
text-align: center;
background-color: rgba(0, 0, 0, 0.21);
color: white;
font-size: 12px;
padding: 2px 8px;
}
.numIndicator .currentIndex{
color: #34c86c;
}
#carousel .back{
position: absolute;
left: 15px;
top: 15px;
background-color: rgba(0, 0, 0, 0.21);
color: white;
text-align: center;
width: 30px;
height: 30px;
}
#carousel .back a span{
color: white;
line-height: 30px;
}
.lookImgHint {
position: absolute;
top: 0;
left: 0;
width: 100%;
color: white;
font-size: 10px;
text-align: center;
}
.lookImgHint span{
background-color: rgba(0, 0, 0, 0.21);
padding: 2px 6px;
margin-top:8px;
display: inline-block;
}
.houseBg{
background-color: white;
padding: 0 15px;
}
/*标题及发布时间*/
.titleInfo{
}
.titleInfo .collection{
}
.titleInfo .collection a{
height: 100%;
text-decoration: none;
/*width: 60px;*/
}
.titleInfo .collection a span{
text-align: center;
display: block;
color: #34c86c;
font-size: 13px;
}
.titleInfo .collection a span.glyphicon{
font-size: 20px;
margin-bottom: 5px;
}
.tags{
height: 34px;
padding-top: 8px;
}
.tags>div,.tags>span{
float: left;
margin-right: 5px;
font-size: 11px;
line-height: 17px;
padding: 0 3px;
background-color: rgba(89, 97, 103, 0.2);
}
.tags .rent-mode{
color: #337ab7;
background-color: rgba(51, 122, 183, 0.2);
}
.tags .benefit{
color: #34c86c;
background-color: rgba(52, 200, 108, 0.2);
}
.releaseDate{
}
.releaseDate span{
color: #8b8b8b;
font-size: 10px;
font-weight: normal;
margin-right: 6px;
display: inline-block;
}
/*房间概况*/
.general {
font-size: 13px;
}
.general .row{
height: 25px;
margin-left: 0;
margin-right: 0;
}
.col-xs-6{
padding-left: 0;
padding-right: 0;
}
.general .key{
margin-right: 8px;
}
/*房间配套*/
.facilities{
margin-top: 10px;
width: 100%;
}
.facilities ul li {
float: left;
/*margin-right: 5px;*/
margin-bottom: 10px;
width: 25%;
}
.facilities ul li .okSign {
font-size: 11px;
font-weight: 100;
}
.facilities ul li .facility{
font-size: 12px;
padding-top: 5px;
}
.facility-image {
height: 28px;
margin: 0 auto;
display: block;
}
/*联系人以及举报*/
.glyphicon-earphone, .glyphicon-envelope{
height: 100%;
font-weight: bold;
font-size: 18px;
margin-right: 15px;
color: #34c86c;
}
.contact {
padding-top: 10px;
}
.phone,.weixin,.qq{
/*height: 40px;*/
padding-bottom: 10px;
}
.contact-accusation .weixin>img {
width: 24px;
height: 24px;
margin-right: 10px;
}
.contact-accusation .accusation{
margin-top: 10px;
}
.contact-accusation .accusation a{
text-decoration: none;
}
.contact-accusation .accusation a span{
text-align: center;
display: block;
font-size: 13px;
}
.contact-accusation .accusation a span.glyphicon{
font-size: 20px;
margin-bottom: 5px;
}
/*查看大图页面*/
.bigCarousel{
background-color: black;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
}
.bigCarousel .bigImgList{
position: absolute;
top: 0;
left: 0;
}
.hidden{
display: none;
}
.numIndicatorBg{
position: absolute;
bottom: 60px;
left: 0;
width: 100%;
}
.bigCarousel .numIndicatorBg .numIndicator{
position: relative;
margin: 0 auto;
width: 50px;
}
| 0.483648 | 0.077797 |
body {
margin: 0;
margin-top: 2%;
display: grid;
}
.container-center{
margin: auto;
border-radius: 4px;
padding: 1%;
color: rgb(16, 16, 16);
background-color: rgba(198, 22, 233, 0.193);
}
.header{
background-color: rgb(196, 150, 240);
padding: 10px 25% 10px ;
text-align: center;
margin-bottom: 1%;
}
.header .title{
font-size: 18pt;
}
.chat{
width: auto;
height: 68vh;
overflow-y: scroll;
position: static;
display: grid;
grid-template-rows: 2;
}
::-webkit-scrollbar{
background-color: rgba(222, 98, 233, 0.205);
width: 5px;
height: max-content;
border-radius: 4px;
}
::-webkit-scrollbar-thumb{
background-color: rgba(170, 47, 201, 0.515);
border-radius: 4px;
}
#texto{
width: 90vw;
height: 34px;
border-radius: 4px;
border-style: hidden;
position: absolute;
top: 91.5%;
left: 1%;
background-color: rgba(242, 180, 250, 0.556);
}
.send{
width: 34px;
height: 34px;
border-radius: 100%;
font-size: 15pt;
padding: 3px;
background-color: rgb(196, 150, 240);
border: 0;
color: aliceblue;
font-weight: bolder;
position: absolute;
top: 91.5%;
left: 93%;
}
::-webkit-input-placeholder{
color: black;
background-color: rgba(255, 255, 255, 0.275);
padding: 9px;
padding-left: 0;
border-radius: 4px ;
}
.chat .msg-L{
background-color: rgb(240, 177, 211);
border-radius: 16px 16px 16px 0px;
width: max-content;
max-width: 50%;
height: fit-content;
padding: auto;
position: relative;
left: 0%;
margin: 9pt;
animation: aparecer-L 1s forwards;
animation-delay: 100ms;
justify-self: start;
}
.chat .msg-R{
margin-top: auto;
background-color: rgb(240, 156, 201);
border-radius: 16px 16px 0px 16px;
width: max-content;
max-width: 50%;
height: fit-content;
padding: auto;
position: relative;
margin: 9pt;
animation: aparecer-R 1s forwards;
animation-delay: 100ms;
justify-self: end;
align-items: start;
}
@keyframes aparecer-L {
from{
opacity: 0.4;
width: 0;
position: absolute;
left: -100px;
top: auto;
}
to{
opacity: 1;
width: max-content;
}
}
@keyframes aparecer-R {
from{
opacity: 0.4;
width: 0;
position: absolute;
right: -100px;
}
to{
opacity: 1;
width: max-content;
}
}
.conteudo{
font-family: Verdana, Geneva, Tahoma, sans-serif;
padding: 15px;
padding-bottom: 9px;
font-size: 9pt;
max-width: 100%;
}
.hora-L{
font-size: 6pt;
margin-top: 10px;
background-color: rgba(255, 196, 245, 0.337);
width: min-content;
padding: auto 3px;
border-radius: 4px;
}
.hora-R{
font-size: 6pt;
margin-top: 10px;
background-color: rgba(255, 196, 245, 0.337);
width: min-content;
padding: auto 3px;
border-radius: 4px;
}
|
Web/Teste Chat/source/style.css
|
body {
margin: 0;
margin-top: 2%;
display: grid;
}
.container-center{
margin: auto;
border-radius: 4px;
padding: 1%;
color: rgb(16, 16, 16);
background-color: rgba(198, 22, 233, 0.193);
}
.header{
background-color: rgb(196, 150, 240);
padding: 10px 25% 10px ;
text-align: center;
margin-bottom: 1%;
}
.header .title{
font-size: 18pt;
}
.chat{
width: auto;
height: 68vh;
overflow-y: scroll;
position: static;
display: grid;
grid-template-rows: 2;
}
::-webkit-scrollbar{
background-color: rgba(222, 98, 233, 0.205);
width: 5px;
height: max-content;
border-radius: 4px;
}
::-webkit-scrollbar-thumb{
background-color: rgba(170, 47, 201, 0.515);
border-radius: 4px;
}
#texto{
width: 90vw;
height: 34px;
border-radius: 4px;
border-style: hidden;
position: absolute;
top: 91.5%;
left: 1%;
background-color: rgba(242, 180, 250, 0.556);
}
.send{
width: 34px;
height: 34px;
border-radius: 100%;
font-size: 15pt;
padding: 3px;
background-color: rgb(196, 150, 240);
border: 0;
color: aliceblue;
font-weight: bolder;
position: absolute;
top: 91.5%;
left: 93%;
}
::-webkit-input-placeholder{
color: black;
background-color: rgba(255, 255, 255, 0.275);
padding: 9px;
padding-left: 0;
border-radius: 4px ;
}
.chat .msg-L{
background-color: rgb(240, 177, 211);
border-radius: 16px 16px 16px 0px;
width: max-content;
max-width: 50%;
height: fit-content;
padding: auto;
position: relative;
left: 0%;
margin: 9pt;
animation: aparecer-L 1s forwards;
animation-delay: 100ms;
justify-self: start;
}
.chat .msg-R{
margin-top: auto;
background-color: rgb(240, 156, 201);
border-radius: 16px 16px 0px 16px;
width: max-content;
max-width: 50%;
height: fit-content;
padding: auto;
position: relative;
margin: 9pt;
animation: aparecer-R 1s forwards;
animation-delay: 100ms;
justify-self: end;
align-items: start;
}
@keyframes aparecer-L {
from{
opacity: 0.4;
width: 0;
position: absolute;
left: -100px;
top: auto;
}
to{
opacity: 1;
width: max-content;
}
}
@keyframes aparecer-R {
from{
opacity: 0.4;
width: 0;
position: absolute;
right: -100px;
}
to{
opacity: 1;
width: max-content;
}
}
.conteudo{
font-family: Verdana, Geneva, Tahoma, sans-serif;
padding: 15px;
padding-bottom: 9px;
font-size: 9pt;
max-width: 100%;
}
.hora-L{
font-size: 6pt;
margin-top: 10px;
background-color: rgba(255, 196, 245, 0.337);
width: min-content;
padding: auto 3px;
border-radius: 4px;
}
.hora-R{
font-size: 6pt;
margin-top: 10px;
background-color: rgba(255, 196, 245, 0.337);
width: min-content;
padding: auto 3px;
border-radius: 4px;
}
| 0.589244 | 0.102125 |
body {
background-image: url("images/blue_music_bckgrnd.jpg");
background-size: cover;
color: white;
font-size: larger;
font-family: 'New Tegomin', serif;
}
body.contain {
background-image: url("images/blue_music_bckgrnd.jpg");
background-size: contain;
color: white;
font-size: larger;
font-family: 'New Tegomin', serif;
}
a {
color: #ffe300;
text-shadow: 1px 1px black;
transition: .3s;
}
a:hover {
color:lime;
text-shadow:1.5px 1.5px black;
}
header {
text-align: center;
}
header h1 {
margin-top: 0px;
text-shadow: 2px 2px black;
}
h1, h2, h3, h4 {
text-shadow: 2px 2px black;
}
div.navbar {
padding-bottom: 20px;
padding-top: 10px;
}
a.navLink {
padding-left: 20px;
padding-right: 20px;
font-size: 1.2em;
color: #ffe300;
text-shadow: 1px 1px black;
transition:.3s;
}
a.navLink:hover {
padding-left: 20px;
padding-right: 20px;
font-size: 1.2em;
color:lime;
text-shadow:1.5px 1.5px black;
}
footer {
display: flex;
}
p.foot {
flex: 1;
text-align: center;
}
/*a {
color: lime;
}
*/
/* HOMEPAGE STYLING */
section.index {
padding-top: 10px;
margin-left: 5%;
margin-right: 5%;
margin-top: 2%;
margin-bottom: 2%;
}
div.index {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
/*
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;*/
}
div.homeImage {
display: flex;
margin: auto;
justify-content: center;
}
figure {
position:relative;
}
figcaption.imgSource {
text-align:right;
font-size:small;
position:absolute;
bottom: 8px;
left: 16px;
}
img#bluesArt {
width: 50vw;
object-fit:contain;
}
div.homePara {
text-align: center;
padding-top: 5px;
padding-bottom: 10px;
}
div.cytoText h3{
text-align:center;
}
h2.index {
text-indent: 2em;
}
div.research {
padding-left: 3%;
padding-right:3%;
padding-top: 1%;
padding-bottom: 1%;
}
p.research {
padding-bottom: 1%;
}
li.research {
line-height: 2em;
}
/* 404 ERROR PAGE STYLING */
section.error {
padding-top: 20px;
}
h3.errorPara {
text-align: center;
}
div.error {
display: flex;
justify-content: center;
margin: auto;
padding-left: 20%;
padding-right: 20%;
}
img#error {
flex: 1;
width: 50%;
}
/* ABOUT PAGE STYLING */
section.about {
text-align: center;
margin-left: 5%;
margin-right: 5%;
margin-top: 2%;
margin-bottom: 2%;
}
div.bios {
display: flex;
}
div.Nicky {
flex: 1
}
img#Nickpic {
width: 40%;
border-radius: 25px;
}
div.Katherine {
flex: 1;
}
div.Mia {
flex: 1;
}
img#miaPic {
width: 56%;
border-radius: 25px;
}
/* SOURCE PAGE */
section.source {
margin-left: 5%;
margin-right: 5%;
margin-top: 2%;
margin-bottom: 2%;
}
section.source h2 {
text-align: center;
}
div.sourcetop {
}
div.noteBckgrnd {
background-image: url(images/stencil_artist.jpg);
padding-left: 3%;
padding-right: 3%;
padding-top: 1%;
padding-bottom: 1%;
border-radius:30px;
opacity: .7;
/*background-position: 10% 10%*/
background-position: -160% top;
}
/* START KEYSTONE DH SETTINGS */
div.noteBckgrndKDH {
background-image: url(images/stencil_artist.jpg);
padding-left: 3%;
padding-right: 3%;
padding-top: 1%;
padding-bottom: 1%;
border-radius:30px;
opacity: .7;
/*background-position: 10% 10%*/
background-position: -2210% top;
}
/* END KEYSTONE DH SETTINGS */
p.source {
text-indent: 2em;
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;
}
p.note {
padding-right: 40%;
}
/*p.source a {
color: lime;
}*/
div.sourceimg {
/*display:flex;*/
justify-content: right;
display: flex;
margin: auto;
}
img#source {
width: 50%;
border-radius: 35px;
opacity: .75;
flex-shrink: 1;
}
div.sourceSVG {
background-color: black;
border-radius: 25px;
margin: 1%;
opacity:.75;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-self:center;
}
div.sourceSVG h2 {
font-size:1.5em;
padding-top: 1%;
}
div.SVGcontain {
display:flex;
justify-content:center;
}
/* ANALYSIS PAGE */
section.analysis {
margin: 10px;
}
div.analysis {
margin: 15px;
}
h2.analysis {
text-align: center;
}
div.imgTextWrap {
display: flex;
flex-wrap: wrap;
flex-direction:row;
}
div.text {
display:flex;
flex-direction:column;
flex-wrap: wrap;
flex:2;
}
div.xqueryText {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 15px;
padding-right: 15px;
padding-top: 2px;
padding-bottom: 2px;
margin-top:5px;
}
div.analysisImg {
/*display:flex;*/
justify-content: right;
position: relative;
flex: 2;
display: contents;
}
img.analyimg {
width: 40%;
min-height: 70vh;
max-height: 75vh;
border-radius: 30px;
padding-left: 10px;
}
div.method {
margin: 15px;
}
h3.method {
text-indent: 3em;
font-weight: bold;
}
div.analysisText {
flex: 1;
position: relative;
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:15px;
padding-left: 15px;
padding-right: 25px;
padding-top: 2px;
padding-bottom: 2px;
margin-bottom:5px;
}
div.spacyText {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 15px;
padding-right: 15px;
padding-top: 2px;
padding-bottom: 2px;
margin-top:15px;
}
p.method {
text-indent: 2em;
}
ul.methodInfo {
}
div.networkDesc {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;
}
div.graphText {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;
margin-top:5px;
}
/* GRAPHS STYLING */
embed.decGraph {
width: 20vw;
object-fit:contain;
transition: .4s;
}
embed.decGraph:hover {
width: 30vw;
}
embed.collec {
width:40vw;
}
div.spacySVG {
display: flex;
flex-direction: column;
justify-content: space-around;;
/*align-items: center;*/
margin:auto;
}
figure.ent {
width:50vw;
}
div.decSect {
display:flex;
flex-direction:column;
justify-content: space-around;
align-items: center;
/*margin:auto;*/
}
div.row1 {
display:flex;
flex-direction:row;
align-items:center;
justify-content:space-around;
/*padding-right: 5%;
padding-left:5%;*/
padding-top:1%;
padding-bottom:1%;
}
div.row {
display:flex;
flex-direction:row;
align-items:center;
justify-content:space-around;
/*padding-right: 5%;
padding-left:5%;*/
padding-top:1%;
padding-bottom:1%;
flex-wrap:wrap;
}
div.row figure {
margin:auto;
}
figcaption {
text-align:center;
}
figcaption a {
text-decoration:none;
transition: .3s;
}
figcaption a:hover {
color: lime;
text-decoration:underline;
}
div.graphDesc {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;
}
div.graphDesc p {
text-indent: 2em;
}
/* CYTOSCAPE */
#cy {
width: 65vw;
height:70vh;
position:absolute;
/*background-color:white;*/
display:flex;
margin:auto;
border-style:double;
}
h4.cytoTitle {
text-align:center;
}
div.graphics {
display:flex;
height:75vh;
justify-content:center;
}
#cy2 {
width: 80vw;
height:70vh;
position:absolute;
/*background-color:white;*/
display:flex;
margin:auto;
border-style:double;
}
div.networkDesc p{
text-indent: 2em;
}
span.artists {
color:aqua;
}
span.songwrit {
color:lightpink
}
span.songs {
color:red;
}
span.tradit {
color:aquamarine;
}
p.center {
text-align:center;
margin: 0;
}
div.cytoText {
margin-top:4%;
}
div.sourceCytoTxt {
text-align:center;
margin-top: 3%;
}
|
docs/blues-styling.css
|
body {
background-image: url("images/blue_music_bckgrnd.jpg");
background-size: cover;
color: white;
font-size: larger;
font-family: 'New Tegomin', serif;
}
body.contain {
background-image: url("images/blue_music_bckgrnd.jpg");
background-size: contain;
color: white;
font-size: larger;
font-family: 'New Tegomin', serif;
}
a {
color: #ffe300;
text-shadow: 1px 1px black;
transition: .3s;
}
a:hover {
color:lime;
text-shadow:1.5px 1.5px black;
}
header {
text-align: center;
}
header h1 {
margin-top: 0px;
text-shadow: 2px 2px black;
}
h1, h2, h3, h4 {
text-shadow: 2px 2px black;
}
div.navbar {
padding-bottom: 20px;
padding-top: 10px;
}
a.navLink {
padding-left: 20px;
padding-right: 20px;
font-size: 1.2em;
color: #ffe300;
text-shadow: 1px 1px black;
transition:.3s;
}
a.navLink:hover {
padding-left: 20px;
padding-right: 20px;
font-size: 1.2em;
color:lime;
text-shadow:1.5px 1.5px black;
}
footer {
display: flex;
}
p.foot {
flex: 1;
text-align: center;
}
/*a {
color: lime;
}
*/
/* HOMEPAGE STYLING */
section.index {
padding-top: 10px;
margin-left: 5%;
margin-right: 5%;
margin-top: 2%;
margin-bottom: 2%;
}
div.index {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
/*
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;*/
}
div.homeImage {
display: flex;
margin: auto;
justify-content: center;
}
figure {
position:relative;
}
figcaption.imgSource {
text-align:right;
font-size:small;
position:absolute;
bottom: 8px;
left: 16px;
}
img#bluesArt {
width: 50vw;
object-fit:contain;
}
div.homePara {
text-align: center;
padding-top: 5px;
padding-bottom: 10px;
}
div.cytoText h3{
text-align:center;
}
h2.index {
text-indent: 2em;
}
div.research {
padding-left: 3%;
padding-right:3%;
padding-top: 1%;
padding-bottom: 1%;
}
p.research {
padding-bottom: 1%;
}
li.research {
line-height: 2em;
}
/* 404 ERROR PAGE STYLING */
section.error {
padding-top: 20px;
}
h3.errorPara {
text-align: center;
}
div.error {
display: flex;
justify-content: center;
margin: auto;
padding-left: 20%;
padding-right: 20%;
}
img#error {
flex: 1;
width: 50%;
}
/* ABOUT PAGE STYLING */
section.about {
text-align: center;
margin-left: 5%;
margin-right: 5%;
margin-top: 2%;
margin-bottom: 2%;
}
div.bios {
display: flex;
}
div.Nicky {
flex: 1
}
img#Nickpic {
width: 40%;
border-radius: 25px;
}
div.Katherine {
flex: 1;
}
div.Mia {
flex: 1;
}
img#miaPic {
width: 56%;
border-radius: 25px;
}
/* SOURCE PAGE */
section.source {
margin-left: 5%;
margin-right: 5%;
margin-top: 2%;
margin-bottom: 2%;
}
section.source h2 {
text-align: center;
}
div.sourcetop {
}
div.noteBckgrnd {
background-image: url(images/stencil_artist.jpg);
padding-left: 3%;
padding-right: 3%;
padding-top: 1%;
padding-bottom: 1%;
border-radius:30px;
opacity: .7;
/*background-position: 10% 10%*/
background-position: -160% top;
}
/* START KEYSTONE DH SETTINGS */
div.noteBckgrndKDH {
background-image: url(images/stencil_artist.jpg);
padding-left: 3%;
padding-right: 3%;
padding-top: 1%;
padding-bottom: 1%;
border-radius:30px;
opacity: .7;
/*background-position: 10% 10%*/
background-position: -2210% top;
}
/* END KEYSTONE DH SETTINGS */
p.source {
text-indent: 2em;
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;
}
p.note {
padding-right: 40%;
}
/*p.source a {
color: lime;
}*/
div.sourceimg {
/*display:flex;*/
justify-content: right;
display: flex;
margin: auto;
}
img#source {
width: 50%;
border-radius: 35px;
opacity: .75;
flex-shrink: 1;
}
div.sourceSVG {
background-color: black;
border-radius: 25px;
margin: 1%;
opacity:.75;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-self:center;
}
div.sourceSVG h2 {
font-size:1.5em;
padding-top: 1%;
}
div.SVGcontain {
display:flex;
justify-content:center;
}
/* ANALYSIS PAGE */
section.analysis {
margin: 10px;
}
div.analysis {
margin: 15px;
}
h2.analysis {
text-align: center;
}
div.imgTextWrap {
display: flex;
flex-wrap: wrap;
flex-direction:row;
}
div.text {
display:flex;
flex-direction:column;
flex-wrap: wrap;
flex:2;
}
div.xqueryText {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 15px;
padding-right: 15px;
padding-top: 2px;
padding-bottom: 2px;
margin-top:5px;
}
div.analysisImg {
/*display:flex;*/
justify-content: right;
position: relative;
flex: 2;
display: contents;
}
img.analyimg {
width: 40%;
min-height: 70vh;
max-height: 75vh;
border-radius: 30px;
padding-left: 10px;
}
div.method {
margin: 15px;
}
h3.method {
text-indent: 3em;
font-weight: bold;
}
div.analysisText {
flex: 1;
position: relative;
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:15px;
padding-left: 15px;
padding-right: 25px;
padding-top: 2px;
padding-bottom: 2px;
margin-bottom:5px;
}
div.spacyText {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 15px;
padding-right: 15px;
padding-top: 2px;
padding-bottom: 2px;
margin-top:15px;
}
p.method {
text-indent: 2em;
}
ul.methodInfo {
}
div.networkDesc {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;
}
div.graphText {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;
margin-top:5px;
}
/* GRAPHS STYLING */
embed.decGraph {
width: 20vw;
object-fit:contain;
transition: .4s;
}
embed.decGraph:hover {
width: 30vw;
}
embed.collec {
width:40vw;
}
div.spacySVG {
display: flex;
flex-direction: column;
justify-content: space-around;;
/*align-items: center;*/
margin:auto;
}
figure.ent {
width:50vw;
}
div.decSect {
display:flex;
flex-direction:column;
justify-content: space-around;
align-items: center;
/*margin:auto;*/
}
div.row1 {
display:flex;
flex-direction:row;
align-items:center;
justify-content:space-around;
/*padding-right: 5%;
padding-left:5%;*/
padding-top:1%;
padding-bottom:1%;
}
div.row {
display:flex;
flex-direction:row;
align-items:center;
justify-content:space-around;
/*padding-right: 5%;
padding-left:5%;*/
padding-top:1%;
padding-bottom:1%;
flex-wrap:wrap;
}
div.row figure {
margin:auto;
}
figcaption {
text-align:center;
}
figcaption a {
text-decoration:none;
transition: .3s;
}
figcaption a:hover {
color: lime;
text-decoration:underline;
}
div.graphDesc {
background-color: hsla(0, 0%, 0%, 0.4);
border-radius:25px;
padding-left: 25px;
padding-right: 25px;
padding-top: 5px;
padding-bottom: 5px;
}
div.graphDesc p {
text-indent: 2em;
}
/* CYTOSCAPE */
#cy {
width: 65vw;
height:70vh;
position:absolute;
/*background-color:white;*/
display:flex;
margin:auto;
border-style:double;
}
h4.cytoTitle {
text-align:center;
}
div.graphics {
display:flex;
height:75vh;
justify-content:center;
}
#cy2 {
width: 80vw;
height:70vh;
position:absolute;
/*background-color:white;*/
display:flex;
margin:auto;
border-style:double;
}
div.networkDesc p{
text-indent: 2em;
}
span.artists {
color:aqua;
}
span.songwrit {
color:lightpink
}
span.songs {
color:red;
}
span.tradit {
color:aquamarine;
}
p.center {
text-align:center;
margin: 0;
}
div.cytoText {
margin-top:4%;
}
div.sourceCytoTxt {
text-align:center;
margin-top: 3%;
}
| 0.29209 | 0.140602 |
html, body {
margin: 0;
padding: 0;
font-size: 1.0em;
}
.ajsDoc {
font-family: Calibri, Arial, sans-serif;
}
.ajsDocLink {
text-decoration: none;
color: black;
}
.ajsDocLink:hover {
color: #16355D;
}
/* PAGE LAYOUT */
.ajsDocLayoutDialog {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: #EAF4F8;
opacity: 0.35;
z-index: 5000;
display: none;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.ajsDocLayoutDialog[dialogvisible="true"] {
display: block;
}
.ajsDocLayoutHeaderContainer {
background-color: white;
background: linear-gradient(-3deg, #EAF4F8, white);
text-align: center;
padding: 3px;
height: 54px;
box-sizing: border-box;
}
.ajsDocLayoutMenuContainer {
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 0;
border-right: 1px solid #EAF4F8;
vertical-align: top;
box-sizing: border-box;
overflow: hidden;
z-index: 9500;
-webkit-overflow-scrolling: touch;
}
.ajsDocLayoutContentContainer {
vertical-align: top;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
@keyframes ajsDocMenuButtonVisible {
from { opacity: 0.25; }
to { opacity: 1; }
}
@-webkit-keyframes ajsDocMenuButtonVisible {
from { opacity: 0.25; }
to { opacity: 1; }
}
@keyframes ajsDocMenuButtonInvisible {
from { opacity: 1; }
to { opacity: 0.25; }
}
@-webkit-keyframes ajsDocMenuButtonInvisible {
from { opacity: 1; }
to { opacity: 0.25; }
}
.ajsDocLayoutMenuButton {
position: fixed;
left: 3px;
top: 3px;
width: 48px;
height: 48px;
z-index: 9999;
animation: ajsDocMenuButtonVisible 350ms forwards;
-webkit-animation: ajsDocMenuButtonVisible 350ms forwards;
-moz-animation: ajsDocMenuButtonVisible 350ms forwards;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
@keyframes ajsDocMenuButtonLogo {
0% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }
}
@-webkit-keyframes ajsDocMenuButtonLogo {
0% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }
}
@keyframes ajsDocMenuButtonHamburger {
0% { opacity: 0; } 60% { opacity: 0; } 100% { opacity: 0.6; }
}
@-webkit-keyframes ajsDocMenuButtonHamburger {
0% { opacity: 0; } 60% { opacity: 0; } 100% { opacity: 0.6; }
}
.ajsDocLayoutMenuButtonLogo {
position: absolute;
left: 0px;
top: 0px;
width: 48px;
height: 48px;
background-image: url('/resources/img/ajs-logo.png');
background-repeat: no-repeat;
background-size: cover;
animation: ajsDocMenuButtonLogo alternate infinite 3s;
-webkit-animation: ajsDocMenuButtonLogo alternate infinite 3s;
-moz-animation: ajsDocMenuButtonLogo alternate infinite 3s;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.ajsDocLayoutMenuButtonHamburger {
position: absolute;
left: 0px;
top: 0px;
width: 48px;
height: 48px;
background-image: url('/resources/img/hamburger.png');
background-repeat: no-repeat;
background-size: cover;
animation: ajsDocMenuButtonHamburger alternate infinite 3s;
-webkit-animation: ajsDocMenuButtonHamburger alternate infinite 3s;
-moz-animation: ajsDocMenuButtonHamburger alternate infinite 3s;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.ajsDocLayoutMenuButton[menuvisible="false"] {
animation: ajsDocMenuButtonInvisible 350ms forwards;
-webkit-animation: ajsDocMenuButtonInvisible 350ms forwards;
-moz-animation: ajsDocMenuButtonInvisible 350ms forwards;
}
@keyframes ajsDocMenuMakeVisible350px {
from { width: 0; opacity: 0 }
to { width: 350px; opacity: 1 }
}
@-webkit-keyframes ajsDocMenuMakeVisible350px {
from { width: 0; opacity: 0 }
to { width: 350px; opacity: 1 }
}
@keyframes ajsDocMenuMakeInvisible350px {
from { width: 350px; opacity: 1 }
to { width: 0; opacity: 0 }
}
@-webkit-keyframes ajsDocMenuMakeInvisible350px {
from { width: 350px; opacity: 1 }
to { width: 0; opacity: 0 }
}
@keyframes ajsDocMenuMakeVisible100 {
from { width: 0; opacity: 0 }
to { width: 100%; opacity: 0.95 }
}
@-webkit-keyframes ajsDocMenuMakeVisible100 {
from { width: 0; opacity: 0 }
to { width: 100%; opacity: 0.95 }
}
@keyframes ajsDocMenuMakeInvisible100 {
from { width: 100%; opacity: 0.95 }
to { width: 0; opacity: 0 }
}
@-webkit-keyframes ajsDocMenuMakeInvisible100 {
from { width: 100%; opacity: 0.95 }
to { width: 0; opacity: 0 }
}
@keyframes ajsDocMenuVisibleContent {
from { margin-left: 0}
to { margin-left: 350px}
}
@-webkit-keyframes ajsDocMenuVisibleContent {
from { margin-left: 0}
to { margin-left: 350px}
}
@keyframes ajsDocMenuInvisibleContent {
from { margin-left: 350px}
to { margin-left: 0}
}
@-webkit-keyframes ajsDocMenuInvisibleContent {
from { margin-left: 350px}
to { margin-left: 0}
}
@media only screen and (min-width: 980px) {
.ajsDocLayoutContentContainer[menuvisible="true"] {
animation: ajsDocMenuVisibleContent 350ms forwards;
-webkit-animation: ajsDocMenuVisibleContent 350ms forwards;
-moz-animation: ajsDocMenuVisibleContent 350ms forwards;
}
.ajsDocLayoutContentContainer[menuvisible="false"] {
animation: ajsDocMenuInvisibleContent 350ms forwards;
-webkit-animation: ajsDocMenuInvisibleContent 350ms forwards;
-moz-animation: ajsDocMenuInvisibleContent 350ms forwards;
}
.ajsDocLayoutMenuContainer[menuvisible="true"] {
animation: ajsDocMenuMakeVisible350px 350ms forwards;
-webkit-animation: ajsDocMenuMakeVisible350px 350ms forwards;
-moz-animation: ajsDocMenuMakeVisible350px 350ms forwards;
}
.ajsDocLayoutMenuContainer[menuvisible="false"] {
animation: ajsDocMenuMakeInvisible350px 350ms forwards;
-webkit-animation: ajsDocMenuMakeInvisible350px 350ms forwards;
-moz-animation: ajsDocMenuMakeInvisible350px 350ms forwards;
}
}
@media only screen and (max-width: 980px) {
.ajsDocLayoutContentContainer {
left: 0;
}
.ajsDocLayoutContentContainer[menuvisible="true"] {
filter: blur(2px);
-webkit-filter: blur(2px);
}
.ajsDocLayoutMenuContainer[menuvisible="true"] {
animation: ajsDocMenuMakeVisible350px 350ms forwards;
-webkit-animation: ajsDocMenuMakeVisible350px 350ms forwards;
-moz-animation: ajsDocMenuMakeVisible350px 350ms forwards;
}
.ajsDocLayoutMenuContainer[menuvisible="false"] {
animation: ajsDocMenuMakeInvisible350px 350ms forwards;
-webkit-animation: ajsDocMenuMakeInvisible350px 350ms forwards;
-moz-animation: ajsDocMenuMakeInvisible350px 350ms forwards;
}
}
@media only screen and (max-width: 350px) {
.ajsDocLayoutMenuContainer[menuvisible="true"] {
animation: ajsDocMenuMakeVisible100 350ms forwards;
-webkit-animation: ajsDocMenuMakeVisible100 350ms forwards;
-moz-animation: ajsDocMenuMakeVisible100 350ms forwards;
}
.ajsDocLayoutMenuContainer[menuvisible="false"] {
animation: ajsDocMenuMakeInvisible100 350ms forwards;
-webkit-animation: ajsDocMenuMakeInvisible100 350ms forwards;
-moz-animation: ajsDocMenuMakeInvisible100 350ms forwards;
}
}
.ajsDocLayoutPageNavContainer {
display: table-cell;
vertical-align: top;
padding: 3px;
border-left: 1px solid #EAF4F8;
}
/* NAVBAR */
.ajsDocNavBar {
border-bottom: solid 1px #EAF4F8;
padding: 3px;
background-color: white;
background: linear-gradient(-3deg, #EAF4F8, white)
}
/* HEADER */
.ajsDocHeaderLabelContainer {
display: table-cell;
height: 48px;
vertical-align: middle;
padding-left: 0.5em;
white-space: nowrap;
}
.ajsDocHeaderLabel {
display: inline;
padding: 0;
}
.ajsDocAjsLogo {
display: table-cell;
width: 48px;
height: 48px;
}
/* FOOTER */
.ajsDocLayoutFooterContainer {
text-align: center;
font-size: 0.75em;
border-top: solid 1px #EAF4F8;
}
/* CONTENT */
.ajsDocContentPlaceholder {
margin: 0;
padding: 3px;
vertical-align:top;
}
.ajsDocContentPlaceholder pre {
border: solid 1px #EAF4F8;
margin: 0;
}
.ajsDocContentPlaceholder h5 {
margin: 0; padding: 0;
}
/* CONTEXT SWITCHER */
.ajsDocContextSwitcher {
background-color: white;
white-space: nowrap;
height: 40px;
box-sizing: border-box;
}
@keyframes ajsDocContextSwitcherButton {
from { background-color: #16355D; background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white; }
to { background-color: #FAFCFD; background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black; }
}
@-webkit-keyframes ajsDocContextSwitcherButton {
from { background-color: #16355D; background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white; }
to { background-color: #FAFCFD; background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black; }
}
@keyframes ajsDocContextSwitcherButtonSelected {
from { background-color: #FAFCFD; background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black; }
to { background-color: #16355D; background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white; }
}
@-webkit-keyframes ajsDocContextSwitcherButtonSelected {
from { background-color: #FAFCFD; background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black; }
to { background-color: #16355D; background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white; }
}
.ajsDocContextSwitcherButton {
display: inline-block;
width: 50%;
text-align: center;
box-sizing: border-box;
height: 100%;
border: none;
outline: 0;
font-family: inherit;
font-size: inherit;
background-color: #FAFCFD;
background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black;
animation: ajsDocContextSwitcherButton 350ms forwards;
-webkit-animation: ajsDocContextSwitcherButton 350ms forwards;
-moz-animation: ajsDocContextSwitcherButton 350ms forwards;
}
.ajsDocContextSwitcherButton[selected="true"] {
background-color: #16355D;
background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white;
animation: ajsDocContextSwitcherButtonSelected 350ms forwards;
-webkit-animation: ajsDocContextSwitcherButtonSelected 350ms forwards;
-moz-animation: ajsDocContextSwitcherButtonSelected 350ms forwards;
}
/* MENU */
@keyframes ajsDocMenuOldAnimationRtl {
from { width: 350px; }
to { width: 0; }
}
@-webkit-keyframes ajsDocMenuOldAnimationRtl {
from { width: 350px; }
to { width: 0; }
}
@keyframes ajsDocMenuNewAnimationRtl {
from { left: 350px; width: 0; }
to { left: 0; width: 350px; }
}
@-webkit-keyframes ajsDocMenuNewAnimationRtl {
from { left: 350px; width: 0; }
to { left: 0; width: 350px; }
}
@keyframes ajsDocMenuOldAnimationLtr {
from { left: 0; width: 350px; }
to { left: 350px; width: 0; }
}
@-webkit-keyframes ajsDocMenuOldAnimationLtr {
from { left: 0; width: 350px; }
to { left: 350px; width: 0; }
}
@keyframes ajsDocMenuNewAnimationLtr {
from { width: 0; }
to { width: 350px; }
}
@-webkit-keyframes ajsDocMenuNewAnimationLtr {
from { width: 0; }
to { width: 350px; }
}
@keyframes ajsDocMenuNewFadeIn {
from { opacity: 0; }
to { opacity: 1;}
}
@-webkit-keyframes ajsDocMenuNewFadeIn {
from { opacity: 0; }
to { opacity: 0.9;}
}
@keyframes ajsDocMenuOldFadeOut {
from { opacity: 0.9; }
to { opacity: 0;}
}
@-webkit-keyframes ajsDocMenuOldFadeOut {
from { opacity: 1; }
to { opacity: 0;}
}
.ajsDocMenu {
opacity: 0.9;
background-color: #FAFCFD;
background: linear-gradient(-90deg, white, #FAFCFD);
white-space: nowrap;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
position: absolute;
top: 94px;
left: 0;
right: 0;
bottom: 0;
}
.ajsDocMenu[statetransitiontypeold="RTL"] {
animation: ajsDocMenuOldAnimationRtl 350ms forwards;
-webkit-animation: ajsDocMenuOldAnimationRtl 350ms forwards;
-moz-animation: ajsDocMenuOldAnimationRtl 350ms forwards;
}
.ajsDocMenu[statetransitiontypenew="RTL"] {
animation: ajsDocMenuNewAnimationRtl 350ms forwards;
-webkit-animation: ajsDocMenuNewAnimationRtl 350ms forwards;
-moz-animation: ajsDocMenuNewAnimationRtl 350ms forwards;
}
.ajsDocMenu[statetransitiontypeold="LTR"] {
animation: ajsDocMenuOldAnimationLtr 350ms forwards;
-webkit-animation: ajsDocMenuOldAnimationLtr 350ms forwards;
-moz-animation: ajsDocMenuOldAnimationLtr 350ms forwards;
}
.ajsDocMenu[statetransitiontypenew="LTR"] {
animation: ajsDocMenuNewAnimationLtr 350ms forwards;
-webkit-animation: ajsDocMenuNewAnimationLtr 350ms forwards;
-moz-animation: ajsDocMenuNewAnimationLtr 350ms forwards;
}
.ajsDocMenu[statetransitiontypeold="FADE"] {
animation: ajsDocMenuOldFadeOut 350ms forwards;
-webkit-animation: ajsDocMenuOldFadeOut 350ms forwards;
-moz-animation: ajsDocMenuOldFadeOut 350ms forwards;
}
.ajsDocMenu[statetransitiontypenew="FADE"] {
animation: ajsDocMenuNewFadeIn 350ms forwards;
-webkit-animation: ajsDocMenuNewFadeIn 350ms forwards;
-moz-animation: ajsDocMenuNewFadeIn 350ms forwards;
}
.ajsDocMenuLabel {
display: table-cell;
width: 350px;
background-color: #EAF4F8;
background: linear-gradient(-3deg, #FAFCFD, #EAF4F8);
text-align: center;
vertical-align: middle;
}
.ajsDocMenuParent {
font-weight: bold;
font-size: 1.25em;
text-decoration: none;
color: black;
}
.ajsDocMenuItemGroup {
list-style: none;
margin: 0;
padding: 0;
}
.ajsDocMenuItemGroupLabel {
font-style: italic;
font-weight: bold;
padding: 0.75em;
padding-left: 0.25em;
}
.ajsDocMenuItem {
list-style: none;
}
.ajsDocMenuItemLink {
display: block;
padding: 0.75em;
padding-left: 1em;
}
.ajsDocMenuItemLinkNonGrouped .ajsDocLink {
padding-left: 0.25em;
}
.ajsDocMenuItemLink:hover {
background-color: #EAF4F8;
}
.ajsDocMenuItemLinkParent {
display: block;
padding: 0.75em;
}
.ajsDocMenuItem[ajsmenulabel="true"] a {
padding-left: 0.25em;
}
.ajsDocMenuItem[ajsselected="true"] a {
color: #16355D;
font-weight: bold;
}
/* ARTICLES */
.ajsDocArticleCaption {
margin: 0;
padding: 0;
}
.ajsDocExample {
border: solid 1px #EAF4F8;
background-color: #FAFCFD;
}
.ajsDocChart {
border: solid 1px #EAF4F8;
text-align: center;
padding: 0.25em;
overflow: auto;
}
/* CODE TEMPLATES */
.ajsDocMember {
margin-bottom: 0.5em;
padding: 0.25em;
}
.ajsDocMemberStatement {
border: solid 1px #EAF4F8;
background-color: #FAFCFD;
padding: 0.25em;
}
.ajsDocMember:hover, .ajsDocMember:hover .ajsDocMemberStatement {
background-color: #EAF4F8;
}
.ajsDocStatement {
background-color: #FAFAFA;
}
|
AjsDoc/wwwroot/resources/templates/ajsdoc.css
|
html, body {
margin: 0;
padding: 0;
font-size: 1.0em;
}
.ajsDoc {
font-family: Calibri, Arial, sans-serif;
}
.ajsDocLink {
text-decoration: none;
color: black;
}
.ajsDocLink:hover {
color: #16355D;
}
/* PAGE LAYOUT */
.ajsDocLayoutDialog {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: #EAF4F8;
opacity: 0.35;
z-index: 5000;
display: none;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.ajsDocLayoutDialog[dialogvisible="true"] {
display: block;
}
.ajsDocLayoutHeaderContainer {
background-color: white;
background: linear-gradient(-3deg, #EAF4F8, white);
text-align: center;
padding: 3px;
height: 54px;
box-sizing: border-box;
}
.ajsDocLayoutMenuContainer {
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 0;
border-right: 1px solid #EAF4F8;
vertical-align: top;
box-sizing: border-box;
overflow: hidden;
z-index: 9500;
-webkit-overflow-scrolling: touch;
}
.ajsDocLayoutContentContainer {
vertical-align: top;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
@keyframes ajsDocMenuButtonVisible {
from { opacity: 0.25; }
to { opacity: 1; }
}
@-webkit-keyframes ajsDocMenuButtonVisible {
from { opacity: 0.25; }
to { opacity: 1; }
}
@keyframes ajsDocMenuButtonInvisible {
from { opacity: 1; }
to { opacity: 0.25; }
}
@-webkit-keyframes ajsDocMenuButtonInvisible {
from { opacity: 1; }
to { opacity: 0.25; }
}
.ajsDocLayoutMenuButton {
position: fixed;
left: 3px;
top: 3px;
width: 48px;
height: 48px;
z-index: 9999;
animation: ajsDocMenuButtonVisible 350ms forwards;
-webkit-animation: ajsDocMenuButtonVisible 350ms forwards;
-moz-animation: ajsDocMenuButtonVisible 350ms forwards;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
@keyframes ajsDocMenuButtonLogo {
0% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }
}
@-webkit-keyframes ajsDocMenuButtonLogo {
0% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }
}
@keyframes ajsDocMenuButtonHamburger {
0% { opacity: 0; } 60% { opacity: 0; } 100% { opacity: 0.6; }
}
@-webkit-keyframes ajsDocMenuButtonHamburger {
0% { opacity: 0; } 60% { opacity: 0; } 100% { opacity: 0.6; }
}
.ajsDocLayoutMenuButtonLogo {
position: absolute;
left: 0px;
top: 0px;
width: 48px;
height: 48px;
background-image: url('/resources/img/ajs-logo.png');
background-repeat: no-repeat;
background-size: cover;
animation: ajsDocMenuButtonLogo alternate infinite 3s;
-webkit-animation: ajsDocMenuButtonLogo alternate infinite 3s;
-moz-animation: ajsDocMenuButtonLogo alternate infinite 3s;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.ajsDocLayoutMenuButtonHamburger {
position: absolute;
left: 0px;
top: 0px;
width: 48px;
height: 48px;
background-image: url('/resources/img/hamburger.png');
background-repeat: no-repeat;
background-size: cover;
animation: ajsDocMenuButtonHamburger alternate infinite 3s;
-webkit-animation: ajsDocMenuButtonHamburger alternate infinite 3s;
-moz-animation: ajsDocMenuButtonHamburger alternate infinite 3s;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.ajsDocLayoutMenuButton[menuvisible="false"] {
animation: ajsDocMenuButtonInvisible 350ms forwards;
-webkit-animation: ajsDocMenuButtonInvisible 350ms forwards;
-moz-animation: ajsDocMenuButtonInvisible 350ms forwards;
}
@keyframes ajsDocMenuMakeVisible350px {
from { width: 0; opacity: 0 }
to { width: 350px; opacity: 1 }
}
@-webkit-keyframes ajsDocMenuMakeVisible350px {
from { width: 0; opacity: 0 }
to { width: 350px; opacity: 1 }
}
@keyframes ajsDocMenuMakeInvisible350px {
from { width: 350px; opacity: 1 }
to { width: 0; opacity: 0 }
}
@-webkit-keyframes ajsDocMenuMakeInvisible350px {
from { width: 350px; opacity: 1 }
to { width: 0; opacity: 0 }
}
@keyframes ajsDocMenuMakeVisible100 {
from { width: 0; opacity: 0 }
to { width: 100%; opacity: 0.95 }
}
@-webkit-keyframes ajsDocMenuMakeVisible100 {
from { width: 0; opacity: 0 }
to { width: 100%; opacity: 0.95 }
}
@keyframes ajsDocMenuMakeInvisible100 {
from { width: 100%; opacity: 0.95 }
to { width: 0; opacity: 0 }
}
@-webkit-keyframes ajsDocMenuMakeInvisible100 {
from { width: 100%; opacity: 0.95 }
to { width: 0; opacity: 0 }
}
@keyframes ajsDocMenuVisibleContent {
from { margin-left: 0}
to { margin-left: 350px}
}
@-webkit-keyframes ajsDocMenuVisibleContent {
from { margin-left: 0}
to { margin-left: 350px}
}
@keyframes ajsDocMenuInvisibleContent {
from { margin-left: 350px}
to { margin-left: 0}
}
@-webkit-keyframes ajsDocMenuInvisibleContent {
from { margin-left: 350px}
to { margin-left: 0}
}
@media only screen and (min-width: 980px) {
.ajsDocLayoutContentContainer[menuvisible="true"] {
animation: ajsDocMenuVisibleContent 350ms forwards;
-webkit-animation: ajsDocMenuVisibleContent 350ms forwards;
-moz-animation: ajsDocMenuVisibleContent 350ms forwards;
}
.ajsDocLayoutContentContainer[menuvisible="false"] {
animation: ajsDocMenuInvisibleContent 350ms forwards;
-webkit-animation: ajsDocMenuInvisibleContent 350ms forwards;
-moz-animation: ajsDocMenuInvisibleContent 350ms forwards;
}
.ajsDocLayoutMenuContainer[menuvisible="true"] {
animation: ajsDocMenuMakeVisible350px 350ms forwards;
-webkit-animation: ajsDocMenuMakeVisible350px 350ms forwards;
-moz-animation: ajsDocMenuMakeVisible350px 350ms forwards;
}
.ajsDocLayoutMenuContainer[menuvisible="false"] {
animation: ajsDocMenuMakeInvisible350px 350ms forwards;
-webkit-animation: ajsDocMenuMakeInvisible350px 350ms forwards;
-moz-animation: ajsDocMenuMakeInvisible350px 350ms forwards;
}
}
@media only screen and (max-width: 980px) {
.ajsDocLayoutContentContainer {
left: 0;
}
.ajsDocLayoutContentContainer[menuvisible="true"] {
filter: blur(2px);
-webkit-filter: blur(2px);
}
.ajsDocLayoutMenuContainer[menuvisible="true"] {
animation: ajsDocMenuMakeVisible350px 350ms forwards;
-webkit-animation: ajsDocMenuMakeVisible350px 350ms forwards;
-moz-animation: ajsDocMenuMakeVisible350px 350ms forwards;
}
.ajsDocLayoutMenuContainer[menuvisible="false"] {
animation: ajsDocMenuMakeInvisible350px 350ms forwards;
-webkit-animation: ajsDocMenuMakeInvisible350px 350ms forwards;
-moz-animation: ajsDocMenuMakeInvisible350px 350ms forwards;
}
}
@media only screen and (max-width: 350px) {
.ajsDocLayoutMenuContainer[menuvisible="true"] {
animation: ajsDocMenuMakeVisible100 350ms forwards;
-webkit-animation: ajsDocMenuMakeVisible100 350ms forwards;
-moz-animation: ajsDocMenuMakeVisible100 350ms forwards;
}
.ajsDocLayoutMenuContainer[menuvisible="false"] {
animation: ajsDocMenuMakeInvisible100 350ms forwards;
-webkit-animation: ajsDocMenuMakeInvisible100 350ms forwards;
-moz-animation: ajsDocMenuMakeInvisible100 350ms forwards;
}
}
.ajsDocLayoutPageNavContainer {
display: table-cell;
vertical-align: top;
padding: 3px;
border-left: 1px solid #EAF4F8;
}
/* NAVBAR */
.ajsDocNavBar {
border-bottom: solid 1px #EAF4F8;
padding: 3px;
background-color: white;
background: linear-gradient(-3deg, #EAF4F8, white)
}
/* HEADER */
.ajsDocHeaderLabelContainer {
display: table-cell;
height: 48px;
vertical-align: middle;
padding-left: 0.5em;
white-space: nowrap;
}
.ajsDocHeaderLabel {
display: inline;
padding: 0;
}
.ajsDocAjsLogo {
display: table-cell;
width: 48px;
height: 48px;
}
/* FOOTER */
.ajsDocLayoutFooterContainer {
text-align: center;
font-size: 0.75em;
border-top: solid 1px #EAF4F8;
}
/* CONTENT */
.ajsDocContentPlaceholder {
margin: 0;
padding: 3px;
vertical-align:top;
}
.ajsDocContentPlaceholder pre {
border: solid 1px #EAF4F8;
margin: 0;
}
.ajsDocContentPlaceholder h5 {
margin: 0; padding: 0;
}
/* CONTEXT SWITCHER */
.ajsDocContextSwitcher {
background-color: white;
white-space: nowrap;
height: 40px;
box-sizing: border-box;
}
@keyframes ajsDocContextSwitcherButton {
from { background-color: #16355D; background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white; }
to { background-color: #FAFCFD; background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black; }
}
@-webkit-keyframes ajsDocContextSwitcherButton {
from { background-color: #16355D; background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white; }
to { background-color: #FAFCFD; background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black; }
}
@keyframes ajsDocContextSwitcherButtonSelected {
from { background-color: #FAFCFD; background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black; }
to { background-color: #16355D; background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white; }
}
@-webkit-keyframes ajsDocContextSwitcherButtonSelected {
from { background-color: #FAFCFD; background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black; }
to { background-color: #16355D; background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white; }
}
.ajsDocContextSwitcherButton {
display: inline-block;
width: 50%;
text-align: center;
box-sizing: border-box;
height: 100%;
border: none;
outline: 0;
font-family: inherit;
font-size: inherit;
background-color: #FAFCFD;
background: linear-gradient(-3deg, #EAF4F8, #FAFCFD, #EAF4F8); color: black;
animation: ajsDocContextSwitcherButton 350ms forwards;
-webkit-animation: ajsDocContextSwitcherButton 350ms forwards;
-moz-animation: ajsDocContextSwitcherButton 350ms forwards;
}
.ajsDocContextSwitcherButton[selected="true"] {
background-color: #16355D;
background: linear-gradient(-3deg, #EAF4F8, #16355D, #EAF4F8); color: white;
animation: ajsDocContextSwitcherButtonSelected 350ms forwards;
-webkit-animation: ajsDocContextSwitcherButtonSelected 350ms forwards;
-moz-animation: ajsDocContextSwitcherButtonSelected 350ms forwards;
}
/* MENU */
@keyframes ajsDocMenuOldAnimationRtl {
from { width: 350px; }
to { width: 0; }
}
@-webkit-keyframes ajsDocMenuOldAnimationRtl {
from { width: 350px; }
to { width: 0; }
}
@keyframes ajsDocMenuNewAnimationRtl {
from { left: 350px; width: 0; }
to { left: 0; width: 350px; }
}
@-webkit-keyframes ajsDocMenuNewAnimationRtl {
from { left: 350px; width: 0; }
to { left: 0; width: 350px; }
}
@keyframes ajsDocMenuOldAnimationLtr {
from { left: 0; width: 350px; }
to { left: 350px; width: 0; }
}
@-webkit-keyframes ajsDocMenuOldAnimationLtr {
from { left: 0; width: 350px; }
to { left: 350px; width: 0; }
}
@keyframes ajsDocMenuNewAnimationLtr {
from { width: 0; }
to { width: 350px; }
}
@-webkit-keyframes ajsDocMenuNewAnimationLtr {
from { width: 0; }
to { width: 350px; }
}
@keyframes ajsDocMenuNewFadeIn {
from { opacity: 0; }
to { opacity: 1;}
}
@-webkit-keyframes ajsDocMenuNewFadeIn {
from { opacity: 0; }
to { opacity: 0.9;}
}
@keyframes ajsDocMenuOldFadeOut {
from { opacity: 0.9; }
to { opacity: 0;}
}
@-webkit-keyframes ajsDocMenuOldFadeOut {
from { opacity: 1; }
to { opacity: 0;}
}
.ajsDocMenu {
opacity: 0.9;
background-color: #FAFCFD;
background: linear-gradient(-90deg, white, #FAFCFD);
white-space: nowrap;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
position: absolute;
top: 94px;
left: 0;
right: 0;
bottom: 0;
}
.ajsDocMenu[statetransitiontypeold="RTL"] {
animation: ajsDocMenuOldAnimationRtl 350ms forwards;
-webkit-animation: ajsDocMenuOldAnimationRtl 350ms forwards;
-moz-animation: ajsDocMenuOldAnimationRtl 350ms forwards;
}
.ajsDocMenu[statetransitiontypenew="RTL"] {
animation: ajsDocMenuNewAnimationRtl 350ms forwards;
-webkit-animation: ajsDocMenuNewAnimationRtl 350ms forwards;
-moz-animation: ajsDocMenuNewAnimationRtl 350ms forwards;
}
.ajsDocMenu[statetransitiontypeold="LTR"] {
animation: ajsDocMenuOldAnimationLtr 350ms forwards;
-webkit-animation: ajsDocMenuOldAnimationLtr 350ms forwards;
-moz-animation: ajsDocMenuOldAnimationLtr 350ms forwards;
}
.ajsDocMenu[statetransitiontypenew="LTR"] {
animation: ajsDocMenuNewAnimationLtr 350ms forwards;
-webkit-animation: ajsDocMenuNewAnimationLtr 350ms forwards;
-moz-animation: ajsDocMenuNewAnimationLtr 350ms forwards;
}
.ajsDocMenu[statetransitiontypeold="FADE"] {
animation: ajsDocMenuOldFadeOut 350ms forwards;
-webkit-animation: ajsDocMenuOldFadeOut 350ms forwards;
-moz-animation: ajsDocMenuOldFadeOut 350ms forwards;
}
.ajsDocMenu[statetransitiontypenew="FADE"] {
animation: ajsDocMenuNewFadeIn 350ms forwards;
-webkit-animation: ajsDocMenuNewFadeIn 350ms forwards;
-moz-animation: ajsDocMenuNewFadeIn 350ms forwards;
}
.ajsDocMenuLabel {
display: table-cell;
width: 350px;
background-color: #EAF4F8;
background: linear-gradient(-3deg, #FAFCFD, #EAF4F8);
text-align: center;
vertical-align: middle;
}
.ajsDocMenuParent {
font-weight: bold;
font-size: 1.25em;
text-decoration: none;
color: black;
}
.ajsDocMenuItemGroup {
list-style: none;
margin: 0;
padding: 0;
}
.ajsDocMenuItemGroupLabel {
font-style: italic;
font-weight: bold;
padding: 0.75em;
padding-left: 0.25em;
}
.ajsDocMenuItem {
list-style: none;
}
.ajsDocMenuItemLink {
display: block;
padding: 0.75em;
padding-left: 1em;
}
.ajsDocMenuItemLinkNonGrouped .ajsDocLink {
padding-left: 0.25em;
}
.ajsDocMenuItemLink:hover {
background-color: #EAF4F8;
}
.ajsDocMenuItemLinkParent {
display: block;
padding: 0.75em;
}
.ajsDocMenuItem[ajsmenulabel="true"] a {
padding-left: 0.25em;
}
.ajsDocMenuItem[ajsselected="true"] a {
color: #16355D;
font-weight: bold;
}
/* ARTICLES */
.ajsDocArticleCaption {
margin: 0;
padding: 0;
}
.ajsDocExample {
border: solid 1px #EAF4F8;
background-color: #FAFCFD;
}
.ajsDocChart {
border: solid 1px #EAF4F8;
text-align: center;
padding: 0.25em;
overflow: auto;
}
/* CODE TEMPLATES */
.ajsDocMember {
margin-bottom: 0.5em;
padding: 0.25em;
}
.ajsDocMemberStatement {
border: solid 1px #EAF4F8;
background-color: #FAFCFD;
padding: 0.25em;
}
.ajsDocMember:hover, .ajsDocMember:hover .ajsDocMemberStatement {
background-color: #EAF4F8;
}
.ajsDocStatement {
background-color: #FAFAFA;
}
| 0.501953 | 0.061059 |
.headContainer{
margin: 3%;
padding-top: 1%;
text-align: center;
display:flex;
justify-content: space-around;
flex-wrap: wrap;
height: 100%;
}
.postRecipeContainer{
margin: 1%;
padding: 4%;
width: 300px;
border: 2px solid black;
background: #c4c4c4;
height: 100%;
border-radius: 10%;
}
.postRecipeContainer form{
margin:1%;
padding: 5%;
}
.postRecipeContainer form .imageFile {
width: 220px;
}
.postRecipeContainer form .textFile{
margin: 7%;
border-radius: 4%;
border: 2px solid #32b672 ;
width: 210px;
}
.postRecipeContainer button{
background: #32b672 ;
border-radius: 7%;
border: none;
width: 100px;
}
.postRecipeContainer button:hover{
background-color: #2ca063 ;
}
.postRecipeContainer .reset{
margin:2%;
border-radius: 7%;
border: none;
width: 100px;
background-color: #32b672;
}
.postRecipeContainer .reset:hover {
background-color: #2ca063;
}
/* recipe section */
.RecipeContainer{
max-height: 100%;
}
div .RecipeListTitle {
text-align: center;
}
.chef-list{
display:flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}
.recipeList{
background-color: #c4c4c4;
width: 500px;
text-align: center;
margin: 1%;
height:430px;
line-height: 0rem;
padding-top: 30px;
}
.recipeList h4{
font-size: 1.1rem;
}
.typeContainer{
display:flex;
flex-direction: row-reverse;
padding-right: 100px;
height: 25px;
padding-bottom: 15px;
margin: 1%;
}
.typeName {
color: wheat;
width: 70px !important;
height: 20px;
background-color: #32b672 !important;
border-radius: 10%;
display:flex;
justify-content: center;
align-items: center;
font-size: .8rem;
}
.recipeImg{
border-radius: 8%;
}
.instructions p{
text-align: center;
}
.buttonContainer{
display: flex;
flex-direction: column;
padding-left: 60px;
padding-top: 15px;
}
.buttonContainer button{
background-color: #32b672;
border: none;
margin:1%;
border-radius: 10%;
color: white;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
width: 90px;
height: 20px;
}
.buttonContainer button:hover{
background-color: black;
color: #32b672;
border: none;
}
/* .deleteButton{
background-color: #32b672;
border: none;
margin: 4%;
border-radius: 10%;
color: white;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
}
.deleteButton:hover{
background-color: black;
color: #32b672;
border: none;
} */
/* editModal */
.editButtonContainer{
padding-right:340px;
}
.editButtonContainer .editModalButton {
padding: 0px;
}
.editForm{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.EdittextFile{
width: 300px;
margin: 2%;
border-radius:5px;
border: 1px solid;
}
.editForm .reset {
width: 100px;
margin: 1%;
background: #32b672 ;
border: none;
}
.editForm .reset:hover {
background-color: #2ca063;
}
|
my-app/src/components/ChefPortfolio/ChefPortfolioPage.css
|
.headContainer{
margin: 3%;
padding-top: 1%;
text-align: center;
display:flex;
justify-content: space-around;
flex-wrap: wrap;
height: 100%;
}
.postRecipeContainer{
margin: 1%;
padding: 4%;
width: 300px;
border: 2px solid black;
background: #c4c4c4;
height: 100%;
border-radius: 10%;
}
.postRecipeContainer form{
margin:1%;
padding: 5%;
}
.postRecipeContainer form .imageFile {
width: 220px;
}
.postRecipeContainer form .textFile{
margin: 7%;
border-radius: 4%;
border: 2px solid #32b672 ;
width: 210px;
}
.postRecipeContainer button{
background: #32b672 ;
border-radius: 7%;
border: none;
width: 100px;
}
.postRecipeContainer button:hover{
background-color: #2ca063 ;
}
.postRecipeContainer .reset{
margin:2%;
border-radius: 7%;
border: none;
width: 100px;
background-color: #32b672;
}
.postRecipeContainer .reset:hover {
background-color: #2ca063;
}
/* recipe section */
.RecipeContainer{
max-height: 100%;
}
div .RecipeListTitle {
text-align: center;
}
.chef-list{
display:flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}
.recipeList{
background-color: #c4c4c4;
width: 500px;
text-align: center;
margin: 1%;
height:430px;
line-height: 0rem;
padding-top: 30px;
}
.recipeList h4{
font-size: 1.1rem;
}
.typeContainer{
display:flex;
flex-direction: row-reverse;
padding-right: 100px;
height: 25px;
padding-bottom: 15px;
margin: 1%;
}
.typeName {
color: wheat;
width: 70px !important;
height: 20px;
background-color: #32b672 !important;
border-radius: 10%;
display:flex;
justify-content: center;
align-items: center;
font-size: .8rem;
}
.recipeImg{
border-radius: 8%;
}
.instructions p{
text-align: center;
}
.buttonContainer{
display: flex;
flex-direction: column;
padding-left: 60px;
padding-top: 15px;
}
.buttonContainer button{
background-color: #32b672;
border: none;
margin:1%;
border-radius: 10%;
color: white;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
width: 90px;
height: 20px;
}
.buttonContainer button:hover{
background-color: black;
color: #32b672;
border: none;
}
/* .deleteButton{
background-color: #32b672;
border: none;
margin: 4%;
border-radius: 10%;
color: white;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
}
.deleteButton:hover{
background-color: black;
color: #32b672;
border: none;
} */
/* editModal */
.editButtonContainer{
padding-right:340px;
}
.editButtonContainer .editModalButton {
padding: 0px;
}
.editForm{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.EdittextFile{
width: 300px;
margin: 2%;
border-radius:5px;
border: 1px solid;
}
.editForm .reset {
width: 100px;
margin: 1%;
background: #32b672 ;
border: none;
}
.editForm .reset:hover {
background-color: #2ca063;
}
| 0.434941 | 0.0643 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Akaya Telivigala', cursive;
}
html{
max-width: 2000px;
margin: 0 auto;
}
html, body{
height: 100%;
}
.container{
max-width: 960px;
margin: 0 auto;
}
.clear{
clear: both;
}
header{
width: 100%;
min-height: 10vh;
max-height: 100px;
background-color: #DE0BA2;
color: #fff;
padding: 10px;
text-align: center;
}
header p{
margin-top: 5px;
}
.Fundo_quebra{
width: 100%;
height: 40vh;
background: url(../images1/bg-home.png);
background-size: cover;
background-position: center;
}
.destaques{
width: 100%;
height: 85vh;
max-height: 730px;
}
.content{
padding: 30px;
}
.destaques h2{
font-size: 42px;
text-align: center;
margin:5% 0 10% 0;
text-transform: uppercase;
}
.destaques h2::after{
content: "";
display: block;
height: 3px;
width:100px;
background-color: #000;
margin: 0 auto;
}
.img_destaques{
float: left;
width: 30%;
height: 12vh;
transition: height 1s;
cursor: pointer;
}
.img_destaques img{
width: 100%;
}
.img_destaques:nth-child(3){
position: relative;
top: 60px;
margin: 0 30px 0 30px;
}
.img_destaques:hover{
height: 440px;
border: 1px solid #000;
}
.descricao{
height: 150px;
opacity: 0;
visibility: hidden;
transition: 1s;
position: relative;
top:-200px;
}
.img_destaques:hover .descricao{
opacity: 1;
visibility: visible;
transform: translate(0 , 196px);
}
.descricao p{
display: inline-block;
padding: 5px;
font-weight: bold;
font-size: 18px;
}
.descricao p:first-child{
margin-right: 50px;
}
.descricao span{
padding: 5px;
display: inline-block;
}
.descricao ul{
list-style: none;
padding: 5px;
}
.sobre{
width: 100%;
min-height: 40vh;
color: #fff;
background: #EB3DBE;
position: relative;
padding: 50px;
overflow: hidden;
}
.missao{
float:left;
width: 33%;
padding-left: 20px;
}
.missao h3{
text-align: center;
margin-bottom: 20px;
font-size: 26px;
text-transform: uppercase;
line-height: 36px;
}
.missao h3::after{
content: "";
display: block;
height: 3px;
width:70px;
background-color: #fff;
margin: 0 auto;
}
.missao p{
width: 100%;
}
.produtos{
width: 100%;
max-height: 50%;
}
.produtos-left{
float: left;
}
.first{
width: 65%;
padding: 50px 0 0 20px;
height: auto;
}
.first img{
width: 23%;
height: 50%;
}
.second{
width: 32%;
height: auto;
}
.second img{
width: 100%;
height: 70%;
}
.produtos-left img{
margin: 0 0 30px 30px;
cursor: pointer;
transition: 1s;
}
.first img:hover{
transform: scale(1.2);
}
.footer{
width: 100%;
min-height: 170px;
text-align: center;
margin-top: 2%;
color: #CEB7DE;
background: #DE0BA2;
}
.grid-1-3{
width:33%;
float: left;
}
.grid-1-3 ul li{
list-style: none;
margin-top: 5px;
}
.grid-1-3 h4{
font-size: 24px;
line-height: 30px;
color: #fff;
text-transform: uppercase;
margin: 24px 0 20px 0;
}
.redes-sociais img{
margin-left: 20px;
}
@media only screen and (max-width: 910px){
.destaques{
height: auto;
max-height: none;
}
.img_destaques{
border: 1px solid #000;
width: 49%;
height: auto;
transition: none;
}
.img_destaques:nth-child(3){
top: 0px;
margin: 0;
}
.one{
margin-bottom: 30px;
margin-right: 2%;
}
.three{
float: none;
margin: 30px auto auto auto;
height: auto;
clear: both;
}
.descricao{
height: auto;
position: auto;
top:0;
visibility:visible;
opacity: 1;
}
.img_destaques:hover{
height: auto;
}
.img_destaques:hover .descricao{
transform: none
}
.descricao p{
display: inline-block;
padding: 5px;
font-weight: bold;
font-size: 18px;
}
.descricao p:first-child{
margin-right: 50px;
}
.descricao span{
padding: 5px;
display: inline-block;
}
.descricao ul{
list-style: none;
padding: 5px;
}
.first img{
width: 40%;
height: auto;
}
}
@media only screen and (max-width: 779px){
.sobre{
width: 100%;
height: auto;
color: #fff;
background: #EB3DBE;
position: relative;
padding: 10px;
}
.missao{
float:none;
width: 100%;
padding-left: 20px;
margin-bottom: 30px;
}
.first{
width: 100%;
padding: 50px 30px;
height: auto;
}
.first img{
width: 45%;
height: auto;
}
.second img{
display: none;
}
.produtos-left img{
margin:0 0 30px 0;
}
.produtos-left img:nth-child(even){
margin-left: 8%;
cursor: pointer;
transition: 1s;
}
.first img:hover{
transform: scale(1.1);
}
}
@media only screen and (max-width: 553px){
.footer{
width: 100%;
margin-top: 0;
padding: 20px;
}
.grid-1-3{
width:100%;
float: none;
padding: 10px;
}
.grid-1-3 h4{
margin: 0 0 15px 0;
}
.grid-1-3 h4::after{
content: "";
width: 60px;
height: 3px;
display: block;
background: #fff;
margin: 0 auto;
}
}
|
css/style.css
|
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Akaya Telivigala', cursive;
}
html{
max-width: 2000px;
margin: 0 auto;
}
html, body{
height: 100%;
}
.container{
max-width: 960px;
margin: 0 auto;
}
.clear{
clear: both;
}
header{
width: 100%;
min-height: 10vh;
max-height: 100px;
background-color: #DE0BA2;
color: #fff;
padding: 10px;
text-align: center;
}
header p{
margin-top: 5px;
}
.Fundo_quebra{
width: 100%;
height: 40vh;
background: url(../images1/bg-home.png);
background-size: cover;
background-position: center;
}
.destaques{
width: 100%;
height: 85vh;
max-height: 730px;
}
.content{
padding: 30px;
}
.destaques h2{
font-size: 42px;
text-align: center;
margin:5% 0 10% 0;
text-transform: uppercase;
}
.destaques h2::after{
content: "";
display: block;
height: 3px;
width:100px;
background-color: #000;
margin: 0 auto;
}
.img_destaques{
float: left;
width: 30%;
height: 12vh;
transition: height 1s;
cursor: pointer;
}
.img_destaques img{
width: 100%;
}
.img_destaques:nth-child(3){
position: relative;
top: 60px;
margin: 0 30px 0 30px;
}
.img_destaques:hover{
height: 440px;
border: 1px solid #000;
}
.descricao{
height: 150px;
opacity: 0;
visibility: hidden;
transition: 1s;
position: relative;
top:-200px;
}
.img_destaques:hover .descricao{
opacity: 1;
visibility: visible;
transform: translate(0 , 196px);
}
.descricao p{
display: inline-block;
padding: 5px;
font-weight: bold;
font-size: 18px;
}
.descricao p:first-child{
margin-right: 50px;
}
.descricao span{
padding: 5px;
display: inline-block;
}
.descricao ul{
list-style: none;
padding: 5px;
}
.sobre{
width: 100%;
min-height: 40vh;
color: #fff;
background: #EB3DBE;
position: relative;
padding: 50px;
overflow: hidden;
}
.missao{
float:left;
width: 33%;
padding-left: 20px;
}
.missao h3{
text-align: center;
margin-bottom: 20px;
font-size: 26px;
text-transform: uppercase;
line-height: 36px;
}
.missao h3::after{
content: "";
display: block;
height: 3px;
width:70px;
background-color: #fff;
margin: 0 auto;
}
.missao p{
width: 100%;
}
.produtos{
width: 100%;
max-height: 50%;
}
.produtos-left{
float: left;
}
.first{
width: 65%;
padding: 50px 0 0 20px;
height: auto;
}
.first img{
width: 23%;
height: 50%;
}
.second{
width: 32%;
height: auto;
}
.second img{
width: 100%;
height: 70%;
}
.produtos-left img{
margin: 0 0 30px 30px;
cursor: pointer;
transition: 1s;
}
.first img:hover{
transform: scale(1.2);
}
.footer{
width: 100%;
min-height: 170px;
text-align: center;
margin-top: 2%;
color: #CEB7DE;
background: #DE0BA2;
}
.grid-1-3{
width:33%;
float: left;
}
.grid-1-3 ul li{
list-style: none;
margin-top: 5px;
}
.grid-1-3 h4{
font-size: 24px;
line-height: 30px;
color: #fff;
text-transform: uppercase;
margin: 24px 0 20px 0;
}
.redes-sociais img{
margin-left: 20px;
}
@media only screen and (max-width: 910px){
.destaques{
height: auto;
max-height: none;
}
.img_destaques{
border: 1px solid #000;
width: 49%;
height: auto;
transition: none;
}
.img_destaques:nth-child(3){
top: 0px;
margin: 0;
}
.one{
margin-bottom: 30px;
margin-right: 2%;
}
.three{
float: none;
margin: 30px auto auto auto;
height: auto;
clear: both;
}
.descricao{
height: auto;
position: auto;
top:0;
visibility:visible;
opacity: 1;
}
.img_destaques:hover{
height: auto;
}
.img_destaques:hover .descricao{
transform: none
}
.descricao p{
display: inline-block;
padding: 5px;
font-weight: bold;
font-size: 18px;
}
.descricao p:first-child{
margin-right: 50px;
}
.descricao span{
padding: 5px;
display: inline-block;
}
.descricao ul{
list-style: none;
padding: 5px;
}
.first img{
width: 40%;
height: auto;
}
}
@media only screen and (max-width: 779px){
.sobre{
width: 100%;
height: auto;
color: #fff;
background: #EB3DBE;
position: relative;
padding: 10px;
}
.missao{
float:none;
width: 100%;
padding-left: 20px;
margin-bottom: 30px;
}
.first{
width: 100%;
padding: 50px 30px;
height: auto;
}
.first img{
width: 45%;
height: auto;
}
.second img{
display: none;
}
.produtos-left img{
margin:0 0 30px 0;
}
.produtos-left img:nth-child(even){
margin-left: 8%;
cursor: pointer;
transition: 1s;
}
.first img:hover{
transform: scale(1.1);
}
}
@media only screen and (max-width: 553px){
.footer{
width: 100%;
margin-top: 0;
padding: 20px;
}
.grid-1-3{
width:100%;
float: none;
padding: 10px;
}
.grid-1-3 h4{
margin: 0 0 15px 0;
}
.grid-1-3 h4::after{
content: "";
width: 60px;
height: 3px;
display: block;
background: #fff;
margin: 0 auto;
}
}
| 0.35869 | 0.070049 |
body {
overflow-x: hidden; }
.bg-muted {
background: #f2f2f2; }
.table-fix {
table-layout: fixed; }
.text-ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.container {
width: 1190px;
max-width: none !important; }
.high-lighted {
color: #df483d; }
.custom-account-view {
min-height: 100vh;
background: #f6f6f6; }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none !important;
margin: 0; }
.apx-modal-free-lunch .modal-dialog {
height: 758px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto; }
.apx-modal-free-lunch .close-btn {
position: absolute;
width: 60px;
height: 60px;
top: 100px;
right: 140px;
background: url("/images/free_lunch/new_cloes_icon.png") center no-repeat; }
.apx-modal-free-lunch .sub-content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none; }
.apx-modal-free-lunch .sub-content.in {
display: block; }
.apx-modal-free-lunch .img-box {
position: relative; }
.apx-modal-free-lunch .img-box p {
position: absolute;
left: 12px;
right: 0;
width: 523px;
bottom: 14px;
font-size: 34px;
color: #2e5c9e;
margin: 0 auto; }
.apx-modal-free-lunch .img-responsive {
margin: 0 auto 60px; }
.apx-modal-free-lunch .btn-row {
text-align: center; }
.apx-modal-free-lunch .btn {
background: transparent url("/images/free_lunch/pingpai_but_bg.png") center no-repeat;
padding: 0;
width: 228px;
height: 101px;
line-height: 80px;
margin: 0 36px;
color: #fff;
font-size: 36px;
transition: -webkit-transform .1s;
transition: transform .1s;
transition: transform .1s, -webkit-transform .1s; }
.apx-modal-free-lunch .btn:hover {
-webkit-transform: scale(1.02);
transform: scale(1.02); }
.apx-modal-free-lunch .btn:active {
-webkit-transform: scale(0.98);
transform: scale(0.98); }
.brand-activity {
background-color: #00094c;
text-align: center; }
.brand-activity img {
max-width: 100%;
min-width: 1200px;
vertical-align: top; }
.brand-activity .quan {
-webkit-transform: translatey(-222px);
transform: translatey(-222px);
position: relative; }
.brand-activity .quan .free-modal {
display: block;
width: 255px;
height: 250px;
position: absolute;
top: 18%;
left: 50%;
cursor: pointer; }
.brand-activity .product {
-webkit-transform: translatey(-200px);
transform: translatey(-200px);
position: relative; }
.brand-activity .product .link {
width: 1130px;
height: 550px;
margin: 0 auto;
position: absolute;
left: 0;
right: 0;
top: 120px; }
.brand-activity .product .link:before, .brand-activity .product .link:after {
content: " ";
display: table; }
.brand-activity .product .link:after {
clear: both; }
.brand-activity .product .link a {
display: block;
width: 50%;
height: 50%;
float: left; }
.brand-activity .product .link a:nth-child(2) {
font-size: 111px; }
.brand-activity .detail {
-webkit-transform: translatey(-160px);
transform: translatey(-160px); }
|
custom/modules/temp/views/assets/css/a.css
|
body {
overflow-x: hidden; }
.bg-muted {
background: #f2f2f2; }
.table-fix {
table-layout: fixed; }
.text-ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.container {
width: 1190px;
max-width: none !important; }
.high-lighted {
color: #df483d; }
.custom-account-view {
min-height: 100vh;
background: #f6f6f6; }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none !important;
margin: 0; }
.apx-modal-free-lunch .modal-dialog {
height: 758px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto; }
.apx-modal-free-lunch .close-btn {
position: absolute;
width: 60px;
height: 60px;
top: 100px;
right: 140px;
background: url("/images/free_lunch/new_cloes_icon.png") center no-repeat; }
.apx-modal-free-lunch .sub-content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none; }
.apx-modal-free-lunch .sub-content.in {
display: block; }
.apx-modal-free-lunch .img-box {
position: relative; }
.apx-modal-free-lunch .img-box p {
position: absolute;
left: 12px;
right: 0;
width: 523px;
bottom: 14px;
font-size: 34px;
color: #2e5c9e;
margin: 0 auto; }
.apx-modal-free-lunch .img-responsive {
margin: 0 auto 60px; }
.apx-modal-free-lunch .btn-row {
text-align: center; }
.apx-modal-free-lunch .btn {
background: transparent url("/images/free_lunch/pingpai_but_bg.png") center no-repeat;
padding: 0;
width: 228px;
height: 101px;
line-height: 80px;
margin: 0 36px;
color: #fff;
font-size: 36px;
transition: -webkit-transform .1s;
transition: transform .1s;
transition: transform .1s, -webkit-transform .1s; }
.apx-modal-free-lunch .btn:hover {
-webkit-transform: scale(1.02);
transform: scale(1.02); }
.apx-modal-free-lunch .btn:active {
-webkit-transform: scale(0.98);
transform: scale(0.98); }
.brand-activity {
background-color: #00094c;
text-align: center; }
.brand-activity img {
max-width: 100%;
min-width: 1200px;
vertical-align: top; }
.brand-activity .quan {
-webkit-transform: translatey(-222px);
transform: translatey(-222px);
position: relative; }
.brand-activity .quan .free-modal {
display: block;
width: 255px;
height: 250px;
position: absolute;
top: 18%;
left: 50%;
cursor: pointer; }
.brand-activity .product {
-webkit-transform: translatey(-200px);
transform: translatey(-200px);
position: relative; }
.brand-activity .product .link {
width: 1130px;
height: 550px;
margin: 0 auto;
position: absolute;
left: 0;
right: 0;
top: 120px; }
.brand-activity .product .link:before, .brand-activity .product .link:after {
content: " ";
display: table; }
.brand-activity .product .link:after {
clear: both; }
.brand-activity .product .link a {
display: block;
width: 50%;
height: 50%;
float: left; }
.brand-activity .product .link a:nth-child(2) {
font-size: 111px; }
.brand-activity .detail {
-webkit-transform: translatey(-160px);
transform: translatey(-160px); }
| 0.52829 | 0.066843 |
:not(pre) > code {
@apply font-medium px-1 bg-gray-50 border sm:text-code;
&.highlight {
@apply bg-gray-50;
}
}
kbd:not(.compound) {
@apply inline-block font-medium text-xs p-1 border border-gray-dark rounded-sm;
}
/* code blocks */
pre {
@apply relative border overflow-x-hidden rounded-sm shadow leading-normal mb-6;
/* give some extra padding to parsed-literals */
&.literal-block {
@apply py-4 pl-4 overflow-x-auto;
}
& code {
@apply block pl-4 py-4 overflow-x-auto;
}
& .copy {
@apply absolute top-3 right-1.5 border p-1 uppercase text-xs tracking-wide rounded-sm text-gray-700 shadow-sm bg-white opacity-0 focus:opacity-100 transition-all duration-500 transform active:translate-x-0.5 active:translate-y-0.5 z-10;
}
&:hover .copy {
@apply opacity-100;
}
}
.admonition pre,
.admonition .highlight {
@apply shadow-none;
}
/* the outer wrapper for a code block */
.highlight:not(.docutils) {
@apply my-6;
& .caption-text {
@apply text-gray-light tracking-wide;
}
/* emphasized lines */
& mark,
& ins,
& del {
@apply block relative -ml-4 pl-4 py-px;
}
& mark {
@apply bg-yellow-200;
}
& ins {
@apply bg-green-200 no-underline;
&:before {
content: "\002b";
left: 2px;
@apply absolute text-green-900;
}
}
& del {
@apply bg-red-200 no-underline;
&:before {
content: "\2212";
left: 2px;
@apply absolute text-red-900;
}
}
/* line numbers */
& .linenos {
@apply bg-transparent text-gray-700 p-0 pr-6 select-none;
}
/* code lines (wrapped around lines with line numbers) */
& .code-line {
@apply block;
}
}
/* Diff highlighting inserted/deleted elements
some pygments themes do not have styles for it */
span.gd {
@apply inline-block bg-red-200 py-px w-full;
}
span.gi {
@apply inline-block bg-green-200 py-px w-full;
}
/* the header of a code block */
.code-header {
@apply flex justify-between items-center text-sm py-2 bg-gray-100 shadow rounded-t-sm;
}
.code-lang {
@apply inline-block text-gray-dark ml-2 mr-auto font-mono uppercase tracking-wider;
}
/* make prompts unselectable */
.gp {
@apply select-none pointer-events-none font-medium;
}
/* Placeholder text, this assumes that ``var`` isn't used elsewhere in docutils/Sphinx
*/
var {
@apply italic text-purple-800;
}
/* autodocs */
.guilabel,
.menuselection {
@apply font-medium text-gray-dark tracking-wide;
}
dl.code-definition {
@apply mt-6 pt-6 mb-12 border-t;
& dt {
@apply font-normal;
& > code {
@apply border-none bg-transparent text-gray-dark px-0;
}
}
& .property {
@apply text-gray-light;
}
}
|
src/theme-src/css/code.css
|
:not(pre) > code {
@apply font-medium px-1 bg-gray-50 border sm:text-code;
&.highlight {
@apply bg-gray-50;
}
}
kbd:not(.compound) {
@apply inline-block font-medium text-xs p-1 border border-gray-dark rounded-sm;
}
/* code blocks */
pre {
@apply relative border overflow-x-hidden rounded-sm shadow leading-normal mb-6;
/* give some extra padding to parsed-literals */
&.literal-block {
@apply py-4 pl-4 overflow-x-auto;
}
& code {
@apply block pl-4 py-4 overflow-x-auto;
}
& .copy {
@apply absolute top-3 right-1.5 border p-1 uppercase text-xs tracking-wide rounded-sm text-gray-700 shadow-sm bg-white opacity-0 focus:opacity-100 transition-all duration-500 transform active:translate-x-0.5 active:translate-y-0.5 z-10;
}
&:hover .copy {
@apply opacity-100;
}
}
.admonition pre,
.admonition .highlight {
@apply shadow-none;
}
/* the outer wrapper for a code block */
.highlight:not(.docutils) {
@apply my-6;
& .caption-text {
@apply text-gray-light tracking-wide;
}
/* emphasized lines */
& mark,
& ins,
& del {
@apply block relative -ml-4 pl-4 py-px;
}
& mark {
@apply bg-yellow-200;
}
& ins {
@apply bg-green-200 no-underline;
&:before {
content: "\002b";
left: 2px;
@apply absolute text-green-900;
}
}
& del {
@apply bg-red-200 no-underline;
&:before {
content: "\2212";
left: 2px;
@apply absolute text-red-900;
}
}
/* line numbers */
& .linenos {
@apply bg-transparent text-gray-700 p-0 pr-6 select-none;
}
/* code lines (wrapped around lines with line numbers) */
& .code-line {
@apply block;
}
}
/* Diff highlighting inserted/deleted elements
some pygments themes do not have styles for it */
span.gd {
@apply inline-block bg-red-200 py-px w-full;
}
span.gi {
@apply inline-block bg-green-200 py-px w-full;
}
/* the header of a code block */
.code-header {
@apply flex justify-between items-center text-sm py-2 bg-gray-100 shadow rounded-t-sm;
}
.code-lang {
@apply inline-block text-gray-dark ml-2 mr-auto font-mono uppercase tracking-wider;
}
/* make prompts unselectable */
.gp {
@apply select-none pointer-events-none font-medium;
}
/* Placeholder text, this assumes that ``var`` isn't used elsewhere in docutils/Sphinx
*/
var {
@apply italic text-purple-800;
}
/* autodocs */
.guilabel,
.menuselection {
@apply font-medium text-gray-dark tracking-wide;
}
dl.code-definition {
@apply mt-6 pt-6 mb-12 border-t;
& dt {
@apply font-normal;
& > code {
@apply border-none bg-transparent text-gray-dark px-0;
}
}
& .property {
@apply text-gray-light;
}
}
| 0.575707 | 0.251797 |
.github #tm_webpreview_header{
color:#eee;
background:#333;
border-bottom:2px solid #ccc;
}
.github #tm_webpreview_header #gradient{
display:none;
}
.github #tm_webpreview_header p{
margin:0 0 15px 0 !important;
}
/* @end */
/*------------------------------------------------------------------------------
@group Wiki Styles
------------------------------------------------------------------------------*/
.github{
font-family:Helvetica !important;
}
body.github{
background:#f8f8f8;
}
.github h1, h2, h3, h4, h5, h6 {
border: 0 !important;
}
.github h1 {
font-size: 170% !important;
/*border-top: 4px solid #aaa !important;*/
padding-top: .5em !important;
margin-top: 1.5em !important;
}
.github h1:first-child {
margin-top: 0 !important;
padding-top: .25em !important;
border-top: none !important;
}
.github h2 {
font-size: 150% !important;
margin-top: 1.5em !important;
/*border-top: 4px solid #e0e0e0 !important;*/
padding-top: .5em !important;
}
.github h3 {
font-size: 130% !important;
margin-top: 1em !important;
}
.github h4 {
font-size: 110% !important;
margin-top: 1em !important;
}
.github p {
margin: 1em 0 !important;
line-height: 1.5em !important;
}
.github ul {
margin: 1em 0 1em 2em !important;
}
.github ul {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.github ol {
margin: 1em 0 1em 2em !important;
}
.github ol ol {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.github ul ul,
.github ul ol,
.github ol ol,
.github ol ul {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.github blockquote {
margin: 1em 0 !important;
border-left: 5px solid #ddd !important;
padding-left: .6em !important;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px !important;
line-height: 20px;
color: #333333 !important;
}
.github dt {
font-weight: bold !important;
margin-left: 1em !important;
}
.github dd {
margin-left: 2em !important;
margin-bottom: 1em !important;
}
.github table {
margin: 1em 0 !important;
}
.github table th {
border-bottom: 1px solid #bbb !important;
padding: .2em 1em !important;
}
.github table td {
border-bottom: 1px solid #ddd !important;
padding: .2em 1em !important;
}
.github pre {
margin: 1em 0 !important;
font-size: 100% !important;
background-color: #f8f8ff !important;
border: 1px solid #dedede !important;
padding: .5em !important;
line-height: 1.1em !important;
color: #444 !important;
overflow: auto !important;
}
.github pre code {
padding: 0 !important;
font-size: 90% !important;
background-color: #f8f8ff !important;
border: none !important;
}
.github code {
font-size: 90% !important;
font-family: Consolas, "Liberation Mono", Courier, monospace, 'Inconsolata', sans-serif;
background-color: #f8f8ff !important;
color: #444 !important;
padding: 0 .2em !important;
border: 1px solid #dedede !important;
}
/* console */
.github pre.console {
margin: 1em 0 !important;
font-size: 90% !important;
background-color: black !important;
padding: .5em !important;
line-height: 1.5em !important;
color: white !important;
}
.github pre.console code {
padding: 0 !important;
font-size: 100% !important;
background-color: black !important;
border: none !important;
color: white !important;
}
.github pre.console span {
color: #888 !important;
}
.github pre.console span.command {
color: yellow !important;
}
/* @end */
|
micro-aj/styles/github.css
|
.github #tm_webpreview_header{
color:#eee;
background:#333;
border-bottom:2px solid #ccc;
}
.github #tm_webpreview_header #gradient{
display:none;
}
.github #tm_webpreview_header p{
margin:0 0 15px 0 !important;
}
/* @end */
/*------------------------------------------------------------------------------
@group Wiki Styles
------------------------------------------------------------------------------*/
.github{
font-family:Helvetica !important;
}
body.github{
background:#f8f8f8;
}
.github h1, h2, h3, h4, h5, h6 {
border: 0 !important;
}
.github h1 {
font-size: 170% !important;
/*border-top: 4px solid #aaa !important;*/
padding-top: .5em !important;
margin-top: 1.5em !important;
}
.github h1:first-child {
margin-top: 0 !important;
padding-top: .25em !important;
border-top: none !important;
}
.github h2 {
font-size: 150% !important;
margin-top: 1.5em !important;
/*border-top: 4px solid #e0e0e0 !important;*/
padding-top: .5em !important;
}
.github h3 {
font-size: 130% !important;
margin-top: 1em !important;
}
.github h4 {
font-size: 110% !important;
margin-top: 1em !important;
}
.github p {
margin: 1em 0 !important;
line-height: 1.5em !important;
}
.github ul {
margin: 1em 0 1em 2em !important;
}
.github ul {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.github ol {
margin: 1em 0 1em 2em !important;
}
.github ol ol {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.github ul ul,
.github ul ol,
.github ol ol,
.github ol ul {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.github blockquote {
margin: 1em 0 !important;
border-left: 5px solid #ddd !important;
padding-left: .6em !important;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px !important;
line-height: 20px;
color: #333333 !important;
}
.github dt {
font-weight: bold !important;
margin-left: 1em !important;
}
.github dd {
margin-left: 2em !important;
margin-bottom: 1em !important;
}
.github table {
margin: 1em 0 !important;
}
.github table th {
border-bottom: 1px solid #bbb !important;
padding: .2em 1em !important;
}
.github table td {
border-bottom: 1px solid #ddd !important;
padding: .2em 1em !important;
}
.github pre {
margin: 1em 0 !important;
font-size: 100% !important;
background-color: #f8f8ff !important;
border: 1px solid #dedede !important;
padding: .5em !important;
line-height: 1.1em !important;
color: #444 !important;
overflow: auto !important;
}
.github pre code {
padding: 0 !important;
font-size: 90% !important;
background-color: #f8f8ff !important;
border: none !important;
}
.github code {
font-size: 90% !important;
font-family: Consolas, "Liberation Mono", Courier, monospace, 'Inconsolata', sans-serif;
background-color: #f8f8ff !important;
color: #444 !important;
padding: 0 .2em !important;
border: 1px solid #dedede !important;
}
/* console */
.github pre.console {
margin: 1em 0 !important;
font-size: 90% !important;
background-color: black !important;
padding: .5em !important;
line-height: 1.5em !important;
color: white !important;
}
.github pre.console code {
padding: 0 !important;
font-size: 100% !important;
background-color: black !important;
border: none !important;
color: white !important;
}
.github pre.console span {
color: #888 !important;
}
.github pre.console span.command {
color: yellow !important;
}
/* @end */
| 0.227469 | 0.083553 |
.Popup{position:absolute;bottom:0;z-index:999;float:left;width:7.5rem;height:100%;background:#fff;box-shadow:1px 1px 3px 0 rgba(0,0,0,.15);transform:translate(0,0)}
.Popup .head{padding:.25rem .3rem;width:6.9rem;border-bottom:1px #e4e5e5 solid;background:#f4f5f5;line-height:.3rem}
.Popup .head a.close{width:.3rem;border-radius:.15rem;background:#9ca0b8;color:#fff;text-align:center;font-size:.24rem}
.Popup .body{position:absolute;top:0;right:0;bottom:0;left:0;float:left;overflow-x:hidden;overflow-y:auto;margin:.8rem 0;-webkit-overflow-scrolling:touch}
.Popup .foot{position:absolute;bottom:0;left:0;width:100%;height:.8rem;border-top:1px #f6f7f8 solid;line-height:.8rem}
.Popup .foot p{margin:0 0 0 .4rem;color:#999;line-height:.8rem}
.Popup .foot .btnsm{border-top:1px transparent solid;margin:-1px 0 0 0;width:2rem;color:#fff;text-align:center;font-size:.26rem;background: #61b5e7;}
.Popup .foot .btnsm.submit{border-color:#0072ac;background:#0072ac;color: #fff;}
.fade-enter-active,.fade-leave-active{-webkit-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-o-transition:all .25s ease-out;transition:all .25s ease-out}
.fade-enter,.fade-leave-to{/*opacity:0;*/transform:translate(0,100%)}
.Popup table{float:left;margin:.3rem .3rem;width:6.9rem;border-collapse:collapse;text-align:left}
.Popup table td,.Popup table th{ vertical-align: middle;padding:.1rem .15rem;border:1px #f6f7f8 solid;font-size:.26rem;line-height:.40rem}
.Popup table tr td:first-child{min-width:.68rem;color:#9ca0b8}
.Popup input[type=checkbox]{margin:0 .2rem 0 0}
.Popup input[type=text]{width:100%;line-height:.40rem}
.Popup input::-webkit-input-placeholder,.Popup textarea::-webkit-input-placeholder{color:#bbb;font-size:.24rem;line-height:.40rem}
.Popup input:-moz-placeholder,.Popup textarea::-webkit-input-placeholder{color:#bbb;font-size:.24rem;line-height:.40rem}
.Popup input:-ms-input-placeholder,.Popup textarea::-webkit-input-placeholder{color:#bbb;font-size:.24rem;line-height:.40rem}
|
src/css/popup.css
|
.Popup{position:absolute;bottom:0;z-index:999;float:left;width:7.5rem;height:100%;background:#fff;box-shadow:1px 1px 3px 0 rgba(0,0,0,.15);transform:translate(0,0)}
.Popup .head{padding:.25rem .3rem;width:6.9rem;border-bottom:1px #e4e5e5 solid;background:#f4f5f5;line-height:.3rem}
.Popup .head a.close{width:.3rem;border-radius:.15rem;background:#9ca0b8;color:#fff;text-align:center;font-size:.24rem}
.Popup .body{position:absolute;top:0;right:0;bottom:0;left:0;float:left;overflow-x:hidden;overflow-y:auto;margin:.8rem 0;-webkit-overflow-scrolling:touch}
.Popup .foot{position:absolute;bottom:0;left:0;width:100%;height:.8rem;border-top:1px #f6f7f8 solid;line-height:.8rem}
.Popup .foot p{margin:0 0 0 .4rem;color:#999;line-height:.8rem}
.Popup .foot .btnsm{border-top:1px transparent solid;margin:-1px 0 0 0;width:2rem;color:#fff;text-align:center;font-size:.26rem;background: #61b5e7;}
.Popup .foot .btnsm.submit{border-color:#0072ac;background:#0072ac;color: #fff;}
.fade-enter-active,.fade-leave-active{-webkit-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-o-transition:all .25s ease-out;transition:all .25s ease-out}
.fade-enter,.fade-leave-to{/*opacity:0;*/transform:translate(0,100%)}
.Popup table{float:left;margin:.3rem .3rem;width:6.9rem;border-collapse:collapse;text-align:left}
.Popup table td,.Popup table th{ vertical-align: middle;padding:.1rem .15rem;border:1px #f6f7f8 solid;font-size:.26rem;line-height:.40rem}
.Popup table tr td:first-child{min-width:.68rem;color:#9ca0b8}
.Popup input[type=checkbox]{margin:0 .2rem 0 0}
.Popup input[type=text]{width:100%;line-height:.40rem}
.Popup input::-webkit-input-placeholder,.Popup textarea::-webkit-input-placeholder{color:#bbb;font-size:.24rem;line-height:.40rem}
.Popup input:-moz-placeholder,.Popup textarea::-webkit-input-placeholder{color:#bbb;font-size:.24rem;line-height:.40rem}
.Popup input:-ms-input-placeholder,.Popup textarea::-webkit-input-placeholder{color:#bbb;font-size:.24rem;line-height:.40rem}
| 0.516108 | 0.041793 |
a {
color: #222BBF;
}
#sidebar-wrapper {
margin-left:-100vw;
left: 0;
width: 100vw;
background: #fff;
position: fixed;
height: 100%;
overflow-y: auto;
z-index: 1000;
transition: all .4s cubic-bezier(.694, .0482, .335, 1);
opacity: .5;
top: 0;
}
#sidebar-wrapper.active {
transition: all .4s cubic-bezier(.694, .0482, .335, 1);
left: 100vw;
opacity: 1;
}
.sidebar-nav {
list-style: none;
margin: 0;
padding: 0;
}
.sidebar-nav > li {
line-height: 2.6rem;
text-indent: 20px;
border-bottom: 1px solid #f1f1f1;
}
.sidebar-nav li a {
color: #333;
display: block;
text-decoration: none;
font-size: 1.15rem;
padding: 8px;
}
.sidebar-nav>.sidebar-brand a {
color: #999999;
}
.has-submenu a {
font-weight: bold;
}
.has-submenu i {
line-height: 2.45rem;
right: 1rem;
}
/* Menu CTA */
.menu-cta {
padding: 20px 20px;
background: #eff6d9;
display: flex;
justify-content: space-between;
border-bottom:1px solid #ccc;
}
.menu-cta a {
flex: 1;
text-align: center;
background: #007239;
max-width: 47.5%;
color: #fff;
padding: 1rem .5rem;
font-size: 1.1rem;
border-radius: 5px;
box-shadow: 0 2px 0 #005522;
}
.menu-cta a i {
margin-right: 10px;
}
#menu-toggle {
top: 0;
left: 0;
z-index: 1;
}
#header-menu {
max-height: 50px;
text-align: center;
display: flex;
top: 0;
left: 0;
width: 100%;
height: 50px;
background: #eef6e8;
z-index: 999;
padding-top:3px;
}
.menu-icons {
flex: 1;
max-width: 50px;
font-size: 0;
}
#hitta-butik {
text-align: center;
flex: 1;
line-height: 42px;
font-weight: bold;
font-size: 1.15rem;
color: #007239;
}
#hitta-butik i::before {
position: absolute;
top: -13px;
font-size: 14px;
}
.menu-icons::before {
font-size: 32px;
line-height: 42px;
color: #007239;
}
#submenu {
display: flex;
background: #fff;
align-items: center;
padding: 0 0 10px 15px;
border-bottom: 2px solid #007239
}
#submenu>* {
display: flex;
flex : 1;
}
#site-header {
z-index: 99999;
}
#menu-cart {
padding: 8px;
max-width: 40px;
}
#menu-cart i {
font-size: 40px;
line-height: 1;
padding-top: 5px;
}
#menu-close {
padding: 22px 0 48px 0;
height: 60px;
max-width: 60px;
}
#menu-close i {
font-size: 32px;
font-weight: 100;
color: #333;
opacity: .7;
}
#menu-close:hover i {
opacity: 1;
color: #90c844;
}
#sidebar-wrapper #submenu {
margin: -5px 0 0 0;
padding: 0 20px 0;
border-bottom: none;
}
/* Search Form && Animations */
#search-form input[type="text"] {
height: 40px;
width: 0;
top: 5px;
right: 0;
z-index: 3;
font-weight: 100;
border: none;
outline: none;
background: none;
cursor: pointer;
position: absolute;
display: inline-block;
color: #2b2b2b;
padding: 3px 48px 3px 10px;
transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
}
.is-sticky #search-form input[type="text"] {
width: calc(100vw - 135px);
border: 1px solid #007239;
background: #fff;
}
#search-form input[type="text"]:focus:hover {
border-bottom: 1px solid #007239;
}
#search-form input[type="text"]:focus {
width: calc(100vw - 65px);
z-index: 999;
cursor: text;
border: 1px solid #007239;
color: #000;
background: #fff;
box-shadow: 0 0 10px 0 #fff,
0 0 5px 2px #fff,
0 0 10px 2000px rgba(0, 0, 0, .65);
}
#search-form input[type="submit"] {
background: url('../img/search-icon.png') center top no-repeat;
height: 35px;
width: 48px;
right: 0;
background-size: 36px 36px;
margin-top: 8px;
text-indent: -10000px;
border: none;
position: absolute;
z-index: 2;
opacity: 0.65;
cursor: pointer;
transition: opacity .4s ease;
}
#menu-search:focus+#search_submit {
z-index: 9999;
opacity: 1;
}
#search-form input[type="submit"]:hover {
opacity:1;
}
#search-form {
height: 50px;
width: 100%;
display: inline-block;
margin-top: 4px;
}
.is-sticky #menu-toggle + form #menu-search {
width: 100% !important;
border: 1px solid #007239 !important;
border-radius: 5px !important;
}
/* END Search Form && Animations */
/* Check Buttons Form Control */
[type="checkbox"],
[type="radio"] {
border: 0 !important;
clip: rect(1px, 1px, 1px, 1px) !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;
}
[type="checkbox"]:focus+label::before,
[type="radio"]:focus+label::before {
box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.4) !important;
}
[type="checkbox"]:hover+label::before,
[type="radio"]:hover+label::before {
border-color: #0E0132;
}
[type="checkbox"]:active+label::before,
[type="radio"]:active+label::before {
-webkit-transition-duration: 0;
transition-duration: 0;
}
[type="checkbox"]+label,
[type="radio"]+label {
position: relative;
padding: 6px;
-ms-user-select: none;
user-select: none;
}
[type="checkbox"]+label::before,
[type="radio"]+label::before {
background-color: #fff;
border: 2px solid #222;
color: #222;
box-sizing: content-box;
content: '';
margin-right: 12px;
top: 50%;
left: 0;
width: 32px;
height: 32px;
display: inline-block;
vertical-align: middle;
}
[type="checkbox"]+label::after,
[type="radio"]+label::after {
box-sizing: content-box;
content: '';
background-color: #222;
position: absolute;
top: 23px;
left: 12px;
width: 24px;
height: 24px;
margin-top: -11px;
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition: -webkit-transform 200ms ease-out;
transition: -webkit-transform 200ms ease-out;
transition: transform 200ms ease-out;
transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}
[type="checkbox"][disabled]+label::before,
[type="radio"][disabled]+label::before {
-webkit-animation: none;
animation: none;
box-shadow: none;
border: 1px solid rgba(128, 128, 128, 0.5);
}
[type="checkbox"][disabled]:active+label::before,
[type="checkbox"][disabled]:focus+label::before,
[type="checkbox"][disabled]:hover+label::before,
[type="radio"][disabled]:active+label::before,
[type="radio"][disabled]:focus+label::before,
[type="radio"][disabled]:hover+label::before {
border-color: rgba(128, 128, 128, 0.5);
-webkit-filter: none;
filter: none;
-webkit-transition: none;
transition: none;
}
[type="checkbox"]+label::before,
[type="checkbox"]+label::after {
border-radius: 0;
display: flex;
float: left;
margin-top: 3px;
}
[type="checkbox"]+label::after {
background-color: transparent;
left: calc(13px + 12px/5);
width: 14px;
height: 6.8px;
top: 23px;
margin-top: calc(24px / -2 / 2 * 0.8);
border-style: solid;
border-color: #007239;
border-width: 0 0 3px 3px;
border-radius: 0;
-o-border-image: none;
border-image: none;
-webkit-transform: rotate(-45deg) scale(0);
transform: rotate(-45deg) scale(0);
-webkit-transition: none;
transition: none;
}
[type="checkbox"]:checked+label::before {
border-color: #007239;
}
[type="checkbox"]:checked+label::after {
content: '';
-webkit-transform: rotate(-45deg) scale(1);
transform: rotate(-45deg) scale(1);
-webkit-transition: -webkit-transform 200ms ease-out;
transition: -webkit-transform 200ms ease-out;
transition: transform 200ms ease-out;
transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}
[type="radio"]+label::before,
[type="radio"]+label::after {
border-radius: 50%;
}
[type="radio"]:checked:active+label::before,
[type="radio"]:checked:focus+label::before {
-webkit-animation: none;
animation: none;
-webkit-filter: none;
filter: none;
-webkit-transition: none;
transition: none;
}
[type="radio"]:checked+label::before {
-webkit-animation: none;
animation: none;
background-color: #fff;
}
[type="radio"]:checked+label::after {
-webkit-transform: scale(1);
transform: scale(1);
}
.dependant__info {
display: flex;
max-width:96.5%;
justify-content: space-between;
}
.dependant__info a i,
.dependant__info a span {
margin: 1px 8px 0 0;
display: flex;
float: left;
}
.add-dependant i {
font-size: 2.75rem;
margin: -15px 10px 0 15px;
}
.add-dependant {
font-size: 1.2rem;
color:#222BBF;
display: flex;
align-items: center;
align-self: center;
justify-content: baseline
}
@-webkit-keyframes borderscale {
50% {
box-shadow: 0 0 0 2px #900;
}
}
@keyframes borderscale {
50% {
box-shadow: 0 0 0 2px #900;
}
}
.sort-results select {
-webkit-appearance: none;
-moz-appearance: none;
background-color: #fff;
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%228%22%20viewBox%3D%220%200%2016%208%22%3E%3Cpolygon%20fill%3D%22%234D4D4D%22%20points%3D%228%2C0%2016%2C0%2012%2C4%208%2C8%204%2C4%200%2C0%20%22/%3E%3C/svg%3E);
background-repeat: no-repeat;
background-position:95% 50%;
border: none;
border-radius: 0;
padding: .35em 2em .35em .35em;
font-size: 1rem;
font-weight: bold;
margin-left: -.35em;
}
select:focus,
select:hover {
border-color: #0E0132;
outline: none;
}
select:active {
border-color: #900;
}
select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
select::-ms-expand {
display: none;
}
select:focus::-ms-value {
background: transparent;
color: grey;
}
}
#logo img {
max-width:200px;
}
/* Progress bar */
.progress {
min-width: 100%;
max-width: 100%;
width: 100%;
position: absolute;
height: 32px;
background:#89C943;
}
.progress > div {
display: flex;
align-items: center;
justify-content: center;
}
.progress-bar {
background:#007239;
box-shadow: 2px 0 5px rgba(0, 100, 0, .5);
}
/* END Progress bar */
/* Modal Lightbox */
#profile-grid { overflow: auto; white-space: normal; }
#profile-grid .profile { padding-bottom: 40px; }
#profile-grid .panel { padding: 0 }
#profile-grid .panel-body { padding: 15px }
#profile-grid .profile-name { font-weight: bold; }
#profile-grid .thumbnail {margin-bottom:6px;}
#profile-grid .panel-thumbnail { overflow: hidden; }
#profile-grid .img-rounded { border-radius: 4px 4px 0 0;}
.help-content,
.user__view-sa-funkar-hogkostnadsskydd,
.user__view-sa-funkar-fullmakter,
.sa-gar-det-till-att-fornya-recept-online {
display: none
}
.load-lightbox .modal-footer {
display: flex;
flex-direction: column;
justify-content: center;
}
.load-lightbox .modal-footer .btn-green {
background:#89C943;
color:#fff;
border-color: #89C943;
}
.load-lightbox .modal-footer button {
margin:5px 0;
}
.load-lightbox .top-footer {
text-align: center;
}
.modal-body .top-footer, #top-footer {
font-size: 24px;
font-weight: bold;
}
/* END modal lightbox */
/* Toggle Aktiv */
.toggle-aktiv {
display: flex;
width: 100%;
margin: 10px 0 20px 0;
border: 1px solid #007239;
}
.toggle-aktiv a {
width: 50%;
text-align: center;
padding: 15px 10px;
font-size: .9rem;
color: #000;
cursor: pointer;
display: flex;
flex: 1;
align-content: center;
justify-content: center;
line-height: 30px;
font-weight: bold;
}
.toggle-aktiv a.active {
background: #007239;
color: #fff;
}
.toggle-aktiv a.active::after {
content: ' ';
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 15px solid #007239;
display: inline-block;
position: absolute;
margin-top: 45px;
}
/* Sort Results List */
.sort-results {
display: flex;
}
.sort-results p {
flex: 1;
}
.sort-results p:first-child {
margin-right: 15px;
}
.sort-results label {
width: 100%;
font-weight:400;
}
/* End Toggle Aktiv */
/* Buy Drug Form */
.buy-drug li:first-child {
margin-right: 8px;
}
.input-number {
width: 45px;
padding: 10px 10px;
vertical-align: top;
text-align: center;
outline: none;
border: 1px solid #0E0132;
background: #F8F7F9;
font-size: 0.8rem;
font-weight: bold;
border-radius: 4px;
}
.input-number,
.input-number-decrement,
.input-number-increment {
height: 44px;
}
.input-number-decrement,
.input-number-increment {
display: inline-block;
width: 32px;
line-height: 42px;
color: #ccc;
text-align: center;
cursor: pointer;
font-size: 1.5rem;
}
.buy-drug strong {
font-size:1.2rem;
}
.input-number-decrement:hover:active,
.input-number-increment:hover:active {
background: #007239;
color: #fff;
}
.input-number-decrement:hover,
.input-number-increment:hover {
color: #007239;
}
.input-number-decrement {
border-right: none;
border-radius: 4px 0 0 4px;
}
.input-number-increment {
border-left: none;
border-radius: 0 4px 4px 0;
padding-top:3px;
}
/* END Buy Drug Form */
/* DEPENDANT FORM */
#my-dependant header nav a {
padding:20px 10px 20px 0;
cursor:pointer;
font-size: .88rem;
}
#my-dependant header nav a:last-child {
padding-right: 0;
}
#my-dependant header h4 {
margin-top:20px;
font-weight: bold;
font-size:.9rem;
}
#dependant-selector h4 {
margin-left: 50px;
font-weight: bold;
}
#dependant-selector label span {
margin-left: 46px;
}
#dependant-selector {
margin-top: 2rem;
}
#dependant-selector input+label {
font-size: 20px;
}
#dependant-selector input:not(:checked)+label {
font-weight: 400;
}
#dependant-selector input:checked+label {
text-decoration: underline;
font-weight: bold;
}
#dependant-selector + .hogkostnadsskydd a {
padding:0 0 30px 50px;
}
.hogkostnadsskydd {
margin-bottom: 30px;
}
/* Receptlist */
.public-computer li:before {
content: 'r';
margin-right: 10px;
font-family: 'Lloyds Iconfont';
margin-top: 2px;
color: #007239;
line-height: 30px;
vertical-align: middle;
font-size: 20px;
}
.alert-info.black i {
position: absolute;
font-size: 1rem;
margin-top: -3px;
}
.alert-info.black span {
text-indent: 30px;
display: block;
}
/* View Receptlist Logical Styles */
#view-recept-list {
background-color: #B7B3C3;
font-size: .9rem;
pointer-events: none;
transition: background-color .25s;
border: none;
text-align: center;
padding: 10px 30px;
display: flex;
margin: 0 auto;
}
#i-agree[type=checkbox]:checked+label+button {
background-color: #007239;
pointer-events: auto;
}
#my-recept-list {display:none}
/* Simplified List */
/* .simplified .detailed-information,
.simplified .doctor-prescription {
display: none;
}
*/
.simplified .recept-item {
background: none;
}
/* Modal */
.modal.fade.modal-profile.in {
background: #585958;
}
.modal-content {
background: #f5f9f7;
}
.modal-content>div {
border: none;
}
.recommended-prescription {
color: #0E0132
}
.modal-title {
text-align: center;
font-size: 1.85rem;
line-height:1.25;
font-weight: bold;
}
.modal-title img {
width: 100px;
margin-right: 20px;
}
.explainer {
border: 2px solid #007239;
padding: 20px 30px;
max-width: 380px;
display: block;
margin: 10px auto 20px auto;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.explainer h4 {
font-weight: bold;
text-align: center;
}
.explainer ul {
list-style-image: url("../img/correct-icon.png");
margin-left: 40px;
}
.explainer ul li {
font-size: 18px;
color:#000;
}
@media only screen and (max-width:500px) {
.modal-title header {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
margin-top:-80px
}
.modal-title header img {
position: relative;
left: 0;
margin-left: 0;
top: 0;
width: 50px;
}
.explainer ul {
margin-left: 30px;
}
.explainer {
border:none;
padding: 20px 15px;
}
.explainer ul li {
font-size:14px;
}
.modal p {
font-size:16px;
}
.modal-title {
font-size: 1.5rem;
}
.modal-title img {
position: absolute;
left: 50%;
margin-left: -50px;
top: 20px;
}
.modal-title {
margin-top: 110px;
}
}
.modal-body {
max-width: 700px;
margin: 0 auto;
font-size: 20px;
}
.centered-link-button {
display: flex;
width: 100%;
align-self: center;
align-items: center;
justify-content: center;
flex-wrap: wrap;
text-align: center;
flex-direction: column;
margin: 40px 0;
}
.centered-link-button > * {
min-width: 200px;
}
.centered-link-button .lloydscon {
font-size:12px;
color:#2b2b2b;
}
.accordion h4 a {
padding: 15px 20px;
font-size: 20px;
display: block;
text-decoration: none;
margin-bottom: 0;
color: #007239;
}
.accordion h4 a.selected i {
transform:rotate(180deg);
}
.accordion .inner {
padding: 10px 20px;
}
.modal-footer {
text-align: center;
border:none;
}
.modal-footer button {
box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
background: none;
line-height: 1.25;
font-weight: bold;
min-width: 220px;
font-size: 1.1rem;
color: #0E0132;
border: 1px solid;
padding: 12px 20px;
display: flex;
text-align: center;
border-radius: 2px;
margin: 30px auto;
justify-content: center;
align-content: center;
align-self: center;
max-width: 180px;
font-weight: bold;
}
.modal-footer button:hover {
background:#000;
color:#fff;
}
.modal-body footer {
text-align: center;
}
.modal-body footer p {
display: inline-block;
width:100%;
margin:0 0 20px 0;
}
|
src/css/_components.css
|
a {
color: #222BBF;
}
#sidebar-wrapper {
margin-left:-100vw;
left: 0;
width: 100vw;
background: #fff;
position: fixed;
height: 100%;
overflow-y: auto;
z-index: 1000;
transition: all .4s cubic-bezier(.694, .0482, .335, 1);
opacity: .5;
top: 0;
}
#sidebar-wrapper.active {
transition: all .4s cubic-bezier(.694, .0482, .335, 1);
left: 100vw;
opacity: 1;
}
.sidebar-nav {
list-style: none;
margin: 0;
padding: 0;
}
.sidebar-nav > li {
line-height: 2.6rem;
text-indent: 20px;
border-bottom: 1px solid #f1f1f1;
}
.sidebar-nav li a {
color: #333;
display: block;
text-decoration: none;
font-size: 1.15rem;
padding: 8px;
}
.sidebar-nav>.sidebar-brand a {
color: #999999;
}
.has-submenu a {
font-weight: bold;
}
.has-submenu i {
line-height: 2.45rem;
right: 1rem;
}
/* Menu CTA */
.menu-cta {
padding: 20px 20px;
background: #eff6d9;
display: flex;
justify-content: space-between;
border-bottom:1px solid #ccc;
}
.menu-cta a {
flex: 1;
text-align: center;
background: #007239;
max-width: 47.5%;
color: #fff;
padding: 1rem .5rem;
font-size: 1.1rem;
border-radius: 5px;
box-shadow: 0 2px 0 #005522;
}
.menu-cta a i {
margin-right: 10px;
}
#menu-toggle {
top: 0;
left: 0;
z-index: 1;
}
#header-menu {
max-height: 50px;
text-align: center;
display: flex;
top: 0;
left: 0;
width: 100%;
height: 50px;
background: #eef6e8;
z-index: 999;
padding-top:3px;
}
.menu-icons {
flex: 1;
max-width: 50px;
font-size: 0;
}
#hitta-butik {
text-align: center;
flex: 1;
line-height: 42px;
font-weight: bold;
font-size: 1.15rem;
color: #007239;
}
#hitta-butik i::before {
position: absolute;
top: -13px;
font-size: 14px;
}
.menu-icons::before {
font-size: 32px;
line-height: 42px;
color: #007239;
}
#submenu {
display: flex;
background: #fff;
align-items: center;
padding: 0 0 10px 15px;
border-bottom: 2px solid #007239
}
#submenu>* {
display: flex;
flex : 1;
}
#site-header {
z-index: 99999;
}
#menu-cart {
padding: 8px;
max-width: 40px;
}
#menu-cart i {
font-size: 40px;
line-height: 1;
padding-top: 5px;
}
#menu-close {
padding: 22px 0 48px 0;
height: 60px;
max-width: 60px;
}
#menu-close i {
font-size: 32px;
font-weight: 100;
color: #333;
opacity: .7;
}
#menu-close:hover i {
opacity: 1;
color: #90c844;
}
#sidebar-wrapper #submenu {
margin: -5px 0 0 0;
padding: 0 20px 0;
border-bottom: none;
}
/* Search Form && Animations */
#search-form input[type="text"] {
height: 40px;
width: 0;
top: 5px;
right: 0;
z-index: 3;
font-weight: 100;
border: none;
outline: none;
background: none;
cursor: pointer;
position: absolute;
display: inline-block;
color: #2b2b2b;
padding: 3px 48px 3px 10px;
transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
}
.is-sticky #search-form input[type="text"] {
width: calc(100vw - 135px);
border: 1px solid #007239;
background: #fff;
}
#search-form input[type="text"]:focus:hover {
border-bottom: 1px solid #007239;
}
#search-form input[type="text"]:focus {
width: calc(100vw - 65px);
z-index: 999;
cursor: text;
border: 1px solid #007239;
color: #000;
background: #fff;
box-shadow: 0 0 10px 0 #fff,
0 0 5px 2px #fff,
0 0 10px 2000px rgba(0, 0, 0, .65);
}
#search-form input[type="submit"] {
background: url('../img/search-icon.png') center top no-repeat;
height: 35px;
width: 48px;
right: 0;
background-size: 36px 36px;
margin-top: 8px;
text-indent: -10000px;
border: none;
position: absolute;
z-index: 2;
opacity: 0.65;
cursor: pointer;
transition: opacity .4s ease;
}
#menu-search:focus+#search_submit {
z-index: 9999;
opacity: 1;
}
#search-form input[type="submit"]:hover {
opacity:1;
}
#search-form {
height: 50px;
width: 100%;
display: inline-block;
margin-top: 4px;
}
.is-sticky #menu-toggle + form #menu-search {
width: 100% !important;
border: 1px solid #007239 !important;
border-radius: 5px !important;
}
/* END Search Form && Animations */
/* Check Buttons Form Control */
[type="checkbox"],
[type="radio"] {
border: 0 !important;
clip: rect(1px, 1px, 1px, 1px) !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;
}
[type="checkbox"]:focus+label::before,
[type="radio"]:focus+label::before {
box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.4) !important;
}
[type="checkbox"]:hover+label::before,
[type="radio"]:hover+label::before {
border-color: #0E0132;
}
[type="checkbox"]:active+label::before,
[type="radio"]:active+label::before {
-webkit-transition-duration: 0;
transition-duration: 0;
}
[type="checkbox"]+label,
[type="radio"]+label {
position: relative;
padding: 6px;
-ms-user-select: none;
user-select: none;
}
[type="checkbox"]+label::before,
[type="radio"]+label::before {
background-color: #fff;
border: 2px solid #222;
color: #222;
box-sizing: content-box;
content: '';
margin-right: 12px;
top: 50%;
left: 0;
width: 32px;
height: 32px;
display: inline-block;
vertical-align: middle;
}
[type="checkbox"]+label::after,
[type="radio"]+label::after {
box-sizing: content-box;
content: '';
background-color: #222;
position: absolute;
top: 23px;
left: 12px;
width: 24px;
height: 24px;
margin-top: -11px;
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition: -webkit-transform 200ms ease-out;
transition: -webkit-transform 200ms ease-out;
transition: transform 200ms ease-out;
transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}
[type="checkbox"][disabled]+label::before,
[type="radio"][disabled]+label::before {
-webkit-animation: none;
animation: none;
box-shadow: none;
border: 1px solid rgba(128, 128, 128, 0.5);
}
[type="checkbox"][disabled]:active+label::before,
[type="checkbox"][disabled]:focus+label::before,
[type="checkbox"][disabled]:hover+label::before,
[type="radio"][disabled]:active+label::before,
[type="radio"][disabled]:focus+label::before,
[type="radio"][disabled]:hover+label::before {
border-color: rgba(128, 128, 128, 0.5);
-webkit-filter: none;
filter: none;
-webkit-transition: none;
transition: none;
}
[type="checkbox"]+label::before,
[type="checkbox"]+label::after {
border-radius: 0;
display: flex;
float: left;
margin-top: 3px;
}
[type="checkbox"]+label::after {
background-color: transparent;
left: calc(13px + 12px/5);
width: 14px;
height: 6.8px;
top: 23px;
margin-top: calc(24px / -2 / 2 * 0.8);
border-style: solid;
border-color: #007239;
border-width: 0 0 3px 3px;
border-radius: 0;
-o-border-image: none;
border-image: none;
-webkit-transform: rotate(-45deg) scale(0);
transform: rotate(-45deg) scale(0);
-webkit-transition: none;
transition: none;
}
[type="checkbox"]:checked+label::before {
border-color: #007239;
}
[type="checkbox"]:checked+label::after {
content: '';
-webkit-transform: rotate(-45deg) scale(1);
transform: rotate(-45deg) scale(1);
-webkit-transition: -webkit-transform 200ms ease-out;
transition: -webkit-transform 200ms ease-out;
transition: transform 200ms ease-out;
transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}
[type="radio"]+label::before,
[type="radio"]+label::after {
border-radius: 50%;
}
[type="radio"]:checked:active+label::before,
[type="radio"]:checked:focus+label::before {
-webkit-animation: none;
animation: none;
-webkit-filter: none;
filter: none;
-webkit-transition: none;
transition: none;
}
[type="radio"]:checked+label::before {
-webkit-animation: none;
animation: none;
background-color: #fff;
}
[type="radio"]:checked+label::after {
-webkit-transform: scale(1);
transform: scale(1);
}
.dependant__info {
display: flex;
max-width:96.5%;
justify-content: space-between;
}
.dependant__info a i,
.dependant__info a span {
margin: 1px 8px 0 0;
display: flex;
float: left;
}
.add-dependant i {
font-size: 2.75rem;
margin: -15px 10px 0 15px;
}
.add-dependant {
font-size: 1.2rem;
color:#222BBF;
display: flex;
align-items: center;
align-self: center;
justify-content: baseline
}
@-webkit-keyframes borderscale {
50% {
box-shadow: 0 0 0 2px #900;
}
}
@keyframes borderscale {
50% {
box-shadow: 0 0 0 2px #900;
}
}
.sort-results select {
-webkit-appearance: none;
-moz-appearance: none;
background-color: #fff;
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%228%22%20viewBox%3D%220%200%2016%208%22%3E%3Cpolygon%20fill%3D%22%234D4D4D%22%20points%3D%228%2C0%2016%2C0%2012%2C4%208%2C8%204%2C4%200%2C0%20%22/%3E%3C/svg%3E);
background-repeat: no-repeat;
background-position:95% 50%;
border: none;
border-radius: 0;
padding: .35em 2em .35em .35em;
font-size: 1rem;
font-weight: bold;
margin-left: -.35em;
}
select:focus,
select:hover {
border-color: #0E0132;
outline: none;
}
select:active {
border-color: #900;
}
select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
select::-ms-expand {
display: none;
}
select:focus::-ms-value {
background: transparent;
color: grey;
}
}
#logo img {
max-width:200px;
}
/* Progress bar */
.progress {
min-width: 100%;
max-width: 100%;
width: 100%;
position: absolute;
height: 32px;
background:#89C943;
}
.progress > div {
display: flex;
align-items: center;
justify-content: center;
}
.progress-bar {
background:#007239;
box-shadow: 2px 0 5px rgba(0, 100, 0, .5);
}
/* END Progress bar */
/* Modal Lightbox */
#profile-grid { overflow: auto; white-space: normal; }
#profile-grid .profile { padding-bottom: 40px; }
#profile-grid .panel { padding: 0 }
#profile-grid .panel-body { padding: 15px }
#profile-grid .profile-name { font-weight: bold; }
#profile-grid .thumbnail {margin-bottom:6px;}
#profile-grid .panel-thumbnail { overflow: hidden; }
#profile-grid .img-rounded { border-radius: 4px 4px 0 0;}
.help-content,
.user__view-sa-funkar-hogkostnadsskydd,
.user__view-sa-funkar-fullmakter,
.sa-gar-det-till-att-fornya-recept-online {
display: none
}
.load-lightbox .modal-footer {
display: flex;
flex-direction: column;
justify-content: center;
}
.load-lightbox .modal-footer .btn-green {
background:#89C943;
color:#fff;
border-color: #89C943;
}
.load-lightbox .modal-footer button {
margin:5px 0;
}
.load-lightbox .top-footer {
text-align: center;
}
.modal-body .top-footer, #top-footer {
font-size: 24px;
font-weight: bold;
}
/* END modal lightbox */
/* Toggle Aktiv */
.toggle-aktiv {
display: flex;
width: 100%;
margin: 10px 0 20px 0;
border: 1px solid #007239;
}
.toggle-aktiv a {
width: 50%;
text-align: center;
padding: 15px 10px;
font-size: .9rem;
color: #000;
cursor: pointer;
display: flex;
flex: 1;
align-content: center;
justify-content: center;
line-height: 30px;
font-weight: bold;
}
.toggle-aktiv a.active {
background: #007239;
color: #fff;
}
.toggle-aktiv a.active::after {
content: ' ';
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 15px solid #007239;
display: inline-block;
position: absolute;
margin-top: 45px;
}
/* Sort Results List */
.sort-results {
display: flex;
}
.sort-results p {
flex: 1;
}
.sort-results p:first-child {
margin-right: 15px;
}
.sort-results label {
width: 100%;
font-weight:400;
}
/* End Toggle Aktiv */
/* Buy Drug Form */
.buy-drug li:first-child {
margin-right: 8px;
}
.input-number {
width: 45px;
padding: 10px 10px;
vertical-align: top;
text-align: center;
outline: none;
border: 1px solid #0E0132;
background: #F8F7F9;
font-size: 0.8rem;
font-weight: bold;
border-radius: 4px;
}
.input-number,
.input-number-decrement,
.input-number-increment {
height: 44px;
}
.input-number-decrement,
.input-number-increment {
display: inline-block;
width: 32px;
line-height: 42px;
color: #ccc;
text-align: center;
cursor: pointer;
font-size: 1.5rem;
}
.buy-drug strong {
font-size:1.2rem;
}
.input-number-decrement:hover:active,
.input-number-increment:hover:active {
background: #007239;
color: #fff;
}
.input-number-decrement:hover,
.input-number-increment:hover {
color: #007239;
}
.input-number-decrement {
border-right: none;
border-radius: 4px 0 0 4px;
}
.input-number-increment {
border-left: none;
border-radius: 0 4px 4px 0;
padding-top:3px;
}
/* END Buy Drug Form */
/* DEPENDANT FORM */
#my-dependant header nav a {
padding:20px 10px 20px 0;
cursor:pointer;
font-size: .88rem;
}
#my-dependant header nav a:last-child {
padding-right: 0;
}
#my-dependant header h4 {
margin-top:20px;
font-weight: bold;
font-size:.9rem;
}
#dependant-selector h4 {
margin-left: 50px;
font-weight: bold;
}
#dependant-selector label span {
margin-left: 46px;
}
#dependant-selector {
margin-top: 2rem;
}
#dependant-selector input+label {
font-size: 20px;
}
#dependant-selector input:not(:checked)+label {
font-weight: 400;
}
#dependant-selector input:checked+label {
text-decoration: underline;
font-weight: bold;
}
#dependant-selector + .hogkostnadsskydd a {
padding:0 0 30px 50px;
}
.hogkostnadsskydd {
margin-bottom: 30px;
}
/* Receptlist */
.public-computer li:before {
content: 'r';
margin-right: 10px;
font-family: 'Lloyds Iconfont';
margin-top: 2px;
color: #007239;
line-height: 30px;
vertical-align: middle;
font-size: 20px;
}
.alert-info.black i {
position: absolute;
font-size: 1rem;
margin-top: -3px;
}
.alert-info.black span {
text-indent: 30px;
display: block;
}
/* View Receptlist Logical Styles */
#view-recept-list {
background-color: #B7B3C3;
font-size: .9rem;
pointer-events: none;
transition: background-color .25s;
border: none;
text-align: center;
padding: 10px 30px;
display: flex;
margin: 0 auto;
}
#i-agree[type=checkbox]:checked+label+button {
background-color: #007239;
pointer-events: auto;
}
#my-recept-list {display:none}
/* Simplified List */
/* .simplified .detailed-information,
.simplified .doctor-prescription {
display: none;
}
*/
.simplified .recept-item {
background: none;
}
/* Modal */
.modal.fade.modal-profile.in {
background: #585958;
}
.modal-content {
background: #f5f9f7;
}
.modal-content>div {
border: none;
}
.recommended-prescription {
color: #0E0132
}
.modal-title {
text-align: center;
font-size: 1.85rem;
line-height:1.25;
font-weight: bold;
}
.modal-title img {
width: 100px;
margin-right: 20px;
}
.explainer {
border: 2px solid #007239;
padding: 20px 30px;
max-width: 380px;
display: block;
margin: 10px auto 20px auto;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.explainer h4 {
font-weight: bold;
text-align: center;
}
.explainer ul {
list-style-image: url("../img/correct-icon.png");
margin-left: 40px;
}
.explainer ul li {
font-size: 18px;
color:#000;
}
@media only screen and (max-width:500px) {
.modal-title header {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
margin-top:-80px
}
.modal-title header img {
position: relative;
left: 0;
margin-left: 0;
top: 0;
width: 50px;
}
.explainer ul {
margin-left: 30px;
}
.explainer {
border:none;
padding: 20px 15px;
}
.explainer ul li {
font-size:14px;
}
.modal p {
font-size:16px;
}
.modal-title {
font-size: 1.5rem;
}
.modal-title img {
position: absolute;
left: 50%;
margin-left: -50px;
top: 20px;
}
.modal-title {
margin-top: 110px;
}
}
.modal-body {
max-width: 700px;
margin: 0 auto;
font-size: 20px;
}
.centered-link-button {
display: flex;
width: 100%;
align-self: center;
align-items: center;
justify-content: center;
flex-wrap: wrap;
text-align: center;
flex-direction: column;
margin: 40px 0;
}
.centered-link-button > * {
min-width: 200px;
}
.centered-link-button .lloydscon {
font-size:12px;
color:#2b2b2b;
}
.accordion h4 a {
padding: 15px 20px;
font-size: 20px;
display: block;
text-decoration: none;
margin-bottom: 0;
color: #007239;
}
.accordion h4 a.selected i {
transform:rotate(180deg);
}
.accordion .inner {
padding: 10px 20px;
}
.modal-footer {
text-align: center;
border:none;
}
.modal-footer button {
box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
background: none;
line-height: 1.25;
font-weight: bold;
min-width: 220px;
font-size: 1.1rem;
color: #0E0132;
border: 1px solid;
padding: 12px 20px;
display: flex;
text-align: center;
border-radius: 2px;
margin: 30px auto;
justify-content: center;
align-content: center;
align-self: center;
max-width: 180px;
font-weight: bold;
}
.modal-footer button:hover {
background:#000;
color:#fff;
}
.modal-body footer {
text-align: center;
}
.modal-body footer p {
display: inline-block;
width:100%;
margin:0 0 20px 0;
}
| 0.192653 | 0.113801 |
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 300;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-LightItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-LightItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-MediumItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-MediumItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-BoldItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-BoldItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 800;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-ExtraBoldItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-ExtraBoldItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 300;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Light.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Light.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Regular.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Medium.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Medium.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Bold.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Bold.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 800;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-ExtraBold.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-ExtraBold.ttf) format('truetype');
}
/* Objektiv Mk2 fonts */
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 100;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Thin.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Thin.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 300;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Light.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Light.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Regular.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Regular.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-MediumItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-MediumItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Bold.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Bold.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 800;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.ExtraBold.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.ExtraBold.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 100;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Thin.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Thin.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 300;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Light.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Light.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Regular.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Medium.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Medium.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Bold.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Bold.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 800;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.ExtraBold.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.ExtraBold.ttf) format('truetype');
}
/* Allstate Sans fonts */
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 400;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.svg#AllstateSansW-Regular") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 500;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.svg#AllstateSansW-Medium") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 300;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.svg#AllstateSansW-LightItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 400;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.svg#AllstateSansW-RegularItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 500;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.svg#AllstateSansW-MediumItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 700;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.svg#AllstateSansW-BoldItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 900;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.svg#AllstateSansW-BlackItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 300;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.svg#AllstateSansW-Light") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 700;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.svg#AllstateSansW-Bold") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 900;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.svg#AllstateSansW-Black") format("svg");
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BdObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BdObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Bd.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Bd.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 200;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01XLtObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01XLtObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 600;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01DmObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01DmObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 200;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01XLt.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01XLt.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Bk.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Bk.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW07Md.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW07Md.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 600;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Dm.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Dm.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: italic;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkCnObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkCnObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: italic;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdCnObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdCnObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: normal;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkCn.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkCn.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: normal;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdCn.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdCn.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: normal;
font-weight: 600;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01DmCn.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01DmCn.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: normal;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BdCn.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BdCn.ttf) format('truetype');
}
|
animated.gif.maker_files/fonts.css
|
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 300;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-LightItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-LightItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-MediumItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-MediumItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-BoldItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-BoldItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: italic;
font-weight: 800;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-ExtraBoldItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-ExtraBoldItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 300;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Light.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Light.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Regular.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Medium.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Medium.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Bold.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Bold.ttf) format('truetype');
}
@font-face {
font-family: 'Allstate Objektiv';
font-style: normal;
font-weight: 800;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-ExtraBold.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-ExtraBold.ttf) format('truetype');
}
/* Objektiv Mk2 fonts */
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 100;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Thin.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Thin.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 300;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Light.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Light.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Regular.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Regular.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-MediumItalic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-MediumItalic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Bold.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Bold.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: italic;
font-weight: 800;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.ExtraBold.Italic.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.ExtraBold.Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 100;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Thin.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Thin.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 300;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Light.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Light.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Regular.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Medium.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateObjektiv/AllstateObjektiv-Medium.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Bold.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.Bold.ttf) format('truetype');
}
@font-face {
font-family: 'Objektiv Mk2';
font-style: normal;
font-weight: 800;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.ExtraBold.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ObjektivMk2/ObjektivMk2.ExtraBold.ttf) format('truetype');
}
/* Allstate Sans fonts */
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 400;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Regular.svg#AllstateSansW-Regular") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 500;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Medium.svg#AllstateSansW-Medium") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 300;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-LightItalic.svg#AllstateSansW-LightItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 400;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-RegularItalic.svg#AllstateSansW-RegularItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 500;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-MediumItalic.svg#AllstateSansW-MediumItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 700;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BoldItalic.svg#AllstateSansW-BoldItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: italic;
font-weight: 900;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-BlackItalic.svg#AllstateSansW-BlackItalic") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 300;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Light.svg#AllstateSansW-Light") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 700;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Bold.svg#AllstateSansW-Bold") format("svg");
}
@font-face {
font-family: 'Allstate Sans';
font-style: normal;
font-weight: 900;
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.eot");
src: url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.eot?#iefix") format('embedded-opentype'),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.woff2") format("woff2"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.woff") format("woff"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.ttf") format("truetype"),
url("//cdn.revjet.com/~cdn/Ads/ad_shared/fonts/AllstateSansW/AllstateSansW-Black.svg#AllstateSansW-Black") format("svg");
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BdObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BdObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Bd.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Bd.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 200;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01XLtObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01XLtObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: italic;
font-weight: 600;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01DmObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01DmObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 200;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01XLt.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01XLt.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Bk.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Bk.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW07Md.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW07Md.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic';
font-style: normal;
font-weight: 600;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Dm.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01Dm.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: italic;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkCnObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkCnObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: italic;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdCnObl.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdCnObl.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: normal;
font-weight: 400;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkCn.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BkCn.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: normal;
font-weight: 500;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdCn.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01MdCn.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: normal;
font-weight: 600;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01DmCn.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01DmCn.ttf) format('truetype');
}
@font-face {
font-family: 'ITC Avant Garde Gothic Condensed';
font-style: normal;
font-weight: 700;
src: url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BdCn.woff2) format('woff2'),
url(https://cdn.revjet.com/~cdn/Ads/ad_shared/fonts/ITCAvantGardeGothic/ITCAvantGardeGothicW01BdCn.ttf) format('truetype');
}
| 0.351645 | 0.205356 |
body {
font-family: Calibri,"Helvetica Neue", Helvetica, Arial, sans-serif;
color: black;
background: #7abcff; /* Old browsers */
background: -moz-linear-gradient(top, #7abcff 0%, #60abf8 44%, #4096ee 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #7abcff 0%,#60abf8 44%,#4096ee 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #7abcff 0%,#60abf8 44%,#4096ee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#4096ee',GradientType=0 ); /* IE6-9 */
}
.main_phone::before{
background-image: url(../image/icons/call_icon.png);
}
.kyivstar_phone::before{
background-image: url(../image/icons/kyivstar_icon.png);
}
.vodafone_phone::before{
background-image: url(../image/icons/vodafone_icon.png);
}
.vodafone_phone::before , .kyivstar_phone::before , .main_phone::before{
width: 24px;
height: 24px;
content: '';
display: inline-block;
background-repeat: no-repeat;
margin-bottom: -7px;
margin-left: 7px;
}
.phones{
padding: 10px;
text-align: center;
}
.logo{
padding: 15px;
text-align: center;
}
.logo a {
display: block;
background-image: url(../image/logo.png);
width:300px;
height: 145px;
}
.side_menu{
list-style-type: none;
font-size: 20px ;
text-align: center;
padding: 0;
}
.side_menu a{
text-decoration: none;
}
.side_menu li{
padding: 10px 15px;
word-wrap: break-word;
}
.side_menu li:hover{
background: white;
color:black;
}
.main-content {
background: rgba(255,255,255,1);
padding: 20px;
height: auto;
}
.footer {
height: 60px;
background-color: white;
border-top: 1px solid #ddd;
padding-top: 20px;
bottom: 0;
width: 100%;
}
.slider {
margin: auto ;
width: 100% ;
height: 430px;
}
.news_title {
font-size: 30px;
font-family: Georgia, "Times New Roman", Times, serif;
color: #000;
}
.news_image {
margin: 5px 5px 5px 5px;
padding: 10px;
float:left;
border:1px solid darkgray;
}
.news-description {
text-align: justify;
padding: 10px;
}
.tour_image {
margin: 5px 5px 5px 5px;
padding: 10px;
float:left;
border:1px solid darkgray;
}
.tour_title {
text-align: left;
}
.tour_description {
text-align: justify;
}
.struct_tour li {
list-style-type: none;
font-size: 20px;
}
.struct_tour {
padding: 0;
margin: 0;
}
.btn-order {
text-align: center;
}
.tour_order {
text-align: center;
}
.data_user {
text-align: left;
}
.image_location {
float:left;
}
.location_image {
width:200px;
height: 200px;
}
#header_contacts {
text-align: center;
}
#phones {
text-align: center;
}
.about {
text-align: justify;
font-size: 16px;
padding: 20px;
font-family: "Bodoni MT";
}
.about li {
list-style-type: circle;
}
#text_cor{
list-style-type: square;
}
.tour_type{
margin-bottom: 20px;
}
.wrap {
min-height: 100%;
height: auto;
margin: 0 auto -60px;
padding: 0 0 60px;
}
.footer {
height: 60px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
padding-top: 20px;
}
.admin-default-index {
background-color: white;
height: 550px;
text-align: center;
padding: 10px;
margin: 0;
}
.tour_description_view{
padding: 15px;
padding-left: 5px;
text-align: justify;
}
.data_user, .text_header, #order_styles {
text-align: center;
}
.tour-all, .news-description {
font-family: Colonas,Arialm fantasy;
font-size: 20px;
}
.tour:hover{
background-color: rgba(0,0,0,0.1);
cursor: pointer;
}
.img_loc{
padding: 90px;
}
.btn-search {
position: fixed;
margin: 0 -120px 0;
background-color: white;
border-radius: 100%;
width: 70px;
height: 70px;
box-shadow: 0 3px 20px rgba(0,0,0,.25),
inset 0 2px 0 rgba(255,255,255,.6),
0 2px 0 rgba(0,0,0,.1),
inset 0 0 20px rgba(0,0,0,.1);
}
.btn-search:hover {
background-color: greenyellow;
box-shadow: 0 3px 20px rgba(0,0,0,.25),
inset 0 2px 0 rgba(255,255,255,.6),
0 2px 0 rgba(0,0,0,.1),
inset 0 0 20px rgba(0,0,0,.1);
}
.btn-search_a{
width: 50px;
height: 50px;
}
|
web/css/style.css
|
body {
font-family: Calibri,"Helvetica Neue", Helvetica, Arial, sans-serif;
color: black;
background: #7abcff; /* Old browsers */
background: -moz-linear-gradient(top, #7abcff 0%, #60abf8 44%, #4096ee 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #7abcff 0%,#60abf8 44%,#4096ee 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #7abcff 0%,#60abf8 44%,#4096ee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#4096ee',GradientType=0 ); /* IE6-9 */
}
.main_phone::before{
background-image: url(../image/icons/call_icon.png);
}
.kyivstar_phone::before{
background-image: url(../image/icons/kyivstar_icon.png);
}
.vodafone_phone::before{
background-image: url(../image/icons/vodafone_icon.png);
}
.vodafone_phone::before , .kyivstar_phone::before , .main_phone::before{
width: 24px;
height: 24px;
content: '';
display: inline-block;
background-repeat: no-repeat;
margin-bottom: -7px;
margin-left: 7px;
}
.phones{
padding: 10px;
text-align: center;
}
.logo{
padding: 15px;
text-align: center;
}
.logo a {
display: block;
background-image: url(../image/logo.png);
width:300px;
height: 145px;
}
.side_menu{
list-style-type: none;
font-size: 20px ;
text-align: center;
padding: 0;
}
.side_menu a{
text-decoration: none;
}
.side_menu li{
padding: 10px 15px;
word-wrap: break-word;
}
.side_menu li:hover{
background: white;
color:black;
}
.main-content {
background: rgba(255,255,255,1);
padding: 20px;
height: auto;
}
.footer {
height: 60px;
background-color: white;
border-top: 1px solid #ddd;
padding-top: 20px;
bottom: 0;
width: 100%;
}
.slider {
margin: auto ;
width: 100% ;
height: 430px;
}
.news_title {
font-size: 30px;
font-family: Georgia, "Times New Roman", Times, serif;
color: #000;
}
.news_image {
margin: 5px 5px 5px 5px;
padding: 10px;
float:left;
border:1px solid darkgray;
}
.news-description {
text-align: justify;
padding: 10px;
}
.tour_image {
margin: 5px 5px 5px 5px;
padding: 10px;
float:left;
border:1px solid darkgray;
}
.tour_title {
text-align: left;
}
.tour_description {
text-align: justify;
}
.struct_tour li {
list-style-type: none;
font-size: 20px;
}
.struct_tour {
padding: 0;
margin: 0;
}
.btn-order {
text-align: center;
}
.tour_order {
text-align: center;
}
.data_user {
text-align: left;
}
.image_location {
float:left;
}
.location_image {
width:200px;
height: 200px;
}
#header_contacts {
text-align: center;
}
#phones {
text-align: center;
}
.about {
text-align: justify;
font-size: 16px;
padding: 20px;
font-family: "Bodoni MT";
}
.about li {
list-style-type: circle;
}
#text_cor{
list-style-type: square;
}
.tour_type{
margin-bottom: 20px;
}
.wrap {
min-height: 100%;
height: auto;
margin: 0 auto -60px;
padding: 0 0 60px;
}
.footer {
height: 60px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
padding-top: 20px;
}
.admin-default-index {
background-color: white;
height: 550px;
text-align: center;
padding: 10px;
margin: 0;
}
.tour_description_view{
padding: 15px;
padding-left: 5px;
text-align: justify;
}
.data_user, .text_header, #order_styles {
text-align: center;
}
.tour-all, .news-description {
font-family: Colonas,Arialm fantasy;
font-size: 20px;
}
.tour:hover{
background-color: rgba(0,0,0,0.1);
cursor: pointer;
}
.img_loc{
padding: 90px;
}
.btn-search {
position: fixed;
margin: 0 -120px 0;
background-color: white;
border-radius: 100%;
width: 70px;
height: 70px;
box-shadow: 0 3px 20px rgba(0,0,0,.25),
inset 0 2px 0 rgba(255,255,255,.6),
0 2px 0 rgba(0,0,0,.1),
inset 0 0 20px rgba(0,0,0,.1);
}
.btn-search:hover {
background-color: greenyellow;
box-shadow: 0 3px 20px rgba(0,0,0,.25),
inset 0 2px 0 rgba(255,255,255,.6),
0 2px 0 rgba(0,0,0,.1),
inset 0 0 20px rgba(0,0,0,.1);
}
.btn-search_a{
width: 50px;
height: 50px;
}
| 0.38341 | 0.06727 |
html {
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
html {
padding: 0px;
margin: 0px;
}
body {
background-color: #141a1f;
color: #EDEDED;
font-family: Roboto, Verdana, Arial, Sans-Serif;
font-size: 17px;
box-sizing: border-box;
padding: 128px 24px;
margin: 0px;
width: 100%;
height: 100%;
text-align: center;
}
a, a:visited {
color: #b5131b;
}
a:hover {
color: #c90009;
}
select {
display: inline-block;
vertical-align: middle;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
vertical-align: middle;
min-width: 300px;
max-width: 100% !important;
padding: 0px 4px;
height: 36px;
margin-top: 4px;
margin-bottom: 4px;
cursor: default;
background-color: #444444;
background: #444444;
color: #EDEDED;
font-family: robotolight, Roboto, roboto, Arial, sans-serif;
font-size: 17px;
border: solid #333333 1px;
border-radius: 3px;
transition: 0.15s;
}
select:focus, select:hover, select:active {
background-color: #555555;
outline: 0 !important;
transition: 0.05s;
}
input[type=text], input[type=password], input[type=file] {
display: inline-block;
vertical-align: middle;
padding: 4px;
margin: 0px;
height: 36px;
min-width: 300px;
max-width: 100% !important;
margin-top: 4px;
margin-bottom: 4px;
box-sizing: border-box;
font-size: 17px;
font-family: robotolight, Roboto, roboto, Arial, sans-serif;
border: solid #333333 1px;
border-radius: 3px;
background-color: #444444;
background: #444444;
color: #EDEDED;
caret-color: #EDEDED;
text-align: left;
cursor: text;
transition: 0.15s;
}
input[type=file] {
cursor: default;
height: initial;
min-height: 32px;
color: #999999;
}
input[type=text]:focus, input[type=text]:hover, input[type=password]:focus, input[type=password]:hover, input[type=file]:focus, input[type=file]:hover {
outline: 0;
background-color: #555555;
transition: 0.05s;
}
input[type=submit] {
display: inline-block;
vertical-align: middle;
padding: 0px 16px;
height: 34px;
border: none;
border-radius: 3px;
cursor: pointer;
background: #b5131b;
color: #EDEDED;
font-size: 17px;
transition: 0.15s;
}
input[type=submit]:hover {
background: #c90009;
transition: 0.05s;
}
|
basicstyles.css
|
html {
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
html {
padding: 0px;
margin: 0px;
}
body {
background-color: #141a1f;
color: #EDEDED;
font-family: Roboto, Verdana, Arial, Sans-Serif;
font-size: 17px;
box-sizing: border-box;
padding: 128px 24px;
margin: 0px;
width: 100%;
height: 100%;
text-align: center;
}
a, a:visited {
color: #b5131b;
}
a:hover {
color: #c90009;
}
select {
display: inline-block;
vertical-align: middle;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
vertical-align: middle;
min-width: 300px;
max-width: 100% !important;
padding: 0px 4px;
height: 36px;
margin-top: 4px;
margin-bottom: 4px;
cursor: default;
background-color: #444444;
background: #444444;
color: #EDEDED;
font-family: robotolight, Roboto, roboto, Arial, sans-serif;
font-size: 17px;
border: solid #333333 1px;
border-radius: 3px;
transition: 0.15s;
}
select:focus, select:hover, select:active {
background-color: #555555;
outline: 0 !important;
transition: 0.05s;
}
input[type=text], input[type=password], input[type=file] {
display: inline-block;
vertical-align: middle;
padding: 4px;
margin: 0px;
height: 36px;
min-width: 300px;
max-width: 100% !important;
margin-top: 4px;
margin-bottom: 4px;
box-sizing: border-box;
font-size: 17px;
font-family: robotolight, Roboto, roboto, Arial, sans-serif;
border: solid #333333 1px;
border-radius: 3px;
background-color: #444444;
background: #444444;
color: #EDEDED;
caret-color: #EDEDED;
text-align: left;
cursor: text;
transition: 0.15s;
}
input[type=file] {
cursor: default;
height: initial;
min-height: 32px;
color: #999999;
}
input[type=text]:focus, input[type=text]:hover, input[type=password]:focus, input[type=password]:hover, input[type=file]:focus, input[type=file]:hover {
outline: 0;
background-color: #555555;
transition: 0.05s;
}
input[type=submit] {
display: inline-block;
vertical-align: middle;
padding: 0px 16px;
height: 34px;
border: none;
border-radius: 3px;
cursor: pointer;
background: #b5131b;
color: #EDEDED;
font-size: 17px;
transition: 0.15s;
}
input[type=submit]:hover {
background: #c90009;
transition: 0.05s;
}
| 0.302803 | 0.077553 |
@page {
counter-increment: page;
margin: 2cm 2cm 2cm 2cm;
@top-left {
content: string(guideword, first);
direction: ltr;
font-family: "Yi plus Phonetics", sans-serif; /* default Serif font */
font-weight: bold;
font-size: 12pt;
margin-top: 1em;
}
@top-center {
content: counter(page);
margin-top: 1em
}
@top-right {
content: string(guideword, last);
direction: ltr;
font-family: "Yi plus Phonetics", sans-serif; /* default Serif font */
font-weight: bold;
font-size: 12pt;
margin-top: 1em;
}
}
@page :first {
@top-left { content: ''; }
@top-center { content: ''; }
@top-right { content: ''; }
}
.dicBody {
}
.letHead {
column-count: 1;
clear: both;
}
.letter {
text-align: center;
width: 100%;
margin-top: 18pt;
margin-bottom: 18pt;
direction: ltr;
font-family: "Yi plus Phonetics", serif; /* default Serif font */
font-weight: bold;
font-size: 24pt;
}
.letData {
column-count: 2; -moz-column-count: 2;
column-gap: 1.5em; -moz-column-gap: 1.5em;
column-fill: balance;
text-align: left;
}
.entry {
font-family: "NSimSun-18030", serif; /* inherited */
font-size: 12pt; /* inherited */
font-weight: normal; /* inherited */
font-style: normal; /* inherited */
vertical-align: baseline; /* inherited */
text-decoration: none; /* inherited */
text-indent: -20pt;
margin-left: 5pt;
padding-left: 9pt;
padding-bottom: 2pt;
padding-top: 1pt;
}
.xhomographnumber {
font-weight: bold;
font-size: 55%;
vertical-align: sub;
font-family: "NSimSun-18030", serif; /* cascaded environment */
}
.sense {
font-weight: normal;
}
.xsensenumber {
font-weight: bold;
font-family: "NSimSun-18030", serif; /* cascaded environment */
}
.xitem {
/* placeholder for adding list separators */
}
.xitem[lang='en'] {
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.xitem[lang='cmn-x-pin'] {
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.xitem[lang='ii-x-pin'] {
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.Character_Formatting_2 {
/* lang = 'cmn' */
/* explicit FieldWorks style = 'Character Formatting 2' */
font-family: "SimSun-18030", serif; /* default Serif font */
font-size: 12.600pt;
}
.Character_Formatting_3 {
/* lang = 'cmn', 'en' */
/* explicit FieldWorks style = 'Character Formatting 3' */
font-family: "SimSun-18030", serif; /* default Serif font */
font-size: 12pt;
}
.complexform-form {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-Headword' */
font-family: "Yi plus Phonetics", serif;
font-size: 16pt;
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.complexform-form:after { content: " " }
.complexform-form>.xitem + .xitem:before { content: " " }
.complexformrefs {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.complexformrefs:after { content: " " }
.complexformrefs>.xitem + .xitem:before { content: " " }
.crossref {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-CrossReferences' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.crossref>.xitem + .xitem:before { content: " " }
.crossrefs {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.crossrefs:after { content: ". " }
.crossrefs>.xitem + .xitem:before { content: "; " }
.crossref-targets {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.crossref-targets>.xitem + .xitem:before { content: ", " }
.crossref-type {
/* lang = 'cmn' */
/* explicit FieldWorks style = 'Dictionary-Contrasting' */
font-family: "NSimSun-18030", serif; /* cascaded environment */
font-size: 9pt;
font-weight: normal; /* cascaded environment */
font-style: italic;
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.crossref-type:after { content: ": " }
.crossref-type>.xitem + .xitem:before { content: " " }
.definition {
/* lang = 'cmn' */
}
.definition:after { content: " " }
.definition>.xitem + .xitem:before { content: " " }
.definition_L3 {
/* lang = 'cmn' */
}
.definition_L3:after { content: " " }
.definition_L3>.xitem + .xitem:before { content: " " }
.encyclopedic-info_L2 {
/* lang = 'en' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.encyclopedic-info_L2:before { content: "[" }
.encyclopedic-info_L2:after { content: "] " }
.encyclopedic-info_L2>.xitem + .xitem:before { content: " " }
.entryref-primary-minor {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.entryref-primary-minor:before { content: " " }
.entryref-primary-minor>.xitem + .xitem:before { content: ", " }
.entryref-type-minor {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.entryref-type-minor:after { content: " " }
.entryref-type-minor>.xitem + .xitem:before { content: ", " }
.example {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-Vernacular' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal;
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.example:after { content: " " }
.example>.xitem + .xitem:before { content: " " }
.examples {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.examples:after { content: " " }
.examples>.xitem + .xitem:before { content: " " }
.grammatical-info {
/* explicit FieldWorks style = 'Dictionary-Contrasting' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 9pt;
font-weight: normal; /* cascaded environment */
font-style: italic;
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.grammatical-info:after { content: " " }
.headword {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-Headword' */
font-family: "Yi plus Phonetics", serif;
font-size: 16pt;
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
string-set: guideword content();
}
.headword:after { content: " " }
.headword>.xitem + .xitem:before { content: " " }
.headword-minor {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-Headword' */
font-family: "Yi plus Phonetics", serif;
font-size: 16pt;
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
string-set: guideword content();
}
.headword-minor:after { content: " " }
.headword-minor>.xitem + .xitem:before { content: " " }
.LexEntry-publishStemMinorPrimaryTarget-MLHeadWordPub {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-CrossReferences' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
string-set: guideword content();
}
.LexEntry-publishStemMinorPrimaryTarget-MLHeadWordPub>.xitem + .xitem:before { content: " " }
.LexEntryType-publishStemMinorEntryType-AbbreviationPub {
/* lang = 'cmn' */
}
.LexEntryType-publishStemMinorEntryType-AbbreviationPub:after { content: " " }
.LexEntryType-publishStemMinorEntryType-AbbreviationPub>.xitem + .xitem:before { content: " " }
.lexref-targets {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.lexref-targets:after { content: " " }
.lexref-targets>.xitem + .xitem:before { content: ", " }
.lexref-type {
/* lang = 'cmn' */
/* explicit FieldWorks style = 'Dictionary-Contrasting' */
font-family: "NSimSun-18030", serif; /* cascaded environment */
font-size: 9pt;
font-weight: normal; /* cascaded environment */
font-style: italic;
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.lexref-type:after { content: ": " }
.lexref-type>.xitem + .xitem:before { content: " " }
.LexSense-publishStem-DefinitionPub {
/* lang = 'cmn' */
}
.LexSense-publishStem-DefinitionPub:after { content: " " }
.LexSense-publishStem-DefinitionPub>.xitem + .xitem:before { content: " " }
.LexSense-publishStem-DefinitionPub_L3 {
/* lang = 'cmn' */
}
.LexSense-publishStem-DefinitionPub_L3:after { content: " " }
.LexSense-publishStem-DefinitionPub_L3>.xitem + .xitem:before { content: " " }
.LexSense-publishStem-GlossPub {
/* lang = 'cmn' */
}
.LexSense-publishStem-GlossPub:after { content: " " }
.LexSense-publishStem-GlossPub>.xitem + .xitem:before { content: " " }
.LexSense-publishStem-GlossPub_L3 {
/* lang = 'cmn' */
}
.LexSense-publishStem-GlossPub_L3:after { content: " " }
.LexSense-publishStem-GlossPub_L3>.xitem + .xitem:before { content: " " }
.MoForm-publishStemLexemeForm-FormPub_L2 {
/* lang = 'ii-x-pin' */
/* explicit FieldWorks style = 'Dictionary-Headword' */
font-family: "Arial", serif;
font-size: 12pt;
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.MoForm-publishStemLexemeForm-FormPub_L2:after { content: " " }
.MoForm-publishStemLexemeForm-FormPub_L2>.xitem + .xitem:before { content: " " }
.partofspeech_L2 {
/* lang = 'en' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.partofspeech_L2:after { content: ". " }
.partofspeech_L2>.xitem + .xitem:before { content: " " }
.primaryrefs-minor {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.primaryrefs-minor:after { content: " " }
.primaryrefs-minor>.xitem + .xitem:before { content: ", " }
.pronunciation {
/* lang = 'ii-fonipa' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.pronunciation:before { content: "[" }
.pronunciation:after { content: "]" }
.pronunciation>.xitem + .xitem:before { content: " " }
.pronunciation-minor {
/* lang = 'ii-fonipa' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.pronunciation-minor:before { content: "[" }
.pronunciation-minor:after { content: "]" }
.pronunciation-minor>.xitem + .xitem:before { content: " " }
.pronunciations {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.pronunciations:after { content: " " }
.pronunciations>.xitem + .xitem:before { content: ", " }
.pronunciations-minor {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.pronunciations-minor:after { content: " " }
.pronunciations-minor>.xitem + .xitem:before { content: ", " }
.relations {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.relations:after { content: ". " }
.relations>.xitem + .xitem:before { content: "; " }
.semantic-domain-name {
/* lang = 'cmn' */
}
.semantic-domain-name>.xitem + .xitem:before { content: " " }
.semantic-domains {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.semantic-domains:before { content: "(sem. domains: " }
.semantic-domains:after { content: ".) " }
.semantic-domains>.xitem + .xitem:before { content: ", " }
.sense-crossref {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-CrossReferences' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.sense-crossref>.xitem + .xitem:before { content: " " }
.senses {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.senses:after { content: " " }
.senses>.sense + .sense:before { content: " " }
.translation {
/* lang = 'cmn' */
}
.translation:after { content: " " }
.translation>.xitem + .xitem:before { content: " " }
.translation_L2 {
/* lang = 'en' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.translation_L2:after { content: " " }
.translation_L2>.xitem + .xitem:before { content: " " }
.translations {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.usage-type-abbr {
/* lang = 'cmn' */
}
.usage-type-abbr>.xitem + .xitem:before { content: " " }
.usage-types {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.usage-types:before { content: "{" }
.usage-types:after { content: "} " }
.usage-types>.xitem + .xitem:before { content: ", " }
.variantref-form {
/* lang = 'ii' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.variantref-form>.xitem + .xitem:before { content: ", " }
.variantrefs {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.variantrefs:before { content: "(" }
.variantrefs:after { content: ") " }
.variantrefs>.xitem + .xitem:before { content: "; " }
|
wp-resources/themes/NuosuYi-Dictionary/dictionary.css
|
@page {
counter-increment: page;
margin: 2cm 2cm 2cm 2cm;
@top-left {
content: string(guideword, first);
direction: ltr;
font-family: "Yi plus Phonetics", sans-serif; /* default Serif font */
font-weight: bold;
font-size: 12pt;
margin-top: 1em;
}
@top-center {
content: counter(page);
margin-top: 1em
}
@top-right {
content: string(guideword, last);
direction: ltr;
font-family: "Yi plus Phonetics", sans-serif; /* default Serif font */
font-weight: bold;
font-size: 12pt;
margin-top: 1em;
}
}
@page :first {
@top-left { content: ''; }
@top-center { content: ''; }
@top-right { content: ''; }
}
.dicBody {
}
.letHead {
column-count: 1;
clear: both;
}
.letter {
text-align: center;
width: 100%;
margin-top: 18pt;
margin-bottom: 18pt;
direction: ltr;
font-family: "Yi plus Phonetics", serif; /* default Serif font */
font-weight: bold;
font-size: 24pt;
}
.letData {
column-count: 2; -moz-column-count: 2;
column-gap: 1.5em; -moz-column-gap: 1.5em;
column-fill: balance;
text-align: left;
}
.entry {
font-family: "NSimSun-18030", serif; /* inherited */
font-size: 12pt; /* inherited */
font-weight: normal; /* inherited */
font-style: normal; /* inherited */
vertical-align: baseline; /* inherited */
text-decoration: none; /* inherited */
text-indent: -20pt;
margin-left: 5pt;
padding-left: 9pt;
padding-bottom: 2pt;
padding-top: 1pt;
}
.xhomographnumber {
font-weight: bold;
font-size: 55%;
vertical-align: sub;
font-family: "NSimSun-18030", serif; /* cascaded environment */
}
.sense {
font-weight: normal;
}
.xsensenumber {
font-weight: bold;
font-family: "NSimSun-18030", serif; /* cascaded environment */
}
.xitem {
/* placeholder for adding list separators */
}
.xitem[lang='en'] {
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.xitem[lang='cmn-x-pin'] {
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.xitem[lang='ii-x-pin'] {
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.Character_Formatting_2 {
/* lang = 'cmn' */
/* explicit FieldWorks style = 'Character Formatting 2' */
font-family: "SimSun-18030", serif; /* default Serif font */
font-size: 12.600pt;
}
.Character_Formatting_3 {
/* lang = 'cmn', 'en' */
/* explicit FieldWorks style = 'Character Formatting 3' */
font-family: "SimSun-18030", serif; /* default Serif font */
font-size: 12pt;
}
.complexform-form {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-Headword' */
font-family: "Yi plus Phonetics", serif;
font-size: 16pt;
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.complexform-form:after { content: " " }
.complexform-form>.xitem + .xitem:before { content: " " }
.complexformrefs {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.complexformrefs:after { content: " " }
.complexformrefs>.xitem + .xitem:before { content: " " }
.crossref {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-CrossReferences' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.crossref>.xitem + .xitem:before { content: " " }
.crossrefs {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.crossrefs:after { content: ". " }
.crossrefs>.xitem + .xitem:before { content: "; " }
.crossref-targets {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.crossref-targets>.xitem + .xitem:before { content: ", " }
.crossref-type {
/* lang = 'cmn' */
/* explicit FieldWorks style = 'Dictionary-Contrasting' */
font-family: "NSimSun-18030", serif; /* cascaded environment */
font-size: 9pt;
font-weight: normal; /* cascaded environment */
font-style: italic;
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.crossref-type:after { content: ": " }
.crossref-type>.xitem + .xitem:before { content: " " }
.definition {
/* lang = 'cmn' */
}
.definition:after { content: " " }
.definition>.xitem + .xitem:before { content: " " }
.definition_L3 {
/* lang = 'cmn' */
}
.definition_L3:after { content: " " }
.definition_L3>.xitem + .xitem:before { content: " " }
.encyclopedic-info_L2 {
/* lang = 'en' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.encyclopedic-info_L2:before { content: "[" }
.encyclopedic-info_L2:after { content: "] " }
.encyclopedic-info_L2>.xitem + .xitem:before { content: " " }
.entryref-primary-minor {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.entryref-primary-minor:before { content: " " }
.entryref-primary-minor>.xitem + .xitem:before { content: ", " }
.entryref-type-minor {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.entryref-type-minor:after { content: " " }
.entryref-type-minor>.xitem + .xitem:before { content: ", " }
.example {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-Vernacular' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal;
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.example:after { content: " " }
.example>.xitem + .xitem:before { content: " " }
.examples {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.examples:after { content: " " }
.examples>.xitem + .xitem:before { content: " " }
.grammatical-info {
/* explicit FieldWorks style = 'Dictionary-Contrasting' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 9pt;
font-weight: normal; /* cascaded environment */
font-style: italic;
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.grammatical-info:after { content: " " }
.headword {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-Headword' */
font-family: "Yi plus Phonetics", serif;
font-size: 16pt;
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
string-set: guideword content();
}
.headword:after { content: " " }
.headword>.xitem + .xitem:before { content: " " }
.headword-minor {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-Headword' */
font-family: "Yi plus Phonetics", serif;
font-size: 16pt;
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
string-set: guideword content();
}
.headword-minor:after { content: " " }
.headword-minor>.xitem + .xitem:before { content: " " }
.LexEntry-publishStemMinorPrimaryTarget-MLHeadWordPub {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-CrossReferences' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
string-set: guideword content();
}
.LexEntry-publishStemMinorPrimaryTarget-MLHeadWordPub>.xitem + .xitem:before { content: " " }
.LexEntryType-publishStemMinorEntryType-AbbreviationPub {
/* lang = 'cmn' */
}
.LexEntryType-publishStemMinorEntryType-AbbreviationPub:after { content: " " }
.LexEntryType-publishStemMinorEntryType-AbbreviationPub>.xitem + .xitem:before { content: " " }
.lexref-targets {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.lexref-targets:after { content: " " }
.lexref-targets>.xitem + .xitem:before { content: ", " }
.lexref-type {
/* lang = 'cmn' */
/* explicit FieldWorks style = 'Dictionary-Contrasting' */
font-family: "NSimSun-18030", serif; /* cascaded environment */
font-size: 9pt;
font-weight: normal; /* cascaded environment */
font-style: italic;
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.lexref-type:after { content: ": " }
.lexref-type>.xitem + .xitem:before { content: " " }
.LexSense-publishStem-DefinitionPub {
/* lang = 'cmn' */
}
.LexSense-publishStem-DefinitionPub:after { content: " " }
.LexSense-publishStem-DefinitionPub>.xitem + .xitem:before { content: " " }
.LexSense-publishStem-DefinitionPub_L3 {
/* lang = 'cmn' */
}
.LexSense-publishStem-DefinitionPub_L3:after { content: " " }
.LexSense-publishStem-DefinitionPub_L3>.xitem + .xitem:before { content: " " }
.LexSense-publishStem-GlossPub {
/* lang = 'cmn' */
}
.LexSense-publishStem-GlossPub:after { content: " " }
.LexSense-publishStem-GlossPub>.xitem + .xitem:before { content: " " }
.LexSense-publishStem-GlossPub_L3 {
/* lang = 'cmn' */
}
.LexSense-publishStem-GlossPub_L3:after { content: " " }
.LexSense-publishStem-GlossPub_L3>.xitem + .xitem:before { content: " " }
.MoForm-publishStemLexemeForm-FormPub_L2 {
/* lang = 'ii-x-pin' */
/* explicit FieldWorks style = 'Dictionary-Headword' */
font-family: "Arial", serif;
font-size: 12pt;
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.MoForm-publishStemLexemeForm-FormPub_L2:after { content: " " }
.MoForm-publishStemLexemeForm-FormPub_L2>.xitem + .xitem:before { content: " " }
.partofspeech_L2 {
/* lang = 'en' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.partofspeech_L2:after { content: ". " }
.partofspeech_L2>.xitem + .xitem:before { content: " " }
.primaryrefs-minor {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.primaryrefs-minor:after { content: " " }
.primaryrefs-minor>.xitem + .xitem:before { content: ", " }
.pronunciation {
/* lang = 'ii-fonipa' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.pronunciation:before { content: "[" }
.pronunciation:after { content: "]" }
.pronunciation>.xitem + .xitem:before { content: " " }
.pronunciation-minor {
/* lang = 'ii-fonipa' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.pronunciation-minor:before { content: "[" }
.pronunciation-minor:after { content: "]" }
.pronunciation-minor>.xitem + .xitem:before { content: " " }
.pronunciations {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.pronunciations:after { content: " " }
.pronunciations>.xitem + .xitem:before { content: ", " }
.pronunciations-minor {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.pronunciations-minor:after { content: " " }
.pronunciations-minor>.xitem + .xitem:before { content: ", " }
.relations {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.relations:after { content: ". " }
.relations>.xitem + .xitem:before { content: "; " }
.semantic-domain-name {
/* lang = 'cmn' */
}
.semantic-domain-name>.xitem + .xitem:before { content: " " }
.semantic-domains {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.semantic-domains:before { content: "(sem. domains: " }
.semantic-domains:after { content: ".) " }
.semantic-domains>.xitem + .xitem:before { content: ", " }
.sense-crossref {
/* lang = 'ii' */
/* explicit FieldWorks style = 'Dictionary-CrossReferences' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: bold;
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.sense-crossref>.xitem + .xitem:before { content: " " }
.senses {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.senses:after { content: " " }
.senses>.sense + .sense:before { content: " " }
.translation {
/* lang = 'cmn' */
}
.translation:after { content: " " }
.translation>.xitem + .xitem:before { content: " " }
.translation_L2 {
/* lang = 'en' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.translation_L2:after { content: " " }
.translation_L2>.xitem + .xitem:before { content: " " }
.translations {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.usage-type-abbr {
/* lang = 'cmn' */
}
.usage-type-abbr>.xitem + .xitem:before { content: " " }
.usage-types {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.usage-types:before { content: "{" }
.usage-types:after { content: "} " }
.usage-types>.xitem + .xitem:before { content: ", " }
.variantref-form {
/* lang = 'ii' */
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Yi plus Phonetics", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.variantref-form>.xitem + .xitem:before { content: ", " }
.variantrefs {
/* cascaded environment FieldWorks style = 'Dictionary-Normal' */
font-family: "Times New Roman", serif; /* cascaded environment */
font-size: 12pt; /* cascaded environment */
font-weight: normal; /* cascaded environment */
font-style: normal; /* cascaded environment */
vertical-align: baseline; /* cascaded environment */
text-decoration: none; /* cascaded environment */
}
.variantrefs:before { content: "(" }
.variantrefs:after { content: ") " }
.variantrefs>.xitem + .xitem:before { content: "; " }
| 0.359252 | 0.065575 |
html,
body {
height: 100%;
}
hr{
width: 100%;
align-self: "center";
}
.topbar {
background: #fff;
height: 80px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
position: relative;
width: 100%;
top: 0;
/* z-index: -1; */
}
.row {
width: 100%;
margin-left: auto;
margin-right: auto;
margin-top: 0;
margin-bottom: 0;
/* max-width: 60.5rem; */
}
.block {
max-width: 28%;
border: 1px solid black;
margin: 30px;
box-shadow: 5px 5px #888888;
padding: 10px;
}
.flexbox {
display: flex;
width: 550px;
float: right;
height: 100%;
}
.photo {
vertical-align: center;
margin-top: 20px;
margin-right: 5px;
}
.left {
float: left;
}
#logo {
font-family: "Courier New";
top: -70px;
left: 70px;
width: 300px;
font-size: 40px;
position: relative;
z-index: 1;
}
.right {
float: right;
margin: 10px;
}
.flexbox2 {
display: flex;
float: all;
}
* {
box-sizing: border-box
}
body {
font-family: Verdana, sans-serif;
margin: 0
}
.mySlides {
display: none
}
img {
vertical-align: middle;
}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Next & previous buttons */
.prev,
.next {
cursor: all;
position: absolute;
top: 40%;
width: 50px;
height: 200px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 30px;
text-align: center;
transition: 0.4s ease;
border-radius: 12px;
user-select: none;
padding-top: 75px;
background-color: black;
opacity: 0.2;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 12px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: black;
opacity: 0.8;
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.mySlides>img {
width: 100%;
height: 400px;
box-shadow: 0 0 10px;
border-radius: 10px;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active,
.dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
@keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.prev,
.next,
.text {
font-size: 11px
}
}
.flexbox2 {
display: flex;
margin-left: 300px;
margin-right: 300px;
}
.flexbox2 .div {
padding: 5px;
width: 33%;
position: relative;
margin: 10px;
box-shadow: 0 0 5px;
border-radius: 10px;
}
.flexbox2 .div div {
opacity: 0.6;
min-height: 100px;
margin: 10px;
border: 1px solid #e7e5e6;
}
.flexbox2 .div div:hover {
opacity: 1;
}
h3 {
color: black;
opacity: 0.9;
/* font-family: 'Sofia'; */
text-align: center;
}
.caption {
font-weight: bold;
font-size: 4rem;
}
/* margin at top of bulma tables */
.table {
margin-top: 20px;
}
.page-not-found {
border: #dadada solid 1px;
border-radius: 10px;
width: 60%;
margin-left: 20%;
text-align: center;
padding-top: 120px;
padding-bottom: 120px;
margin-top: 50px;
margin-bottom: 50px;
}
.page-not-found h1 {
font-size: 70px;
}
.page-not-found h2 {
font-size: 20px;
}
.index-content {
width: 70%;
margin-top: 20px;
margin-left: 15%;
margin-bottom: 20px;
font-size: 18px;
border: 2px solid #dfdfdf;
border-radius: 10px;
padding: 20px;
}
.index-content>p {
margin-top: 20px;
}
|
public/css/sheet.css
|
html,
body {
height: 100%;
}
hr{
width: 100%;
align-self: "center";
}
.topbar {
background: #fff;
height: 80px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
position: relative;
width: 100%;
top: 0;
/* z-index: -1; */
}
.row {
width: 100%;
margin-left: auto;
margin-right: auto;
margin-top: 0;
margin-bottom: 0;
/* max-width: 60.5rem; */
}
.block {
max-width: 28%;
border: 1px solid black;
margin: 30px;
box-shadow: 5px 5px #888888;
padding: 10px;
}
.flexbox {
display: flex;
width: 550px;
float: right;
height: 100%;
}
.photo {
vertical-align: center;
margin-top: 20px;
margin-right: 5px;
}
.left {
float: left;
}
#logo {
font-family: "Courier New";
top: -70px;
left: 70px;
width: 300px;
font-size: 40px;
position: relative;
z-index: 1;
}
.right {
float: right;
margin: 10px;
}
.flexbox2 {
display: flex;
float: all;
}
* {
box-sizing: border-box
}
body {
font-family: Verdana, sans-serif;
margin: 0
}
.mySlides {
display: none
}
img {
vertical-align: middle;
}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Next & previous buttons */
.prev,
.next {
cursor: all;
position: absolute;
top: 40%;
width: 50px;
height: 200px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 30px;
text-align: center;
transition: 0.4s ease;
border-radius: 12px;
user-select: none;
padding-top: 75px;
background-color: black;
opacity: 0.2;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 12px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: black;
opacity: 0.8;
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.mySlides>img {
width: 100%;
height: 400px;
box-shadow: 0 0 10px;
border-radius: 10px;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active,
.dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
@keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.prev,
.next,
.text {
font-size: 11px
}
}
.flexbox2 {
display: flex;
margin-left: 300px;
margin-right: 300px;
}
.flexbox2 .div {
padding: 5px;
width: 33%;
position: relative;
margin: 10px;
box-shadow: 0 0 5px;
border-radius: 10px;
}
.flexbox2 .div div {
opacity: 0.6;
min-height: 100px;
margin: 10px;
border: 1px solid #e7e5e6;
}
.flexbox2 .div div:hover {
opacity: 1;
}
h3 {
color: black;
opacity: 0.9;
/* font-family: 'Sofia'; */
text-align: center;
}
.caption {
font-weight: bold;
font-size: 4rem;
}
/* margin at top of bulma tables */
.table {
margin-top: 20px;
}
.page-not-found {
border: #dadada solid 1px;
border-radius: 10px;
width: 60%;
margin-left: 20%;
text-align: center;
padding-top: 120px;
padding-bottom: 120px;
margin-top: 50px;
margin-bottom: 50px;
}
.page-not-found h1 {
font-size: 70px;
}
.page-not-found h2 {
font-size: 20px;
}
.index-content {
width: 70%;
margin-top: 20px;
margin-left: 15%;
margin-bottom: 20px;
font-size: 18px;
border: 2px solid #dfdfdf;
border-radius: 10px;
padding: 20px;
}
.index-content>p {
margin-top: 20px;
}
| 0.597843 | 0.097305 |
@media screen and (min-width: 961px) {
.SideBar{
user-select: none;
position: fixed;
background-color: var(--prime-color);
color: #fff;
width: 70px;
height: 100%;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBarActive{
user-select: none;
position: fixed;
background-color: var(--prime-color);
color: #fff;
width: 240px;
height: 100%;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBar a{
text-decoration: none;
color: #fff;
}
.SideBarActive a{
text-decoration: none;
color: #fff;
}
.MenuBar{
position: relative;
top: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
}
.SideBar .ApplicationBanner{
height: 70px;
width: 70px;
transition: all 0.5s ease;
z-index: 3;
}
.SideBarActive .ApplicationBanner{
height: 70px;
width: 240px;
grid-template-columns: 160px 50px;
column-gap: 10px;
transition: all 0.5s ease;
z-index: 3;
}
.SideBar .ApplicationBanner div{
display: grid;
align-items: center;
grid-template-columns: 0px 30px;
column-gap: 0px;
margin: 10px;
height: 50px;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBarActive .ApplicationBanner div{
display: grid;
align-items: center;
grid-template-columns: 160px 30px;
column-gap: 10px;
margin: 10px;
height: 50px;
overflow: hidden;
transition: all 0.5s ease;
}
.ApplicationBanner div i{
border-radius: 10px;
height: 50px;
width: 50px;
padding: 10px;
font-size: 30px;
z-index: 2;
}
.ApplicationBanner div i:hover{
background-color: #fff;
color: var(--prime-color);
}
.SideBar .ApplicationBanner div span{
opacity: 0;
font-size: 20px;
transition: all 0.5s ease;
z-index: 1;
}
.SideBarActive .ApplicationBanner div span{
opacity: 1;
font-size: 20px;
transition: all 0.5s ease;
z-index: 1;
}
.SideBar .MenuList{
display: grid;
grid-template-rows: auto auto auto auto;
row-gap: 10px;
width: 50px;
list-style: none;
overflow-y: scroll;
transition: all 0.5s ease;
z-index: 1;
}
.SideBarActive .MenuList{
display: grid;
grid-template-rows: auto auto auto auto;
row-gap: 10px;
width: 220px;
list-style: none;
overflow-y: scroll;
transition: all 0.5s ease;
z-index: 1;
}
.MenuList::-webkit-scrollbar{
display: none;
}
.SideBar .MenuList li a{
display: grid;
align-items: center;
grid-template-columns: 30px 0px;
column-gap: 0px;
padding: 10px;
height: 50px;
border: none;
border-radius: 10px;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBarActive .MenuList li a{
display: grid;
align-items: center;
grid-template-columns: 30px 160px;
column-gap: 10px;
padding: 10px;
height: 50px;
border: none;
border-radius: 10px;
overflow: hidden;
transition: all 0.5s ease;
}
.MenuList li a:hover{
background-color: #ffffff;
color: var(--prime-color);
}
.MenuList li i{
font-size: 30px;
}
.SideBar .MenuList li span{
display: inline-block;
line-height: 30px;
height: 30px;
font-size: 15px;
opacity: 0;
transition: all 0.5s ease;
}
.SideBarActive .MenuList li span{
display: inline-block;
line-height: 30px;
height: 30px;
font-size: 15px;
opacity: 1;
transition: all 0.5s ease;
}
.SettingOption{
position: absolute;
bottom: 0;
height: 70px;
width: 70px;
background-color: #4F1D43;
transition: all 0.5s ease;
z-index: 2;
}
.SideBarActive .SettingOption{
width: 240px;
}
.SettingOption a{
display: grid;
align-items: center;
grid-template-columns: 30px 0px;
column-gap: 0px;
padding: 10px;
margin: 10px;
height: 50px;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBarActive .SettingOption a{
grid-template-columns: 30px 160px;
column-gap: 10px;
}
.SettingOption a i{
font-size: 30px;
}
.SettingOption a span{
opacity: 0;
font-size: 15px;
transition: all 0.5s ease;
}
.SideBarActive .SettingOption a span{
opacity: 1;
}
}
|
std_pnl/side_nav_bar.css
|
@media screen and (min-width: 961px) {
.SideBar{
user-select: none;
position: fixed;
background-color: var(--prime-color);
color: #fff;
width: 70px;
height: 100%;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBarActive{
user-select: none;
position: fixed;
background-color: var(--prime-color);
color: #fff;
width: 240px;
height: 100%;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBar a{
text-decoration: none;
color: #fff;
}
.SideBarActive a{
text-decoration: none;
color: #fff;
}
.MenuBar{
position: relative;
top: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
}
.SideBar .ApplicationBanner{
height: 70px;
width: 70px;
transition: all 0.5s ease;
z-index: 3;
}
.SideBarActive .ApplicationBanner{
height: 70px;
width: 240px;
grid-template-columns: 160px 50px;
column-gap: 10px;
transition: all 0.5s ease;
z-index: 3;
}
.SideBar .ApplicationBanner div{
display: grid;
align-items: center;
grid-template-columns: 0px 30px;
column-gap: 0px;
margin: 10px;
height: 50px;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBarActive .ApplicationBanner div{
display: grid;
align-items: center;
grid-template-columns: 160px 30px;
column-gap: 10px;
margin: 10px;
height: 50px;
overflow: hidden;
transition: all 0.5s ease;
}
.ApplicationBanner div i{
border-radius: 10px;
height: 50px;
width: 50px;
padding: 10px;
font-size: 30px;
z-index: 2;
}
.ApplicationBanner div i:hover{
background-color: #fff;
color: var(--prime-color);
}
.SideBar .ApplicationBanner div span{
opacity: 0;
font-size: 20px;
transition: all 0.5s ease;
z-index: 1;
}
.SideBarActive .ApplicationBanner div span{
opacity: 1;
font-size: 20px;
transition: all 0.5s ease;
z-index: 1;
}
.SideBar .MenuList{
display: grid;
grid-template-rows: auto auto auto auto;
row-gap: 10px;
width: 50px;
list-style: none;
overflow-y: scroll;
transition: all 0.5s ease;
z-index: 1;
}
.SideBarActive .MenuList{
display: grid;
grid-template-rows: auto auto auto auto;
row-gap: 10px;
width: 220px;
list-style: none;
overflow-y: scroll;
transition: all 0.5s ease;
z-index: 1;
}
.MenuList::-webkit-scrollbar{
display: none;
}
.SideBar .MenuList li a{
display: grid;
align-items: center;
grid-template-columns: 30px 0px;
column-gap: 0px;
padding: 10px;
height: 50px;
border: none;
border-radius: 10px;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBarActive .MenuList li a{
display: grid;
align-items: center;
grid-template-columns: 30px 160px;
column-gap: 10px;
padding: 10px;
height: 50px;
border: none;
border-radius: 10px;
overflow: hidden;
transition: all 0.5s ease;
}
.MenuList li a:hover{
background-color: #ffffff;
color: var(--prime-color);
}
.MenuList li i{
font-size: 30px;
}
.SideBar .MenuList li span{
display: inline-block;
line-height: 30px;
height: 30px;
font-size: 15px;
opacity: 0;
transition: all 0.5s ease;
}
.SideBarActive .MenuList li span{
display: inline-block;
line-height: 30px;
height: 30px;
font-size: 15px;
opacity: 1;
transition: all 0.5s ease;
}
.SettingOption{
position: absolute;
bottom: 0;
height: 70px;
width: 70px;
background-color: #4F1D43;
transition: all 0.5s ease;
z-index: 2;
}
.SideBarActive .SettingOption{
width: 240px;
}
.SettingOption a{
display: grid;
align-items: center;
grid-template-columns: 30px 0px;
column-gap: 0px;
padding: 10px;
margin: 10px;
height: 50px;
overflow: hidden;
transition: all 0.5s ease;
}
.SideBarActive .SettingOption a{
grid-template-columns: 30px 160px;
column-gap: 10px;
}
.SettingOption a i{
font-size: 30px;
}
.SettingOption a span{
opacity: 0;
font-size: 15px;
transition: all 0.5s ease;
}
.SideBarActive .SettingOption a span{
opacity: 1;
}
}
| 0.49292 | 0.107391 |
@charset "utf-8";
/* CSS contents */
/*==============================================================
CSS tuned by <NAME>
tuned at 2011/07/30
==============================================================*/
/*==============================================================
Parts
==============================================================*/
/* Contents ===============================*/
#wrapper {
background-image: url();
background-repeat:repeat-y;
overflow:hidden;
}
/* main */
#contents {
}
.box {
overflow:hidden;
}
#contents #pankuzu {
font-size: 0.85em;
text-align: right;
}
#contents #item_box {
}
#contents h2{
border-bottom: 1px solid #ddd;
border-left: 2px solid #ff9900;
border-right: 1px solid #eec;
background: #ffd;
border-radius: 4px; /* CSS3草案 */
-webkit-border-radius: 4px; /* Safari,Google Chrome用 */
-moz-border-radius: 4px; /* Firefox用 */
}
#contents h3{
border-left: 1px dotted #000;
}
#contents .box p {
}
/* side */
#banners {
}
#banners li {
margin: 0px 0px 10px;
}
#side {
}
#side .categories ,#side .archives {
background-image: url();
background-repeat: no-repeat;
background-position: left bottom;
}
#side h2 {
}
.side_line {
border-right:1px dotted #ccc;
}
.corp_txt {
text-align: left;
}
.corp_txt .map_btn {
text-align: right;
}
/* table 01 */
table.t_01 {
border-collapse: collapse;
border-spacing: 0;
}
table.t_01 th, table.t_01 td {
color: #1D5C79;
}
.t_01 .odd {
background: #E5F2F8;
}
/* table 02 */
table.t_02 {
border-collapse: collapse;
border-spacing: 0;
}
table.t_02 th, table.t_02 td {
color: #1D5C79;
}
table.t_02 th {
border-bottom: 2px solid #1D5C79;
}
table.t_02 td {
border-bottom: 1px solid #DDD;
}
/* list 01 */
#contents ol {
list-style: decimal inside;
}
#contents ol ul {
list-style: circle outside;
}
/* headline 01 */
#topicsline {
overflow: hidden;
}
#topicsline_box {
background: #F2EBDE;
}
#topicsline ul li {
display: block;
clear: both;
}
#topicsline ul p.date {
color: #933;
font-size: 70%;
line-height: 1.25em;
}
#topicsline ul p.text {
color: #333;
font-size: 80%;
line-height: 1.25em;
}
/* column -3 column- */
.column2 {
border-right: 1px dotted #ccc;
}
.column2 ul {
}
.column2 li {
color: #333;
font-size: 80%;
line-height: 1.2em;
}
.column2 li.next {
text-align: right;
}
/* column -3 column- */
.column3 {
border-right: 1px dotted #ccc;
}
.column3 ul {
}
.column3 li {
color: #333;
font-size: 80%;
line-height: 1.2em;
}
.column3 li.next {
text-align: right;
}
.none {
border:none;
}
|
_html/05_booklet/_common/css/contents.css
|
@charset "utf-8";
/* CSS contents */
/*==============================================================
CSS tuned by <NAME>
tuned at 2011/07/30
==============================================================*/
/*==============================================================
Parts
==============================================================*/
/* Contents ===============================*/
#wrapper {
background-image: url();
background-repeat:repeat-y;
overflow:hidden;
}
/* main */
#contents {
}
.box {
overflow:hidden;
}
#contents #pankuzu {
font-size: 0.85em;
text-align: right;
}
#contents #item_box {
}
#contents h2{
border-bottom: 1px solid #ddd;
border-left: 2px solid #ff9900;
border-right: 1px solid #eec;
background: #ffd;
border-radius: 4px; /* CSS3草案 */
-webkit-border-radius: 4px; /* Safari,Google Chrome用 */
-moz-border-radius: 4px; /* Firefox用 */
}
#contents h3{
border-left: 1px dotted #000;
}
#contents .box p {
}
/* side */
#banners {
}
#banners li {
margin: 0px 0px 10px;
}
#side {
}
#side .categories ,#side .archives {
background-image: url();
background-repeat: no-repeat;
background-position: left bottom;
}
#side h2 {
}
.side_line {
border-right:1px dotted #ccc;
}
.corp_txt {
text-align: left;
}
.corp_txt .map_btn {
text-align: right;
}
/* table 01 */
table.t_01 {
border-collapse: collapse;
border-spacing: 0;
}
table.t_01 th, table.t_01 td {
color: #1D5C79;
}
.t_01 .odd {
background: #E5F2F8;
}
/* table 02 */
table.t_02 {
border-collapse: collapse;
border-spacing: 0;
}
table.t_02 th, table.t_02 td {
color: #1D5C79;
}
table.t_02 th {
border-bottom: 2px solid #1D5C79;
}
table.t_02 td {
border-bottom: 1px solid #DDD;
}
/* list 01 */
#contents ol {
list-style: decimal inside;
}
#contents ol ul {
list-style: circle outside;
}
/* headline 01 */
#topicsline {
overflow: hidden;
}
#topicsline_box {
background: #F2EBDE;
}
#topicsline ul li {
display: block;
clear: both;
}
#topicsline ul p.date {
color: #933;
font-size: 70%;
line-height: 1.25em;
}
#topicsline ul p.text {
color: #333;
font-size: 80%;
line-height: 1.25em;
}
/* column -3 column- */
.column2 {
border-right: 1px dotted #ccc;
}
.column2 ul {
}
.column2 li {
color: #333;
font-size: 80%;
line-height: 1.2em;
}
.column2 li.next {
text-align: right;
}
/* column -3 column- */
.column3 {
border-right: 1px dotted #ccc;
}
.column3 ul {
}
.column3 li {
color: #333;
font-size: 80%;
line-height: 1.2em;
}
.column3 li.next {
text-align: right;
}
.none {
border:none;
}
| 0.216012 | 0.069164 |
@charset "UTF-8";
/*!
* Bootstrap v5.0.0-beta1 (https://getbootstrap.com/)
* Copyright 2011-2020 The Bootstrap Authors
* Copyright 2011-2020 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-blue: #0d6efd;
--bs-blue-100: #cfe2ff;
--bs-blue-200: #9ec5fe;
--bs-blue-300: #6ea8fe;
--bs-blue-400: #3d8bfd;
--bs-blue-500: #0d6efd;
--bs-blue-600: #0a58ca;
--bs-blue-700: #084298;
--bs-blue-800: #052c65;
--bs-blue-900: #031633;
--bs-indigo: #6610f2;
--bs-indigo-100: #e0cffc;
--bs-indigo-200: #c29ffa;
--bs-indigo-300: #a370f7;
--bs-indigo-400: #8540f5;
--bs-indigo-500: #6610f2;
--bs-indigo-600: #520dc2;
--bs-indigo-700: #3d0a91;
--bs-indigo-800: #290661;
--bs-indigo-900: #140330;
--bs-purple: #6f42c1;
--bs-purple-100: #e2d9f3;
--bs-purple-200: #c5b3e6;
--bs-purple-300: #a98eda;
--bs-purple-400: #8c68cd;
--bs-purple-500: #6f42c1;
--bs-purple-600: #59359a;
--bs-purple-700: #432874;
--bs-purple-800: #2c1a4d;
--bs-purple-900: #160d27;
--bs-pink: #d63384;
--bs-pink-100: #f7d6e6;
--bs-pink-200: #efadce;
--bs-pink-300: #e685b5;
--bs-pink-400: #de5c9d;
--bs-pink-500: #d63384;
--bs-pink-600: #ab296a;
--bs-pink-700: #801f4f;
--bs-pink-800: #561435;
--bs-pink-900: #2b0a1a;
--bs-red: #dc3545;
--bs-red-100: #f8d7da;
--bs-red-200: #f1aeb5;
--bs-red-300: #ea868f;
--bs-red-400: #e35d6a;
--bs-red-500: #dc3545;
--bs-red-600: #b02a37;
--bs-red-700: #842029;
--bs-red-800: #58151c;
--bs-red-900: #2c0b0e;
--bs-orange: #fd7e14;
--bs-orange-100: #ffe5d0;
--bs-orange-200: #fecba1;
--bs-orange-300: #feb272;
--bs-orange-400: #fd9843;
--bs-orange-500: #fd7e14;
--bs-orange-600: #ca6510;
--bs-orange-700: #984c0c;
--bs-orange-800: #653208;
--bs-orange-900: #331904;
--bs-yellow: #ffc107;
--bs-yellow-100: #fff3cd;
--bs-yellow-200: #ffe69c;
--bs-yellow-300: #ffda6a;
--bs-yellow-400: #ffcd39;
--bs-yellow-500: #ffc107;
--bs-yellow-600: #cc9a06;
--bs-yellow-700: #997404;
--bs-yellow-800: #664d03;
--bs-yellow-900: #332701;
--bs-green: #198754;
--bs-green-100: #d1e7dd;
--bs-green-200: #a3cfbb;
--bs-green-300: #75b798;
--bs-green-400: #479f76;
--bs-green-500: #198754;
--bs-green-600: #146c43;
--bs-green-700: #0f5132;
--bs-green-800: #0a3622;
--bs-green-900: #051b11;
--bs-teal: #20c997;
--bs-teal-100: #d2f4ea;
--bs-teal-200: #a6e9d5;
--bs-teal-300: #79dfc1;
--bs-teal-400: #4dd4ac;
--bs-teal-500: #20c997;
--bs-teal-600: #1aa179;
--bs-teal-700: #13795b;
--bs-teal-800: #0d503c;
--bs-teal-900: #06281e;
--bs-cyan: #0dcaf0;
--bs-cyan-100: #cff4fc;
--bs-cyan-200: #9eeaf9;
--bs-cyan-300: #6edff6;
--bs-cyan-400: #3dd5f3;
--bs-cyan-500: #0dcaf0;
--bs-cyan-600: #0aa2c0;
--bs-cyan-700: #087990;
--bs-cyan-800: #055160;
--bs-cyan-900: #032830;
--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-white: #fff;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
*,
*::before,
*::after {
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: var(--bs-font-sans-serif);
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
background-color: #fff;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
[tabindex="-1"]:focus:not(:focus-visible) {
outline: 0 !important;
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
h1,
.h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1,
.h1 {
font-size: 2.5rem;
}
}
h2,
.h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2,
.h2 {
font-size: 2rem;
}
}
h3,
.h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3,
.h3 {
font-size: 1.75rem;
}
}
h4,
.h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4,
.h4 {
font-size: 1.5rem;
}
}
h5,
.h5 {
font-size: 1.25rem;
}
h6,
.h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-bs-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
-webkit-text-decoration-skip-ink: none;
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: 0.5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small,
.small {
font-size: 0.875em;
}
mark,
.mark {
padding: 0.2em;
background-color: #fcf8e3;
}
sub,
sup {
position: relative;
font-size: 0.75em;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.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 ;
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 {
outline: dotted 1px;
outline: -webkit-focus-ring-color auto 5px;
}
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;
}
[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;
}
.lead {
font-size: 1.25rem;
font-weight: 300;
}
.display-1 {
font-size: calc(1.625rem + 4.5vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-1 {
font-size: 5rem;
}
}
.display-2 {
font-size: calc(1.575rem + 3.9vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-2 {
font-size: 4.5rem;
}
}
.display-3 {
font-size: calc(1.525rem + 3.3vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-3 {
font-size: 4rem;
}
}
.display-4 {
font-size: calc(1.475rem + 2.7vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-4 {
font-size: 3.5rem;
}
}
.display-5 {
font-size: calc(1.425rem + 2.1vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-5 {
font-size: 3rem;
}
}
.display-6 {
font-size: calc(1.375rem + 1.5vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-6 {
font-size: 2.5rem;
}
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
list-style: none;
}
.list-inline-item {
display: inline-block;
}
.list-inline-item:not(:last-child) {
margin-right: 0.5rem;
}
.initialism {
font-size: 0.875em;
text-transform: uppercase;
}
.blockquote {
margin-bottom: 1rem;
font-size: 1.25rem;
}
.blockquote > :last-child {
margin-bottom: 0;
}
.blockquote-footer {
margin-top: -1rem;
margin-bottom: 1rem;
font-size: 0.875em;
color: #6c757d;
}
.blockquote-footer::before {
content: "\2014\A0";
}
.img-fluid {
max-width: 100%;
height: auto;
}
.img-thumbnail {
padding: 0.25rem;
background-color: #fff;
border: 1px solid #dee2e6;
border-radius: 0.25rem;
max-width: 100%;
height: auto;
}
.figure {
display: inline-block;
}
.figure-img {
margin-bottom: 0.5rem;
line-height: 1;
}
.figure-caption {
font-size: 0.875em;
color: #6c757d;
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
width: 100%;
padding-right: var(--bs-gutter-x, 0.75rem);
padding-left: var(--bs-gutter-x, 0.75rem);
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container-sm,
.container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container-md,
.container-sm,
.container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container-lg,
.container-md,
.container-sm,
.container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
max-width: 1320px;
}
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: flex;
flex-wrap: wrap;
margin-top: calc(var(--bs-gutter-y) * -1);
margin-right: calc(var(--bs-gutter-x) / -2);
margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) / 2);
padding-left: calc(var(--bs-gutter-x) / 2);
margin-top: var(--bs-gutter-y);
}
.col {
flex: 1 0 0%;
}
.row-cols-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-auto {
flex: 0 0 auto;
width: auto;
}
.col-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-3 {
flex: 0 0 auto;
width: 25%;
}
.col-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-6 {
flex: 0 0 auto;
width: 50%;
}
.col-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-9 {
flex: 0 0 auto;
width: 75%;
}
.col-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.3333333333%;
}
.offset-2 {
margin-left: 16.6666666667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.3333333333%;
}
.offset-5 {
margin-left: 41.6666666667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.3333333333%;
}
.offset-8 {
margin-left: 66.6666666667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.3333333333%;
}
.offset-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-sm-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-sm-auto {
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-sm-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-sm-3 {
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-sm-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-sm-6 {
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-sm-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-sm-9 {
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-sm-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-sm-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.3333333333%;
}
.offset-sm-2 {
margin-left: 16.6666666667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.3333333333%;
}
.offset-sm-5 {
margin-left: 41.6666666667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.3333333333%;
}
.offset-sm-8 {
margin-left: 66.6666666667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.3333333333%;
}
.offset-sm-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-md-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-md-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-md-auto {
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-md-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-md-3 {
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-md-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-md-6 {
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-md-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-md-9 {
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-md-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-md-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.3333333333%;
}
.offset-md-2 {
margin-left: 16.6666666667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.3333333333%;
}
.offset-md-5 {
margin-left: 41.6666666667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.3333333333%;
}
.offset-md-8 {
margin-left: 66.6666666667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.3333333333%;
}
.offset-md-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-lg-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-lg-auto {
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-lg-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-lg-3 {
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-lg-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-lg-6 {
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-lg-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-lg-9 {
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-lg-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-lg-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.3333333333%;
}
.offset-lg-2 {
margin-left: 16.6666666667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.3333333333%;
}
.offset-lg-5 {
margin-left: 41.6666666667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.3333333333%;
}
.offset-lg-8 {
margin-left: 66.6666666667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.3333333333%;
}
.offset-lg-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-xl-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-xl-auto {
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-xl-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-xl-3 {
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-xl-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-xl-6 {
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-xl-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-xl-9 {
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-xl-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-xl-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.3333333333%;
}
.offset-xl-2 {
margin-left: 16.6666666667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.3333333333%;
}
.offset-xl-5 {
margin-left: 41.6666666667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.3333333333%;
}
.offset-xl-8 {
margin-left: 66.6666666667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.3333333333%;
}
.offset-xl-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-xxl-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-xxl-auto {
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-xxl-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-xxl-3 {
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-xxl-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-xxl-6 {
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-xxl-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-xxl-9 {
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-xxl-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-xxl-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.3333333333%;
}
.offset-xxl-2 {
margin-left: 16.6666666667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.3333333333%;
}
.offset-xxl-5 {
margin-left: 41.6666666667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.3333333333%;
}
.offset-xxl-8 {
margin-left: 66.6666666667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.3333333333%;
}
.offset-xxl-11 {
margin-left: 91.6666666667%;
}
.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;
}
}
.table {
--bs-table-bg: transparent;
--bs-table-striped-color: #212529;
--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
--bs-table-active-color: #212529;
--bs-table-active-bg: rgba(0, 0, 0, 0.1);
--bs-table-hover-color: #212529;
--bs-table-hover-bg: rgba(0, 0, 0, 0.075);
width: 100%;
margin-bottom: 1rem;
color: #212529;
vertical-align: top;
border-color: #dee2e6;
}
.table > :not(caption) > * > * {
padding: 0.5rem 0.5rem;
background-color: var(--bs-table-bg);
background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
border-bottom-width: 1px;
}
.table > tbody {
vertical-align: inherit;
}
.table > thead {
vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
border-bottom-color: currentColor;
}
.caption-top {
caption-side: top;
}
.table-sm > :not(caption) > * > * {
padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
border-width: 0 1px;
}
.table-borderless > :not(caption) > * > * {
border-bottom-width: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) {
--bs-table-accent-bg: var(--bs-table-striped-bg);
color: var(--bs-table-striped-color);
}
.table-active {
--bs-table-accent-bg: var(--bs-table-active-bg);
color: var(--bs-table-active-color);
}
.table-hover > tbody > tr:hover {
--bs-table-accent-bg: var(--bs-table-hover-bg);
color: var(--bs-table-hover-color);
}
.table-primary {
--bs-table-bg: #cfe2ff;
--bs-table-striped-bg: #c5d7f2;
--bs-table-striped-color: #000;
--bs-table-active-bg: #bacbe6;
--bs-table-active-color: #000;
--bs-table-hover-bg: #bfd1ec;
--bs-table-hover-color: #000;
color: #000;
border-color: #bacbe6;
}
.table-secondary {
--bs-table-bg: #e2e3e5;
--bs-table-striped-bg: #d7d8da;
--bs-table-striped-color: #000;
--bs-table-active-bg: #cbccce;
--bs-table-active-color: #000;
--bs-table-hover-bg: #d1d2d4;
--bs-table-hover-color: #000;
color: #000;
border-color: #cbccce;
}
.table-success {
--bs-table-bg: #d1e7dd;
--bs-table-striped-bg: #c7dbd2;
--bs-table-striped-color: #000;
--bs-table-active-bg: #bcd0c7;
--bs-table-active-color: #000;
--bs-table-hover-bg: #c1d6cc;
--bs-table-hover-color: #000;
color: #000;
border-color: #bcd0c7;
}
.table-info {
--bs-table-bg: #cff4fc;
--bs-table-striped-bg: #c5e8ef;
--bs-table-striped-color: #000;
--bs-table-active-bg: #badce3;
--bs-table-active-color: #000;
--bs-table-hover-bg: #bfe2e9;
--bs-table-hover-color: #000;
color: #000;
border-color: #badce3;
}
.table-warning {
--bs-table-bg: #fff3cd;
--bs-table-striped-bg: #f2e7c3;
--bs-table-striped-color: #000;
--bs-table-active-bg: #e6dbb9;
--bs-table-active-color: #000;
--bs-table-hover-bg: #ece1be;
--bs-table-hover-color: #000;
color: #000;
border-color: #e6dbb9;
}
.table-danger {
--bs-table-bg: #f8d7da;
--bs-table-striped-bg: #eccccf;
--bs-table-striped-color: #000;
--bs-table-active-bg: #dfc2c4;
--bs-table-active-color: #000;
--bs-table-hover-bg: #e5c7ca;
--bs-table-hover-color: #000;
color: #000;
border-color: #dfc2c4;
}
.table-light {
--bs-table-bg: #f8f9fa;
--bs-table-striped-bg: #ecedee;
--bs-table-striped-color: #000;
--bs-table-active-bg: #dfe0e1;
--bs-table-active-color: #000;
--bs-table-hover-bg: #e5e6e7;
--bs-table-hover-color: #000;
color: #000;
border-color: #dfe0e1;
}
.table-dark {
--bs-table-bg: #212529;
--bs-table-striped-bg: #2c3034;
--bs-table-striped-color: #fff;
--bs-table-active-bg: #373b3e;
--bs-table-active-color: #fff;
--bs-table-hover-bg: #323539;
--bs-table-hover-color: #fff;
color: #fff;
border-color: #373b3e;
}
.table-responsive {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
.table-responsive-sm {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 767.98px) {
.table-responsive-md {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 991.98px) {
.table-responsive-lg {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 1199.98px) {
.table-responsive-xl {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 1399.98px) {
.table-responsive-xxl {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
.form-label {
margin-bottom: 0.5rem;
}
.col-form-label {
padding-top: calc(0.375rem + 1px);
padding-bottom: calc(0.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.5;
}
.col-form-label-lg {
padding-top: calc(0.5rem + 1px);
padding-bottom: calc(0.5rem + 1px);
font-size: 1.25rem;
}
.col-form-label-sm {
padding-top: calc(0.25rem + 1px);
padding-bottom: calc(0.25rem + 1px);
font-size: 0.875rem;
}
.form-text {
margin-top: 0.25rem;
font-size: 0.875em;
color: #6c757d;
}
.form-control {
display: block;
width: 100%;
padding: 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control {
transition: none;
}
}
.form-control[type=file] {
overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
cursor: pointer;
}
.form-control:focus {
color: #212529;
background-color: #fff;
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
height: 1.5em;
}
.form-control::-moz-placeholder {
color: #6c757d;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #6c757d;
opacity: 1;
}
.form-control::placeholder {
color: #6c757d;
opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
background-color: #e9ecef;
opacity: 1;
}
.form-control::file-selector-button {
padding: 0.375rem 0.75rem;
margin: -0.375rem -0.75rem;
-webkit-margin-end: 0.75rem;
margin-inline-end: 0.75rem;
color: #212529;
background-color: #e9ecef;
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 1px;
border-radius: 0;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control::file-selector-button {
transition: none;
}
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
padding: 0.375rem 0.75rem;
margin: -0.375rem -0.75rem;
-webkit-margin-end: 0.75rem;
margin-inline-end: 0.75rem;
color: #212529;
background-color: #e9ecef;
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 1px;
border-radius: 0;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control::-webkit-file-upload-button {
-webkit-transition: none;
transition: none;
}
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
background-color: #dde0e3;
}
.form-control-plaintext {
display: block;
width: 100%;
padding: 0.375rem 0;
margin-bottom: 0;
line-height: 1.5;
color: #212529;
background-color: transparent;
border: solid transparent;
border-width: 1px 0;
}
.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
padding-right: 0;
padding-left: 0;
}
.form-control-sm {
min-height: calc(1.5em + 0.5rem + 2px);
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
padding: 0.25rem 0.5rem;
margin: -0.25rem -0.5rem;
-webkit-margin-end: 0.5rem;
margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
padding: 0.25rem 0.5rem;
margin: -0.25rem -0.5rem;
-webkit-margin-end: 0.5rem;
margin-inline-end: 0.5rem;
}
.form-control-lg {
min-height: calc(1.5em + 1rem + 2px);
padding: 0.5rem 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
padding: 0.5rem 1rem;
margin: -0.5rem -1rem;
-webkit-margin-end: 1rem;
margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
padding: 0.5rem 1rem;
margin: -0.5rem -1rem;
-webkit-margin-end: 1rem;
margin-inline-end: 1rem;
}
textarea.form-control {
min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
min-height: calc(1.5em + 1rem + 2px);
}
.form-control-color {
max-width: 3rem;
height: auto;
padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
cursor: pointer;
}
.form-control-color::-moz-color-swatch {
height: 1.5em;
border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
height: 1.5em;
border-radius: 0.25rem;
}
.form-select {
display: block;
width: 100%;
padding: 0.375rem 1.75rem 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
vertical-align: middle;
background-color: #fff;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 0.75rem center;
background-size: 16px 12px;
border: 1px solid #ced4da;
border-radius: 0.25rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.form-select:focus {
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
padding-right: 0.75rem;
background-image: none;
}
.form-select:disabled {
color: #6c757d;
background-color: #e9ecef;
}
.form-select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #212529;
}
.form-select-sm {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
padding-left: 0.5rem;
font-size: 0.875rem;
}
.form-select-lg {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.25rem;
}
.form-check {
display: block;
min-height: 1.5rem;
padding-left: 1.5em;
margin-bottom: 0.125rem;
}
.form-check .form-check-input {
float: left;
margin-left: -1.5em;
}
.form-check-input {
width: 1em;
height: 1em;
margin-top: 0.25em;
vertical-align: top;
background-color: #fff;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
border: 1px solid rgba(0, 0, 0, 0.25);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-print-color-adjust: exact;
color-adjust: exact;
transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-check-input {
transition: none;
}
}
.form-check-input[type=checkbox] {
border-radius: 0.25em;
}
.form-check-input[type=radio] {
border-radius: 50%;
}
.form-check-input:active {
filter: brightness(90%);
}
.form-check-input:focus {
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
background-color: #0d6efd;
border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
background-color: #0d6efd;
border-color: #0d6efd;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
pointer-events: none;
filter: none;
opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
opacity: 0.5;
}
.form-switch {
padding-left: 2.5em;
}
.form-switch .form-check-input {
width: 2em;
margin-left: -2.5em;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
background-position: left center;
border-radius: 2em;
}
.form-switch .form-check-input:focus {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
background-position: right center;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-inline {
display: inline-block;
margin-right: 1rem;
}
.btn-check {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.btn-check[disabled] + .btn,
.btn-check:disabled + .btn {
pointer-events: none;
filter: none;
opacity: 0.65;
}
.form-range {
width: 100%;
height: 1.5rem;
padding: 0;
background-color: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.form-range:focus {
outline: none;
}
.form-range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
border: 0;
}
.form-range::-webkit-slider-thumb {
width: 1rem;
height: 1rem;
margin-top: -0.25rem;
background-color: #0d6efd;
border: 0;
border-radius: 1rem;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
-webkit-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-range::-webkit-slider-thumb {
-webkit-transition: none;
transition: none;
}
}
.form-range::-webkit-slider-thumb:active {
background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: #dee2e6;
border-color: transparent;
border-radius: 1rem;
}
.form-range::-moz-range-thumb {
width: 1rem;
height: 1rem;
background-color: #0d6efd;
border: 0;
border-radius: 1rem;
-moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-range::-moz-range-thumb {
-moz-transition: none;
transition: none;
}
}
.form-range::-moz-range-thumb:active {
background-color: #b6d4fe;
}
.form-range::-moz-range-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: #dee2e6;
border-color: transparent;
border-radius: 1rem;
}
.form-range:disabled {
pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
background-color: #adb5bd;
}
.form-floating {
position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
height: calc(3.5rem + 2px);
padding: 1rem 0.75rem;
}
.form-floating > label {
position: absolute;
top: 0;
left: 0;
height: 100%;
padding: 1rem 0.75rem;
pointer-events: none;
border: 1px solid transparent;
transform-origin: 0 0;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-floating > label {
transition: none;
}
}
.form-floating > .form-control::-moz-placeholder {
color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::placeholder {
color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-select {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
opacity: 0.65;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
opacity: 0.65;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
opacity: 0.65;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
opacity: 0.65;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: stretch;
width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
position: relative;
flex: 1 1 auto;
width: 1%;
min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
z-index: 3;
}
.input-group .btn {
position: relative;
z-index: 2;
}
.input-group .btn:focus {
z-index: 3;
}
.input-group-text {
display: flex;
align-items: center;
padding: 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: center;
white-space: nowrap;
background-color: #e9ecef;
border: 1px solid #ced4da;
border-radius: 0.25rem;
}
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
padding: 0.5rem 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
border-radius: 0.2rem;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
padding-right: 1.75rem;
}
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
margin-left: -1px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.valid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: #198754;
}
.valid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
display: none;
max-width: 100%;
padding: 0.25rem 0.5rem;
margin-top: 0.1rem;
font-size: 0.875rem;
color: #fff;
background-color: rgba(25, 135, 84, 0.9);
border-radius: 0.25rem;
}
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
display: block;
}
.was-validated .form-control:valid,
.form-control.is-valid {
border-color: #198754;
padding-right: calc(1.5em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right calc(0.375em + 0.1875rem) center;
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
border-color: #198754;
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
padding-right: calc(1.5em + 0.75rem);
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .form-select:valid,
.form-select.is-valid {
border-color: #198754;
padding-right: calc(0.75em + 2.3125rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
background-position: right 0.75rem center, center right 1.75rem;
background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
border-color: #198754;
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid,
.form-check-input.is-valid {
border-color: #198754;
}
.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
background-color: #198754;
}
.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
color: #198754;
}
.form-check-inline .form-check-input ~ .valid-feedback {
margin-left: 0.5em;
}
.invalid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: #dc3545;
}
.invalid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
display: none;
max-width: 100%;
padding: 0.25rem 0.5rem;
margin-top: 0.1rem;
font-size: 0.875rem;
color: #fff;
background-color: rgba(220, 53, 69, 0.9);
border-radius: 0.25rem;
}
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
display: block;
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
border-color: #dc3545;
padding-right: calc(1.5em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right calc(0.375em + 0.1875rem) center;
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
border-color: #dc3545;
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
padding-right: calc(1.5em + 0.75rem);
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .form-select:invalid,
.form-select.is-invalid {
border-color: #dc3545;
padding-right: calc(0.75em + 2.3125rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
background-position: right 0.75rem center, center right 1.75rem;
background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
border-color: #dc3545;
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
color: #dc3545;
}
.form-check-inline .form-check-input ~ .invalid-feedback {
margin-left: 0.5em;
}
.btn {
display: inline-block;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: center;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
transition: none;
}
}
.btn:hover {
color: #212529;
}
.btn-check:focus + .btn,
.btn:focus {
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
pointer-events: none;
opacity: 0.65;
}
.btn-primary {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-primary:hover {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #0a58ca;
border-color: #0a53be;
}
.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-primary:disabled,
.btn-primary.disabled {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-secondary {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-secondary:hover {
color: #fff;
background-color: #5c636a;
border-color: #565e64;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
color: #fff;
background-color: #5c636a;
border-color: #565e64;
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
color: #fff;
background-color: #565e64;
border-color: #51585e;
}
.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:disabled,
.btn-secondary.disabled {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-success {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-success:hover {
color: #fff;
background-color: #157347;
border-color: #146c43;
}
.btn-check:focus + .btn-success,
.btn-success:focus {
color: #fff;
background-color: #157347;
border-color: #146c43;
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-success,
.btn-check:active + .btn-success,
.btn-success:active,
.btn-success.active,
.show > .btn-success.dropdown-toggle {
color: #fff;
background-color: #146c43;
border-color: #13653f;
}
.btn-check:checked + .btn-success:focus,
.btn-check:active + .btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show > .btn-success.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success:disabled,
.btn-success.disabled {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-info {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-info:hover {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-info,
.btn-check:active + .btn-info,
.btn-info:active,
.btn-info.active,
.show > .btn-info.dropdown-toggle {
color: #000;
background-color: #3dd5f3;
border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus,
.btn-check:active + .btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show > .btn-info.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info:disabled,
.btn-info.disabled {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-warning {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-warning:hover {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-warning,
.btn-check:active + .btn-warning,
.btn-warning:active,
.btn-warning.active,
.show > .btn-warning.dropdown-toggle {
color: #000;
background-color: #ffcd39;
border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus,
.btn-check:active + .btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show > .btn-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning:disabled,
.btn-warning.disabled {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-danger {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-danger:hover {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger,
.btn-check:active + .btn-danger,
.btn-danger:active,
.btn-danger.active,
.show > .btn-danger.dropdown-toggle {
color: #fff;
background-color: #b02a37;
border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus,
.btn-check:active + .btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show > .btn-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled,
.btn-danger.disabled {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-light {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-light:hover {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
}
.btn-check:focus + .btn-light,
.btn-light:focus {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light,
.btn-check:active + .btn-light,
.btn-light:active,
.btn-light.active,
.show > .btn-light.dropdown-toggle {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus,
.btn-light:active:focus,
.btn-light.active:focus,
.show > .btn-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled,
.btn-light.disabled {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-dark {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-dark:hover {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark,
.btn-dark:active,
.btn-dark.active,
.show > .btn-dark.dropdown-toggle {
color: #fff;
background-color: #1a1e21;
border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled,
.btn-dark.disabled {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-blue {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-blue:hover {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
}
.btn-check:focus + .btn-blue,
.btn-blue:focus {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-blue,
.btn-check:active + .btn-blue,
.btn-blue:active,
.btn-blue.active,
.show > .btn-blue.dropdown-toggle {
color: #fff;
background-color: #0a58ca;
border-color: #0a53be;
}
.btn-check:checked + .btn-blue:focus,
.btn-check:active + .btn-blue:focus,
.btn-blue:active:focus,
.btn-blue.active:focus,
.show > .btn-blue.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-blue:disabled,
.btn-blue.disabled {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-blue-100 {
color: #000;
background-color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-blue-100:hover {
color: #000;
background-color: #d6e6ff;
border-color: #d4e5ff;
}
.btn-check:focus + .btn-blue-100,
.btn-blue-100:focus {
color: #000;
background-color: #d6e6ff;
border-color: #d4e5ff;
box-shadow: 0 0 0 0.25rem rgba(176, 192, 217, 0.5);
}
.btn-check:checked + .btn-blue-100,
.btn-check:active + .btn-blue-100,
.btn-blue-100:active,
.btn-blue-100.active,
.show > .btn-blue-100.dropdown-toggle {
color: #000;
background-color: #d9e8ff;
border-color: #d4e5ff;
}
.btn-check:checked + .btn-blue-100:focus,
.btn-check:active + .btn-blue-100:focus,
.btn-blue-100:active:focus,
.btn-blue-100.active:focus,
.show > .btn-blue-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(176, 192, 217, 0.5);
}
.btn-blue-100:disabled,
.btn-blue-100.disabled {
color: #000;
background-color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-blue-200 {
color: #000;
background-color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-blue-200:hover {
color: #000;
background-color: #adcefe;
border-color: #a8cbfe;
}
.btn-check:focus + .btn-blue-200,
.btn-blue-200:focus {
color: #000;
background-color: #adcefe;
border-color: #a8cbfe;
box-shadow: 0 0 0 0.25rem rgba(134, 167, 216, 0.5);
}
.btn-check:checked + .btn-blue-200,
.btn-check:active + .btn-blue-200,
.btn-blue-200:active,
.btn-blue-200.active,
.show > .btn-blue-200.dropdown-toggle {
color: #000;
background-color: #b1d1fe;
border-color: #a8cbfe;
}
.btn-check:checked + .btn-blue-200:focus,
.btn-check:active + .btn-blue-200:focus,
.btn-blue-200:active:focus,
.btn-blue-200.active:focus,
.show > .btn-blue-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(134, 167, 216, 0.5);
}
.btn-blue-200:disabled,
.btn-blue-200.disabled {
color: #000;
background-color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-blue-300 {
color: #000;
background-color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-blue-300:hover {
color: #000;
background-color: #84b5fe;
border-color: #7db1fe;
}
.btn-check:focus + .btn-blue-300,
.btn-blue-300:focus {
color: #000;
background-color: #84b5fe;
border-color: #7db1fe;
box-shadow: 0 0 0 0.25rem rgba(94, 143, 216, 0.5);
}
.btn-check:checked + .btn-blue-300,
.btn-check:active + .btn-blue-300,
.btn-blue-300:active,
.btn-blue-300.active,
.show > .btn-blue-300.dropdown-toggle {
color: #000;
background-color: #8bb9fe;
border-color: #7db1fe;
}
.btn-check:checked + .btn-blue-300:focus,
.btn-check:active + .btn-blue-300:focus,
.btn-blue-300:active:focus,
.btn-blue-300.active:focus,
.show > .btn-blue-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(94, 143, 216, 0.5);
}
.btn-blue-300:disabled,
.btn-blue-300.disabled {
color: #000;
background-color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-blue-400 {
color: #000;
background-color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-blue-400:hover {
color: #000;
background-color: #5a9cfd;
border-color: #5097fd;
}
.btn-check:focus + .btn-blue-400,
.btn-blue-400:focus {
color: #000;
background-color: #5a9cfd;
border-color: #5097fd;
box-shadow: 0 0 0 0.25rem rgba(52, 118, 215, 0.5);
}
.btn-check:checked + .btn-blue-400,
.btn-check:active + .btn-blue-400,
.btn-blue-400:active,
.btn-blue-400.active,
.show > .btn-blue-400.dropdown-toggle {
color: #000;
background-color: #64a2fd;
border-color: #5097fd;
}
.btn-check:checked + .btn-blue-400:focus,
.btn-check:active + .btn-blue-400:focus,
.btn-blue-400:active:focus,
.btn-blue-400.active:focus,
.show > .btn-blue-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 118, 215, 0.5);
}
.btn-blue-400:disabled,
.btn-blue-400.disabled {
color: #000;
background-color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-blue-500 {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-blue-500:hover {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
}
.btn-check:focus + .btn-blue-500,
.btn-blue-500:focus {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-blue-500,
.btn-check:active + .btn-blue-500,
.btn-blue-500:active,
.btn-blue-500.active,
.show > .btn-blue-500.dropdown-toggle {
color: #fff;
background-color: #0a58ca;
border-color: #0a53be;
}
.btn-check:checked + .btn-blue-500:focus,
.btn-check:active + .btn-blue-500:focus,
.btn-blue-500:active:focus,
.btn-blue-500.active:focus,
.show > .btn-blue-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-blue-500:disabled,
.btn-blue-500.disabled {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-blue-600 {
color: #fff;
background-color: #0a58ca;
border-color: #0a58ca;
}
.btn-blue-600:hover {
color: #fff;
background-color: #094bac;
border-color: #0846a2;
}
.btn-check:focus + .btn-blue-600,
.btn-blue-600:focus {
color: #fff;
background-color: #094bac;
border-color: #0846a2;
box-shadow: 0 0 0 0.25rem rgba(47, 113, 210, 0.5);
}
.btn-check:checked + .btn-blue-600,
.btn-check:active + .btn-blue-600,
.btn-blue-600:active,
.btn-blue-600.active,
.show > .btn-blue-600.dropdown-toggle {
color: #fff;
background-color: #0846a2;
border-color: #084298;
}
.btn-check:checked + .btn-blue-600:focus,
.btn-check:active + .btn-blue-600:focus,
.btn-blue-600:active:focus,
.btn-blue-600.active:focus,
.show > .btn-blue-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(47, 113, 210, 0.5);
}
.btn-blue-600:disabled,
.btn-blue-600.disabled {
color: #fff;
background-color: #0a58ca;
border-color: #0a58ca;
}
.btn-blue-700 {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.btn-blue-700:hover {
color: #fff;
background-color: #073881;
border-color: #06357a;
}
.btn-check:focus + .btn-blue-700,
.btn-blue-700:focus {
color: #fff;
background-color: #073881;
border-color: #06357a;
box-shadow: 0 0 0 0.25rem rgba(45, 94, 167, 0.5);
}
.btn-check:checked + .btn-blue-700,
.btn-check:active + .btn-blue-700,
.btn-blue-700:active,
.btn-blue-700.active,
.show > .btn-blue-700.dropdown-toggle {
color: #fff;
background-color: #06357a;
border-color: #063272;
}
.btn-check:checked + .btn-blue-700:focus,
.btn-check:active + .btn-blue-700:focus,
.btn-blue-700:active:focus,
.btn-blue-700.active:focus,
.show > .btn-blue-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(45, 94, 167, 0.5);
}
.btn-blue-700:disabled,
.btn-blue-700.disabled {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.btn-blue-800 {
color: #fff;
background-color: #052c65;
border-color: #052c65;
}
.btn-blue-800:hover {
color: #fff;
background-color: #042556;
border-color: #042351;
}
.btn-check:focus + .btn-blue-800,
.btn-blue-800:focus {
color: #fff;
background-color: #042556;
border-color: #042351;
box-shadow: 0 0 0 0.25rem rgba(43, 76, 124, 0.5);
}
.btn-check:checked + .btn-blue-800,
.btn-check:active + .btn-blue-800,
.btn-blue-800:active,
.btn-blue-800.active,
.show > .btn-blue-800.dropdown-toggle {
color: #fff;
background-color: #042351;
border-color: #04214c;
}
.btn-check:checked + .btn-blue-800:focus,
.btn-check:active + .btn-blue-800:focus,
.btn-blue-800:active:focus,
.btn-blue-800.active:focus,
.show > .btn-blue-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 76, 124, 0.5);
}
.btn-blue-800:disabled,
.btn-blue-800.disabled {
color: #fff;
background-color: #052c65;
border-color: #052c65;
}
.btn-blue-900 {
color: #fff;
background-color: #031633;
border-color: #031633;
}
.btn-blue-900:hover {
color: #fff;
background-color: #03132b;
border-color: #021229;
}
.btn-check:focus + .btn-blue-900,
.btn-blue-900:focus {
color: #fff;
background-color: #03132b;
border-color: #021229;
box-shadow: 0 0 0 0.25rem rgba(41, 57, 82, 0.5);
}
.btn-check:checked + .btn-blue-900,
.btn-check:active + .btn-blue-900,
.btn-blue-900:active,
.btn-blue-900.active,
.show > .btn-blue-900.dropdown-toggle {
color: #fff;
background-color: #021229;
border-color: #021126;
}
.btn-check:checked + .btn-blue-900:focus,
.btn-check:active + .btn-blue-900:focus,
.btn-blue-900:active:focus,
.btn-blue-900.active:focus,
.show > .btn-blue-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(41, 57, 82, 0.5);
}
.btn-blue-900:disabled,
.btn-blue-900.disabled {
color: #fff;
background-color: #031633;
border-color: #031633;
}
.btn-indigo {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-indigo:hover {
color: #fff;
background-color: #570ece;
border-color: #520dc2;
}
.btn-check:focus + .btn-indigo,
.btn-indigo:focus {
color: #fff;
background-color: #570ece;
border-color: #520dc2;
box-shadow: 0 0 0 0.25rem rgba(125, 52, 244, 0.5);
}
.btn-check:checked + .btn-indigo,
.btn-check:active + .btn-indigo,
.btn-indigo:active,
.btn-indigo.active,
.show > .btn-indigo.dropdown-toggle {
color: #fff;
background-color: #520dc2;
border-color: #4d0cb6;
}
.btn-check:checked + .btn-indigo:focus,
.btn-check:active + .btn-indigo:focus,
.btn-indigo:active:focus,
.btn-indigo.active:focus,
.show > .btn-indigo.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(125, 52, 244, 0.5);
}
.btn-indigo:disabled,
.btn-indigo.disabled {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-indigo-100 {
color: #000;
background-color: #e0cffc;
border-color: #e0cffc;
}
.btn-indigo-100:hover {
color: #000;
background-color: #e5d6fc;
border-color: #e3d4fc;
}
.btn-check:focus + .btn-indigo-100,
.btn-indigo-100:focus {
color: #000;
background-color: #e5d6fc;
border-color: #e3d4fc;
box-shadow: 0 0 0 0.25rem rgba(190, 176, 214, 0.5);
}
.btn-check:checked + .btn-indigo-100,
.btn-check:active + .btn-indigo-100,
.btn-indigo-100:active,
.btn-indigo-100.active,
.show > .btn-indigo-100.dropdown-toggle {
color: #000;
background-color: #e6d9fd;
border-color: #e3d4fc;
}
.btn-check:checked + .btn-indigo-100:focus,
.btn-check:active + .btn-indigo-100:focus,
.btn-indigo-100:active:focus,
.btn-indigo-100.active:focus,
.show > .btn-indigo-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(190, 176, 214, 0.5);
}
.btn-indigo-100:disabled,
.btn-indigo-100.disabled {
color: #000;
background-color: #e0cffc;
border-color: #e0cffc;
}
.btn-indigo-200 {
color: #000;
background-color: #c29ffa;
border-color: #c29ffa;
}
.btn-indigo-200:hover {
color: #000;
background-color: #cbadfb;
border-color: #c8a9fb;
}
.btn-check:focus + .btn-indigo-200,
.btn-indigo-200:focus {
color: #000;
background-color: #cbadfb;
border-color: #c8a9fb;
box-shadow: 0 0 0 0.25rem rgba(165, 135, 213, 0.5);
}
.btn-check:checked + .btn-indigo-200,
.btn-check:active + .btn-indigo-200,
.btn-indigo-200:active,
.btn-indigo-200.active,
.show > .btn-indigo-200.dropdown-toggle {
color: #000;
background-color: #ceb2fb;
border-color: #c8a9fb;
}
.btn-check:checked + .btn-indigo-200:focus,
.btn-check:active + .btn-indigo-200:focus,
.btn-indigo-200:active:focus,
.btn-indigo-200.active:focus,
.show > .btn-indigo-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(165, 135, 213, 0.5);
}
.btn-indigo-200:disabled,
.btn-indigo-200.disabled {
color: #000;
background-color: #c29ffa;
border-color: #c29ffa;
}
.btn-indigo-300 {
color: #000;
background-color: #a370f7;
border-color: #a370f7;
}
.btn-indigo-300:hover {
color: #000;
background-color: #b185f8;
border-color: #ac7ef8;
}
.btn-check:focus + .btn-indigo-300,
.btn-indigo-300:focus {
color: #000;
background-color: #b185f8;
border-color: #ac7ef8;
box-shadow: 0 0 0 0.25rem rgba(139, 95, 210, 0.5);
}
.btn-check:checked + .btn-indigo-300,
.btn-check:active + .btn-indigo-300,
.btn-indigo-300:active,
.btn-indigo-300.active,
.show > .btn-indigo-300.dropdown-toggle {
color: #000;
background-color: #b58df9;
border-color: #ac7ef8;
}
.btn-check:checked + .btn-indigo-300:focus,
.btn-check:active + .btn-indigo-300:focus,
.btn-indigo-300:active:focus,
.btn-indigo-300.active:focus,
.show > .btn-indigo-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(139, 95, 210, 0.5);
}
.btn-indigo-300:disabled,
.btn-indigo-300.disabled {
color: #000;
background-color: #a370f7;
border-color: #a370f7;
}
.btn-indigo-400 {
color: #fff;
background-color: #8540f5;
border-color: #8540f5;
}
.btn-indigo-400:hover {
color: #fff;
background-color: #7136d0;
border-color: #6a33c4;
}
.btn-check:focus + .btn-indigo-400,
.btn-indigo-400:focus {
color: #fff;
background-color: #7136d0;
border-color: #6a33c4;
box-shadow: 0 0 0 0.25rem rgba(151, 93, 247, 0.5);
}
.btn-check:checked + .btn-indigo-400,
.btn-check:active + .btn-indigo-400,
.btn-indigo-400:active,
.btn-indigo-400.active,
.show > .btn-indigo-400.dropdown-toggle {
color: #fff;
background-color: #6a33c4;
border-color: #6430b8;
}
.btn-check:checked + .btn-indigo-400:focus,
.btn-check:active + .btn-indigo-400:focus,
.btn-indigo-400:active:focus,
.btn-indigo-400.active:focus,
.show > .btn-indigo-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(151, 93, 247, 0.5);
}
.btn-indigo-400:disabled,
.btn-indigo-400.disabled {
color: #fff;
background-color: #8540f5;
border-color: #8540f5;
}
.btn-indigo-500 {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-indigo-500:hover {
color: #fff;
background-color: #570ece;
border-color: #520dc2;
}
.btn-check:focus + .btn-indigo-500,
.btn-indigo-500:focus {
color: #fff;
background-color: #570ece;
border-color: #520dc2;
box-shadow: 0 0 0 0.25rem rgba(125, 52, 244, 0.5);
}
.btn-check:checked + .btn-indigo-500,
.btn-check:active + .btn-indigo-500,
.btn-indigo-500:active,
.btn-indigo-500.active,
.show > .btn-indigo-500.dropdown-toggle {
color: #fff;
background-color: #520dc2;
border-color: #4d0cb6;
}
.btn-check:checked + .btn-indigo-500:focus,
.btn-check:active + .btn-indigo-500:focus,
.btn-indigo-500:active:focus,
.btn-indigo-500.active:focus,
.show > .btn-indigo-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(125, 52, 244, 0.5);
}
.btn-indigo-500:disabled,
.btn-indigo-500.disabled {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-indigo-600 {
color: #fff;
background-color: #520dc2;
border-color: #520dc2;
}
.btn-indigo-600:hover {
color: #fff;
background-color: #460ba5;
border-color: #420a9b;
}
.btn-check:focus + .btn-indigo-600,
.btn-indigo-600:focus {
color: #fff;
background-color: #460ba5;
border-color: #420a9b;
box-shadow: 0 0 0 0.25rem rgba(108, 49, 203, 0.5);
}
.btn-check:checked + .btn-indigo-600,
.btn-check:active + .btn-indigo-600,
.btn-indigo-600:active,
.btn-indigo-600.active,
.show > .btn-indigo-600.dropdown-toggle {
color: #fff;
background-color: #420a9b;
border-color: #3e0a92;
}
.btn-check:checked + .btn-indigo-600:focus,
.btn-check:active + .btn-indigo-600:focus,
.btn-indigo-600:active:focus,
.btn-indigo-600.active:focus,
.show > .btn-indigo-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 49, 203, 0.5);
}
.btn-indigo-600:disabled,
.btn-indigo-600.disabled {
color: #fff;
background-color: #520dc2;
border-color: #520dc2;
}
.btn-indigo-700 {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.btn-indigo-700:hover {
color: #fff;
background-color: #34097b;
border-color: #310874;
}
.btn-check:focus + .btn-indigo-700,
.btn-indigo-700:focus {
color: #fff;
background-color: #34097b;
border-color: #310874;
box-shadow: 0 0 0 0.25rem rgba(90, 47, 162, 0.5);
}
.btn-check:checked + .btn-indigo-700,
.btn-check:active + .btn-indigo-700,
.btn-indigo-700:active,
.btn-indigo-700.active,
.show > .btn-indigo-700.dropdown-toggle {
color: #fff;
background-color: #310874;
border-color: #2e086d;
}
.btn-check:checked + .btn-indigo-700:focus,
.btn-check:active + .btn-indigo-700:focus,
.btn-indigo-700:active:focus,
.btn-indigo-700.active:focus,
.show > .btn-indigo-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(90, 47, 162, 0.5);
}
.btn-indigo-700:disabled,
.btn-indigo-700.disabled {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.btn-indigo-800 {
color: #fff;
background-color: #290661;
border-color: #290661;
}
.btn-indigo-800:hover {
color: #fff;
background-color: #230552;
border-color: #21054e;
}
.btn-check:focus + .btn-indigo-800,
.btn-indigo-800:focus {
color: #fff;
background-color: #230552;
border-color: #21054e;
box-shadow: 0 0 0 0.25rem rgba(73, 43, 121, 0.5);
}
.btn-check:checked + .btn-indigo-800,
.btn-check:active + .btn-indigo-800,
.btn-indigo-800:active,
.btn-indigo-800.active,
.show > .btn-indigo-800.dropdown-toggle {
color: #fff;
background-color: #21054e;
border-color: #1f0549;
}
.btn-check:checked + .btn-indigo-800:focus,
.btn-check:active + .btn-indigo-800:focus,
.btn-indigo-800:active:focus,
.btn-indigo-800.active:focus,
.show > .btn-indigo-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(73, 43, 121, 0.5);
}
.btn-indigo-800:disabled,
.btn-indigo-800.disabled {
color: #fff;
background-color: #290661;
border-color: #290661;
}
.btn-indigo-900 {
color: #fff;
background-color: #140330;
border-color: #140330;
}
.btn-indigo-900:hover {
color: #fff;
background-color: #110329;
border-color: #100226;
}
.btn-check:focus + .btn-indigo-900,
.btn-indigo-900:focus {
color: #fff;
background-color: #110329;
border-color: #100226;
box-shadow: 0 0 0 0.25rem rgba(55, 41, 79, 0.5);
}
.btn-check:checked + .btn-indigo-900,
.btn-check:active + .btn-indigo-900,
.btn-indigo-900:active,
.btn-indigo-900.active,
.show > .btn-indigo-900.dropdown-toggle {
color: #fff;
background-color: #100226;
border-color: #0f0224;
}
.btn-check:checked + .btn-indigo-900:focus,
.btn-check:active + .btn-indigo-900:focus,
.btn-indigo-900:active:focus,
.btn-indigo-900.active:focus,
.show > .btn-indigo-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(55, 41, 79, 0.5);
}
.btn-indigo-900:disabled,
.btn-indigo-900.disabled {
color: #fff;
background-color: #140330;
border-color: #140330;
}
.btn-purple {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-purple:hover {
color: #fff;
background-color: #5e38a4;
border-color: #59359a;
}
.btn-check:focus + .btn-purple,
.btn-purple:focus {
color: #fff;
background-color: #5e38a4;
border-color: #59359a;
box-shadow: 0 0 0 0.25rem rgba(133, 94, 202, 0.5);
}
.btn-check:checked + .btn-purple,
.btn-check:active + .btn-purple,
.btn-purple:active,
.btn-purple.active,
.show > .btn-purple.dropdown-toggle {
color: #fff;
background-color: #59359a;
border-color: #533291;
}
.btn-check:checked + .btn-purple:focus,
.btn-check:active + .btn-purple:focus,
.btn-purple:active:focus,
.btn-purple.active:focus,
.show > .btn-purple.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(133, 94, 202, 0.5);
}
.btn-purple:disabled,
.btn-purple.disabled {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-purple-100 {
color: #000;
background-color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-purple-100:hover {
color: #000;
background-color: #e6dff5;
border-color: #e5ddf4;
}
.btn-check:focus + .btn-purple-100,
.btn-purple-100:focus {
color: #000;
background-color: #e6dff5;
border-color: #e5ddf4;
box-shadow: 0 0 0 0.25rem rgba(192, 184, 207, 0.5);
}
.btn-check:checked + .btn-purple-100,
.btn-check:active + .btn-purple-100,
.btn-purple-100:active,
.btn-purple-100.active,
.show > .btn-purple-100.dropdown-toggle {
color: #000;
background-color: #e8e1f5;
border-color: #e5ddf4;
}
.btn-check:checked + .btn-purple-100:focus,
.btn-check:active + .btn-purple-100:focus,
.btn-purple-100:active:focus,
.btn-purple-100.active:focus,
.show > .btn-purple-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(192, 184, 207, 0.5);
}
.btn-purple-100:disabled,
.btn-purple-100.disabled {
color: #000;
background-color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-purple-200 {
color: #000;
background-color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-purple-200:hover {
color: #000;
background-color: #cebeea;
border-color: #cbbbe9;
}
.btn-check:focus + .btn-purple-200,
.btn-purple-200:focus {
color: #000;
background-color: #cebeea;
border-color: #cbbbe9;
box-shadow: 0 0 0 0.25rem rgba(167, 152, 196, 0.5);
}
.btn-check:checked + .btn-purple-200,
.btn-check:active + .btn-purple-200,
.btn-purple-200:active,
.btn-purple-200.active,
.show > .btn-purple-200.dropdown-toggle {
color: #000;
background-color: #d1c2eb;
border-color: #cbbbe9;
}
.btn-check:checked + .btn-purple-200:focus,
.btn-check:active + .btn-purple-200:focus,
.btn-purple-200:active:focus,
.btn-purple-200.active:focus,
.show > .btn-purple-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(167, 152, 196, 0.5);
}
.btn-purple-200:disabled,
.btn-purple-200.disabled {
color: #000;
background-color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-purple-300 {
color: #000;
background-color: #a98eda;
border-color: #a98eda;
}
.btn-purple-300:hover {
color: #000;
background-color: #b69fe0;
border-color: #b299de;
}
.btn-check:focus + .btn-purple-300,
.btn-purple-300:focus {
color: #000;
background-color: #b69fe0;
border-color: #b299de;
box-shadow: 0 0 0 0.25rem rgba(144, 121, 185, 0.5);
}
.btn-check:checked + .btn-purple-300,
.btn-check:active + .btn-purple-300,
.btn-purple-300:active,
.btn-purple-300.active,
.show > .btn-purple-300.dropdown-toggle {
color: #000;
background-color: #baa5e1;
border-color: #b299de;
}
.btn-check:checked + .btn-purple-300:focus,
.btn-check:active + .btn-purple-300:focus,
.btn-purple-300:active:focus,
.btn-purple-300.active:focus,
.show > .btn-purple-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(144, 121, 185, 0.5);
}
.btn-purple-300:disabled,
.btn-purple-300.disabled {
color: #000;
background-color: #a98eda;
border-color: #a98eda;
}
.btn-purple-400 {
color: #000;
background-color: #8c68cd;
border-color: #8c68cd;
}
.btn-purple-400:hover {
color: #000;
background-color: #9d7fd5;
border-color: #9877d2;
}
.btn-check:focus + .btn-purple-400,
.btn-purple-400:focus {
color: #000;
background-color: #9d7fd5;
border-color: #9877d2;
box-shadow: 0 0 0 0.25rem rgba(119, 88, 174, 0.5);
}
.btn-check:checked + .btn-purple-400,
.btn-check:active + .btn-purple-400,
.btn-purple-400:active,
.btn-purple-400.active,
.show > .btn-purple-400.dropdown-toggle {
color: #000;
background-color: #a386d7;
border-color: #9877d2;
}
.btn-check:checked + .btn-purple-400:focus,
.btn-check:active + .btn-purple-400:focus,
.btn-purple-400:active:focus,
.btn-purple-400.active:focus,
.show > .btn-purple-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(119, 88, 174, 0.5);
}
.btn-purple-400:disabled,
.btn-purple-400.disabled {
color: #000;
background-color: #8c68cd;
border-color: #8c68cd;
}
.btn-purple-500 {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-purple-500:hover {
color: #fff;
background-color: #5e38a4;
border-color: #59359a;
}
.btn-check:focus + .btn-purple-500,
.btn-purple-500:focus {
color: #fff;
background-color: #5e38a4;
border-color: #59359a;
box-shadow: 0 0 0 0.25rem rgba(133, 94, 202, 0.5);
}
.btn-check:checked + .btn-purple-500,
.btn-check:active + .btn-purple-500,
.btn-purple-500:active,
.btn-purple-500.active,
.show > .btn-purple-500.dropdown-toggle {
color: #fff;
background-color: #59359a;
border-color: #533291;
}
.btn-check:checked + .btn-purple-500:focus,
.btn-check:active + .btn-purple-500:focus,
.btn-purple-500:active:focus,
.btn-purple-500.active:focus,
.show > .btn-purple-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(133, 94, 202, 0.5);
}
.btn-purple-500:disabled,
.btn-purple-500.disabled {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-purple-600 {
color: #fff;
background-color: #59359a;
border-color: #59359a;
}
.btn-purple-600:hover {
color: #fff;
background-color: #4c2d83;
border-color: #472a7b;
}
.btn-check:focus + .btn-purple-600,
.btn-purple-600:focus {
color: #fff;
background-color: #4c2d83;
border-color: #472a7b;
box-shadow: 0 0 0 0.25rem rgba(114, 83, 169, 0.5);
}
.btn-check:checked + .btn-purple-600,
.btn-check:active + .btn-purple-600,
.btn-purple-600:active,
.btn-purple-600.active,
.show > .btn-purple-600.dropdown-toggle {
color: #fff;
background-color: #472a7b;
border-color: #432874;
}
.btn-check:checked + .btn-purple-600:focus,
.btn-check:active + .btn-purple-600:focus,
.btn-purple-600:active:focus,
.btn-purple-600.active:focus,
.show > .btn-purple-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(114, 83, 169, 0.5);
}
.btn-purple-600:disabled,
.btn-purple-600.disabled {
color: #fff;
background-color: #59359a;
border-color: #59359a;
}
.btn-purple-700 {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.btn-purple-700:hover {
color: #fff;
background-color: #392263;
border-color: #36205d;
}
.btn-check:focus + .btn-purple-700,
.btn-purple-700:focus {
color: #fff;
background-color: #392263;
border-color: #36205d;
box-shadow: 0 0 0 0.25rem rgba(95, 72, 137, 0.5);
}
.btn-check:checked + .btn-purple-700,
.btn-check:active + .btn-purple-700,
.btn-purple-700:active,
.btn-purple-700.active,
.show > .btn-purple-700.dropdown-toggle {
color: #fff;
background-color: #36205d;
border-color: #321e57;
}
.btn-check:checked + .btn-purple-700:focus,
.btn-check:active + .btn-purple-700:focus,
.btn-purple-700:active:focus,
.btn-purple-700.active:focus,
.show > .btn-purple-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(95, 72, 137, 0.5);
}
.btn-purple-700:disabled,
.btn-purple-700.disabled {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.btn-purple-800 {
color: #fff;
background-color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-purple-800:hover {
color: #fff;
background-color: #251641;
border-color: #23153e;
}
.btn-check:focus + .btn-purple-800,
.btn-purple-800:focus {
color: #fff;
background-color: #251641;
border-color: #23153e;
box-shadow: 0 0 0 0.25rem rgba(76, 60, 104, 0.5);
}
.btn-check:checked + .btn-purple-800,
.btn-check:active + .btn-purple-800,
.btn-purple-800:active,
.btn-purple-800.active,
.show > .btn-purple-800.dropdown-toggle {
color: #fff;
background-color: #23153e;
border-color: #21143a;
}
.btn-check:checked + .btn-purple-800:focus,
.btn-check:active + .btn-purple-800:focus,
.btn-purple-800:active:focus,
.btn-purple-800.active:focus,
.show > .btn-purple-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(76, 60, 104, 0.5);
}
.btn-purple-800:disabled,
.btn-purple-800.disabled {
color: #fff;
background-color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-purple-900 {
color: #fff;
background-color: #160d27;
border-color: #160d27;
}
.btn-purple-900:hover {
color: #fff;
background-color: #130b21;
border-color: #120a1f;
}
.btn-check:focus + .btn-purple-900,
.btn-purple-900:focus {
color: #fff;
background-color: #130b21;
border-color: #120a1f;
box-shadow: 0 0 0 0.25rem rgba(57, 49, 71, 0.5);
}
.btn-check:checked + .btn-purple-900,
.btn-check:active + .btn-purple-900,
.btn-purple-900:active,
.btn-purple-900.active,
.show > .btn-purple-900.dropdown-toggle {
color: #fff;
background-color: #120a1f;
border-color: #110a1d;
}
.btn-check:checked + .btn-purple-900:focus,
.btn-check:active + .btn-purple-900:focus,
.btn-purple-900:active:focus,
.btn-purple-900.active:focus,
.show > .btn-purple-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(57, 49, 71, 0.5);
}
.btn-purple-900:disabled,
.btn-purple-900.disabled {
color: #fff;
background-color: #160d27;
border-color: #160d27;
}
.btn-pink {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-pink:hover {
color: #fff;
background-color: #b62b70;
border-color: #ab296a;
}
.btn-check:focus + .btn-pink,
.btn-pink:focus {
color: #fff;
background-color: #b62b70;
border-color: #ab296a;
box-shadow: 0 0 0 0.25rem rgba(220, 82, 150, 0.5);
}
.btn-check:checked + .btn-pink,
.btn-check:active + .btn-pink,
.btn-pink:active,
.btn-pink.active,
.show > .btn-pink.dropdown-toggle {
color: #fff;
background-color: #ab296a;
border-color: #a12663;
}
.btn-check:checked + .btn-pink:focus,
.btn-check:active + .btn-pink:focus,
.btn-pink:active:focus,
.btn-pink.active:focus,
.show > .btn-pink.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 82, 150, 0.5);
}
.btn-pink:disabled,
.btn-pink.disabled {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-pink-100 {
color: #000;
background-color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-pink-100:hover {
color: #000;
background-color: #f8dcea;
border-color: #f8dae9;
}
.btn-check:focus + .btn-pink-100,
.btn-pink-100:focus {
color: #000;
background-color: #f8dcea;
border-color: #f8dae9;
box-shadow: 0 0 0 0.25rem rgba(210, 182, 196, 0.5);
}
.btn-check:checked + .btn-pink-100,
.btn-check:active + .btn-pink-100,
.btn-pink-100:active,
.btn-pink-100.active,
.show > .btn-pink-100.dropdown-toggle {
color: #000;
background-color: #f9deeb;
border-color: #f8dae9;
}
.btn-check:checked + .btn-pink-100:focus,
.btn-check:active + .btn-pink-100:focus,
.btn-pink-100:active:focus,
.btn-pink-100.active:focus,
.show > .btn-pink-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(210, 182, 196, 0.5);
}
.btn-pink-100:disabled,
.btn-pink-100.disabled {
color: #000;
background-color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-pink-200 {
color: #000;
background-color: #efadce;
border-color: #efadce;
}
.btn-pink-200:hover {
color: #000;
background-color: #f1b9d5;
border-color: #f1b5d3;
}
.btn-check:focus + .btn-pink-200,
.btn-pink-200:focus {
color: #000;
background-color: #f1b9d5;
border-color: #f1b5d3;
box-shadow: 0 0 0 0.25rem rgba(203, 147, 175, 0.5);
}
.btn-check:checked + .btn-pink-200,
.btn-check:active + .btn-pink-200,
.btn-pink-200:active,
.btn-pink-200.active,
.show > .btn-pink-200.dropdown-toggle {
color: #000;
background-color: #f2bdd8;
border-color: #f1b5d3;
}
.btn-check:checked + .btn-pink-200:focus,
.btn-check:active + .btn-pink-200:focus,
.btn-pink-200:active:focus,
.btn-pink-200.active:focus,
.show > .btn-pink-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(203, 147, 175, 0.5);
}
.btn-pink-200:disabled,
.btn-pink-200.disabled {
color: #000;
background-color: #efadce;
border-color: #efadce;
}
.btn-pink-300 {
color: #000;
background-color: #e685b5;
border-color: #e685b5;
}
.btn-pink-300:hover {
color: #000;
background-color: #ea97c0;
border-color: #e991bc;
}
.btn-check:focus + .btn-pink-300,
.btn-pink-300:focus {
color: #000;
background-color: #ea97c0;
border-color: #e991bc;
box-shadow: 0 0 0 0.25rem rgba(196, 113, 154, 0.5);
}
.btn-check:checked + .btn-pink-300,
.btn-check:active + .btn-pink-300,
.btn-pink-300:active,
.btn-pink-300.active,
.show > .btn-pink-300.dropdown-toggle {
color: #000;
background-color: #eb9dc4;
border-color: #e991bc;
}
.btn-check:checked + .btn-pink-300:focus,
.btn-check:active + .btn-pink-300:focus,
.btn-pink-300:active:focus,
.btn-pink-300.active:focus,
.show > .btn-pink-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(196, 113, 154, 0.5);
}
.btn-pink-300:disabled,
.btn-pink-300.disabled {
color: #000;
background-color: #e685b5;
border-color: #e685b5;
}
.btn-pink-400 {
color: #000;
background-color: #de5c9d;
border-color: #de5c9d;
}
.btn-pink-400:hover {
color: #000;
background-color: #e374ac;
border-color: #e16ca7;
}
.btn-check:focus + .btn-pink-400,
.btn-pink-400:focus {
color: #000;
background-color: #e374ac;
border-color: #e16ca7;
box-shadow: 0 0 0 0.25rem rgba(189, 78, 133, 0.5);
}
.btn-check:checked + .btn-pink-400,
.btn-check:active + .btn-pink-400,
.btn-pink-400:active,
.btn-pink-400.active,
.show > .btn-pink-400.dropdown-toggle {
color: #000;
background-color: #e57db1;
border-color: #e16ca7;
}
.btn-check:checked + .btn-pink-400:focus,
.btn-check:active + .btn-pink-400:focus,
.btn-pink-400:active:focus,
.btn-pink-400.active:focus,
.show > .btn-pink-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(189, 78, 133, 0.5);
}
.btn-pink-400:disabled,
.btn-pink-400.disabled {
color: #000;
background-color: #de5c9d;
border-color: #de5c9d;
}
.btn-pink-500 {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-pink-500:hover {
color: #fff;
background-color: #b62b70;
border-color: #ab296a;
}
.btn-check:focus + .btn-pink-500,
.btn-pink-500:focus {
color: #fff;
background-color: #b62b70;
border-color: #ab296a;
box-shadow: 0 0 0 0.25rem rgba(220, 82, 150, 0.5);
}
.btn-check:checked + .btn-pink-500,
.btn-check:active + .btn-pink-500,
.btn-pink-500:active,
.btn-pink-500.active,
.show > .btn-pink-500.dropdown-toggle {
color: #fff;
background-color: #ab296a;
border-color: #a12663;
}
.btn-check:checked + .btn-pink-500:focus,
.btn-check:active + .btn-pink-500:focus,
.btn-pink-500:active:focus,
.btn-pink-500.active:focus,
.show > .btn-pink-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 82, 150, 0.5);
}
.btn-pink-500:disabled,
.btn-pink-500.disabled {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-pink-600 {
color: #fff;
background-color: #ab296a;
border-color: #ab296a;
}
.btn-pink-600:hover {
color: #fff;
background-color: #91235a;
border-color: #892155;
}
.btn-check:focus + .btn-pink-600,
.btn-pink-600:focus {
color: #fff;
background-color: #91235a;
border-color: #892155;
box-shadow: 0 0 0 0.25rem rgba(184, 73, 128, 0.5);
}
.btn-check:checked + .btn-pink-600,
.btn-check:active + .btn-pink-600,
.btn-pink-600:active,
.btn-pink-600.active,
.show > .btn-pink-600.dropdown-toggle {
color: #fff;
background-color: #892155;
border-color: #801f50;
}
.btn-check:checked + .btn-pink-600:focus,
.btn-check:active + .btn-pink-600:focus,
.btn-pink-600:active:focus,
.btn-pink-600.active:focus,
.show > .btn-pink-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(184, 73, 128, 0.5);
}
.btn-pink-600:disabled,
.btn-pink-600.disabled {
color: #fff;
background-color: #ab296a;
border-color: #ab296a;
}
.btn-pink-700 {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.btn-pink-700:hover {
color: #fff;
background-color: #6d1a43;
border-color: #66193f;
}
.btn-check:focus + .btn-pink-700,
.btn-pink-700:focus {
color: #fff;
background-color: #6d1a43;
border-color: #66193f;
box-shadow: 0 0 0 0.25rem rgba(147, 65, 105, 0.5);
}
.btn-check:checked + .btn-pink-700,
.btn-check:active + .btn-pink-700,
.btn-pink-700:active,
.btn-pink-700.active,
.show > .btn-pink-700.dropdown-toggle {
color: #fff;
background-color: #66193f;
border-color: #60173b;
}
.btn-check:checked + .btn-pink-700:focus,
.btn-check:active + .btn-pink-700:focus,
.btn-pink-700:active:focus,
.btn-pink-700.active:focus,
.show > .btn-pink-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(147, 65, 105, 0.5);
}
.btn-pink-700:disabled,
.btn-pink-700.disabled {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.btn-pink-800 {
color: #fff;
background-color: #561435;
border-color: #561435;
}
.btn-pink-800:hover {
color: #fff;
background-color: #49112d;
border-color: #45102a;
}
.btn-check:focus + .btn-pink-800,
.btn-pink-800:focus {
color: #fff;
background-color: #49112d;
border-color: #45102a;
box-shadow: 0 0 0 0.25rem rgba(111, 55, 83, 0.5);
}
.btn-check:checked + .btn-pink-800,
.btn-check:active + .btn-pink-800,
.btn-pink-800:active,
.btn-pink-800.active,
.show > .btn-pink-800.dropdown-toggle {
color: #fff;
background-color: #45102a;
border-color: #410f28;
}
.btn-check:checked + .btn-pink-800:focus,
.btn-check:active + .btn-pink-800:focus,
.btn-pink-800:active:focus,
.btn-pink-800.active:focus,
.show > .btn-pink-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 55, 83, 0.5);
}
.btn-pink-800:disabled,
.btn-pink-800.disabled {
color: #fff;
background-color: #561435;
border-color: #561435;
}
.btn-pink-900 {
color: #fff;
background-color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-pink-900:hover {
color: #fff;
background-color: #250916;
border-color: #220815;
}
.btn-check:focus + .btn-pink-900,
.btn-pink-900:focus {
color: #fff;
background-color: #250916;
border-color: #220815;
box-shadow: 0 0 0 0.25rem rgba(75, 47, 60, 0.5);
}
.btn-check:checked + .btn-pink-900,
.btn-check:active + .btn-pink-900,
.btn-pink-900:active,
.btn-pink-900.active,
.show > .btn-pink-900.dropdown-toggle {
color: #fff;
background-color: #220815;
border-color: #200814;
}
.btn-check:checked + .btn-pink-900:focus,
.btn-check:active + .btn-pink-900:focus,
.btn-pink-900:active:focus,
.btn-pink-900.active:focus,
.show > .btn-pink-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(75, 47, 60, 0.5);
}
.btn-pink-900:disabled,
.btn-pink-900.disabled {
color: #fff;
background-color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-red {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-red:hover {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
}
.btn-check:focus + .btn-red,
.btn-red:focus {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-red,
.btn-check:active + .btn-red,
.btn-red:active,
.btn-red.active,
.show > .btn-red.dropdown-toggle {
color: #fff;
background-color: #b02a37;
border-color: #a52834;
}
.btn-check:checked + .btn-red:focus,
.btn-check:active + .btn-red:focus,
.btn-red:active:focus,
.btn-red.active:focus,
.show > .btn-red.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-red:disabled,
.btn-red.disabled {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-red-100 {
color: #000;
background-color: #f8d7da;
border-color: #f8d7da;
}
.btn-red-100:hover {
color: #000;
background-color: #f9dde0;
border-color: #f9dbde;
}
.btn-check:focus + .btn-red-100,
.btn-red-100:focus {
color: #000;
background-color: #f9dde0;
border-color: #f9dbde;
box-shadow: 0 0 0 0.25rem rgba(211, 183, 185, 0.5);
}
.btn-check:checked + .btn-red-100,
.btn-check:active + .btn-red-100,
.btn-red-100:active,
.btn-red-100.active,
.show > .btn-red-100.dropdown-toggle {
color: #000;
background-color: #f9dfe1;
border-color: #f9dbde;
}
.btn-check:checked + .btn-red-100:focus,
.btn-check:active + .btn-red-100:focus,
.btn-red-100:active:focus,
.btn-red-100.active:focus,
.show > .btn-red-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(211, 183, 185, 0.5);
}
.btn-red-100:disabled,
.btn-red-100.disabled {
color: #000;
background-color: #f8d7da;
border-color: #f8d7da;
}
.btn-red-200 {
color: #000;
background-color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-red-200:hover {
color: #000;
background-color: #f3bac0;
border-color: #f2b6bc;
}
.btn-check:focus + .btn-red-200,
.btn-red-200:focus {
color: #000;
background-color: #f3bac0;
border-color: #f2b6bc;
box-shadow: 0 0 0 0.25rem rgba(205, 148, 154, 0.5);
}
.btn-check:checked + .btn-red-200,
.btn-check:active + .btn-red-200,
.btn-red-200:active,
.btn-red-200.active,
.show > .btn-red-200.dropdown-toggle {
color: #000;
background-color: #f4bec4;
border-color: #f2b6bc;
}
.btn-check:checked + .btn-red-200:focus,
.btn-check:active + .btn-red-200:focus,
.btn-red-200:active:focus,
.btn-red-200.active:focus,
.show > .btn-red-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(205, 148, 154, 0.5);
}
.btn-red-200:disabled,
.btn-red-200.disabled {
color: #000;
background-color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-red-300 {
color: #000;
background-color: #ea868f;
border-color: #ea868f;
}
.btn-red-300:hover {
color: #000;
background-color: #ed98a0;
border-color: #ec929a;
}
.btn-check:focus + .btn-red-300,
.btn-red-300:focus {
color: #000;
background-color: #ed98a0;
border-color: #ec929a;
box-shadow: 0 0 0 0.25rem rgba(199, 114, 122, 0.5);
}
.btn-check:checked + .btn-red-300,
.btn-check:active + .btn-red-300,
.btn-red-300:active,
.btn-red-300.active,
.show > .btn-red-300.dropdown-toggle {
color: #000;
background-color: #ee9ea5;
border-color: #ec929a;
}
.btn-check:checked + .btn-red-300:focus,
.btn-check:active + .btn-red-300:focus,
.btn-red-300:active:focus,
.btn-red-300.active:focus,
.show > .btn-red-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(199, 114, 122, 0.5);
}
.btn-red-300:disabled,
.btn-red-300.disabled {
color: #000;
background-color: #ea868f;
border-color: #ea868f;
}
.btn-red-400 {
color: #000;
background-color: #e35d6a;
border-color: #e35d6a;
}
.btn-red-400:hover {
color: #000;
background-color: #e77580;
border-color: #e66d79;
}
.btn-check:focus + .btn-red-400,
.btn-red-400:focus {
color: #000;
background-color: #e77580;
border-color: #e66d79;
box-shadow: 0 0 0 0.25rem rgba(193, 79, 90, 0.5);
}
.btn-check:checked + .btn-red-400,
.btn-check:active + .btn-red-400,
.btn-red-400:active,
.btn-red-400.active,
.show > .btn-red-400.dropdown-toggle {
color: #000;
background-color: #e97d88;
border-color: #e66d79;
}
.btn-check:checked + .btn-red-400:focus,
.btn-check:active + .btn-red-400:focus,
.btn-red-400:active:focus,
.btn-red-400.active:focus,
.show > .btn-red-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(193, 79, 90, 0.5);
}
.btn-red-400:disabled,
.btn-red-400.disabled {
color: #000;
background-color: #e35d6a;
border-color: #e35d6a;
}
.btn-red-500 {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-red-500:hover {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
}
.btn-check:focus + .btn-red-500,
.btn-red-500:focus {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-red-500,
.btn-check:active + .btn-red-500,
.btn-red-500:active,
.btn-red-500.active,
.show > .btn-red-500.dropdown-toggle {
color: #fff;
background-color: #b02a37;
border-color: #a52834;
}
.btn-check:checked + .btn-red-500:focus,
.btn-check:active + .btn-red-500:focus,
.btn-red-500:active:focus,
.btn-red-500.active:focus,
.show > .btn-red-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-red-500:disabled,
.btn-red-500.disabled {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-red-600 {
color: #fff;
background-color: #b02a37;
border-color: #b02a37;
}
.btn-red-600:hover {
color: #fff;
background-color: #96242f;
border-color: #8d222c;
}
.btn-check:focus + .btn-red-600,
.btn-red-600:focus {
color: #fff;
background-color: #96242f;
border-color: #8d222c;
box-shadow: 0 0 0 0.25rem rgba(188, 74, 85, 0.5);
}
.btn-check:checked + .btn-red-600,
.btn-check:active + .btn-red-600,
.btn-red-600:active,
.btn-red-600.active,
.show > .btn-red-600.dropdown-toggle {
color: #fff;
background-color: #8d222c;
border-color: #842029;
}
.btn-check:checked + .btn-red-600:focus,
.btn-check:active + .btn-red-600:focus,
.btn-red-600:active:focus,
.btn-red-600.active:focus,
.show > .btn-red-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(188, 74, 85, 0.5);
}
.btn-red-600:disabled,
.btn-red-600.disabled {
color: #fff;
background-color: #b02a37;
border-color: #b02a37;
}
.btn-red-700 {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.btn-red-700:hover {
color: #fff;
background-color: #701b23;
border-color: #6a1a21;
}
.btn-check:focus + .btn-red-700,
.btn-red-700:focus {
color: #fff;
background-color: #701b23;
border-color: #6a1a21;
box-shadow: 0 0 0 0.25rem rgba(150, 65, 73, 0.5);
}
.btn-check:checked + .btn-red-700,
.btn-check:active + .btn-red-700,
.btn-red-700:active,
.btn-red-700.active,
.show > .btn-red-700.dropdown-toggle {
color: #fff;
background-color: #6a1a21;
border-color: #63181f;
}
.btn-check:checked + .btn-red-700:focus,
.btn-check:active + .btn-red-700:focus,
.btn-red-700:active:focus,
.btn-red-700.active:focus,
.show > .btn-red-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(150, 65, 73, 0.5);
}
.btn-red-700:disabled,
.btn-red-700.disabled {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.btn-red-800 {
color: #fff;
background-color: #58151c;
border-color: #58151c;
}
.btn-red-800:hover {
color: #fff;
background-color: #4b1218;
border-color: #461116;
}
.btn-check:focus + .btn-red-800,
.btn-red-800:focus {
color: #fff;
background-color: #4b1218;
border-color: #461116;
box-shadow: 0 0 0 0.25rem rgba(113, 56, 62, 0.5);
}
.btn-check:checked + .btn-red-800,
.btn-check:active + .btn-red-800,
.btn-red-800:active,
.btn-red-800.active,
.show > .btn-red-800.dropdown-toggle {
color: #fff;
background-color: #461116;
border-color: #421015;
}
.btn-check:checked + .btn-red-800:focus,
.btn-check:active + .btn-red-800:focus,
.btn-red-800:active:focus,
.btn-red-800.active:focus,
.show > .btn-red-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(113, 56, 62, 0.5);
}
.btn-red-800:disabled,
.btn-red-800.disabled {
color: #fff;
background-color: #58151c;
border-color: #58151c;
}
.btn-red-900 {
color: #fff;
background-color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-red-900:hover {
color: #fff;
background-color: #25090c;
border-color: #23090b;
}
.btn-check:focus + .btn-red-900,
.btn-red-900:focus {
color: #fff;
background-color: #25090c;
border-color: #23090b;
box-shadow: 0 0 0 0.25rem rgba(76, 48, 50, 0.5);
}
.btn-check:checked + .btn-red-900,
.btn-check:active + .btn-red-900,
.btn-red-900:active,
.btn-red-900.active,
.show > .btn-red-900.dropdown-toggle {
color: #fff;
background-color: #23090b;
border-color: #21080b;
}
.btn-check:checked + .btn-red-900:focus,
.btn-check:active + .btn-red-900:focus,
.btn-red-900:active:focus,
.btn-red-900.active:focus,
.show > .btn-red-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(76, 48, 50, 0.5);
}
.btn-red-900:disabled,
.btn-red-900.disabled {
color: #fff;
background-color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-orange {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-orange:hover {
color: #000;
background-color: #fd9137;
border-color: #fd8b2c;
}
.btn-check:focus + .btn-orange,
.btn-orange:focus {
color: #000;
background-color: #fd9137;
border-color: #fd8b2c;
box-shadow: 0 0 0 0.25rem rgba(215, 107, 17, 0.5);
}
.btn-check:checked + .btn-orange,
.btn-check:active + .btn-orange,
.btn-orange:active,
.btn-orange.active,
.show > .btn-orange.dropdown-toggle {
color: #000;
background-color: #fd9843;
border-color: #fd8b2c;
}
.btn-check:checked + .btn-orange:focus,
.btn-check:active + .btn-orange:focus,
.btn-orange:active:focus,
.btn-orange.active:focus,
.show > .btn-orange.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(215, 107, 17, 0.5);
}
.btn-orange:disabled,
.btn-orange.disabled {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-orange-100 {
color: #000;
background-color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-orange-100:hover {
color: #000;
background-color: #ffe9d7;
border-color: #ffe8d5;
}
.btn-check:focus + .btn-orange-100,
.btn-orange-100:focus {
color: #000;
background-color: #ffe9d7;
border-color: #ffe8d5;
box-shadow: 0 0 0 0.25rem rgba(217, 195, 177, 0.5);
}
.btn-check:checked + .btn-orange-100,
.btn-check:active + .btn-orange-100,
.btn-orange-100:active,
.btn-orange-100.active,
.show > .btn-orange-100.dropdown-toggle {
color: #000;
background-color: #ffead9;
border-color: #ffe8d5;
}
.btn-check:checked + .btn-orange-100:focus,
.btn-check:active + .btn-orange-100:focus,
.btn-orange-100:active:focus,
.btn-orange-100.active:focus,
.show > .btn-orange-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 195, 177, 0.5);
}
.btn-orange-100:disabled,
.btn-orange-100.disabled {
color: #000;
background-color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-orange-200 {
color: #000;
background-color: #fecba1;
border-color: #fecba1;
}
.btn-orange-200:hover {
color: #000;
background-color: #fed3af;
border-color: #fed0aa;
}
.btn-check:focus + .btn-orange-200,
.btn-orange-200:focus {
color: #000;
background-color: #fed3af;
border-color: #fed0aa;
box-shadow: 0 0 0 0.25rem rgba(216, 173, 137, 0.5);
}
.btn-check:checked + .btn-orange-200,
.btn-check:active + .btn-orange-200,
.btn-orange-200:active,
.btn-orange-200.active,
.show > .btn-orange-200.dropdown-toggle {
color: #000;
background-color: #fed5b4;
border-color: #fed0aa;
}
.btn-check:checked + .btn-orange-200:focus,
.btn-check:active + .btn-orange-200:focus,
.btn-orange-200:active:focus,
.btn-orange-200.active:focus,
.show > .btn-orange-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(216, 173, 137, 0.5);
}
.btn-orange-200:disabled,
.btn-orange-200.disabled {
color: #000;
background-color: #fecba1;
border-color: #fecba1;
}
.btn-orange-300 {
color: #000;
background-color: #feb272;
border-color: #feb272;
}
.btn-orange-300:hover {
color: #000;
background-color: #febe87;
border-color: #feba80;
}
.btn-check:focus + .btn-orange-300,
.btn-orange-300:focus {
color: #000;
background-color: #febe87;
border-color: #feba80;
box-shadow: 0 0 0 0.25rem rgba(216, 151, 97, 0.5);
}
.btn-check:checked + .btn-orange-300,
.btn-check:active + .btn-orange-300,
.btn-orange-300:active,
.btn-orange-300.active,
.show > .btn-orange-300.dropdown-toggle {
color: #000;
background-color: #fec18e;
border-color: #feba80;
}
.btn-check:checked + .btn-orange-300:focus,
.btn-check:active + .btn-orange-300:focus,
.btn-orange-300:active:focus,
.btn-orange-300.active:focus,
.show > .btn-orange-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(216, 151, 97, 0.5);
}
.btn-orange-300:disabled,
.btn-orange-300.disabled {
color: #000;
background-color: #feb272;
border-color: #feb272;
}
.btn-orange-400 {
color: #000;
background-color: #fd9843;
border-color: #fd9843;
}
.btn-orange-400:hover {
color: #000;
background-color: #fda75f;
border-color: #fda256;
}
.btn-check:focus + .btn-orange-400,
.btn-orange-400:focus {
color: #000;
background-color: #fda75f;
border-color: #fda256;
box-shadow: 0 0 0 0.25rem rgba(215, 129, 57, 0.5);
}
.btn-check:checked + .btn-orange-400,
.btn-check:active + .btn-orange-400,
.btn-orange-400:active,
.btn-orange-400.active,
.show > .btn-orange-400.dropdown-toggle {
color: #000;
background-color: #fdad69;
border-color: #fda256;
}
.btn-check:checked + .btn-orange-400:focus,
.btn-check:active + .btn-orange-400:focus,
.btn-orange-400:active:focus,
.btn-orange-400.active:focus,
.show > .btn-orange-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(215, 129, 57, 0.5);
}
.btn-orange-400:disabled,
.btn-orange-400.disabled {
color: #000;
background-color: #fd9843;
border-color: #fd9843;
}
.btn-orange-500 {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-orange-500:hover {
color: #000;
background-color: #fd9137;
border-color: #fd8b2c;
}
.btn-check:focus + .btn-orange-500,
.btn-orange-500:focus {
color: #000;
background-color: #fd9137;
border-color: #fd8b2c;
box-shadow: 0 0 0 0.25rem rgba(215, 107, 17, 0.5);
}
.btn-check:checked + .btn-orange-500,
.btn-check:active + .btn-orange-500,
.btn-orange-500:active,
.btn-orange-500.active,
.show > .btn-orange-500.dropdown-toggle {
color: #000;
background-color: #fd9843;
border-color: #fd8b2c;
}
.btn-check:checked + .btn-orange-500:focus,
.btn-check:active + .btn-orange-500:focus,
.btn-orange-500:active:focus,
.btn-orange-500.active:focus,
.show > .btn-orange-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(215, 107, 17, 0.5);
}
.btn-orange-500:disabled,
.btn-orange-500.disabled {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-orange-600 {
color: #000;
background-color: #ca6510;
border-color: #ca6510;
}
.btn-orange-600:hover {
color: #000;
background-color: #d27c34;
border-color: #cf7428;
}
.btn-check:focus + .btn-orange-600,
.btn-orange-600:focus {
color: #000;
background-color: #d27c34;
border-color: #cf7428;
box-shadow: 0 0 0 0.25rem rgba(172, 86, 14, 0.5);
}
.btn-check:checked + .btn-orange-600,
.btn-check:active + .btn-orange-600,
.btn-orange-600:active,
.btn-orange-600.active,
.show > .btn-orange-600.dropdown-toggle {
color: #000;
background-color: #d58440;
border-color: #cf7428;
}
.btn-check:checked + .btn-orange-600:focus,
.btn-check:active + .btn-orange-600:focus,
.btn-orange-600:active:focus,
.btn-orange-600.active:focus,
.show > .btn-orange-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(172, 86, 14, 0.5);
}
.btn-orange-600:disabled,
.btn-orange-600.disabled {
color: #000;
background-color: #ca6510;
border-color: #ca6510;
}
.btn-orange-700 {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.btn-orange-700:hover {
color: #fff;
background-color: #81410a;
border-color: #7a3d0a;
}
.btn-check:focus + .btn-orange-700,
.btn-orange-700:focus {
color: #fff;
background-color: #81410a;
border-color: #7a3d0a;
box-shadow: 0 0 0 0.25rem rgba(167, 103, 48, 0.5);
}
.btn-check:checked + .btn-orange-700,
.btn-check:active + .btn-orange-700,
.btn-orange-700:active,
.btn-orange-700.active,
.show > .btn-orange-700.dropdown-toggle {
color: #fff;
background-color: #7a3d0a;
border-color: #723909;
}
.btn-check:checked + .btn-orange-700:focus,
.btn-check:active + .btn-orange-700:focus,
.btn-orange-700:active:focus,
.btn-orange-700.active:focus,
.show > .btn-orange-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(167, 103, 48, 0.5);
}
.btn-orange-700:disabled,
.btn-orange-700.disabled {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.btn-orange-800 {
color: #fff;
background-color: #653208;
border-color: #653208;
}
.btn-orange-800:hover {
color: #fff;
background-color: #562b07;
border-color: #512806;
}
.btn-check:focus + .btn-orange-800,
.btn-orange-800:focus {
color: #fff;
background-color: #562b07;
border-color: #512806;
box-shadow: 0 0 0 0.25rem rgba(124, 81, 45, 0.5);
}
.btn-check:checked + .btn-orange-800,
.btn-check:active + .btn-orange-800,
.btn-orange-800:active,
.btn-orange-800.active,
.show > .btn-orange-800.dropdown-toggle {
color: #fff;
background-color: #512806;
border-color: #4c2606;
}
.btn-check:checked + .btn-orange-800:focus,
.btn-check:active + .btn-orange-800:focus,
.btn-orange-800:active:focus,
.btn-orange-800.active:focus,
.show > .btn-orange-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(124, 81, 45, 0.5);
}
.btn-orange-800:disabled,
.btn-orange-800.disabled {
color: #fff;
background-color: #653208;
border-color: #653208;
}
.btn-orange-900 {
color: #fff;
background-color: #331904;
border-color: #331904;
}
.btn-orange-900:hover {
color: #fff;
background-color: #2b1503;
border-color: #291403;
}
.btn-check:focus + .btn-orange-900,
.btn-orange-900:focus {
color: #fff;
background-color: #2b1503;
border-color: #291403;
box-shadow: 0 0 0 0.25rem rgba(82, 60, 42, 0.5);
}
.btn-check:checked + .btn-orange-900,
.btn-check:active + .btn-orange-900,
.btn-orange-900:active,
.btn-orange-900.active,
.show > .btn-orange-900.dropdown-toggle {
color: #fff;
background-color: #291403;
border-color: #261303;
}
.btn-check:checked + .btn-orange-900:focus,
.btn-check:active + .btn-orange-900:focus,
.btn-orange-900:active:focus,
.btn-orange-900.active:focus,
.show > .btn-orange-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 60, 42, 0.5);
}
.btn-orange-900:disabled,
.btn-orange-900.disabled {
color: #fff;
background-color: #331904;
border-color: #331904;
}
.btn-yellow {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-yellow:hover {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
}
.btn-check:focus + .btn-yellow,
.btn-yellow:focus {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-yellow,
.btn-check:active + .btn-yellow,
.btn-yellow:active,
.btn-yellow.active,
.show > .btn-yellow.dropdown-toggle {
color: #000;
background-color: #ffcd39;
border-color: #ffc720;
}
.btn-check:checked + .btn-yellow:focus,
.btn-check:active + .btn-yellow:focus,
.btn-yellow:active:focus,
.btn-yellow.active:focus,
.show > .btn-yellow.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-yellow:disabled,
.btn-yellow.disabled {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-yellow-100 {
color: #000;
background-color: #fff3cd;
border-color: #fff3cd;
}
.btn-yellow-100:hover {
color: #000;
background-color: #fff5d5;
border-color: #fff4d2;
}
.btn-check:focus + .btn-yellow-100,
.btn-yellow-100:focus {
color: #000;
background-color: #fff5d5;
border-color: #fff4d2;
box-shadow: 0 0 0 0.25rem rgba(217, 207, 174, 0.5);
}
.btn-check:checked + .btn-yellow-100,
.btn-check:active + .btn-yellow-100,
.btn-yellow-100:active,
.btn-yellow-100.active,
.show > .btn-yellow-100.dropdown-toggle {
color: #000;
background-color: #fff5d7;
border-color: #fff4d2;
}
.btn-check:checked + .btn-yellow-100:focus,
.btn-check:active + .btn-yellow-100:focus,
.btn-yellow-100:active:focus,
.btn-yellow-100.active:focus,
.show > .btn-yellow-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 207, 174, 0.5);
}
.btn-yellow-100:disabled,
.btn-yellow-100.disabled {
color: #000;
background-color: #fff3cd;
border-color: #fff3cd;
}
.btn-yellow-200 {
color: #000;
background-color: #ffe69c;
border-color: #ffe69c;
}
.btn-yellow-200:hover {
color: #000;
background-color: #ffeaab;
border-color: #ffe9a6;
}
.btn-check:focus + .btn-yellow-200,
.btn-yellow-200:focus {
color: #000;
background-color: #ffeaab;
border-color: #ffe9a6;
box-shadow: 0 0 0 0.25rem rgba(217, 196, 133, 0.5);
}
.btn-check:checked + .btn-yellow-200,
.btn-check:active + .btn-yellow-200,
.btn-yellow-200:active,
.btn-yellow-200.active,
.show > .btn-yellow-200.dropdown-toggle {
color: #000;
background-color: #ffebb0;
border-color: #ffe9a6;
}
.btn-check:checked + .btn-yellow-200:focus,
.btn-check:active + .btn-yellow-200:focus,
.btn-yellow-200:active:focus,
.btn-yellow-200.active:focus,
.show > .btn-yellow-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 196, 133, 0.5);
}
.btn-yellow-200:disabled,
.btn-yellow-200.disabled {
color: #000;
background-color: #ffe69c;
border-color: #ffe69c;
}
.btn-yellow-300 {
color: #000;
background-color: #ffda6a;
border-color: #ffda6a;
}
.btn-yellow-300:hover {
color: #000;
background-color: #ffe080;
border-color: #ffde79;
}
.btn-check:focus + .btn-yellow-300,
.btn-yellow-300:focus {
color: #000;
background-color: #ffe080;
border-color: #ffde79;
box-shadow: 0 0 0 0.25rem rgba(217, 185, 90, 0.5);
}
.btn-check:checked + .btn-yellow-300,
.btn-check:active + .btn-yellow-300,
.btn-yellow-300:active,
.btn-yellow-300.active,
.show > .btn-yellow-300.dropdown-toggle {
color: #000;
background-color: #ffe188;
border-color: #ffde79;
}
.btn-check:checked + .btn-yellow-300:focus,
.btn-check:active + .btn-yellow-300:focus,
.btn-yellow-300:active:focus,
.btn-yellow-300.active:focus,
.show > .btn-yellow-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 185, 90, 0.5);
}
.btn-yellow-300:disabled,
.btn-yellow-300.disabled {
color: #000;
background-color: #ffda6a;
border-color: #ffda6a;
}
.btn-yellow-400 {
color: #000;
background-color: #ffcd39;
border-color: #ffcd39;
}
.btn-yellow-400:hover {
color: #000;
background-color: #ffd557;
border-color: #ffd24d;
}
.btn-check:focus + .btn-yellow-400,
.btn-yellow-400:focus {
color: #000;
background-color: #ffd557;
border-color: #ffd24d;
box-shadow: 0 0 0 0.25rem rgba(217, 174, 48, 0.5);
}
.btn-check:checked + .btn-yellow-400,
.btn-check:active + .btn-yellow-400,
.btn-yellow-400:active,
.btn-yellow-400.active,
.show > .btn-yellow-400.dropdown-toggle {
color: #000;
background-color: #ffd761;
border-color: #ffd24d;
}
.btn-check:checked + .btn-yellow-400:focus,
.btn-check:active + .btn-yellow-400:focus,
.btn-yellow-400:active:focus,
.btn-yellow-400.active:focus,
.show > .btn-yellow-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 174, 48, 0.5);
}
.btn-yellow-400:disabled,
.btn-yellow-400.disabled {
color: #000;
background-color: #ffcd39;
border-color: #ffcd39;
}
.btn-yellow-500 {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-yellow-500:hover {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
}
.btn-check:focus + .btn-yellow-500,
.btn-yellow-500:focus {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-yellow-500,
.btn-check:active + .btn-yellow-500,
.btn-yellow-500:active,
.btn-yellow-500.active,
.show > .btn-yellow-500.dropdown-toggle {
color: #000;
background-color: #ffcd39;
border-color: #ffc720;
}
.btn-check:checked + .btn-yellow-500:focus,
.btn-check:active + .btn-yellow-500:focus,
.btn-yellow-500:active:focus,
.btn-yellow-500.active:focus,
.show > .btn-yellow-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-yellow-500:disabled,
.btn-yellow-500.disabled {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-yellow-600 {
color: #000;
background-color: #cc9a06;
border-color: #cc9a06;
}
.btn-yellow-600:hover {
color: #000;
background-color: #d4a92b;
border-color: #d1a41f;
}
.btn-check:focus + .btn-yellow-600,
.btn-yellow-600:focus {
color: #000;
background-color: #d4a92b;
border-color: #d1a41f;
box-shadow: 0 0 0 0.25rem rgba(173, 131, 5, 0.5);
}
.btn-check:checked + .btn-yellow-600,
.btn-check:active + .btn-yellow-600,
.btn-yellow-600:active,
.btn-yellow-600.active,
.show > .btn-yellow-600.dropdown-toggle {
color: #000;
background-color: #d6ae38;
border-color: #d1a41f;
}
.btn-check:checked + .btn-yellow-600:focus,
.btn-check:active + .btn-yellow-600:focus,
.btn-yellow-600:active:focus,
.btn-yellow-600.active:focus,
.show > .btn-yellow-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(173, 131, 5, 0.5);
}
.btn-yellow-600:disabled,
.btn-yellow-600.disabled {
color: #000;
background-color: #cc9a06;
border-color: #cc9a06;
}
.btn-yellow-700 {
color: #000;
background-color: #997404;
border-color: #997404;
}
.btn-yellow-700:hover {
color: #000;
background-color: #a8892a;
border-color: #a3821d;
}
.btn-check:focus + .btn-yellow-700,
.btn-yellow-700:focus {
color: #000;
background-color: #a8892a;
border-color: #a3821d;
box-shadow: 0 0 0 0.25rem rgba(130, 99, 3, 0.5);
}
.btn-check:checked + .btn-yellow-700,
.btn-check:active + .btn-yellow-700,
.btn-yellow-700:active,
.btn-yellow-700.active,
.show > .btn-yellow-700.dropdown-toggle {
color: #000;
background-color: #ad9036;
border-color: #a3821d;
}
.btn-check:checked + .btn-yellow-700:focus,
.btn-check:active + .btn-yellow-700:focus,
.btn-yellow-700:active:focus,
.btn-yellow-700.active:focus,
.show > .btn-yellow-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(130, 99, 3, 0.5);
}
.btn-yellow-700:disabled,
.btn-yellow-700.disabled {
color: #000;
background-color: #997404;
border-color: #997404;
}
.btn-yellow-800 {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.btn-yellow-800:hover {
color: #fff;
background-color: #574103;
border-color: #523e02;
}
.btn-check:focus + .btn-yellow-800,
.btn-yellow-800:focus {
color: #fff;
background-color: #574103;
border-color: #523e02;
box-shadow: 0 0 0 0.25rem rgba(125, 104, 41, 0.5);
}
.btn-check:checked + .btn-yellow-800,
.btn-check:active + .btn-yellow-800,
.btn-yellow-800:active,
.btn-yellow-800.active,
.show > .btn-yellow-800.dropdown-toggle {
color: #fff;
background-color: #523e02;
border-color: #4d3a02;
}
.btn-check:checked + .btn-yellow-800:focus,
.btn-check:active + .btn-yellow-800:focus,
.btn-yellow-800:active:focus,
.btn-yellow-800.active:focus,
.show > .btn-yellow-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(125, 104, 41, 0.5);
}
.btn-yellow-800:disabled,
.btn-yellow-800.disabled {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.btn-yellow-900 {
color: #fff;
background-color: #332701;
border-color: #332701;
}
.btn-yellow-900:hover {
color: #fff;
background-color: #2b2101;
border-color: #291f01;
}
.btn-check:focus + .btn-yellow-900,
.btn-yellow-900:focus {
color: #fff;
background-color: #2b2101;
border-color: #291f01;
box-shadow: 0 0 0 0.25rem rgba(82, 71, 39, 0.5);
}
.btn-check:checked + .btn-yellow-900,
.btn-check:active + .btn-yellow-900,
.btn-yellow-900:active,
.btn-yellow-900.active,
.show > .btn-yellow-900.dropdown-toggle {
color: #fff;
background-color: #291f01;
border-color: #261d01;
}
.btn-check:checked + .btn-yellow-900:focus,
.btn-check:active + .btn-yellow-900:focus,
.btn-yellow-900:active:focus,
.btn-yellow-900.active:focus,
.show > .btn-yellow-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 71, 39, 0.5);
}
.btn-yellow-900:disabled,
.btn-yellow-900.disabled {
color: #fff;
background-color: #332701;
border-color: #332701;
}
.btn-green {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-green:hover {
color: #fff;
background-color: #157347;
border-color: #146c43;
}
.btn-check:focus + .btn-green,
.btn-green:focus {
color: #fff;
background-color: #157347;
border-color: #146c43;
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-green,
.btn-check:active + .btn-green,
.btn-green:active,
.btn-green.active,
.show > .btn-green.dropdown-toggle {
color: #fff;
background-color: #146c43;
border-color: #13653f;
}
.btn-check:checked + .btn-green:focus,
.btn-check:active + .btn-green:focus,
.btn-green:active:focus,
.btn-green.active:focus,
.show > .btn-green.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-green:disabled,
.btn-green.disabled {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-green-100 {
color: #000;
background-color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-green-100:hover {
color: #000;
background-color: #d8ebe2;
border-color: #d6e9e0;
}
.btn-check:focus + .btn-green-100,
.btn-green-100:focus {
color: #000;
background-color: #d8ebe2;
border-color: #d6e9e0;
box-shadow: 0 0 0 0.25rem rgba(178, 196, 188, 0.5);
}
.btn-check:checked + .btn-green-100,
.btn-check:active + .btn-green-100,
.btn-green-100:active,
.btn-green-100.active,
.show > .btn-green-100.dropdown-toggle {
color: #000;
background-color: #daece4;
border-color: #d6e9e0;
}
.btn-check:checked + .btn-green-100:focus,
.btn-check:active + .btn-green-100:focus,
.btn-green-100:active:focus,
.btn-green-100.active:focus,
.show > .btn-green-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(178, 196, 188, 0.5);
}
.btn-green-100:disabled,
.btn-green-100.disabled {
color: #000;
background-color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-green-200 {
color: #000;
background-color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-green-200:hover {
color: #000;
background-color: #b1d6c5;
border-color: #acd4c2;
}
.btn-check:focus + .btn-green-200,
.btn-green-200:focus {
color: #000;
background-color: #b1d6c5;
border-color: #acd4c2;
box-shadow: 0 0 0 0.25rem rgba(139, 176, 159, 0.5);
}
.btn-check:checked + .btn-green-200,
.btn-check:active + .btn-green-200,
.btn-green-200:active,
.btn-green-200.active,
.show > .btn-green-200.dropdown-toggle {
color: #000;
background-color: #b5d9c9;
border-color: #acd4c2;
}
.btn-check:checked + .btn-green-200:focus,
.btn-check:active + .btn-green-200:focus,
.btn-green-200:active:focus,
.btn-green-200.active:focus,
.show > .btn-green-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(139, 176, 159, 0.5);
}
.btn-green-200:disabled,
.btn-green-200.disabled {
color: #000;
background-color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-green-300 {
color: #000;
background-color: #75b798;
border-color: #75b798;
}
.btn-green-300:hover {
color: #000;
background-color: #8ac2a7;
border-color: #83bea2;
}
.btn-check:focus + .btn-green-300,
.btn-green-300:focus {
color: #000;
background-color: #8ac2a7;
border-color: #83bea2;
box-shadow: 0 0 0 0.25rem rgba(99, 156, 129, 0.5);
}
.btn-check:checked + .btn-green-300,
.btn-check:active + .btn-green-300,
.btn-green-300:active,
.btn-green-300.active,
.show > .btn-green-300.dropdown-toggle {
color: #000;
background-color: #91c5ad;
border-color: #83bea2;
}
.btn-check:checked + .btn-green-300:focus,
.btn-check:active + .btn-green-300:focus,
.btn-green-300:active:focus,
.btn-green-300.active:focus,
.show > .btn-green-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(99, 156, 129, 0.5);
}
.btn-green-300:disabled,
.btn-green-300.disabled {
color: #000;
background-color: #75b798;
border-color: #75b798;
}
.btn-green-400 {
color: #000;
background-color: #479f76;
border-color: #479f76;
}
.btn-green-400:hover {
color: #000;
background-color: #63ad8b;
border-color: #59a984;
}
.btn-check:focus + .btn-green-400,
.btn-green-400:focus {
color: #000;
background-color: #63ad8b;
border-color: #59a984;
box-shadow: 0 0 0 0.25rem rgba(60, 135, 100, 0.5);
}
.btn-check:checked + .btn-green-400,
.btn-check:active + .btn-green-400,
.btn-green-400:active,
.btn-green-400.active,
.show > .btn-green-400.dropdown-toggle {
color: #000;
background-color: #6cb291;
border-color: #59a984;
}
.btn-check:checked + .btn-green-400:focus,
.btn-check:active + .btn-green-400:focus,
.btn-green-400:active:focus,
.btn-green-400.active:focus,
.show > .btn-green-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(60, 135, 100, 0.5);
}
.btn-green-400:disabled,
.btn-green-400.disabled {
color: #000;
background-color: #479f76;
border-color: #479f76;
}
.btn-green-500 {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-green-500:hover {
color: #fff;
background-color: #157347;
border-color: #146c43;
}
.btn-check:focus + .btn-green-500,
.btn-green-500:focus {
color: #fff;
background-color: #157347;
border-color: #146c43;
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-green-500,
.btn-check:active + .btn-green-500,
.btn-green-500:active,
.btn-green-500.active,
.show > .btn-green-500.dropdown-toggle {
color: #fff;
background-color: #146c43;
border-color: #13653f;
}
.btn-check:checked + .btn-green-500:focus,
.btn-check:active + .btn-green-500:focus,
.btn-green-500:active:focus,
.btn-green-500.active:focus,
.show > .btn-green-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-green-500:disabled,
.btn-green-500.disabled {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-green-600 {
color: #fff;
background-color: #146c43;
border-color: #146c43;
}
.btn-green-600:hover {
color: #fff;
background-color: #115c39;
border-color: #105636;
}
.btn-check:focus + .btn-green-600,
.btn-green-600:focus {
color: #fff;
background-color: #115c39;
border-color: #105636;
box-shadow: 0 0 0 0.25rem rgba(55, 130, 95, 0.5);
}
.btn-check:checked + .btn-green-600,
.btn-check:active + .btn-green-600,
.btn-green-600:active,
.btn-green-600.active,
.show > .btn-green-600.dropdown-toggle {
color: #fff;
background-color: #105636;
border-color: #0f5132;
}
.btn-check:checked + .btn-green-600:focus,
.btn-check:active + .btn-green-600:focus,
.btn-green-600:active:focus,
.btn-green-600.active:focus,
.show > .btn-green-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(55, 130, 95, 0.5);
}
.btn-green-600:disabled,
.btn-green-600.disabled {
color: #fff;
background-color: #146c43;
border-color: #146c43;
}
.btn-green-700 {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.btn-green-700:hover {
color: #fff;
background-color: #0d452b;
border-color: #0c4128;
}
.btn-check:focus + .btn-green-700,
.btn-green-700:focus {
color: #fff;
background-color: #0d452b;
border-color: #0c4128;
box-shadow: 0 0 0 0.25rem rgba(51, 107, 81, 0.5);
}
.btn-check:checked + .btn-green-700,
.btn-check:active + .btn-green-700,
.btn-green-700:active,
.btn-green-700.active,
.show > .btn-green-700.dropdown-toggle {
color: #fff;
background-color: #0c4128;
border-color: #0b3d26;
}
.btn-check:checked + .btn-green-700:focus,
.btn-check:active + .btn-green-700:focus,
.btn-green-700:active:focus,
.btn-green-700.active:focus,
.show > .btn-green-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 107, 81, 0.5);
}
.btn-green-700:disabled,
.btn-green-700.disabled {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.btn-green-800 {
color: #fff;
background-color: #0a3622;
border-color: #0a3622;
}
.btn-green-800:hover {
color: #fff;
background-color: #092e1d;
border-color: #082b1b;
}
.btn-check:focus + .btn-green-800,
.btn-green-800:focus {
color: #fff;
background-color: #092e1d;
border-color: #082b1b;
box-shadow: 0 0 0 0.25rem rgba(47, 84, 67, 0.5);
}
.btn-check:checked + .btn-green-800,
.btn-check:active + .btn-green-800,
.btn-green-800:active,
.btn-green-800.active,
.show > .btn-green-800.dropdown-toggle {
color: #fff;
background-color: #082b1b;
border-color: #08291a;
}
.btn-check:checked + .btn-green-800:focus,
.btn-check:active + .btn-green-800:focus,
.btn-green-800:active:focus,
.btn-green-800.active:focus,
.show > .btn-green-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(47, 84, 67, 0.5);
}
.btn-green-800:disabled,
.btn-green-800.disabled {
color: #fff;
background-color: #0a3622;
border-color: #0a3622;
}
.btn-green-900 {
color: #fff;
background-color: #051b11;
border-color: #051b11;
}
.btn-green-900:hover {
color: #fff;
background-color: #04170e;
border-color: #04160e;
}
.btn-check:focus + .btn-green-900,
.btn-green-900:focus {
color: #fff;
background-color: #04170e;
border-color: #04160e;
box-shadow: 0 0 0 0.25rem rgba(43, 61, 53, 0.5);
}
.btn-check:checked + .btn-green-900,
.btn-check:active + .btn-green-900,
.btn-green-900:active,
.btn-green-900.active,
.show > .btn-green-900.dropdown-toggle {
color: #fff;
background-color: #04160e;
border-color: #04140d;
}
.btn-check:checked + .btn-green-900:focus,
.btn-check:active + .btn-green-900:focus,
.btn-green-900:active:focus,
.btn-green-900.active:focus,
.show > .btn-green-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 61, 53, 0.5);
}
.btn-green-900:disabled,
.btn-green-900.disabled {
color: #fff;
background-color: #051b11;
border-color: #051b11;
}
.btn-teal {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-teal:hover {
color: #000;
background-color: #41d1a7;
border-color: #36cea1;
}
.btn-check:focus + .btn-teal,
.btn-teal:focus {
color: #000;
background-color: #41d1a7;
border-color: #36cea1;
box-shadow: 0 0 0 0.25rem rgba(27, 171, 128, 0.5);
}
.btn-check:checked + .btn-teal,
.btn-check:active + .btn-teal,
.btn-teal:active,
.btn-teal.active,
.show > .btn-teal.dropdown-toggle {
color: #000;
background-color: #4dd4ac;
border-color: #36cea1;
}
.btn-check:checked + .btn-teal:focus,
.btn-check:active + .btn-teal:focus,
.btn-teal:active:focus,
.btn-teal.active:focus,
.show > .btn-teal.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(27, 171, 128, 0.5);
}
.btn-teal:disabled,
.btn-teal.disabled {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-teal-100 {
color: #000;
background-color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-teal-100:hover {
color: #000;
background-color: #d9f6ed;
border-color: #d7f5ec;
}
.btn-check:focus + .btn-teal-100,
.btn-teal-100:focus {
color: #000;
background-color: #d9f6ed;
border-color: #d7f5ec;
box-shadow: 0 0 0 0.25rem rgba(179, 207, 199, 0.5);
}
.btn-check:checked + .btn-teal-100,
.btn-check:active + .btn-teal-100,
.btn-teal-100:active,
.btn-teal-100.active,
.show > .btn-teal-100.dropdown-toggle {
color: #000;
background-color: #dbf6ee;
border-color: #d7f5ec;
}
.btn-check:checked + .btn-teal-100:focus,
.btn-check:active + .btn-teal-100:focus,
.btn-teal-100:active:focus,
.btn-teal-100.active:focus,
.show > .btn-teal-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(179, 207, 199, 0.5);
}
.btn-teal-100:disabled,
.btn-teal-100.disabled {
color: #000;
background-color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-teal-200 {
color: #000;
background-color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-teal-200:hover {
color: #000;
background-color: #b3ecdb;
border-color: #afebd9;
}
.btn-check:focus + .btn-teal-200,
.btn-teal-200:focus {
color: #000;
background-color: #b3ecdb;
border-color: #afebd9;
box-shadow: 0 0 0 0.25rem rgba(141, 198, 181, 0.5);
}
.btn-check:checked + .btn-teal-200,
.btn-check:active + .btn-teal-200,
.btn-teal-200:active,
.btn-teal-200.active,
.show > .btn-teal-200.dropdown-toggle {
color: #000;
background-color: #b8eddd;
border-color: #afebd9;
}
.btn-check:checked + .btn-teal-200:focus,
.btn-check:active + .btn-teal-200:focus,
.btn-teal-200:active:focus,
.btn-teal-200.active:focus,
.show > .btn-teal-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(141, 198, 181, 0.5);
}
.btn-teal-200:disabled,
.btn-teal-200.disabled {
color: #000;
background-color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-teal-300 {
color: #000;
background-color: #79dfc1;
border-color: #79dfc1;
}
.btn-teal-300:hover {
color: #000;
background-color: #8de4ca;
border-color: #86e2c7;
}
.btn-check:focus + .btn-teal-300,
.btn-teal-300:focus {
color: #000;
background-color: #8de4ca;
border-color: #86e2c7;
box-shadow: 0 0 0 0.25rem rgba(103, 190, 164, 0.5);
}
.btn-check:checked + .btn-teal-300,
.btn-check:active + .btn-teal-300,
.btn-teal-300:active,
.btn-teal-300.active,
.show > .btn-teal-300.dropdown-toggle {
color: #000;
background-color: #94e5cd;
border-color: #86e2c7;
}
.btn-check:checked + .btn-teal-300:focus,
.btn-check:active + .btn-teal-300:focus,
.btn-teal-300:active:focus,
.btn-teal-300.active:focus,
.show > .btn-teal-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(103, 190, 164, 0.5);
}
.btn-teal-300:disabled,
.btn-teal-300.disabled {
color: #000;
background-color: #79dfc1;
border-color: #79dfc1;
}
.btn-teal-400 {
color: #000;
background-color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-teal-400:hover {
color: #000;
background-color: #68dab8;
border-color: #5fd8b4;
}
.btn-check:focus + .btn-teal-400,
.btn-teal-400:focus {
color: #000;
background-color: #68dab8;
border-color: #5fd8b4;
box-shadow: 0 0 0 0.25rem rgba(65, 180, 146, 0.5);
}
.btn-check:checked + .btn-teal-400,
.btn-check:active + .btn-teal-400,
.btn-teal-400:active,
.btn-teal-400.active,
.show > .btn-teal-400.dropdown-toggle {
color: #000;
background-color: #71ddbd;
border-color: #5fd8b4;
}
.btn-check:checked + .btn-teal-400:focus,
.btn-check:active + .btn-teal-400:focus,
.btn-teal-400:active:focus,
.btn-teal-400.active:focus,
.show > .btn-teal-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(65, 180, 146, 0.5);
}
.btn-teal-400:disabled,
.btn-teal-400.disabled {
color: #000;
background-color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-teal-500 {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-teal-500:hover {
color: #000;
background-color: #41d1a7;
border-color: #36cea1;
}
.btn-check:focus + .btn-teal-500,
.btn-teal-500:focus {
color: #000;
background-color: #41d1a7;
border-color: #36cea1;
box-shadow: 0 0 0 0.25rem rgba(27, 171, 128, 0.5);
}
.btn-check:checked + .btn-teal-500,
.btn-check:active + .btn-teal-500,
.btn-teal-500:active,
.btn-teal-500.active,
.show > .btn-teal-500.dropdown-toggle {
color: #000;
background-color: #4dd4ac;
border-color: #36cea1;
}
.btn-check:checked + .btn-teal-500:focus,
.btn-check:active + .btn-teal-500:focus,
.btn-teal-500:active:focus,
.btn-teal-500.active:focus,
.show > .btn-teal-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(27, 171, 128, 0.5);
}
.btn-teal-500:disabled,
.btn-teal-500.disabled {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-teal-600 {
color: #000;
background-color: #1aa179;
border-color: #1aa179;
}
.btn-teal-600:hover {
color: #000;
background-color: #3caf8d;
border-color: #31aa86;
}
.btn-check:focus + .btn-teal-600,
.btn-teal-600:focus {
color: #000;
background-color: #3caf8d;
border-color: #31aa86;
box-shadow: 0 0 0 0.25rem rgba(22, 137, 103, 0.5);
}
.btn-check:checked + .btn-teal-600,
.btn-check:active + .btn-teal-600,
.btn-teal-600:active,
.btn-teal-600.active,
.show > .btn-teal-600.dropdown-toggle {
color: #000;
background-color: #48b494;
border-color: #31aa86;
}
.btn-check:checked + .btn-teal-600:focus,
.btn-check:active + .btn-teal-600:focus,
.btn-teal-600:active:focus,
.btn-teal-600.active:focus,
.show > .btn-teal-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(22, 137, 103, 0.5);
}
.btn-teal-600:disabled,
.btn-teal-600.disabled {
color: #000;
background-color: #1aa179;
border-color: #1aa179;
}
.btn-teal-700 {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.btn-teal-700:hover {
color: #fff;
background-color: #10674d;
border-color: #0f6149;
}
.btn-check:focus + .btn-teal-700,
.btn-teal-700:focus {
color: #fff;
background-color: #10674d;
border-color: #0f6149;
box-shadow: 0 0 0 0.25rem rgba(54, 141, 116, 0.5);
}
.btn-check:checked + .btn-teal-700,
.btn-check:active + .btn-teal-700,
.btn-teal-700:active,
.btn-teal-700.active,
.show > .btn-teal-700.dropdown-toggle {
color: #fff;
background-color: #0f6149;
border-color: #0e5b44;
}
.btn-check:checked + .btn-teal-700:focus,
.btn-check:active + .btn-teal-700:focus,
.btn-teal-700:active:focus,
.btn-teal-700.active:focus,
.show > .btn-teal-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(54, 141, 116, 0.5);
}
.btn-teal-700:disabled,
.btn-teal-700.disabled {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.btn-teal-800 {
color: #fff;
background-color: #0d503c;
border-color: #0d503c;
}
.btn-teal-800:hover {
color: #fff;
background-color: #0b4433;
border-color: #0a4030;
}
.btn-check:focus + .btn-teal-800,
.btn-teal-800:focus {
color: #fff;
background-color: #0b4433;
border-color: #0a4030;
box-shadow: 0 0 0 0.25rem rgba(49, 106, 89, 0.5);
}
.btn-check:checked + .btn-teal-800,
.btn-check:active + .btn-teal-800,
.btn-teal-800:active,
.btn-teal-800.active,
.show > .btn-teal-800.dropdown-toggle {
color: #fff;
background-color: #0a4030;
border-color: #0a3c2d;
}
.btn-check:checked + .btn-teal-800:focus,
.btn-check:active + .btn-teal-800:focus,
.btn-teal-800:active:focus,
.btn-teal-800.active:focus,
.show > .btn-teal-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(49, 106, 89, 0.5);
}
.btn-teal-800:disabled,
.btn-teal-800.disabled {
color: #fff;
background-color: #0d503c;
border-color: #0d503c;
}
.btn-teal-900 {
color: #fff;
background-color: #06281e;
border-color: #06281e;
}
.btn-teal-900:hover {
color: #fff;
background-color: #05221a;
border-color: #052018;
}
.btn-check:focus + .btn-teal-900,
.btn-teal-900:focus {
color: #fff;
background-color: #05221a;
border-color: #052018;
box-shadow: 0 0 0 0.25rem rgba(43, 72, 64, 0.5);
}
.btn-check:checked + .btn-teal-900,
.btn-check:active + .btn-teal-900,
.btn-teal-900:active,
.btn-teal-900.active,
.show > .btn-teal-900.dropdown-toggle {
color: #fff;
background-color: #052018;
border-color: #051e17;
}
.btn-check:checked + .btn-teal-900:focus,
.btn-check:active + .btn-teal-900:focus,
.btn-teal-900:active:focus,
.btn-teal-900.active:focus,
.show > .btn-teal-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 72, 64, 0.5);
}
.btn-teal-900:disabled,
.btn-teal-900.disabled {
color: #fff;
background-color: #06281e;
border-color: #06281e;
}
.btn-cyan {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-cyan:hover {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
}
.btn-check:focus + .btn-cyan,
.btn-cyan:focus {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-cyan,
.btn-check:active + .btn-cyan,
.btn-cyan:active,
.btn-cyan.active,
.show > .btn-cyan.dropdown-toggle {
color: #000;
background-color: #3dd5f3;
border-color: #25cff2;
}
.btn-check:checked + .btn-cyan:focus,
.btn-check:active + .btn-cyan:focus,
.btn-cyan:active:focus,
.btn-cyan.active:focus,
.show > .btn-cyan.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-cyan:disabled,
.btn-cyan.disabled {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-cyan-100 {
color: #000;
background-color: #cff4fc;
border-color: #cff4fc;
}
.btn-cyan-100:hover {
color: #000;
background-color: #d6f6fc;
border-color: #d4f5fc;
}
.btn-check:focus + .btn-cyan-100,
.btn-cyan-100:focus {
color: #000;
background-color: #d6f6fc;
border-color: #d4f5fc;
box-shadow: 0 0 0 0.25rem rgba(176, 207, 214, 0.5);
}
.btn-check:checked + .btn-cyan-100,
.btn-check:active + .btn-cyan-100,
.btn-cyan-100:active,
.btn-cyan-100.active,
.show > .btn-cyan-100.dropdown-toggle {
color: #000;
background-color: #d9f6fd;
border-color: #d4f5fc;
}
.btn-check:checked + .btn-cyan-100:focus,
.btn-check:active + .btn-cyan-100:focus,
.btn-cyan-100:active:focus,
.btn-cyan-100.active:focus,
.show > .btn-cyan-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(176, 207, 214, 0.5);
}
.btn-cyan-100:disabled,
.btn-cyan-100.disabled {
color: #000;
background-color: #cff4fc;
border-color: #cff4fc;
}
.btn-cyan-200 {
color: #000;
background-color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-cyan-200:hover {
color: #000;
background-color: #adedfa;
border-color: #a8ecfa;
}
.btn-check:focus + .btn-cyan-200,
.btn-cyan-200:focus {
color: #000;
background-color: #adedfa;
border-color: #a8ecfa;
box-shadow: 0 0 0 0.25rem rgba(134, 199, 212, 0.5);
}
.btn-check:checked + .btn-cyan-200,
.btn-check:active + .btn-cyan-200,
.btn-cyan-200:active,
.btn-cyan-200.active,
.show > .btn-cyan-200.dropdown-toggle {
color: #000;
background-color: #b1eefa;
border-color: #a8ecfa;
}
.btn-check:checked + .btn-cyan-200:focus,
.btn-check:active + .btn-cyan-200:focus,
.btn-cyan-200:active:focus,
.btn-cyan-200.active:focus,
.show > .btn-cyan-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(134, 199, 212, 0.5);
}
.btn-cyan-200:disabled,
.btn-cyan-200.disabled {
color: #000;
background-color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-cyan-300 {
color: #000;
background-color: #6edff6;
border-color: #6edff6;
}
.btn-cyan-300:hover {
color: #000;
background-color: #84e4f7;
border-color: #7de2f7;
}
.btn-check:focus + .btn-cyan-300,
.btn-cyan-300:focus {
color: #000;
background-color: #84e4f7;
border-color: #7de2f7;
box-shadow: 0 0 0 0.25rem rgba(94, 190, 209, 0.5);
}
.btn-check:checked + .btn-cyan-300,
.btn-check:active + .btn-cyan-300,
.btn-cyan-300:active,
.btn-cyan-300.active,
.show > .btn-cyan-300.dropdown-toggle {
color: #000;
background-color: #8be5f8;
border-color: #7de2f7;
}
.btn-check:checked + .btn-cyan-300:focus,
.btn-check:active + .btn-cyan-300:focus,
.btn-cyan-300:active:focus,
.btn-cyan-300.active:focus,
.show > .btn-cyan-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(94, 190, 209, 0.5);
}
.btn-cyan-300:disabled,
.btn-cyan-300.disabled {
color: #000;
background-color: #6edff6;
border-color: #6edff6;
}
.btn-cyan-400 {
color: #000;
background-color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-cyan-400:hover {
color: #000;
background-color: #5adbf5;
border-color: #50d9f4;
}
.btn-check:focus + .btn-cyan-400,
.btn-cyan-400:focus {
color: #000;
background-color: #5adbf5;
border-color: #50d9f4;
box-shadow: 0 0 0 0.25rem rgba(52, 181, 207, 0.5);
}
.btn-check:checked + .btn-cyan-400,
.btn-check:active + .btn-cyan-400,
.btn-cyan-400:active,
.btn-cyan-400.active,
.show > .btn-cyan-400.dropdown-toggle {
color: #000;
background-color: #64ddf5;
border-color: #50d9f4;
}
.btn-check:checked + .btn-cyan-400:focus,
.btn-check:active + .btn-cyan-400:focus,
.btn-cyan-400:active:focus,
.btn-cyan-400.active:focus,
.show > .btn-cyan-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 181, 207, 0.5);
}
.btn-cyan-400:disabled,
.btn-cyan-400.disabled {
color: #000;
background-color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-cyan-500 {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-cyan-500:hover {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
}
.btn-check:focus + .btn-cyan-500,
.btn-cyan-500:focus {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-cyan-500,
.btn-check:active + .btn-cyan-500,
.btn-cyan-500:active,
.btn-cyan-500.active,
.show > .btn-cyan-500.dropdown-toggle {
color: #000;
background-color: #3dd5f3;
border-color: #25cff2;
}
.btn-check:checked + .btn-cyan-500:focus,
.btn-check:active + .btn-cyan-500:focus,
.btn-cyan-500:active:focus,
.btn-cyan-500.active:focus,
.show > .btn-cyan-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-cyan-500:disabled,
.btn-cyan-500.disabled {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-cyan-600 {
color: #000;
background-color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-cyan-600:hover {
color: #000;
background-color: #2fb0c9;
border-color: #23abc6;
}
.btn-check:focus + .btn-cyan-600,
.btn-cyan-600:focus {
color: #000;
background-color: #2fb0c9;
border-color: #23abc6;
box-shadow: 0 0 0 0.25rem rgba(9, 138, 163, 0.5);
}
.btn-check:checked + .btn-cyan-600,
.btn-check:active + .btn-cyan-600,
.btn-cyan-600:active,
.btn-cyan-600.active,
.show > .btn-cyan-600.dropdown-toggle {
color: #000;
background-color: #3bb5cd;
border-color: #23abc6;
}
.btn-check:checked + .btn-cyan-600:focus,
.btn-check:active + .btn-cyan-600:focus,
.btn-cyan-600:active:focus,
.btn-cyan-600.active:focus,
.show > .btn-cyan-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(9, 138, 163, 0.5);
}
.btn-cyan-600:disabled,
.btn-cyan-600.disabled {
color: #000;
background-color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-cyan-700 {
color: #fff;
background-color: #087990;
border-color: #087990;
}
.btn-cyan-700:hover {
color: #fff;
background-color: #07677a;
border-color: #066173;
}
.btn-check:focus + .btn-cyan-700,
.btn-cyan-700:focus {
color: #fff;
background-color: #07677a;
border-color: #066173;
box-shadow: 0 0 0 0.25rem rgba(45, 141, 161, 0.5);
}
.btn-check:checked + .btn-cyan-700,
.btn-check:active + .btn-cyan-700,
.btn-cyan-700:active,
.btn-cyan-700.active,
.show > .btn-cyan-700.dropdown-toggle {
color: #fff;
background-color: #066173;
border-color: #065b6c;
}
.btn-check:checked + .btn-cyan-700:focus,
.btn-check:active + .btn-cyan-700:focus,
.btn-cyan-700:active:focus,
.btn-cyan-700.active:focus,
.show > .btn-cyan-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(45, 141, 161, 0.5);
}
.btn-cyan-700:disabled,
.btn-cyan-700.disabled {
color: #fff;
background-color: #087990;
border-color: #087990;
}
.btn-cyan-800 {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.btn-cyan-800:hover {
color: #fff;
background-color: #044552;
border-color: #04414d;
}
.btn-check:focus + .btn-cyan-800,
.btn-cyan-800:focus {
color: #fff;
background-color: #044552;
border-color: #04414d;
box-shadow: 0 0 0 0.25rem rgba(43, 107, 120, 0.5);
}
.btn-check:checked + .btn-cyan-800,
.btn-check:active + .btn-cyan-800,
.btn-cyan-800:active,
.btn-cyan-800.active,
.show > .btn-cyan-800.dropdown-toggle {
color: #fff;
background-color: #04414d;
border-color: #043d48;
}
.btn-check:checked + .btn-cyan-800:focus,
.btn-check:active + .btn-cyan-800:focus,
.btn-cyan-800:active:focus,
.btn-cyan-800.active:focus,
.show > .btn-cyan-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 107, 120, 0.5);
}
.btn-cyan-800:disabled,
.btn-cyan-800.disabled {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.btn-cyan-900 {
color: #fff;
background-color: #032830;
border-color: #032830;
}
.btn-cyan-900:hover {
color: #fff;
background-color: #032229;
border-color: #022026;
}
.btn-check:focus + .btn-cyan-900,
.btn-cyan-900:focus {
color: #fff;
background-color: #032229;
border-color: #022026;
box-shadow: 0 0 0 0.25rem rgba(41, 72, 79, 0.5);
}
.btn-check:checked + .btn-cyan-900,
.btn-check:active + .btn-cyan-900,
.btn-cyan-900:active,
.btn-cyan-900.active,
.show > .btn-cyan-900.dropdown-toggle {
color: #fff;
background-color: #022026;
border-color: #021e24;
}
.btn-check:checked + .btn-cyan-900:focus,
.btn-check:active + .btn-cyan-900:focus,
.btn-cyan-900:active:focus,
.btn-cyan-900.active:focus,
.show > .btn-cyan-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(41, 72, 79, 0.5);
}
.btn-cyan-900:disabled,
.btn-cyan-900.disabled {
color: #fff;
background-color: #032830;
border-color: #032830;
}
.btn-gray-100 {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-gray-100:hover {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
}
.btn-check:focus + .btn-gray-100,
.btn-gray-100:focus {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-gray-100,
.btn-check:active + .btn-gray-100,
.btn-gray-100:active,
.btn-gray-100.active,
.show > .btn-gray-100.dropdown-toggle {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
}
.btn-check:checked + .btn-gray-100:focus,
.btn-check:active + .btn-gray-100:focus,
.btn-gray-100:active:focus,
.btn-gray-100.active:focus,
.show > .btn-gray-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-gray-100:disabled,
.btn-gray-100.disabled {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-gray-200 {
color: #000;
background-color: #e9ecef;
border-color: #e9ecef;
}
.btn-gray-200:hover {
color: #000;
background-color: #eceff1;
border-color: #ebeef1;
}
.btn-check:focus + .btn-gray-200,
.btn-gray-200:focus {
color: #000;
background-color: #eceff1;
border-color: #ebeef1;
box-shadow: 0 0 0 0.25rem rgba(198, 201, 203, 0.5);
}
.btn-check:checked + .btn-gray-200,
.btn-check:active + .btn-gray-200,
.btn-gray-200:active,
.btn-gray-200.active,
.show > .btn-gray-200.dropdown-toggle {
color: #000;
background-color: #edf0f2;
border-color: #ebeef1;
}
.btn-check:checked + .btn-gray-200:focus,
.btn-check:active + .btn-gray-200:focus,
.btn-gray-200:active:focus,
.btn-gray-200.active:focus,
.show > .btn-gray-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(198, 201, 203, 0.5);
}
.btn-gray-200:disabled,
.btn-gray-200.disabled {
color: #000;
background-color: #e9ecef;
border-color: #e9ecef;
}
.btn-gray-300 {
color: #000;
background-color: #dee2e6;
border-color: #dee2e6;
}
.btn-gray-300:hover {
color: #000;
background-color: #e3e6ea;
border-color: #e1e5e9;
}
.btn-check:focus + .btn-gray-300,
.btn-gray-300:focus {
color: #000;
background-color: #e3e6ea;
border-color: #e1e5e9;
box-shadow: 0 0 0 0.25rem rgba(189, 192, 196, 0.5);
}
.btn-check:checked + .btn-gray-300,
.btn-check:active + .btn-gray-300,
.btn-gray-300:active,
.btn-gray-300.active,
.show > .btn-gray-300.dropdown-toggle {
color: #000;
background-color: #e5e8eb;
border-color: #e1e5e9;
}
.btn-check:checked + .btn-gray-300:focus,
.btn-check:active + .btn-gray-300:focus,
.btn-gray-300:active:focus,
.btn-gray-300.active:focus,
.show > .btn-gray-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(189, 192, 196, 0.5);
}
.btn-gray-300:disabled,
.btn-gray-300.disabled {
color: #000;
background-color: #dee2e6;
border-color: #dee2e6;
}
.btn-gray-400 {
color: #000;
background-color: #ced4da;
border-color: #ced4da;
}
.btn-gray-400:hover {
color: #000;
background-color: #d5dae0;
border-color: #d3d8de;
}
.btn-check:focus + .btn-gray-400,
.btn-gray-400:focus {
color: #000;
background-color: #d5dae0;
border-color: #d3d8de;
box-shadow: 0 0 0 0.25rem rgba(175, 180, 185, 0.5);
}
.btn-check:checked + .btn-gray-400,
.btn-check:active + .btn-gray-400,
.btn-gray-400:active,
.btn-gray-400.active,
.show > .btn-gray-400.dropdown-toggle {
color: #000;
background-color: #d8dde1;
border-color: #d3d8de;
}
.btn-check:checked + .btn-gray-400:focus,
.btn-check:active + .btn-gray-400:focus,
.btn-gray-400:active:focus,
.btn-gray-400.active:focus,
.show > .btn-gray-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(175, 180, 185, 0.5);
}
.btn-gray-400:disabled,
.btn-gray-400.disabled {
color: #000;
background-color: #ced4da;
border-color: #ced4da;
}
.btn-gray-500 {
color: #000;
background-color: #adb5bd;
border-color: #adb5bd;
}
.btn-gray-500:hover {
color: #000;
background-color: #b9c0c7;
border-color: #b5bcc4;
}
.btn-check:focus + .btn-gray-500,
.btn-gray-500:focus {
color: #000;
background-color: #b9c0c7;
border-color: #b5bcc4;
box-shadow: 0 0 0 0.25rem rgba(147, 154, 161, 0.5);
}
.btn-check:checked + .btn-gray-500,
.btn-check:active + .btn-gray-500,
.btn-gray-500:active,
.btn-gray-500.active,
.show > .btn-gray-500.dropdown-toggle {
color: #000;
background-color: #bdc4ca;
border-color: #b5bcc4;
}
.btn-check:checked + .btn-gray-500:focus,
.btn-check:active + .btn-gray-500:focus,
.btn-gray-500:active:focus,
.btn-gray-500.active:focus,
.show > .btn-gray-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(147, 154, 161, 0.5);
}
.btn-gray-500:disabled,
.btn-gray-500.disabled {
color: #000;
background-color: #adb5bd;
border-color: #adb5bd;
}
.btn-gray-600 {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-gray-600:hover {
color: #fff;
background-color: #5c636a;
border-color: #565e64;
}
.btn-check:focus + .btn-gray-600,
.btn-gray-600:focus {
color: #fff;
background-color: #5c636a;
border-color: #565e64;
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-gray-600,
.btn-check:active + .btn-gray-600,
.btn-gray-600:active,
.btn-gray-600.active,
.show > .btn-gray-600.dropdown-toggle {
color: #fff;
background-color: #565e64;
border-color: #51585e;
}
.btn-check:checked + .btn-gray-600:focus,
.btn-check:active + .btn-gray-600:focus,
.btn-gray-600:active:focus,
.btn-gray-600.active:focus,
.show > .btn-gray-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-gray-600:disabled,
.btn-gray-600.disabled {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-gray-700 {
color: #fff;
background-color: #495057;
border-color: #495057;
}
.btn-gray-700:hover {
color: #fff;
background-color: #3e444a;
border-color: #3a4046;
}
.btn-check:focus + .btn-gray-700,
.btn-gray-700:focus {
color: #fff;
background-color: #3e444a;
border-color: #3a4046;
box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-check:checked + .btn-gray-700,
.btn-check:active + .btn-gray-700,
.btn-gray-700:active,
.btn-gray-700.active,
.show > .btn-gray-700.dropdown-toggle {
color: #fff;
background-color: #3a4046;
border-color: #373c41;
}
.btn-check:checked + .btn-gray-700:focus,
.btn-check:active + .btn-gray-700:focus,
.btn-gray-700:active:focus,
.btn-gray-700.active:focus,
.show > .btn-gray-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-gray-700:disabled,
.btn-gray-700.disabled {
color: #fff;
background-color: #495057;
border-color: #495057;
}
.btn-gray-800 {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.btn-gray-800:hover {
color: #fff;
background-color: #2c3136;
border-color: #2a2e33;
}
.btn-check:focus + .btn-gray-800,
.btn-gray-800:focus {
color: #fff;
background-color: #2c3136;
border-color: #2a2e33;
box-shadow: 0 0 0 0.25rem rgba(82, 88, 93, 0.5);
}
.btn-check:checked + .btn-gray-800,
.btn-check:active + .btn-gray-800,
.btn-gray-800:active,
.btn-gray-800.active,
.show > .btn-gray-800.dropdown-toggle {
color: #fff;
background-color: #2a2e33;
border-color: #272c30;
}
.btn-check:checked + .btn-gray-800:focus,
.btn-check:active + .btn-gray-800:focus,
.btn-gray-800:active:focus,
.btn-gray-800.active:focus,
.show > .btn-gray-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 88, 93, 0.5);
}
.btn-gray-800:disabled,
.btn-gray-800.disabled {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.btn-gray-900 {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-gray-900:hover {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
}
.btn-check:focus + .btn-gray-900,
.btn-gray-900:focus {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-gray-900,
.btn-check:active + .btn-gray-900,
.btn-gray-900:active,
.btn-gray-900.active,
.show > .btn-gray-900.dropdown-toggle {
color: #fff;
background-color: #1a1e21;
border-color: #191c1f;
}
.btn-check:checked + .btn-gray-900:focus,
.btn-check:active + .btn-gray-900:focus,
.btn-gray-900:active:focus,
.btn-gray-900.active:focus,
.show > .btn-gray-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-gray-900:disabled,
.btn-gray-900.disabled {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-white {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-white:hover {
color: #000;
background-color: white;
border-color: white;
}
.btn-check:focus + .btn-white,
.btn-white:focus {
color: #000;
background-color: white;
border-color: white;
box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-check:checked + .btn-white,
.btn-check:active + .btn-white,
.btn-white:active,
.btn-white.active,
.show > .btn-white.dropdown-toggle {
color: #000;
background-color: white;
border-color: white;
}
.btn-check:checked + .btn-white:focus,
.btn-check:active + .btn-white:focus,
.btn-white:active:focus,
.btn-white.active:focus,
.show > .btn-white.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-white:disabled,
.btn-white.disabled {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-outline-primary {
color: #0d6efd;
border-color: #0d6efd;
}
.btn-outline-primary:hover {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
color: #0d6efd;
background-color: transparent;
}
.btn-outline-secondary {
color: #6c757d;
border-color: #6c757d;
}
.btn-outline-secondary:hover {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-check:checked + .btn-outline-secondary:focus,
.btn-check:active + .btn-outline-secondary:focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
color: #6c757d;
background-color: transparent;
}
.btn-outline-success {
color: #198754;
border-color: #198754;
}
.btn-outline-success:hover {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success,
.btn-check:active + .btn-outline-success,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus,
.btn-check:active + .btn-outline-success:focus,
.btn-outline-success:active:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled,
.btn-outline-success.disabled {
color: #198754;
background-color: transparent;
}
.btn-outline-info {
color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-outline-info:hover {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info,
.btn-check:active + .btn-outline-info,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus,
.btn-check:active + .btn-outline-info:focus,
.btn-outline-info:active:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled,
.btn-outline-info.disabled {
color: #0dcaf0;
background-color: transparent;
}
.btn-outline-warning {
color: #ffc107;
border-color: #ffc107;
}
.btn-outline-warning:hover {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning,
.btn-check:active + .btn-outline-warning,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus,
.btn-outline-warning:active:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled,
.btn-outline-warning.disabled {
color: #ffc107;
background-color: transparent;
}
.btn-outline-danger {
color: #dc3545;
border-color: #dc3545;
}
.btn-outline-danger:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger,
.btn-check:active + .btn-outline-danger,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus,
.btn-check:active + .btn-outline-danger:focus,
.btn-outline-danger:active:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled,
.btn-outline-danger.disabled {
color: #dc3545;
background-color: transparent;
}
.btn-outline-light {
color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-light:hover {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light,
.btn-check:active + .btn-outline-light,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus,
.btn-check:active + .btn-outline-light:focus,
.btn-outline-light:active:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled,
.btn-outline-light.disabled {
color: #f8f9fa;
background-color: transparent;
}
.btn-outline-dark {
color: #212529;
border-color: #212529;
}
.btn-outline-dark:hover {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark,
.btn-check:active + .btn-outline-dark,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus,
.btn-outline-dark:active:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled,
.btn-outline-dark.disabled {
color: #212529;
background-color: transparent;
}
.btn-outline-blue {
color: #0d6efd;
border-color: #0d6efd;
}
.btn-outline-blue:hover {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-blue,
.btn-outline-blue:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-blue,
.btn-check:active + .btn-outline-blue,
.btn-outline-blue:active,
.btn-outline-blue.active,
.btn-outline-blue.dropdown-toggle.show {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-blue:focus,
.btn-check:active + .btn-outline-blue:focus,
.btn-outline-blue:active:focus,
.btn-outline-blue.active:focus,
.btn-outline-blue.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-blue:disabled,
.btn-outline-blue.disabled {
color: #0d6efd;
background-color: transparent;
}
.btn-outline-blue-100 {
color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-outline-blue-100:hover {
color: #000;
background-color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-check:focus + .btn-outline-blue-100,
.btn-outline-blue-100:focus {
box-shadow: 0 0 0 0.25rem rgba(207, 226, 255, 0.5);
}
.btn-check:checked + .btn-outline-blue-100,
.btn-check:active + .btn-outline-blue-100,
.btn-outline-blue-100:active,
.btn-outline-blue-100.active,
.btn-outline-blue-100.dropdown-toggle.show {
color: #000;
background-color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-check:checked + .btn-outline-blue-100:focus,
.btn-check:active + .btn-outline-blue-100:focus,
.btn-outline-blue-100:active:focus,
.btn-outline-blue-100.active:focus,
.btn-outline-blue-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(207, 226, 255, 0.5);
}
.btn-outline-blue-100:disabled,
.btn-outline-blue-100.disabled {
color: #cfe2ff;
background-color: transparent;
}
.btn-outline-blue-200 {
color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-outline-blue-200:hover {
color: #000;
background-color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-check:focus + .btn-outline-blue-200,
.btn-outline-blue-200:focus {
box-shadow: 0 0 0 0.25rem rgba(158, 197, 254, 0.5);
}
.btn-check:checked + .btn-outline-blue-200,
.btn-check:active + .btn-outline-blue-200,
.btn-outline-blue-200:active,
.btn-outline-blue-200.active,
.btn-outline-blue-200.dropdown-toggle.show {
color: #000;
background-color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-check:checked + .btn-outline-blue-200:focus,
.btn-check:active + .btn-outline-blue-200:focus,
.btn-outline-blue-200:active:focus,
.btn-outline-blue-200.active:focus,
.btn-outline-blue-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(158, 197, 254, 0.5);
}
.btn-outline-blue-200:disabled,
.btn-outline-blue-200.disabled {
color: #9ec5fe;
background-color: transparent;
}
.btn-outline-blue-300 {
color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-outline-blue-300:hover {
color: #000;
background-color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-check:focus + .btn-outline-blue-300,
.btn-outline-blue-300:focus {
box-shadow: 0 0 0 0.25rem rgba(110, 168, 254, 0.5);
}
.btn-check:checked + .btn-outline-blue-300,
.btn-check:active + .btn-outline-blue-300,
.btn-outline-blue-300:active,
.btn-outline-blue-300.active,
.btn-outline-blue-300.dropdown-toggle.show {
color: #000;
background-color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-check:checked + .btn-outline-blue-300:focus,
.btn-check:active + .btn-outline-blue-300:focus,
.btn-outline-blue-300:active:focus,
.btn-outline-blue-300.active:focus,
.btn-outline-blue-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(110, 168, 254, 0.5);
}
.btn-outline-blue-300:disabled,
.btn-outline-blue-300.disabled {
color: #6ea8fe;
background-color: transparent;
}
.btn-outline-blue-400 {
color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-outline-blue-400:hover {
color: #000;
background-color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-check:focus + .btn-outline-blue-400,
.btn-outline-blue-400:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 139, 253, 0.5);
}
.btn-check:checked + .btn-outline-blue-400,
.btn-check:active + .btn-outline-blue-400,
.btn-outline-blue-400:active,
.btn-outline-blue-400.active,
.btn-outline-blue-400.dropdown-toggle.show {
color: #000;
background-color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-check:checked + .btn-outline-blue-400:focus,
.btn-check:active + .btn-outline-blue-400:focus,
.btn-outline-blue-400:active:focus,
.btn-outline-blue-400.active:focus,
.btn-outline-blue-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 139, 253, 0.5);
}
.btn-outline-blue-400:disabled,
.btn-outline-blue-400.disabled {
color: #3d8bfd;
background-color: transparent;
}
.btn-outline-blue-500 {
color: #0d6efd;
border-color: #0d6efd;
}
.btn-outline-blue-500:hover {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-blue-500,
.btn-outline-blue-500:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-blue-500,
.btn-check:active + .btn-outline-blue-500,
.btn-outline-blue-500:active,
.btn-outline-blue-500.active,
.btn-outline-blue-500.dropdown-toggle.show {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-blue-500:focus,
.btn-check:active + .btn-outline-blue-500:focus,
.btn-outline-blue-500:active:focus,
.btn-outline-blue-500.active:focus,
.btn-outline-blue-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-blue-500:disabled,
.btn-outline-blue-500.disabled {
color: #0d6efd;
background-color: transparent;
}
.btn-outline-blue-600 {
color: #0a58ca;
border-color: #0a58ca;
}
.btn-outline-blue-600:hover {
color: #fff;
background-color: #0a58ca;
border-color: #0a58ca;
}
.btn-check:focus + .btn-outline-blue-600,
.btn-outline-blue-600:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 88, 202, 0.5);
}
.btn-check:checked + .btn-outline-blue-600,
.btn-check:active + .btn-outline-blue-600,
.btn-outline-blue-600:active,
.btn-outline-blue-600.active,
.btn-outline-blue-600.dropdown-toggle.show {
color: #fff;
background-color: #0a58ca;
border-color: #0a58ca;
}
.btn-check:checked + .btn-outline-blue-600:focus,
.btn-check:active + .btn-outline-blue-600:focus,
.btn-outline-blue-600:active:focus,
.btn-outline-blue-600.active:focus,
.btn-outline-blue-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 88, 202, 0.5);
}
.btn-outline-blue-600:disabled,
.btn-outline-blue-600.disabled {
color: #0a58ca;
background-color: transparent;
}
.btn-outline-blue-700 {
color: #084298;
border-color: #084298;
}
.btn-outline-blue-700:hover {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.btn-check:focus + .btn-outline-blue-700,
.btn-outline-blue-700:focus {
box-shadow: 0 0 0 0.25rem rgba(8, 66, 152, 0.5);
}
.btn-check:checked + .btn-outline-blue-700,
.btn-check:active + .btn-outline-blue-700,
.btn-outline-blue-700:active,
.btn-outline-blue-700.active,
.btn-outline-blue-700.dropdown-toggle.show {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.btn-check:checked + .btn-outline-blue-700:focus,
.btn-check:active + .btn-outline-blue-700:focus,
.btn-outline-blue-700:active:focus,
.btn-outline-blue-700.active:focus,
.btn-outline-blue-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(8, 66, 152, 0.5);
}
.btn-outline-blue-700:disabled,
.btn-outline-blue-700.disabled {
color: #084298;
background-color: transparent;
}
.btn-outline-blue-800 {
color: #052c65;
border-color: #052c65;
}
.btn-outline-blue-800:hover {
color: #fff;
background-color: #052c65;
border-color: #052c65;
}
.btn-check:focus + .btn-outline-blue-800,
.btn-outline-blue-800:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 44, 101, 0.5);
}
.btn-check:checked + .btn-outline-blue-800,
.btn-check:active + .btn-outline-blue-800,
.btn-outline-blue-800:active,
.btn-outline-blue-800.active,
.btn-outline-blue-800.dropdown-toggle.show {
color: #fff;
background-color: #052c65;
border-color: #052c65;
}
.btn-check:checked + .btn-outline-blue-800:focus,
.btn-check:active + .btn-outline-blue-800:focus,
.btn-outline-blue-800:active:focus,
.btn-outline-blue-800.active:focus,
.btn-outline-blue-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 44, 101, 0.5);
}
.btn-outline-blue-800:disabled,
.btn-outline-blue-800.disabled {
color: #052c65;
background-color: transparent;
}
.btn-outline-blue-900 {
color: #031633;
border-color: #031633;
}
.btn-outline-blue-900:hover {
color: #fff;
background-color: #031633;
border-color: #031633;
}
.btn-check:focus + .btn-outline-blue-900,
.btn-outline-blue-900:focus {
box-shadow: 0 0 0 0.25rem rgba(3, 22, 51, 0.5);
}
.btn-check:checked + .btn-outline-blue-900,
.btn-check:active + .btn-outline-blue-900,
.btn-outline-blue-900:active,
.btn-outline-blue-900.active,
.btn-outline-blue-900.dropdown-toggle.show {
color: #fff;
background-color: #031633;
border-color: #031633;
}
.btn-check:checked + .btn-outline-blue-900:focus,
.btn-check:active + .btn-outline-blue-900:focus,
.btn-outline-blue-900:active:focus,
.btn-outline-blue-900.active:focus,
.btn-outline-blue-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(3, 22, 51, 0.5);
}
.btn-outline-blue-900:disabled,
.btn-outline-blue-900.disabled {
color: #031633;
background-color: transparent;
}
.btn-outline-indigo {
color: #6610f2;
border-color: #6610f2;
}
.btn-outline-indigo:hover {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-check:focus + .btn-outline-indigo,
.btn-outline-indigo:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}
.btn-check:checked + .btn-outline-indigo,
.btn-check:active + .btn-outline-indigo,
.btn-outline-indigo:active,
.btn-outline-indigo.active,
.btn-outline-indigo.dropdown-toggle.show {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-check:checked + .btn-outline-indigo:focus,
.btn-check:active + .btn-outline-indigo:focus,
.btn-outline-indigo:active:focus,
.btn-outline-indigo.active:focus,
.btn-outline-indigo.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}
.btn-outline-indigo:disabled,
.btn-outline-indigo.disabled {
color: #6610f2;
background-color: transparent;
}
.btn-outline-indigo-100 {
color: #e0cffc;
border-color: #e0cffc;
}
.btn-outline-indigo-100:hover {
color: #000;
background-color: #e0cffc;
border-color: #e0cffc;
}
.btn-check:focus + .btn-outline-indigo-100,
.btn-outline-indigo-100:focus {
box-shadow: 0 0 0 0.25rem rgba(224, 207, 252, 0.5);
}
.btn-check:checked + .btn-outline-indigo-100,
.btn-check:active + .btn-outline-indigo-100,
.btn-outline-indigo-100:active,
.btn-outline-indigo-100.active,
.btn-outline-indigo-100.dropdown-toggle.show {
color: #000;
background-color: #e0cffc;
border-color: #e0cffc;
}
.btn-check:checked + .btn-outline-indigo-100:focus,
.btn-check:active + .btn-outline-indigo-100:focus,
.btn-outline-indigo-100:active:focus,
.btn-outline-indigo-100.active:focus,
.btn-outline-indigo-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(224, 207, 252, 0.5);
}
.btn-outline-indigo-100:disabled,
.btn-outline-indigo-100.disabled {
color: #e0cffc;
background-color: transparent;
}
.btn-outline-indigo-200 {
color: #c29ffa;
border-color: #c29ffa;
}
.btn-outline-indigo-200:hover {
color: #000;
background-color: #c29ffa;
border-color: #c29ffa;
}
.btn-check:focus + .btn-outline-indigo-200,
.btn-outline-indigo-200:focus {
box-shadow: 0 0 0 0.25rem rgba(194, 159, 250, 0.5);
}
.btn-check:checked + .btn-outline-indigo-200,
.btn-check:active + .btn-outline-indigo-200,
.btn-outline-indigo-200:active,
.btn-outline-indigo-200.active,
.btn-outline-indigo-200.dropdown-toggle.show {
color: #000;
background-color: #c29ffa;
border-color: #c29ffa;
}
.btn-check:checked + .btn-outline-indigo-200:focus,
.btn-check:active + .btn-outline-indigo-200:focus,
.btn-outline-indigo-200:active:focus,
.btn-outline-indigo-200.active:focus,
.btn-outline-indigo-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(194, 159, 250, 0.5);
}
.btn-outline-indigo-200:disabled,
.btn-outline-indigo-200.disabled {
color: #c29ffa;
background-color: transparent;
}
.btn-outline-indigo-300 {
color: #a370f7;
border-color: #a370f7;
}
.btn-outline-indigo-300:hover {
color: #000;
background-color: #a370f7;
border-color: #a370f7;
}
.btn-check:focus + .btn-outline-indigo-300,
.btn-outline-indigo-300:focus {
box-shadow: 0 0 0 0.25rem rgba(163, 112, 247, 0.5);
}
.btn-check:checked + .btn-outline-indigo-300,
.btn-check:active + .btn-outline-indigo-300,
.btn-outline-indigo-300:active,
.btn-outline-indigo-300.active,
.btn-outline-indigo-300.dropdown-toggle.show {
color: #000;
background-color: #a370f7;
border-color: #a370f7;
}
.btn-check:checked + .btn-outline-indigo-300:focus,
.btn-check:active + .btn-outline-indigo-300:focus,
.btn-outline-indigo-300:active:focus,
.btn-outline-indigo-300.active:focus,
.btn-outline-indigo-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(163, 112, 247, 0.5);
}
.btn-outline-indigo-300:disabled,
.btn-outline-indigo-300.disabled {
color: #a370f7;
background-color: transparent;
}
.btn-outline-indigo-400 {
color: #8540f5;
border-color: #8540f5;
}
.btn-outline-indigo-400:hover {
color: #fff;
background-color: #8540f5;
border-color: #8540f5;
}
.btn-check:focus + .btn-outline-indigo-400,
.btn-outline-indigo-400:focus {
box-shadow: 0 0 0 0.25rem rgba(133, 64, 245, 0.5);
}
.btn-check:checked + .btn-outline-indigo-400,
.btn-check:active + .btn-outline-indigo-400,
.btn-outline-indigo-400:active,
.btn-outline-indigo-400.active,
.btn-outline-indigo-400.dropdown-toggle.show {
color: #fff;
background-color: #8540f5;
border-color: #8540f5;
}
.btn-check:checked + .btn-outline-indigo-400:focus,
.btn-check:active + .btn-outline-indigo-400:focus,
.btn-outline-indigo-400:active:focus,
.btn-outline-indigo-400.active:focus,
.btn-outline-indigo-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(133, 64, 245, 0.5);
}
.btn-outline-indigo-400:disabled,
.btn-outline-indigo-400.disabled {
color: #8540f5;
background-color: transparent;
}
.btn-outline-indigo-500 {
color: #6610f2;
border-color: #6610f2;
}
.btn-outline-indigo-500:hover {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-check:focus + .btn-outline-indigo-500,
.btn-outline-indigo-500:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}
.btn-check:checked + .btn-outline-indigo-500,
.btn-check:active + .btn-outline-indigo-500,
.btn-outline-indigo-500:active,
.btn-outline-indigo-500.active,
.btn-outline-indigo-500.dropdown-toggle.show {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-check:checked + .btn-outline-indigo-500:focus,
.btn-check:active + .btn-outline-indigo-500:focus,
.btn-outline-indigo-500:active:focus,
.btn-outline-indigo-500.active:focus,
.btn-outline-indigo-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}
.btn-outline-indigo-500:disabled,
.btn-outline-indigo-500.disabled {
color: #6610f2;
background-color: transparent;
}
.btn-outline-indigo-600 {
color: #520dc2;
border-color: #520dc2;
}
.btn-outline-indigo-600:hover {
color: #fff;
background-color: #520dc2;
border-color: #520dc2;
}
.btn-check:focus + .btn-outline-indigo-600,
.btn-outline-indigo-600:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 13, 194, 0.5);
}
.btn-check:checked + .btn-outline-indigo-600,
.btn-check:active + .btn-outline-indigo-600,
.btn-outline-indigo-600:active,
.btn-outline-indigo-600.active,
.btn-outline-indigo-600.dropdown-toggle.show {
color: #fff;
background-color: #520dc2;
border-color: #520dc2;
}
.btn-check:checked + .btn-outline-indigo-600:focus,
.btn-check:active + .btn-outline-indigo-600:focus,
.btn-outline-indigo-600:active:focus,
.btn-outline-indigo-600.active:focus,
.btn-outline-indigo-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 13, 194, 0.5);
}
.btn-outline-indigo-600:disabled,
.btn-outline-indigo-600.disabled {
color: #520dc2;
background-color: transparent;
}
.btn-outline-indigo-700 {
color: #3d0a91;
border-color: #3d0a91;
}
.btn-outline-indigo-700:hover {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.btn-check:focus + .btn-outline-indigo-700,
.btn-outline-indigo-700:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 10, 145, 0.5);
}
.btn-check:checked + .btn-outline-indigo-700,
.btn-check:active + .btn-outline-indigo-700,
.btn-outline-indigo-700:active,
.btn-outline-indigo-700.active,
.btn-outline-indigo-700.dropdown-toggle.show {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.btn-check:checked + .btn-outline-indigo-700:focus,
.btn-check:active + .btn-outline-indigo-700:focus,
.btn-outline-indigo-700:active:focus,
.btn-outline-indigo-700.active:focus,
.btn-outline-indigo-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 10, 145, 0.5);
}
.btn-outline-indigo-700:disabled,
.btn-outline-indigo-700.disabled {
color: #3d0a91;
background-color: transparent;
}
.btn-outline-indigo-800 {
color: #290661;
border-color: #290661;
}
.btn-outline-indigo-800:hover {
color: #fff;
background-color: #290661;
border-color: #290661;
}
.btn-check:focus + .btn-outline-indigo-800,
.btn-outline-indigo-800:focus {
box-shadow: 0 0 0 0.25rem rgba(41, 6, 97, 0.5);
}
.btn-check:checked + .btn-outline-indigo-800,
.btn-check:active + .btn-outline-indigo-800,
.btn-outline-indigo-800:active,
.btn-outline-indigo-800.active,
.btn-outline-indigo-800.dropdown-toggle.show {
color: #fff;
background-color: #290661;
border-color: #290661;
}
.btn-check:checked + .btn-outline-indigo-800:focus,
.btn-check:active + .btn-outline-indigo-800:focus,
.btn-outline-indigo-800:active:focus,
.btn-outline-indigo-800.active:focus,
.btn-outline-indigo-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(41, 6, 97, 0.5);
}
.btn-outline-indigo-800:disabled,
.btn-outline-indigo-800.disabled {
color: #290661;
background-color: transparent;
}
.btn-outline-indigo-900 {
color: #140330;
border-color: #140330;
}
.btn-outline-indigo-900:hover {
color: #fff;
background-color: #140330;
border-color: #140330;
}
.btn-check:focus + .btn-outline-indigo-900,
.btn-outline-indigo-900:focus {
box-shadow: 0 0 0 0.25rem rgba(20, 3, 48, 0.5);
}
.btn-check:checked + .btn-outline-indigo-900,
.btn-check:active + .btn-outline-indigo-900,
.btn-outline-indigo-900:active,
.btn-outline-indigo-900.active,
.btn-outline-indigo-900.dropdown-toggle.show {
color: #fff;
background-color: #140330;
border-color: #140330;
}
.btn-check:checked + .btn-outline-indigo-900:focus,
.btn-check:active + .btn-outline-indigo-900:focus,
.btn-outline-indigo-900:active:focus,
.btn-outline-indigo-900.active:focus,
.btn-outline-indigo-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(20, 3, 48, 0.5);
}
.btn-outline-indigo-900:disabled,
.btn-outline-indigo-900.disabled {
color: #140330;
background-color: transparent;
}
.btn-outline-purple {
color: #6f42c1;
border-color: #6f42c1;
}
.btn-outline-purple:hover {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-check:focus + .btn-outline-purple,
.btn-outline-purple:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}
.btn-check:checked + .btn-outline-purple,
.btn-check:active + .btn-outline-purple,
.btn-outline-purple:active,
.btn-outline-purple.active,
.btn-outline-purple.dropdown-toggle.show {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-check:checked + .btn-outline-purple:focus,
.btn-check:active + .btn-outline-purple:focus,
.btn-outline-purple:active:focus,
.btn-outline-purple.active:focus,
.btn-outline-purple.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}
.btn-outline-purple:disabled,
.btn-outline-purple.disabled {
color: #6f42c1;
background-color: transparent;
}
.btn-outline-purple-100 {
color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-outline-purple-100:hover {
color: #000;
background-color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-check:focus + .btn-outline-purple-100,
.btn-outline-purple-100:focus {
box-shadow: 0 0 0 0.25rem rgba(226, 217, 243, 0.5);
}
.btn-check:checked + .btn-outline-purple-100,
.btn-check:active + .btn-outline-purple-100,
.btn-outline-purple-100:active,
.btn-outline-purple-100.active,
.btn-outline-purple-100.dropdown-toggle.show {
color: #000;
background-color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-check:checked + .btn-outline-purple-100:focus,
.btn-check:active + .btn-outline-purple-100:focus,
.btn-outline-purple-100:active:focus,
.btn-outline-purple-100.active:focus,
.btn-outline-purple-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(226, 217, 243, 0.5);
}
.btn-outline-purple-100:disabled,
.btn-outline-purple-100.disabled {
color: #e2d9f3;
background-color: transparent;
}
.btn-outline-purple-200 {
color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-outline-purple-200:hover {
color: #000;
background-color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-check:focus + .btn-outline-purple-200,
.btn-outline-purple-200:focus {
box-shadow: 0 0 0 0.25rem rgba(197, 179, 230, 0.5);
}
.btn-check:checked + .btn-outline-purple-200,
.btn-check:active + .btn-outline-purple-200,
.btn-outline-purple-200:active,
.btn-outline-purple-200.active,
.btn-outline-purple-200.dropdown-toggle.show {
color: #000;
background-color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-check:checked + .btn-outline-purple-200:focus,
.btn-check:active + .btn-outline-purple-200:focus,
.btn-outline-purple-200:active:focus,
.btn-outline-purple-200.active:focus,
.btn-outline-purple-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(197, 179, 230, 0.5);
}
.btn-outline-purple-200:disabled,
.btn-outline-purple-200.disabled {
color: #c5b3e6;
background-color: transparent;
}
.btn-outline-purple-300 {
color: #a98eda;
border-color: #a98eda;
}
.btn-outline-purple-300:hover {
color: #000;
background-color: #a98eda;
border-color: #a98eda;
}
.btn-check:focus + .btn-outline-purple-300,
.btn-outline-purple-300:focus {
box-shadow: 0 0 0 0.25rem rgba(169, 142, 218, 0.5);
}
.btn-check:checked + .btn-outline-purple-300,
.btn-check:active + .btn-outline-purple-300,
.btn-outline-purple-300:active,
.btn-outline-purple-300.active,
.btn-outline-purple-300.dropdown-toggle.show {
color: #000;
background-color: #a98eda;
border-color: #a98eda;
}
.btn-check:checked + .btn-outline-purple-300:focus,
.btn-check:active + .btn-outline-purple-300:focus,
.btn-outline-purple-300:active:focus,
.btn-outline-purple-300.active:focus,
.btn-outline-purple-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(169, 142, 218, 0.5);
}
.btn-outline-purple-300:disabled,
.btn-outline-purple-300.disabled {
color: #a98eda;
background-color: transparent;
}
.btn-outline-purple-400 {
color: #8c68cd;
border-color: #8c68cd;
}
.btn-outline-purple-400:hover {
color: #000;
background-color: #8c68cd;
border-color: #8c68cd;
}
.btn-check:focus + .btn-outline-purple-400,
.btn-outline-purple-400:focus {
box-shadow: 0 0 0 0.25rem rgba(140, 104, 205, 0.5);
}
.btn-check:checked + .btn-outline-purple-400,
.btn-check:active + .btn-outline-purple-400,
.btn-outline-purple-400:active,
.btn-outline-purple-400.active,
.btn-outline-purple-400.dropdown-toggle.show {
color: #000;
background-color: #8c68cd;
border-color: #8c68cd;
}
.btn-check:checked + .btn-outline-purple-400:focus,
.btn-check:active + .btn-outline-purple-400:focus,
.btn-outline-purple-400:active:focus,
.btn-outline-purple-400.active:focus,
.btn-outline-purple-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(140, 104, 205, 0.5);
}
.btn-outline-purple-400:disabled,
.btn-outline-purple-400.disabled {
color: #8c68cd;
background-color: transparent;
}
.btn-outline-purple-500 {
color: #6f42c1;
border-color: #6f42c1;
}
.btn-outline-purple-500:hover {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-check:focus + .btn-outline-purple-500,
.btn-outline-purple-500:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}
.btn-check:checked + .btn-outline-purple-500,
.btn-check:active + .btn-outline-purple-500,
.btn-outline-purple-500:active,
.btn-outline-purple-500.active,
.btn-outline-purple-500.dropdown-toggle.show {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-check:checked + .btn-outline-purple-500:focus,
.btn-check:active + .btn-outline-purple-500:focus,
.btn-outline-purple-500:active:focus,
.btn-outline-purple-500.active:focus,
.btn-outline-purple-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}
.btn-outline-purple-500:disabled,
.btn-outline-purple-500.disabled {
color: #6f42c1;
background-color: transparent;
}
.btn-outline-purple-600 {
color: #59359a;
border-color: #59359a;
}
.btn-outline-purple-600:hover {
color: #fff;
background-color: #59359a;
border-color: #59359a;
}
.btn-check:focus + .btn-outline-purple-600,
.btn-outline-purple-600:focus {
box-shadow: 0 0 0 0.25rem rgba(89, 53, 154, 0.5);
}
.btn-check:checked + .btn-outline-purple-600,
.btn-check:active + .btn-outline-purple-600,
.btn-outline-purple-600:active,
.btn-outline-purple-600.active,
.btn-outline-purple-600.dropdown-toggle.show {
color: #fff;
background-color: #59359a;
border-color: #59359a;
}
.btn-check:checked + .btn-outline-purple-600:focus,
.btn-check:active + .btn-outline-purple-600:focus,
.btn-outline-purple-600:active:focus,
.btn-outline-purple-600.active:focus,
.btn-outline-purple-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(89, 53, 154, 0.5);
}
.btn-outline-purple-600:disabled,
.btn-outline-purple-600.disabled {
color: #59359a;
background-color: transparent;
}
.btn-outline-purple-700 {
color: #432874;
border-color: #432874;
}
.btn-outline-purple-700:hover {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.btn-check:focus + .btn-outline-purple-700,
.btn-outline-purple-700:focus {
box-shadow: 0 0 0 0.25rem rgba(67, 40, 116, 0.5);
}
.btn-check:checked + .btn-outline-purple-700,
.btn-check:active + .btn-outline-purple-700,
.btn-outline-purple-700:active,
.btn-outline-purple-700.active,
.btn-outline-purple-700.dropdown-toggle.show {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.btn-check:checked + .btn-outline-purple-700:focus,
.btn-check:active + .btn-outline-purple-700:focus,
.btn-outline-purple-700:active:focus,
.btn-outline-purple-700.active:focus,
.btn-outline-purple-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(67, 40, 116, 0.5);
}
.btn-outline-purple-700:disabled,
.btn-outline-purple-700.disabled {
color: #432874;
background-color: transparent;
}
.btn-outline-purple-800 {
color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-outline-purple-800:hover {
color: #fff;
background-color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-check:focus + .btn-outline-purple-800,
.btn-outline-purple-800:focus {
box-shadow: 0 0 0 0.25rem rgba(44, 26, 77, 0.5);
}
.btn-check:checked + .btn-outline-purple-800,
.btn-check:active + .btn-outline-purple-800,
.btn-outline-purple-800:active,
.btn-outline-purple-800.active,
.btn-outline-purple-800.dropdown-toggle.show {
color: #fff;
background-color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-check:checked + .btn-outline-purple-800:focus,
.btn-check:active + .btn-outline-purple-800:focus,
.btn-outline-purple-800:active:focus,
.btn-outline-purple-800.active:focus,
.btn-outline-purple-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(44, 26, 77, 0.5);
}
.btn-outline-purple-800:disabled,
.btn-outline-purple-800.disabled {
color: #2c1a4d;
background-color: transparent;
}
.btn-outline-purple-900 {
color: #160d27;
border-color: #160d27;
}
.btn-outline-purple-900:hover {
color: #fff;
background-color: #160d27;
border-color: #160d27;
}
.btn-check:focus + .btn-outline-purple-900,
.btn-outline-purple-900:focus {
box-shadow: 0 0 0 0.25rem rgba(22, 13, 39, 0.5);
}
.btn-check:checked + .btn-outline-purple-900,
.btn-check:active + .btn-outline-purple-900,
.btn-outline-purple-900:active,
.btn-outline-purple-900.active,
.btn-outline-purple-900.dropdown-toggle.show {
color: #fff;
background-color: #160d27;
border-color: #160d27;
}
.btn-check:checked + .btn-outline-purple-900:focus,
.btn-check:active + .btn-outline-purple-900:focus,
.btn-outline-purple-900:active:focus,
.btn-outline-purple-900.active:focus,
.btn-outline-purple-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(22, 13, 39, 0.5);
}
.btn-outline-purple-900:disabled,
.btn-outline-purple-900.disabled {
color: #160d27;
background-color: transparent;
}
.btn-outline-pink {
color: #d63384;
border-color: #d63384;
}
.btn-outline-pink:hover {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-check:focus + .btn-outline-pink,
.btn-outline-pink:focus {
box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.5);
}
.btn-check:checked + .btn-outline-pink,
.btn-check:active + .btn-outline-pink,
.btn-outline-pink:active,
.btn-outline-pink.active,
.btn-outline-pink.dropdown-toggle.show {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-check:checked + .btn-outline-pink:focus,
.btn-check:active + .btn-outline-pink:focus,
.btn-outline-pink:active:focus,
.btn-outline-pink.active:focus,
.btn-outline-pink.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.5);
}
.btn-outline-pink:disabled,
.btn-outline-pink.disabled {
color: #d63384;
background-color: transparent;
}
.btn-outline-pink-100 {
color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-outline-pink-100:hover {
color: #000;
background-color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-check:focus + .btn-outline-pink-100,
.btn-outline-pink-100:focus {
box-shadow: 0 0 0 0.25rem rgba(247, 214, 230, 0.5);
}
.btn-check:checked + .btn-outline-pink-100,
.btn-check:active + .btn-outline-pink-100,
.btn-outline-pink-100:active,
.btn-outline-pink-100.active,
.btn-outline-pink-100.dropdown-toggle.show {
color: #000;
background-color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-check:checked + .btn-outline-pink-100:focus,
.btn-check:active + .btn-outline-pink-100:focus,
.btn-outline-pink-100:active:focus,
.btn-outline-pink-100.active:focus,
.btn-outline-pink-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(247, 214, 230, 0.5);
}
.btn-outline-pink-100:disabled,
.btn-outline-pink-100.disabled {
color: #f7d6e6;
background-color: transparent;
}
.btn-outline-pink-200 {
color: #efadce;
border-color: #efadce;
}
.btn-outline-pink-200:hover {
color: #000;
background-color: #efadce;
border-color: #efadce;
}
.btn-check:focus + .btn-outline-pink-200,
.btn-outline-pink-200:focus {
box-shadow: 0 0 0 0.25rem rgba(239, 173, 206, 0.5);
}
.btn-check:checked + .btn-outline-pink-200,
.btn-check:active + .btn-outline-pink-200,
.btn-outline-pink-200:active,
.btn-outline-pink-200.active,
.btn-outline-pink-200.dropdown-toggle.show {
color: #000;
background-color: #efadce;
border-color: #efadce;
}
.btn-check:checked + .btn-outline-pink-200:focus,
.btn-check:active + .btn-outline-pink-200:focus,
.btn-outline-pink-200:active:focus,
.btn-outline-pink-200.active:focus,
.btn-outline-pink-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(239, 173, 206, 0.5);
}
.btn-outline-pink-200:disabled,
.btn-outline-pink-200.disabled {
color: #efadce;
background-color: transparent;
}
.btn-outline-pink-300 {
color: #e685b5;
border-color: #e685b5;
}
.btn-outline-pink-300:hover {
color: #000;
background-color: #e685b5;
border-color: #e685b5;
}
.btn-check:focus + .btn-outline-pink-300,
.btn-outline-pink-300:focus {
box-shadow: 0 0 0 0.25rem rgba(230, 133, 181, 0.5);
}
.btn-check:checked + .btn-outline-pink-300,
.btn-check:active + .btn-outline-pink-300,
.btn-outline-pink-300:active,
.btn-outline-pink-300.active,
.btn-outline-pink-300.dropdown-toggle.show {
color: #000;
background-color: #e685b5;
border-color: #e685b5;
}
.btn-check:checked + .btn-outline-pink-300:focus,
.btn-check:active + .btn-outline-pink-300:focus,
.btn-outline-pink-300:active:focus,
.btn-outline-pink-300.active:focus,
.btn-outline-pink-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(230, 133, 181, 0.5);
}
.btn-outline-pink-300:disabled,
.btn-outline-pink-300.disabled {
color: #e685b5;
background-color: transparent;
}
.btn-outline-pink-400 {
color: #de5c9d;
border-color: #de5c9d;
}
.btn-outline-pink-400:hover {
color: #000;
background-color: #de5c9d;
border-color: #de5c9d;
}
.btn-check:focus + .btn-outline-pink-400,
.btn-outline-pink-400:focus {
box-shadow: 0 0 0 0.25rem rgba(222, 92, 157, 0.5);
}
.btn-check:checked + .btn-outline-pink-400,
.btn-check:active + .btn-outline-pink-400,
.btn-outline-pink-400:active,
.btn-outline-pink-400.active,
.btn-outline-pink-400.dropdown-toggle.show {
color: #000;
background-color: #de5c9d;
border-color: #de5c9d;
}
.btn-check:checked + .btn-outline-pink-400:focus,
.btn-check:active + .btn-outline-pink-400:focus,
.btn-outline-pink-400:active:focus,
.btn-outline-pink-400.active:focus,
.btn-outline-pink-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(222, 92, 157, 0.5);
}
.btn-outline-pink-400:disabled,
.btn-outline-pink-400.disabled {
color: #de5c9d;
background-color: transparent;
}
.btn-outline-pink-500 {
color: #d63384;
border-color: #d63384;
}
.btn-outline-pink-500:hover {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-check:focus + .btn-outline-pink-500,
.btn-outline-pink-500:focus {
box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.5);
}
.btn-check:checked + .btn-outline-pink-500,
.btn-check:active + .btn-outline-pink-500,
.btn-outline-pink-500:active,
.btn-outline-pink-500.active,
.btn-outline-pink-500.dropdown-toggle.show {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-check:checked + .btn-outline-pink-500:focus,
.btn-check:active + .btn-outline-pink-500:focus,
.btn-outline-pink-500:active:focus,
.btn-outline-pink-500.active:focus,
.btn-outline-pink-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.5);
}
.btn-outline-pink-500:disabled,
.btn-outline-pink-500.disabled {
color: #d63384;
background-color: transparent;
}
.btn-outline-pink-600 {
color: #ab296a;
border-color: #ab296a;
}
.btn-outline-pink-600:hover {
color: #fff;
background-color: #ab296a;
border-color: #ab296a;
}
.btn-check:focus + .btn-outline-pink-600,
.btn-outline-pink-600:focus {
box-shadow: 0 0 0 0.25rem rgba(171, 41, 106, 0.5);
}
.btn-check:checked + .btn-outline-pink-600,
.btn-check:active + .btn-outline-pink-600,
.btn-outline-pink-600:active,
.btn-outline-pink-600.active,
.btn-outline-pink-600.dropdown-toggle.show {
color: #fff;
background-color: #ab296a;
border-color: #ab296a;
}
.btn-check:checked + .btn-outline-pink-600:focus,
.btn-check:active + .btn-outline-pink-600:focus,
.btn-outline-pink-600:active:focus,
.btn-outline-pink-600.active:focus,
.btn-outline-pink-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(171, 41, 106, 0.5);
}
.btn-outline-pink-600:disabled,
.btn-outline-pink-600.disabled {
color: #ab296a;
background-color: transparent;
}
.btn-outline-pink-700 {
color: #801f4f;
border-color: #801f4f;
}
.btn-outline-pink-700:hover {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.btn-check:focus + .btn-outline-pink-700,
.btn-outline-pink-700:focus {
box-shadow: 0 0 0 0.25rem rgba(128, 31, 79, 0.5);
}
.btn-check:checked + .btn-outline-pink-700,
.btn-check:active + .btn-outline-pink-700,
.btn-outline-pink-700:active,
.btn-outline-pink-700.active,
.btn-outline-pink-700.dropdown-toggle.show {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.btn-check:checked + .btn-outline-pink-700:focus,
.btn-check:active + .btn-outline-pink-700:focus,
.btn-outline-pink-700:active:focus,
.btn-outline-pink-700.active:focus,
.btn-outline-pink-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(128, 31, 79, 0.5);
}
.btn-outline-pink-700:disabled,
.btn-outline-pink-700.disabled {
color: #801f4f;
background-color: transparent;
}
.btn-outline-pink-800 {
color: #561435;
border-color: #561435;
}
.btn-outline-pink-800:hover {
color: #fff;
background-color: #561435;
border-color: #561435;
}
.btn-check:focus + .btn-outline-pink-800,
.btn-outline-pink-800:focus {
box-shadow: 0 0 0 0.25rem rgba(86, 20, 53, 0.5);
}
.btn-check:checked + .btn-outline-pink-800,
.btn-check:active + .btn-outline-pink-800,
.btn-outline-pink-800:active,
.btn-outline-pink-800.active,
.btn-outline-pink-800.dropdown-toggle.show {
color: #fff;
background-color: #561435;
border-color: #561435;
}
.btn-check:checked + .btn-outline-pink-800:focus,
.btn-check:active + .btn-outline-pink-800:focus,
.btn-outline-pink-800:active:focus,
.btn-outline-pink-800.active:focus,
.btn-outline-pink-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(86, 20, 53, 0.5);
}
.btn-outline-pink-800:disabled,
.btn-outline-pink-800.disabled {
color: #561435;
background-color: transparent;
}
.btn-outline-pink-900 {
color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-outline-pink-900:hover {
color: #fff;
background-color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-check:focus + .btn-outline-pink-900,
.btn-outline-pink-900:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 10, 26, 0.5);
}
.btn-check:checked + .btn-outline-pink-900,
.btn-check:active + .btn-outline-pink-900,
.btn-outline-pink-900:active,
.btn-outline-pink-900.active,
.btn-outline-pink-900.dropdown-toggle.show {
color: #fff;
background-color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-check:checked + .btn-outline-pink-900:focus,
.btn-check:active + .btn-outline-pink-900:focus,
.btn-outline-pink-900:active:focus,
.btn-outline-pink-900.active:focus,
.btn-outline-pink-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 10, 26, 0.5);
}
.btn-outline-pink-900:disabled,
.btn-outline-pink-900.disabled {
color: #2b0a1a;
background-color: transparent;
}
.btn-outline-red {
color: #dc3545;
border-color: #dc3545;
}
.btn-outline-red:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:focus + .btn-outline-red,
.btn-outline-red:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-red,
.btn-check:active + .btn-outline-red,
.btn-outline-red:active,
.btn-outline-red.active,
.btn-outline-red.dropdown-toggle.show {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:checked + .btn-outline-red:focus,
.btn-check:active + .btn-outline-red:focus,
.btn-outline-red:active:focus,
.btn-outline-red.active:focus,
.btn-outline-red.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-red:disabled,
.btn-outline-red.disabled {
color: #dc3545;
background-color: transparent;
}
.btn-outline-red-100 {
color: #f8d7da;
border-color: #f8d7da;
}
.btn-outline-red-100:hover {
color: #000;
background-color: #f8d7da;
border-color: #f8d7da;
}
.btn-check:focus + .btn-outline-red-100,
.btn-outline-red-100:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 215, 218, 0.5);
}
.btn-check:checked + .btn-outline-red-100,
.btn-check:active + .btn-outline-red-100,
.btn-outline-red-100:active,
.btn-outline-red-100.active,
.btn-outline-red-100.dropdown-toggle.show {
color: #000;
background-color: #f8d7da;
border-color: #f8d7da;
}
.btn-check:checked + .btn-outline-red-100:focus,
.btn-check:active + .btn-outline-red-100:focus,
.btn-outline-red-100:active:focus,
.btn-outline-red-100.active:focus,
.btn-outline-red-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 215, 218, 0.5);
}
.btn-outline-red-100:disabled,
.btn-outline-red-100.disabled {
color: #f8d7da;
background-color: transparent;
}
.btn-outline-red-200 {
color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-outline-red-200:hover {
color: #000;
background-color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-check:focus + .btn-outline-red-200,
.btn-outline-red-200:focus {
box-shadow: 0 0 0 0.25rem rgba(241, 174, 181, 0.5);
}
.btn-check:checked + .btn-outline-red-200,
.btn-check:active + .btn-outline-red-200,
.btn-outline-red-200:active,
.btn-outline-red-200.active,
.btn-outline-red-200.dropdown-toggle.show {
color: #000;
background-color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-check:checked + .btn-outline-red-200:focus,
.btn-check:active + .btn-outline-red-200:focus,
.btn-outline-red-200:active:focus,
.btn-outline-red-200.active:focus,
.btn-outline-red-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(241, 174, 181, 0.5);
}
.btn-outline-red-200:disabled,
.btn-outline-red-200.disabled {
color: #f1aeb5;
background-color: transparent;
}
.btn-outline-red-300 {
color: #ea868f;
border-color: #ea868f;
}
.btn-outline-red-300:hover {
color: #000;
background-color: #ea868f;
border-color: #ea868f;
}
.btn-check:focus + .btn-outline-red-300,
.btn-outline-red-300:focus {
box-shadow: 0 0 0 0.25rem rgba(234, 134, 143, 0.5);
}
.btn-check:checked + .btn-outline-red-300,
.btn-check:active + .btn-outline-red-300,
.btn-outline-red-300:active,
.btn-outline-red-300.active,
.btn-outline-red-300.dropdown-toggle.show {
color: #000;
background-color: #ea868f;
border-color: #ea868f;
}
.btn-check:checked + .btn-outline-red-300:focus,
.btn-check:active + .btn-outline-red-300:focus,
.btn-outline-red-300:active:focus,
.btn-outline-red-300.active:focus,
.btn-outline-red-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(234, 134, 143, 0.5);
}
.btn-outline-red-300:disabled,
.btn-outline-red-300.disabled {
color: #ea868f;
background-color: transparent;
}
.btn-outline-red-400 {
color: #e35d6a;
border-color: #e35d6a;
}
.btn-outline-red-400:hover {
color: #000;
background-color: #e35d6a;
border-color: #e35d6a;
}
.btn-check:focus + .btn-outline-red-400,
.btn-outline-red-400:focus {
box-shadow: 0 0 0 0.25rem rgba(227, 93, 106, 0.5);
}
.btn-check:checked + .btn-outline-red-400,
.btn-check:active + .btn-outline-red-400,
.btn-outline-red-400:active,
.btn-outline-red-400.active,
.btn-outline-red-400.dropdown-toggle.show {
color: #000;
background-color: #e35d6a;
border-color: #e35d6a;
}
.btn-check:checked + .btn-outline-red-400:focus,
.btn-check:active + .btn-outline-red-400:focus,
.btn-outline-red-400:active:focus,
.btn-outline-red-400.active:focus,
.btn-outline-red-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(227, 93, 106, 0.5);
}
.btn-outline-red-400:disabled,
.btn-outline-red-400.disabled {
color: #e35d6a;
background-color: transparent;
}
.btn-outline-red-500 {
color: #dc3545;
border-color: #dc3545;
}
.btn-outline-red-500:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:focus + .btn-outline-red-500,
.btn-outline-red-500:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-red-500,
.btn-check:active + .btn-outline-red-500,
.btn-outline-red-500:active,
.btn-outline-red-500.active,
.btn-outline-red-500.dropdown-toggle.show {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:checked + .btn-outline-red-500:focus,
.btn-check:active + .btn-outline-red-500:focus,
.btn-outline-red-500:active:focus,
.btn-outline-red-500.active:focus,
.btn-outline-red-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-red-500:disabled,
.btn-outline-red-500.disabled {
color: #dc3545;
background-color: transparent;
}
.btn-outline-red-600 {
color: #b02a37;
border-color: #b02a37;
}
.btn-outline-red-600:hover {
color: #fff;
background-color: #b02a37;
border-color: #b02a37;
}
.btn-check:focus + .btn-outline-red-600,
.btn-outline-red-600:focus {
box-shadow: 0 0 0 0.25rem rgba(176, 42, 55, 0.5);
}
.btn-check:checked + .btn-outline-red-600,
.btn-check:active + .btn-outline-red-600,
.btn-outline-red-600:active,
.btn-outline-red-600.active,
.btn-outline-red-600.dropdown-toggle.show {
color: #fff;
background-color: #b02a37;
border-color: #b02a37;
}
.btn-check:checked + .btn-outline-red-600:focus,
.btn-check:active + .btn-outline-red-600:focus,
.btn-outline-red-600:active:focus,
.btn-outline-red-600.active:focus,
.btn-outline-red-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(176, 42, 55, 0.5);
}
.btn-outline-red-600:disabled,
.btn-outline-red-600.disabled {
color: #b02a37;
background-color: transparent;
}
.btn-outline-red-700 {
color: #842029;
border-color: #842029;
}
.btn-outline-red-700:hover {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.btn-check:focus + .btn-outline-red-700,
.btn-outline-red-700:focus {
box-shadow: 0 0 0 0.25rem rgba(132, 32, 41, 0.5);
}
.btn-check:checked + .btn-outline-red-700,
.btn-check:active + .btn-outline-red-700,
.btn-outline-red-700:active,
.btn-outline-red-700.active,
.btn-outline-red-700.dropdown-toggle.show {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.btn-check:checked + .btn-outline-red-700:focus,
.btn-check:active + .btn-outline-red-700:focus,
.btn-outline-red-700:active:focus,
.btn-outline-red-700.active:focus,
.btn-outline-red-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(132, 32, 41, 0.5);
}
.btn-outline-red-700:disabled,
.btn-outline-red-700.disabled {
color: #842029;
background-color: transparent;
}
.btn-outline-red-800 {
color: #58151c;
border-color: #58151c;
}
.btn-outline-red-800:hover {
color: #fff;
background-color: #58151c;
border-color: #58151c;
}
.btn-check:focus + .btn-outline-red-800,
.btn-outline-red-800:focus {
box-shadow: 0 0 0 0.25rem rgba(88, 21, 28, 0.5);
}
.btn-check:checked + .btn-outline-red-800,
.btn-check:active + .btn-outline-red-800,
.btn-outline-red-800:active,
.btn-outline-red-800.active,
.btn-outline-red-800.dropdown-toggle.show {
color: #fff;
background-color: #58151c;
border-color: #58151c;
}
.btn-check:checked + .btn-outline-red-800:focus,
.btn-check:active + .btn-outline-red-800:focus,
.btn-outline-red-800:active:focus,
.btn-outline-red-800.active:focus,
.btn-outline-red-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(88, 21, 28, 0.5);
}
.btn-outline-red-800:disabled,
.btn-outline-red-800.disabled {
color: #58151c;
background-color: transparent;
}
.btn-outline-red-900 {
color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-outline-red-900:hover {
color: #fff;
background-color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-check:focus + .btn-outline-red-900,
.btn-outline-red-900:focus {
box-shadow: 0 0 0 0.25rem rgba(44, 11, 14, 0.5);
}
.btn-check:checked + .btn-outline-red-900,
.btn-check:active + .btn-outline-red-900,
.btn-outline-red-900:active,
.btn-outline-red-900.active,
.btn-outline-red-900.dropdown-toggle.show {
color: #fff;
background-color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-check:checked + .btn-outline-red-900:focus,
.btn-check:active + .btn-outline-red-900:focus,
.btn-outline-red-900:active:focus,
.btn-outline-red-900.active:focus,
.btn-outline-red-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(44, 11, 14, 0.5);
}
.btn-outline-red-900:disabled,
.btn-outline-red-900.disabled {
color: #2c0b0e;
background-color: transparent;
}
.btn-outline-orange {
color: #fd7e14;
border-color: #fd7e14;
}
.btn-outline-orange:hover {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-check:focus + .btn-outline-orange,
.btn-outline-orange:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}
.btn-check:checked + .btn-outline-orange,
.btn-check:active + .btn-outline-orange,
.btn-outline-orange:active,
.btn-outline-orange.active,
.btn-outline-orange.dropdown-toggle.show {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-check:checked + .btn-outline-orange:focus,
.btn-check:active + .btn-outline-orange:focus,
.btn-outline-orange:active:focus,
.btn-outline-orange.active:focus,
.btn-outline-orange.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}
.btn-outline-orange:disabled,
.btn-outline-orange.disabled {
color: #fd7e14;
background-color: transparent;
}
.btn-outline-orange-100 {
color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-outline-orange-100:hover {
color: #000;
background-color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-check:focus + .btn-outline-orange-100,
.btn-outline-orange-100:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 229, 208, 0.5);
}
.btn-check:checked + .btn-outline-orange-100,
.btn-check:active + .btn-outline-orange-100,
.btn-outline-orange-100:active,
.btn-outline-orange-100.active,
.btn-outline-orange-100.dropdown-toggle.show {
color: #000;
background-color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-check:checked + .btn-outline-orange-100:focus,
.btn-check:active + .btn-outline-orange-100:focus,
.btn-outline-orange-100:active:focus,
.btn-outline-orange-100.active:focus,
.btn-outline-orange-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 229, 208, 0.5);
}
.btn-outline-orange-100:disabled,
.btn-outline-orange-100.disabled {
color: #ffe5d0;
background-color: transparent;
}
.btn-outline-orange-200 {
color: #fecba1;
border-color: #fecba1;
}
.btn-outline-orange-200:hover {
color: #000;
background-color: #fecba1;
border-color: #fecba1;
}
.btn-check:focus + .btn-outline-orange-200,
.btn-outline-orange-200:focus {
box-shadow: 0 0 0 0.25rem rgba(254, 203, 161, 0.5);
}
.btn-check:checked + .btn-outline-orange-200,
.btn-check:active + .btn-outline-orange-200,
.btn-outline-orange-200:active,
.btn-outline-orange-200.active,
.btn-outline-orange-200.dropdown-toggle.show {
color: #000;
background-color: #fecba1;
border-color: #fecba1;
}
.btn-check:checked + .btn-outline-orange-200:focus,
.btn-check:active + .btn-outline-orange-200:focus,
.btn-outline-orange-200:active:focus,
.btn-outline-orange-200.active:focus,
.btn-outline-orange-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(254, 203, 161, 0.5);
}
.btn-outline-orange-200:disabled,
.btn-outline-orange-200.disabled {
color: #fecba1;
background-color: transparent;
}
.btn-outline-orange-300 {
color: #feb272;
border-color: #feb272;
}
.btn-outline-orange-300:hover {
color: #000;
background-color: #feb272;
border-color: #feb272;
}
.btn-check:focus + .btn-outline-orange-300,
.btn-outline-orange-300:focus {
box-shadow: 0 0 0 0.25rem rgba(254, 178, 114, 0.5);
}
.btn-check:checked + .btn-outline-orange-300,
.btn-check:active + .btn-outline-orange-300,
.btn-outline-orange-300:active,
.btn-outline-orange-300.active,
.btn-outline-orange-300.dropdown-toggle.show {
color: #000;
background-color: #feb272;
border-color: #feb272;
}
.btn-check:checked + .btn-outline-orange-300:focus,
.btn-check:active + .btn-outline-orange-300:focus,
.btn-outline-orange-300:active:focus,
.btn-outline-orange-300.active:focus,
.btn-outline-orange-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(254, 178, 114, 0.5);
}
.btn-outline-orange-300:disabled,
.btn-outline-orange-300.disabled {
color: #feb272;
background-color: transparent;
}
.btn-outline-orange-400 {
color: #fd9843;
border-color: #fd9843;
}
.btn-outline-orange-400:hover {
color: #000;
background-color: #fd9843;
border-color: #fd9843;
}
.btn-check:focus + .btn-outline-orange-400,
.btn-outline-orange-400:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 152, 67, 0.5);
}
.btn-check:checked + .btn-outline-orange-400,
.btn-check:active + .btn-outline-orange-400,
.btn-outline-orange-400:active,
.btn-outline-orange-400.active,
.btn-outline-orange-400.dropdown-toggle.show {
color: #000;
background-color: #fd9843;
border-color: #fd9843;
}
.btn-check:checked + .btn-outline-orange-400:focus,
.btn-check:active + .btn-outline-orange-400:focus,
.btn-outline-orange-400:active:focus,
.btn-outline-orange-400.active:focus,
.btn-outline-orange-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 152, 67, 0.5);
}
.btn-outline-orange-400:disabled,
.btn-outline-orange-400.disabled {
color: #fd9843;
background-color: transparent;
}
.btn-outline-orange-500 {
color: #fd7e14;
border-color: #fd7e14;
}
.btn-outline-orange-500:hover {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-check:focus + .btn-outline-orange-500,
.btn-outline-orange-500:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}
.btn-check:checked + .btn-outline-orange-500,
.btn-check:active + .btn-outline-orange-500,
.btn-outline-orange-500:active,
.btn-outline-orange-500.active,
.btn-outline-orange-500.dropdown-toggle.show {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-check:checked + .btn-outline-orange-500:focus,
.btn-check:active + .btn-outline-orange-500:focus,
.btn-outline-orange-500:active:focus,
.btn-outline-orange-500.active:focus,
.btn-outline-orange-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}
.btn-outline-orange-500:disabled,
.btn-outline-orange-500.disabled {
color: #fd7e14;
background-color: transparent;
}
.btn-outline-orange-600 {
color: #ca6510;
border-color: #ca6510;
}
.btn-outline-orange-600:hover {
color: #000;
background-color: #ca6510;
border-color: #ca6510;
}
.btn-check:focus + .btn-outline-orange-600,
.btn-outline-orange-600:focus {
box-shadow: 0 0 0 0.25rem rgba(202, 101, 16, 0.5);
}
.btn-check:checked + .btn-outline-orange-600,
.btn-check:active + .btn-outline-orange-600,
.btn-outline-orange-600:active,
.btn-outline-orange-600.active,
.btn-outline-orange-600.dropdown-toggle.show {
color: #000;
background-color: #ca6510;
border-color: #ca6510;
}
.btn-check:checked + .btn-outline-orange-600:focus,
.btn-check:active + .btn-outline-orange-600:focus,
.btn-outline-orange-600:active:focus,
.btn-outline-orange-600.active:focus,
.btn-outline-orange-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(202, 101, 16, 0.5);
}
.btn-outline-orange-600:disabled,
.btn-outline-orange-600.disabled {
color: #ca6510;
background-color: transparent;
}
.btn-outline-orange-700 {
color: #984c0c;
border-color: #984c0c;
}
.btn-outline-orange-700:hover {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.btn-check:focus + .btn-outline-orange-700,
.btn-outline-orange-700:focus {
box-shadow: 0 0 0 0.25rem rgba(152, 76, 12, 0.5);
}
.btn-check:checked + .btn-outline-orange-700,
.btn-check:active + .btn-outline-orange-700,
.btn-outline-orange-700:active,
.btn-outline-orange-700.active,
.btn-outline-orange-700.dropdown-toggle.show {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.btn-check:checked + .btn-outline-orange-700:focus,
.btn-check:active + .btn-outline-orange-700:focus,
.btn-outline-orange-700:active:focus,
.btn-outline-orange-700.active:focus,
.btn-outline-orange-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(152, 76, 12, 0.5);
}
.btn-outline-orange-700:disabled,
.btn-outline-orange-700.disabled {
color: #984c0c;
background-color: transparent;
}
.btn-outline-orange-800 {
color: #653208;
border-color: #653208;
}
.btn-outline-orange-800:hover {
color: #fff;
background-color: #653208;
border-color: #653208;
}
.btn-check:focus + .btn-outline-orange-800,
.btn-outline-orange-800:focus {
box-shadow: 0 0 0 0.25rem rgba(101, 50, 8, 0.5);
}
.btn-check:checked + .btn-outline-orange-800,
.btn-check:active + .btn-outline-orange-800,
.btn-outline-orange-800:active,
.btn-outline-orange-800.active,
.btn-outline-orange-800.dropdown-toggle.show {
color: #fff;
background-color: #653208;
border-color: #653208;
}
.btn-check:checked + .btn-outline-orange-800:focus,
.btn-check:active + .btn-outline-orange-800:focus,
.btn-outline-orange-800:active:focus,
.btn-outline-orange-800.active:focus,
.btn-outline-orange-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(101, 50, 8, 0.5);
}
.btn-outline-orange-800:disabled,
.btn-outline-orange-800.disabled {
color: #653208;
background-color: transparent;
}
.btn-outline-orange-900 {
color: #331904;
border-color: #331904;
}
.btn-outline-orange-900:hover {
color: #fff;
background-color: #331904;
border-color: #331904;
}
.btn-check:focus + .btn-outline-orange-900,
.btn-outline-orange-900:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 25, 4, 0.5);
}
.btn-check:checked + .btn-outline-orange-900,
.btn-check:active + .btn-outline-orange-900,
.btn-outline-orange-900:active,
.btn-outline-orange-900.active,
.btn-outline-orange-900.dropdown-toggle.show {
color: #fff;
background-color: #331904;
border-color: #331904;
}
.btn-check:checked + .btn-outline-orange-900:focus,
.btn-check:active + .btn-outline-orange-900:focus,
.btn-outline-orange-900:active:focus,
.btn-outline-orange-900.active:focus,
.btn-outline-orange-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 25, 4, 0.5);
}
.btn-outline-orange-900:disabled,
.btn-outline-orange-900.disabled {
color: #331904;
background-color: transparent;
}
.btn-outline-yellow {
color: #ffc107;
border-color: #ffc107;
}
.btn-outline-yellow:hover {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:focus + .btn-outline-yellow,
.btn-outline-yellow:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-yellow,
.btn-check:active + .btn-outline-yellow,
.btn-outline-yellow:active,
.btn-outline-yellow.active,
.btn-outline-yellow.dropdown-toggle.show {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:checked + .btn-outline-yellow:focus,
.btn-check:active + .btn-outline-yellow:focus,
.btn-outline-yellow:active:focus,
.btn-outline-yellow.active:focus,
.btn-outline-yellow.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-yellow:disabled,
.btn-outline-yellow.disabled {
color: #ffc107;
background-color: transparent;
}
.btn-outline-yellow-100 {
color: #fff3cd;
border-color: #fff3cd;
}
.btn-outline-yellow-100:hover {
color: #000;
background-color: #fff3cd;
border-color: #fff3cd;
}
.btn-check:focus + .btn-outline-yellow-100,
.btn-outline-yellow-100:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 243, 205, 0.5);
}
.btn-check:checked + .btn-outline-yellow-100,
.btn-check:active + .btn-outline-yellow-100,
.btn-outline-yellow-100:active,
.btn-outline-yellow-100.active,
.btn-outline-yellow-100.dropdown-toggle.show {
color: #000;
background-color: #fff3cd;
border-color: #fff3cd;
}
.btn-check:checked + .btn-outline-yellow-100:focus,
.btn-check:active + .btn-outline-yellow-100:focus,
.btn-outline-yellow-100:active:focus,
.btn-outline-yellow-100.active:focus,
.btn-outline-yellow-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 243, 205, 0.5);
}
.btn-outline-yellow-100:disabled,
.btn-outline-yellow-100.disabled {
color: #fff3cd;
background-color: transparent;
}
.btn-outline-yellow-200 {
color: #ffe69c;
border-color: #ffe69c;
}
.btn-outline-yellow-200:hover {
color: #000;
background-color: #ffe69c;
border-color: #ffe69c;
}
.btn-check:focus + .btn-outline-yellow-200,
.btn-outline-yellow-200:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 230, 156, 0.5);
}
.btn-check:checked + .btn-outline-yellow-200,
.btn-check:active + .btn-outline-yellow-200,
.btn-outline-yellow-200:active,
.btn-outline-yellow-200.active,
.btn-outline-yellow-200.dropdown-toggle.show {
color: #000;
background-color: #ffe69c;
border-color: #ffe69c;
}
.btn-check:checked + .btn-outline-yellow-200:focus,
.btn-check:active + .btn-outline-yellow-200:focus,
.btn-outline-yellow-200:active:focus,
.btn-outline-yellow-200.active:focus,
.btn-outline-yellow-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 230, 156, 0.5);
}
.btn-outline-yellow-200:disabled,
.btn-outline-yellow-200.disabled {
color: #ffe69c;
background-color: transparent;
}
.btn-outline-yellow-300 {
color: #ffda6a;
border-color: #ffda6a;
}
.btn-outline-yellow-300:hover {
color: #000;
background-color: #ffda6a;
border-color: #ffda6a;
}
.btn-check:focus + .btn-outline-yellow-300,
.btn-outline-yellow-300:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 218, 106, 0.5);
}
.btn-check:checked + .btn-outline-yellow-300,
.btn-check:active + .btn-outline-yellow-300,
.btn-outline-yellow-300:active,
.btn-outline-yellow-300.active,
.btn-outline-yellow-300.dropdown-toggle.show {
color: #000;
background-color: #ffda6a;
border-color: #ffda6a;
}
.btn-check:checked + .btn-outline-yellow-300:focus,
.btn-check:active + .btn-outline-yellow-300:focus,
.btn-outline-yellow-300:active:focus,
.btn-outline-yellow-300.active:focus,
.btn-outline-yellow-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 218, 106, 0.5);
}
.btn-outline-yellow-300:disabled,
.btn-outline-yellow-300.disabled {
color: #ffda6a;
background-color: transparent;
}
.btn-outline-yellow-400 {
color: #ffcd39;
border-color: #ffcd39;
}
.btn-outline-yellow-400:hover {
color: #000;
background-color: #ffcd39;
border-color: #ffcd39;
}
.btn-check:focus + .btn-outline-yellow-400,
.btn-outline-yellow-400:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 205, 57, 0.5);
}
.btn-check:checked + .btn-outline-yellow-400,
.btn-check:active + .btn-outline-yellow-400,
.btn-outline-yellow-400:active,
.btn-outline-yellow-400.active,
.btn-outline-yellow-400.dropdown-toggle.show {
color: #000;
background-color: #ffcd39;
border-color: #ffcd39;
}
.btn-check:checked + .btn-outline-yellow-400:focus,
.btn-check:active + .btn-outline-yellow-400:focus,
.btn-outline-yellow-400:active:focus,
.btn-outline-yellow-400.active:focus,
.btn-outline-yellow-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 205, 57, 0.5);
}
.btn-outline-yellow-400:disabled,
.btn-outline-yellow-400.disabled {
color: #ffcd39;
background-color: transparent;
}
.btn-outline-yellow-500 {
color: #ffc107;
border-color: #ffc107;
}
.btn-outline-yellow-500:hover {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:focus + .btn-outline-yellow-500,
.btn-outline-yellow-500:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-yellow-500,
.btn-check:active + .btn-outline-yellow-500,
.btn-outline-yellow-500:active,
.btn-outline-yellow-500.active,
.btn-outline-yellow-500.dropdown-toggle.show {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:checked + .btn-outline-yellow-500:focus,
.btn-check:active + .btn-outline-yellow-500:focus,
.btn-outline-yellow-500:active:focus,
.btn-outline-yellow-500.active:focus,
.btn-outline-yellow-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-yellow-500:disabled,
.btn-outline-yellow-500.disabled {
color: #ffc107;
background-color: transparent;
}
.btn-outline-yellow-600 {
color: #cc9a06;
border-color: #cc9a06;
}
.btn-outline-yellow-600:hover {
color: #000;
background-color: #cc9a06;
border-color: #cc9a06;
}
.btn-check:focus + .btn-outline-yellow-600,
.btn-outline-yellow-600:focus {
box-shadow: 0 0 0 0.25rem rgba(204, 154, 6, 0.5);
}
.btn-check:checked + .btn-outline-yellow-600,
.btn-check:active + .btn-outline-yellow-600,
.btn-outline-yellow-600:active,
.btn-outline-yellow-600.active,
.btn-outline-yellow-600.dropdown-toggle.show {
color: #000;
background-color: #cc9a06;
border-color: #cc9a06;
}
.btn-check:checked + .btn-outline-yellow-600:focus,
.btn-check:active + .btn-outline-yellow-600:focus,
.btn-outline-yellow-600:active:focus,
.btn-outline-yellow-600.active:focus,
.btn-outline-yellow-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(204, 154, 6, 0.5);
}
.btn-outline-yellow-600:disabled,
.btn-outline-yellow-600.disabled {
color: #cc9a06;
background-color: transparent;
}
.btn-outline-yellow-700 {
color: #997404;
border-color: #997404;
}
.btn-outline-yellow-700:hover {
color: #000;
background-color: #997404;
border-color: #997404;
}
.btn-check:focus + .btn-outline-yellow-700,
.btn-outline-yellow-700:focus {
box-shadow: 0 0 0 0.25rem rgba(153, 116, 4, 0.5);
}
.btn-check:checked + .btn-outline-yellow-700,
.btn-check:active + .btn-outline-yellow-700,
.btn-outline-yellow-700:active,
.btn-outline-yellow-700.active,
.btn-outline-yellow-700.dropdown-toggle.show {
color: #000;
background-color: #997404;
border-color: #997404;
}
.btn-check:checked + .btn-outline-yellow-700:focus,
.btn-check:active + .btn-outline-yellow-700:focus,
.btn-outline-yellow-700:active:focus,
.btn-outline-yellow-700.active:focus,
.btn-outline-yellow-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(153, 116, 4, 0.5);
}
.btn-outline-yellow-700:disabled,
.btn-outline-yellow-700.disabled {
color: #997404;
background-color: transparent;
}
.btn-outline-yellow-800 {
color: #664d03;
border-color: #664d03;
}
.btn-outline-yellow-800:hover {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.btn-check:focus + .btn-outline-yellow-800,
.btn-outline-yellow-800:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 77, 3, 0.5);
}
.btn-check:checked + .btn-outline-yellow-800,
.btn-check:active + .btn-outline-yellow-800,
.btn-outline-yellow-800:active,
.btn-outline-yellow-800.active,
.btn-outline-yellow-800.dropdown-toggle.show {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.btn-check:checked + .btn-outline-yellow-800:focus,
.btn-check:active + .btn-outline-yellow-800:focus,
.btn-outline-yellow-800:active:focus,
.btn-outline-yellow-800.active:focus,
.btn-outline-yellow-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 77, 3, 0.5);
}
.btn-outline-yellow-800:disabled,
.btn-outline-yellow-800.disabled {
color: #664d03;
background-color: transparent;
}
.btn-outline-yellow-900 {
color: #332701;
border-color: #332701;
}
.btn-outline-yellow-900:hover {
color: #fff;
background-color: #332701;
border-color: #332701;
}
.btn-check:focus + .btn-outline-yellow-900,
.btn-outline-yellow-900:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 39, 1, 0.5);
}
.btn-check:checked + .btn-outline-yellow-900,
.btn-check:active + .btn-outline-yellow-900,
.btn-outline-yellow-900:active,
.btn-outline-yellow-900.active,
.btn-outline-yellow-900.dropdown-toggle.show {
color: #fff;
background-color: #332701;
border-color: #332701;
}
.btn-check:checked + .btn-outline-yellow-900:focus,
.btn-check:active + .btn-outline-yellow-900:focus,
.btn-outline-yellow-900:active:focus,
.btn-outline-yellow-900.active:focus,
.btn-outline-yellow-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 39, 1, 0.5);
}
.btn-outline-yellow-900:disabled,
.btn-outline-yellow-900.disabled {
color: #332701;
background-color: transparent;
}
.btn-outline-green {
color: #198754;
border-color: #198754;
}
.btn-outline-green:hover {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:focus + .btn-outline-green,
.btn-outline-green:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-green,
.btn-check:active + .btn-outline-green,
.btn-outline-green:active,
.btn-outline-green.active,
.btn-outline-green.dropdown-toggle.show {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:checked + .btn-outline-green:focus,
.btn-check:active + .btn-outline-green:focus,
.btn-outline-green:active:focus,
.btn-outline-green.active:focus,
.btn-outline-green.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-green:disabled,
.btn-outline-green.disabled {
color: #198754;
background-color: transparent;
}
.btn-outline-green-100 {
color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-outline-green-100:hover {
color: #000;
background-color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-check:focus + .btn-outline-green-100,
.btn-outline-green-100:focus {
box-shadow: 0 0 0 0.25rem rgba(209, 231, 221, 0.5);
}
.btn-check:checked + .btn-outline-green-100,
.btn-check:active + .btn-outline-green-100,
.btn-outline-green-100:active,
.btn-outline-green-100.active,
.btn-outline-green-100.dropdown-toggle.show {
color: #000;
background-color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-check:checked + .btn-outline-green-100:focus,
.btn-check:active + .btn-outline-green-100:focus,
.btn-outline-green-100:active:focus,
.btn-outline-green-100.active:focus,
.btn-outline-green-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(209, 231, 221, 0.5);
}
.btn-outline-green-100:disabled,
.btn-outline-green-100.disabled {
color: #d1e7dd;
background-color: transparent;
}
.btn-outline-green-200 {
color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-outline-green-200:hover {
color: #000;
background-color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-check:focus + .btn-outline-green-200,
.btn-outline-green-200:focus {
box-shadow: 0 0 0 0.25rem rgba(163, 207, 187, 0.5);
}
.btn-check:checked + .btn-outline-green-200,
.btn-check:active + .btn-outline-green-200,
.btn-outline-green-200:active,
.btn-outline-green-200.active,
.btn-outline-green-200.dropdown-toggle.show {
color: #000;
background-color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-check:checked + .btn-outline-green-200:focus,
.btn-check:active + .btn-outline-green-200:focus,
.btn-outline-green-200:active:focus,
.btn-outline-green-200.active:focus,
.btn-outline-green-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(163, 207, 187, 0.5);
}
.btn-outline-green-200:disabled,
.btn-outline-green-200.disabled {
color: #a3cfbb;
background-color: transparent;
}
.btn-outline-green-300 {
color: #75b798;
border-color: #75b798;
}
.btn-outline-green-300:hover {
color: #000;
background-color: #75b798;
border-color: #75b798;
}
.btn-check:focus + .btn-outline-green-300,
.btn-outline-green-300:focus {
box-shadow: 0 0 0 0.25rem rgba(117, 183, 152, 0.5);
}
.btn-check:checked + .btn-outline-green-300,
.btn-check:active + .btn-outline-green-300,
.btn-outline-green-300:active,
.btn-outline-green-300.active,
.btn-outline-green-300.dropdown-toggle.show {
color: #000;
background-color: #75b798;
border-color: #75b798;
}
.btn-check:checked + .btn-outline-green-300:focus,
.btn-check:active + .btn-outline-green-300:focus,
.btn-outline-green-300:active:focus,
.btn-outline-green-300.active:focus,
.btn-outline-green-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(117, 183, 152, 0.5);
}
.btn-outline-green-300:disabled,
.btn-outline-green-300.disabled {
color: #75b798;
background-color: transparent;
}
.btn-outline-green-400 {
color: #479f76;
border-color: #479f76;
}
.btn-outline-green-400:hover {
color: #000;
background-color: #479f76;
border-color: #479f76;
}
.btn-check:focus + .btn-outline-green-400,
.btn-outline-green-400:focus {
box-shadow: 0 0 0 0.25rem rgba(71, 159, 118, 0.5);
}
.btn-check:checked + .btn-outline-green-400,
.btn-check:active + .btn-outline-green-400,
.btn-outline-green-400:active,
.btn-outline-green-400.active,
.btn-outline-green-400.dropdown-toggle.show {
color: #000;
background-color: #479f76;
border-color: #479f76;
}
.btn-check:checked + .btn-outline-green-400:focus,
.btn-check:active + .btn-outline-green-400:focus,
.btn-outline-green-400:active:focus,
.btn-outline-green-400.active:focus,
.btn-outline-green-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(71, 159, 118, 0.5);
}
.btn-outline-green-400:disabled,
.btn-outline-green-400.disabled {
color: #479f76;
background-color: transparent;
}
.btn-outline-green-500 {
color: #198754;
border-color: #198754;
}
.btn-outline-green-500:hover {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:focus + .btn-outline-green-500,
.btn-outline-green-500:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-green-500,
.btn-check:active + .btn-outline-green-500,
.btn-outline-green-500:active,
.btn-outline-green-500.active,
.btn-outline-green-500.dropdown-toggle.show {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:checked + .btn-outline-green-500:focus,
.btn-check:active + .btn-outline-green-500:focus,
.btn-outline-green-500:active:focus,
.btn-outline-green-500.active:focus,
.btn-outline-green-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-green-500:disabled,
.btn-outline-green-500.disabled {
color: #198754;
background-color: transparent;
}
.btn-outline-green-600 {
color: #146c43;
border-color: #146c43;
}
.btn-outline-green-600:hover {
color: #fff;
background-color: #146c43;
border-color: #146c43;
}
.btn-check:focus + .btn-outline-green-600,
.btn-outline-green-600:focus {
box-shadow: 0 0 0 0.25rem rgba(20, 108, 67, 0.5);
}
.btn-check:checked + .btn-outline-green-600,
.btn-check:active + .btn-outline-green-600,
.btn-outline-green-600:active,
.btn-outline-green-600.active,
.btn-outline-green-600.dropdown-toggle.show {
color: #fff;
background-color: #146c43;
border-color: #146c43;
}
.btn-check:checked + .btn-outline-green-600:focus,
.btn-check:active + .btn-outline-green-600:focus,
.btn-outline-green-600:active:focus,
.btn-outline-green-600.active:focus,
.btn-outline-green-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(20, 108, 67, 0.5);
}
.btn-outline-green-600:disabled,
.btn-outline-green-600.disabled {
color: #146c43;
background-color: transparent;
}
.btn-outline-green-700 {
color: #0f5132;
border-color: #0f5132;
}
.btn-outline-green-700:hover {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.btn-check:focus + .btn-outline-green-700,
.btn-outline-green-700:focus {
box-shadow: 0 0 0 0.25rem rgba(15, 81, 50, 0.5);
}
.btn-check:checked + .btn-outline-green-700,
.btn-check:active + .btn-outline-green-700,
.btn-outline-green-700:active,
.btn-outline-green-700.active,
.btn-outline-green-700.dropdown-toggle.show {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.btn-check:checked + .btn-outline-green-700:focus,
.btn-check:active + .btn-outline-green-700:focus,
.btn-outline-green-700:active:focus,
.btn-outline-green-700.active:focus,
.btn-outline-green-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(15, 81, 50, 0.5);
}
.btn-outline-green-700:disabled,
.btn-outline-green-700.disabled {
color: #0f5132;
background-color: transparent;
}
.btn-outline-green-800 {
color: #0a3622;
border-color: #0a3622;
}
.btn-outline-green-800:hover {
color: #fff;
background-color: #0a3622;
border-color: #0a3622;
}
.btn-check:focus + .btn-outline-green-800,
.btn-outline-green-800:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 54, 34, 0.5);
}
.btn-check:checked + .btn-outline-green-800,
.btn-check:active + .btn-outline-green-800,
.btn-outline-green-800:active,
.btn-outline-green-800.active,
.btn-outline-green-800.dropdown-toggle.show {
color: #fff;
background-color: #0a3622;
border-color: #0a3622;
}
.btn-check:checked + .btn-outline-green-800:focus,
.btn-check:active + .btn-outline-green-800:focus,
.btn-outline-green-800:active:focus,
.btn-outline-green-800.active:focus,
.btn-outline-green-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 54, 34, 0.5);
}
.btn-outline-green-800:disabled,
.btn-outline-green-800.disabled {
color: #0a3622;
background-color: transparent;
}
.btn-outline-green-900 {
color: #051b11;
border-color: #051b11;
}
.btn-outline-green-900:hover {
color: #fff;
background-color: #051b11;
border-color: #051b11;
}
.btn-check:focus + .btn-outline-green-900,
.btn-outline-green-900:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 27, 17, 0.5);
}
.btn-check:checked + .btn-outline-green-900,
.btn-check:active + .btn-outline-green-900,
.btn-outline-green-900:active,
.btn-outline-green-900.active,
.btn-outline-green-900.dropdown-toggle.show {
color: #fff;
background-color: #051b11;
border-color: #051b11;
}
.btn-check:checked + .btn-outline-green-900:focus,
.btn-check:active + .btn-outline-green-900:focus,
.btn-outline-green-900:active:focus,
.btn-outline-green-900.active:focus,
.btn-outline-green-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 27, 17, 0.5);
}
.btn-outline-green-900:disabled,
.btn-outline-green-900.disabled {
color: #051b11;
background-color: transparent;
}
.btn-outline-teal {
color: #20c997;
border-color: #20c997;
}
.btn-outline-teal:hover {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-check:focus + .btn-outline-teal,
.btn-outline-teal:focus {
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.5);
}
.btn-check:checked + .btn-outline-teal,
.btn-check:active + .btn-outline-teal,
.btn-outline-teal:active,
.btn-outline-teal.active,
.btn-outline-teal.dropdown-toggle.show {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-check:checked + .btn-outline-teal:focus,
.btn-check:active + .btn-outline-teal:focus,
.btn-outline-teal:active:focus,
.btn-outline-teal.active:focus,
.btn-outline-teal.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.5);
}
.btn-outline-teal:disabled,
.btn-outline-teal.disabled {
color: #20c997;
background-color: transparent;
}
.btn-outline-teal-100 {
color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-outline-teal-100:hover {
color: #000;
background-color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-check:focus + .btn-outline-teal-100,
.btn-outline-teal-100:focus {
box-shadow: 0 0 0 0.25rem rgba(210, 244, 234, 0.5);
}
.btn-check:checked + .btn-outline-teal-100,
.btn-check:active + .btn-outline-teal-100,
.btn-outline-teal-100:active,
.btn-outline-teal-100.active,
.btn-outline-teal-100.dropdown-toggle.show {
color: #000;
background-color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-check:checked + .btn-outline-teal-100:focus,
.btn-check:active + .btn-outline-teal-100:focus,
.btn-outline-teal-100:active:focus,
.btn-outline-teal-100.active:focus,
.btn-outline-teal-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(210, 244, 234, 0.5);
}
.btn-outline-teal-100:disabled,
.btn-outline-teal-100.disabled {
color: #d2f4ea;
background-color: transparent;
}
.btn-outline-teal-200 {
color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-outline-teal-200:hover {
color: #000;
background-color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-check:focus + .btn-outline-teal-200,
.btn-outline-teal-200:focus {
box-shadow: 0 0 0 0.25rem rgba(166, 233, 213, 0.5);
}
.btn-check:checked + .btn-outline-teal-200,
.btn-check:active + .btn-outline-teal-200,
.btn-outline-teal-200:active,
.btn-outline-teal-200.active,
.btn-outline-teal-200.dropdown-toggle.show {
color: #000;
background-color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-check:checked + .btn-outline-teal-200:focus,
.btn-check:active + .btn-outline-teal-200:focus,
.btn-outline-teal-200:active:focus,
.btn-outline-teal-200.active:focus,
.btn-outline-teal-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(166, 233, 213, 0.5);
}
.btn-outline-teal-200:disabled,
.btn-outline-teal-200.disabled {
color: #a6e9d5;
background-color: transparent;
}
.btn-outline-teal-300 {
color: #79dfc1;
border-color: #79dfc1;
}
.btn-outline-teal-300:hover {
color: #000;
background-color: #79dfc1;
border-color: #79dfc1;
}
.btn-check:focus + .btn-outline-teal-300,
.btn-outline-teal-300:focus {
box-shadow: 0 0 0 0.25rem rgba(121, 223, 193, 0.5);
}
.btn-check:checked + .btn-outline-teal-300,
.btn-check:active + .btn-outline-teal-300,
.btn-outline-teal-300:active,
.btn-outline-teal-300.active,
.btn-outline-teal-300.dropdown-toggle.show {
color: #000;
background-color: #79dfc1;
border-color: #79dfc1;
}
.btn-check:checked + .btn-outline-teal-300:focus,
.btn-check:active + .btn-outline-teal-300:focus,
.btn-outline-teal-300:active:focus,
.btn-outline-teal-300.active:focus,
.btn-outline-teal-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(121, 223, 193, 0.5);
}
.btn-outline-teal-300:disabled,
.btn-outline-teal-300.disabled {
color: #79dfc1;
background-color: transparent;
}
.btn-outline-teal-400 {
color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-outline-teal-400:hover {
color: #000;
background-color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-check:focus + .btn-outline-teal-400,
.btn-outline-teal-400:focus {
box-shadow: 0 0 0 0.25rem rgba(77, 212, 172, 0.5);
}
.btn-check:checked + .btn-outline-teal-400,
.btn-check:active + .btn-outline-teal-400,
.btn-outline-teal-400:active,
.btn-outline-teal-400.active,
.btn-outline-teal-400.dropdown-toggle.show {
color: #000;
background-color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-check:checked + .btn-outline-teal-400:focus,
.btn-check:active + .btn-outline-teal-400:focus,
.btn-outline-teal-400:active:focus,
.btn-outline-teal-400.active:focus,
.btn-outline-teal-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(77, 212, 172, 0.5);
}
.btn-outline-teal-400:disabled,
.btn-outline-teal-400.disabled {
color: #4dd4ac;
background-color: transparent;
}
.btn-outline-teal-500 {
color: #20c997;
border-color: #20c997;
}
.btn-outline-teal-500:hover {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-check:focus + .btn-outline-teal-500,
.btn-outline-teal-500:focus {
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.5);
}
.btn-check:checked + .btn-outline-teal-500,
.btn-check:active + .btn-outline-teal-500,
.btn-outline-teal-500:active,
.btn-outline-teal-500.active,
.btn-outline-teal-500.dropdown-toggle.show {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-check:checked + .btn-outline-teal-500:focus,
.btn-check:active + .btn-outline-teal-500:focus,
.btn-outline-teal-500:active:focus,
.btn-outline-teal-500.active:focus,
.btn-outline-teal-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.5);
}
.btn-outline-teal-500:disabled,
.btn-outline-teal-500.disabled {
color: #20c997;
background-color: transparent;
}
.btn-outline-teal-600 {
color: #1aa179;
border-color: #1aa179;
}
.btn-outline-teal-600:hover {
color: #000;
background-color: #1aa179;
border-color: #1aa179;
}
.btn-check:focus + .btn-outline-teal-600,
.btn-outline-teal-600:focus {
box-shadow: 0 0 0 0.25rem rgba(26, 161, 121, 0.5);
}
.btn-check:checked + .btn-outline-teal-600,
.btn-check:active + .btn-outline-teal-600,
.btn-outline-teal-600:active,
.btn-outline-teal-600.active,
.btn-outline-teal-600.dropdown-toggle.show {
color: #000;
background-color: #1aa179;
border-color: #1aa179;
}
.btn-check:checked + .btn-outline-teal-600:focus,
.btn-check:active + .btn-outline-teal-600:focus,
.btn-outline-teal-600:active:focus,
.btn-outline-teal-600.active:focus,
.btn-outline-teal-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(26, 161, 121, 0.5);
}
.btn-outline-teal-600:disabled,
.btn-outline-teal-600.disabled {
color: #1aa179;
background-color: transparent;
}
.btn-outline-teal-700 {
color: #13795b;
border-color: #13795b;
}
.btn-outline-teal-700:hover {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.btn-check:focus + .btn-outline-teal-700,
.btn-outline-teal-700:focus {
box-shadow: 0 0 0 0.25rem rgba(19, 121, 91, 0.5);
}
.btn-check:checked + .btn-outline-teal-700,
.btn-check:active + .btn-outline-teal-700,
.btn-outline-teal-700:active,
.btn-outline-teal-700.active,
.btn-outline-teal-700.dropdown-toggle.show {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.btn-check:checked + .btn-outline-teal-700:focus,
.btn-check:active + .btn-outline-teal-700:focus,
.btn-outline-teal-700:active:focus,
.btn-outline-teal-700.active:focus,
.btn-outline-teal-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(19, 121, 91, 0.5);
}
.btn-outline-teal-700:disabled,
.btn-outline-teal-700.disabled {
color: #13795b;
background-color: transparent;
}
.btn-outline-teal-800 {
color: #0d503c;
border-color: #0d503c;
}
.btn-outline-teal-800:hover {
color: #fff;
background-color: #0d503c;
border-color: #0d503c;
}
.btn-check:focus + .btn-outline-teal-800,
.btn-outline-teal-800:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 80, 60, 0.5);
}
.btn-check:checked + .btn-outline-teal-800,
.btn-check:active + .btn-outline-teal-800,
.btn-outline-teal-800:active,
.btn-outline-teal-800.active,
.btn-outline-teal-800.dropdown-toggle.show {
color: #fff;
background-color: #0d503c;
border-color: #0d503c;
}
.btn-check:checked + .btn-outline-teal-800:focus,
.btn-check:active + .btn-outline-teal-800:focus,
.btn-outline-teal-800:active:focus,
.btn-outline-teal-800.active:focus,
.btn-outline-teal-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 80, 60, 0.5);
}
.btn-outline-teal-800:disabled,
.btn-outline-teal-800.disabled {
color: #0d503c;
background-color: transparent;
}
.btn-outline-teal-900 {
color: #06281e;
border-color: #06281e;
}
.btn-outline-teal-900:hover {
color: #fff;
background-color: #06281e;
border-color: #06281e;
}
.btn-check:focus + .btn-outline-teal-900,
.btn-outline-teal-900:focus {
box-shadow: 0 0 0 0.25rem rgba(6, 40, 30, 0.5);
}
.btn-check:checked + .btn-outline-teal-900,
.btn-check:active + .btn-outline-teal-900,
.btn-outline-teal-900:active,
.btn-outline-teal-900.active,
.btn-outline-teal-900.dropdown-toggle.show {
color: #fff;
background-color: #06281e;
border-color: #06281e;
}
.btn-check:checked + .btn-outline-teal-900:focus,
.btn-check:active + .btn-outline-teal-900:focus,
.btn-outline-teal-900:active:focus,
.btn-outline-teal-900.active:focus,
.btn-outline-teal-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(6, 40, 30, 0.5);
}
.btn-outline-teal-900:disabled,
.btn-outline-teal-900.disabled {
color: #06281e;
background-color: transparent;
}
.btn-outline-cyan {
color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-outline-cyan:hover {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-cyan,
.btn-outline-cyan:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-cyan,
.btn-check:active + .btn-outline-cyan,
.btn-outline-cyan:active,
.btn-outline-cyan.active,
.btn-outline-cyan.dropdown-toggle.show {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-cyan:focus,
.btn-check:active + .btn-outline-cyan:focus,
.btn-outline-cyan:active:focus,
.btn-outline-cyan.active:focus,
.btn-outline-cyan.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-cyan:disabled,
.btn-outline-cyan.disabled {
color: #0dcaf0;
background-color: transparent;
}
.btn-outline-cyan-100 {
color: #cff4fc;
border-color: #cff4fc;
}
.btn-outline-cyan-100:hover {
color: #000;
background-color: #cff4fc;
border-color: #cff4fc;
}
.btn-check:focus + .btn-outline-cyan-100,
.btn-outline-cyan-100:focus {
box-shadow: 0 0 0 0.25rem rgba(207, 244, 252, 0.5);
}
.btn-check:checked + .btn-outline-cyan-100,
.btn-check:active + .btn-outline-cyan-100,
.btn-outline-cyan-100:active,
.btn-outline-cyan-100.active,
.btn-outline-cyan-100.dropdown-toggle.show {
color: #000;
background-color: #cff4fc;
border-color: #cff4fc;
}
.btn-check:checked + .btn-outline-cyan-100:focus,
.btn-check:active + .btn-outline-cyan-100:focus,
.btn-outline-cyan-100:active:focus,
.btn-outline-cyan-100.active:focus,
.btn-outline-cyan-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(207, 244, 252, 0.5);
}
.btn-outline-cyan-100:disabled,
.btn-outline-cyan-100.disabled {
color: #cff4fc;
background-color: transparent;
}
.btn-outline-cyan-200 {
color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-outline-cyan-200:hover {
color: #000;
background-color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-check:focus + .btn-outline-cyan-200,
.btn-outline-cyan-200:focus {
box-shadow: 0 0 0 0.25rem rgba(158, 234, 249, 0.5);
}
.btn-check:checked + .btn-outline-cyan-200,
.btn-check:active + .btn-outline-cyan-200,
.btn-outline-cyan-200:active,
.btn-outline-cyan-200.active,
.btn-outline-cyan-200.dropdown-toggle.show {
color: #000;
background-color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-check:checked + .btn-outline-cyan-200:focus,
.btn-check:active + .btn-outline-cyan-200:focus,
.btn-outline-cyan-200:active:focus,
.btn-outline-cyan-200.active:focus,
.btn-outline-cyan-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(158, 234, 249, 0.5);
}
.btn-outline-cyan-200:disabled,
.btn-outline-cyan-200.disabled {
color: #9eeaf9;
background-color: transparent;
}
.btn-outline-cyan-300 {
color: #6edff6;
border-color: #6edff6;
}
.btn-outline-cyan-300:hover {
color: #000;
background-color: #6edff6;
border-color: #6edff6;
}
.btn-check:focus + .btn-outline-cyan-300,
.btn-outline-cyan-300:focus {
box-shadow: 0 0 0 0.25rem rgba(110, 223, 246, 0.5);
}
.btn-check:checked + .btn-outline-cyan-300,
.btn-check:active + .btn-outline-cyan-300,
.btn-outline-cyan-300:active,
.btn-outline-cyan-300.active,
.btn-outline-cyan-300.dropdown-toggle.show {
color: #000;
background-color: #6edff6;
border-color: #6edff6;
}
.btn-check:checked + .btn-outline-cyan-300:focus,
.btn-check:active + .btn-outline-cyan-300:focus,
.btn-outline-cyan-300:active:focus,
.btn-outline-cyan-300.active:focus,
.btn-outline-cyan-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(110, 223, 246, 0.5);
}
.btn-outline-cyan-300:disabled,
.btn-outline-cyan-300.disabled {
color: #6edff6;
background-color: transparent;
}
.btn-outline-cyan-400 {
color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-outline-cyan-400:hover {
color: #000;
background-color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-check:focus + .btn-outline-cyan-400,
.btn-outline-cyan-400:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 213, 243, 0.5);
}
.btn-check:checked + .btn-outline-cyan-400,
.btn-check:active + .btn-outline-cyan-400,
.btn-outline-cyan-400:active,
.btn-outline-cyan-400.active,
.btn-outline-cyan-400.dropdown-toggle.show {
color: #000;
background-color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-check:checked + .btn-outline-cyan-400:focus,
.btn-check:active + .btn-outline-cyan-400:focus,
.btn-outline-cyan-400:active:focus,
.btn-outline-cyan-400.active:focus,
.btn-outline-cyan-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 213, 243, 0.5);
}
.btn-outline-cyan-400:disabled,
.btn-outline-cyan-400.disabled {
color: #3dd5f3;
background-color: transparent;
}
.btn-outline-cyan-500 {
color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-outline-cyan-500:hover {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-cyan-500,
.btn-outline-cyan-500:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-cyan-500,
.btn-check:active + .btn-outline-cyan-500,
.btn-outline-cyan-500:active,
.btn-outline-cyan-500.active,
.btn-outline-cyan-500.dropdown-toggle.show {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-cyan-500:focus,
.btn-check:active + .btn-outline-cyan-500:focus,
.btn-outline-cyan-500:active:focus,
.btn-outline-cyan-500.active:focus,
.btn-outline-cyan-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-cyan-500:disabled,
.btn-outline-cyan-500.disabled {
color: #0dcaf0;
background-color: transparent;
}
.btn-outline-cyan-600 {
color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-outline-cyan-600:hover {
color: #000;
background-color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-check:focus + .btn-outline-cyan-600,
.btn-outline-cyan-600:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 162, 192, 0.5);
}
.btn-check:checked + .btn-outline-cyan-600,
.btn-check:active + .btn-outline-cyan-600,
.btn-outline-cyan-600:active,
.btn-outline-cyan-600.active,
.btn-outline-cyan-600.dropdown-toggle.show {
color: #000;
background-color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-check:checked + .btn-outline-cyan-600:focus,
.btn-check:active + .btn-outline-cyan-600:focus,
.btn-outline-cyan-600:active:focus,
.btn-outline-cyan-600.active:focus,
.btn-outline-cyan-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 162, 192, 0.5);
}
.btn-outline-cyan-600:disabled,
.btn-outline-cyan-600.disabled {
color: #0aa2c0;
background-color: transparent;
}
.btn-outline-cyan-700 {
color: #087990;
border-color: #087990;
}
.btn-outline-cyan-700:hover {
color: #fff;
background-color: #087990;
border-color: #087990;
}
.btn-check:focus + .btn-outline-cyan-700,
.btn-outline-cyan-700:focus {
box-shadow: 0 0 0 0.25rem rgba(8, 121, 144, 0.5);
}
.btn-check:checked + .btn-outline-cyan-700,
.btn-check:active + .btn-outline-cyan-700,
.btn-outline-cyan-700:active,
.btn-outline-cyan-700.active,
.btn-outline-cyan-700.dropdown-toggle.show {
color: #fff;
background-color: #087990;
border-color: #087990;
}
.btn-check:checked + .btn-outline-cyan-700:focus,
.btn-check:active + .btn-outline-cyan-700:focus,
.btn-outline-cyan-700:active:focus,
.btn-outline-cyan-700.active:focus,
.btn-outline-cyan-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(8, 121, 144, 0.5);
}
.btn-outline-cyan-700:disabled,
.btn-outline-cyan-700.disabled {
color: #087990;
background-color: transparent;
}
.btn-outline-cyan-800 {
color: #055160;
border-color: #055160;
}
.btn-outline-cyan-800:hover {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.btn-check:focus + .btn-outline-cyan-800,
.btn-outline-cyan-800:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 81, 96, 0.5);
}
.btn-check:checked + .btn-outline-cyan-800,
.btn-check:active + .btn-outline-cyan-800,
.btn-outline-cyan-800:active,
.btn-outline-cyan-800.active,
.btn-outline-cyan-800.dropdown-toggle.show {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.btn-check:checked + .btn-outline-cyan-800:focus,
.btn-check:active + .btn-outline-cyan-800:focus,
.btn-outline-cyan-800:active:focus,
.btn-outline-cyan-800.active:focus,
.btn-outline-cyan-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 81, 96, 0.5);
}
.btn-outline-cyan-800:disabled,
.btn-outline-cyan-800.disabled {
color: #055160;
background-color: transparent;
}
.btn-outline-cyan-900 {
color: #032830;
border-color: #032830;
}
.btn-outline-cyan-900:hover {
color: #fff;
background-color: #032830;
border-color: #032830;
}
.btn-check:focus + .btn-outline-cyan-900,
.btn-outline-cyan-900:focus {
box-shadow: 0 0 0 0.25rem rgba(3, 40, 48, 0.5);
}
.btn-check:checked + .btn-outline-cyan-900,
.btn-check:active + .btn-outline-cyan-900,
.btn-outline-cyan-900:active,
.btn-outline-cyan-900.active,
.btn-outline-cyan-900.dropdown-toggle.show {
color: #fff;
background-color: #032830;
border-color: #032830;
}
.btn-check:checked + .btn-outline-cyan-900:focus,
.btn-check:active + .btn-outline-cyan-900:focus,
.btn-outline-cyan-900:active:focus,
.btn-outline-cyan-900.active:focus,
.btn-outline-cyan-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(3, 40, 48, 0.5);
}
.btn-outline-cyan-900:disabled,
.btn-outline-cyan-900.disabled {
color: #032830;
background-color: transparent;
}
.btn-outline-gray-100 {
color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-gray-100:hover {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-gray-100,
.btn-outline-gray-100:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-gray-100,
.btn-check:active + .btn-outline-gray-100,
.btn-outline-gray-100:active,
.btn-outline-gray-100.active,
.btn-outline-gray-100.dropdown-toggle.show {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-gray-100:focus,
.btn-check:active + .btn-outline-gray-100:focus,
.btn-outline-gray-100:active:focus,
.btn-outline-gray-100.active:focus,
.btn-outline-gray-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-gray-100:disabled,
.btn-outline-gray-100.disabled {
color: #f8f9fa;
background-color: transparent;
}
.btn-outline-gray-200 {
color: #e9ecef;
border-color: #e9ecef;
}
.btn-outline-gray-200:hover {
color: #000;
background-color: #e9ecef;
border-color: #e9ecef;
}
.btn-check:focus + .btn-outline-gray-200,
.btn-outline-gray-200:focus {
box-shadow: 0 0 0 0.25rem rgba(233, 236, 239, 0.5);
}
.btn-check:checked + .btn-outline-gray-200,
.btn-check:active + .btn-outline-gray-200,
.btn-outline-gray-200:active,
.btn-outline-gray-200.active,
.btn-outline-gray-200.dropdown-toggle.show {
color: #000;
background-color: #e9ecef;
border-color: #e9ecef;
}
.btn-check:checked + .btn-outline-gray-200:focus,
.btn-check:active + .btn-outline-gray-200:focus,
.btn-outline-gray-200:active:focus,
.btn-outline-gray-200.active:focus,
.btn-outline-gray-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(233, 236, 239, 0.5);
}
.btn-outline-gray-200:disabled,
.btn-outline-gray-200.disabled {
color: #e9ecef;
background-color: transparent;
}
.btn-outline-gray-300 {
color: #dee2e6;
border-color: #dee2e6;
}
.btn-outline-gray-300:hover {
color: #000;
background-color: #dee2e6;
border-color: #dee2e6;
}
.btn-check:focus + .btn-outline-gray-300,
.btn-outline-gray-300:focus {
box-shadow: 0 0 0 0.25rem rgba(222, 226, 230, 0.5);
}
.btn-check:checked + .btn-outline-gray-300,
.btn-check:active + .btn-outline-gray-300,
.btn-outline-gray-300:active,
.btn-outline-gray-300.active,
.btn-outline-gray-300.dropdown-toggle.show {
color: #000;
background-color: #dee2e6;
border-color: #dee2e6;
}
.btn-check:checked + .btn-outline-gray-300:focus,
.btn-check:active + .btn-outline-gray-300:focus,
.btn-outline-gray-300:active:focus,
.btn-outline-gray-300.active:focus,
.btn-outline-gray-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(222, 226, 230, 0.5);
}
.btn-outline-gray-300:disabled,
.btn-outline-gray-300.disabled {
color: #dee2e6;
background-color: transparent;
}
.btn-outline-gray-400 {
color: #ced4da;
border-color: #ced4da;
}
.btn-outline-gray-400:hover {
color: #000;
background-color: #ced4da;
border-color: #ced4da;
}
.btn-check:focus + .btn-outline-gray-400,
.btn-outline-gray-400:focus {
box-shadow: 0 0 0 0.25rem rgba(206, 212, 218, 0.5);
}
.btn-check:checked + .btn-outline-gray-400,
.btn-check:active + .btn-outline-gray-400,
.btn-outline-gray-400:active,
.btn-outline-gray-400.active,
.btn-outline-gray-400.dropdown-toggle.show {
color: #000;
background-color: #ced4da;
border-color: #ced4da;
}
.btn-check:checked + .btn-outline-gray-400:focus,
.btn-check:active + .btn-outline-gray-400:focus,
.btn-outline-gray-400:active:focus,
.btn-outline-gray-400.active:focus,
.btn-outline-gray-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(206, 212, 218, 0.5);
}
.btn-outline-gray-400:disabled,
.btn-outline-gray-400.disabled {
color: #ced4da;
background-color: transparent;
}
.btn-outline-gray-500 {
color: #adb5bd;
border-color: #adb5bd;
}
.btn-outline-gray-500:hover {
color: #000;
background-color: #adb5bd;
border-color: #adb5bd;
}
.btn-check:focus + .btn-outline-gray-500,
.btn-outline-gray-500:focus {
box-shadow: 0 0 0 0.25rem rgba(173, 181, 189, 0.5);
}
.btn-check:checked + .btn-outline-gray-500,
.btn-check:active + .btn-outline-gray-500,
.btn-outline-gray-500:active,
.btn-outline-gray-500.active,
.btn-outline-gray-500.dropdown-toggle.show {
color: #000;
background-color: #adb5bd;
border-color: #adb5bd;
}
.btn-check:checked + .btn-outline-gray-500:focus,
.btn-check:active + .btn-outline-gray-500:focus,
.btn-outline-gray-500:active:focus,
.btn-outline-gray-500.active:focus,
.btn-outline-gray-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(173, 181, 189, 0.5);
}
.btn-outline-gray-500:disabled,
.btn-outline-gray-500.disabled {
color: #adb5bd;
background-color: transparent;
}
.btn-outline-gray-600 {
color: #6c757d;
border-color: #6c757d;
}
.btn-outline-gray-600:hover {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-check:focus + .btn-outline-gray-600,
.btn-outline-gray-600:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-gray-600,
.btn-check:active + .btn-outline-gray-600,
.btn-outline-gray-600:active,
.btn-outline-gray-600.active,
.btn-outline-gray-600.dropdown-toggle.show {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-check:checked + .btn-outline-gray-600:focus,
.btn-check:active + .btn-outline-gray-600:focus,
.btn-outline-gray-600:active:focus,
.btn-outline-gray-600.active:focus,
.btn-outline-gray-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-gray-600:disabled,
.btn-outline-gray-600.disabled {
color: #6c757d;
background-color: transparent;
}
.btn-outline-gray-700 {
color: #495057;
border-color: #495057;
}
.btn-outline-gray-700:hover {
color: #fff;
background-color: #495057;
border-color: #495057;
}
.btn-check:focus + .btn-outline-gray-700,
.btn-outline-gray-700:focus {
box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-check:checked + .btn-outline-gray-700,
.btn-check:active + .btn-outline-gray-700,
.btn-outline-gray-700:active,
.btn-outline-gray-700.active,
.btn-outline-gray-700.dropdown-toggle.show {
color: #fff;
background-color: #495057;
border-color: #495057;
}
.btn-check:checked + .btn-outline-gray-700:focus,
.btn-check:active + .btn-outline-gray-700:focus,
.btn-outline-gray-700:active:focus,
.btn-outline-gray-700.active:focus,
.btn-outline-gray-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-outline-gray-700:disabled,
.btn-outline-gray-700.disabled {
color: #495057;
background-color: transparent;
}
.btn-outline-gray-800 {
color: #343a40;
border-color: #343a40;
}
.btn-outline-gray-800:hover {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.btn-check:focus + .btn-outline-gray-800,
.btn-outline-gray-800:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 58, 64, 0.5);
}
.btn-check:checked + .btn-outline-gray-800,
.btn-check:active + .btn-outline-gray-800,
.btn-outline-gray-800:active,
.btn-outline-gray-800.active,
.btn-outline-gray-800.dropdown-toggle.show {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.btn-check:checked + .btn-outline-gray-800:focus,
.btn-check:active + .btn-outline-gray-800:focus,
.btn-outline-gray-800:active:focus,
.btn-outline-gray-800.active:focus,
.btn-outline-gray-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 58, 64, 0.5);
}
.btn-outline-gray-800:disabled,
.btn-outline-gray-800.disabled {
color: #343a40;
background-color: transparent;
}
.btn-outline-gray-900 {
color: #212529;
border-color: #212529;
}
.btn-outline-gray-900:hover {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-check:focus + .btn-outline-gray-900,
.btn-outline-gray-900:focus {
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-gray-900,
.btn-check:active + .btn-outline-gray-900,
.btn-outline-gray-900:active,
.btn-outline-gray-900.active,
.btn-outline-gray-900.dropdown-toggle.show {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-check:checked + .btn-outline-gray-900:focus,
.btn-check:active + .btn-outline-gray-900:focus,
.btn-outline-gray-900:active:focus,
.btn-outline-gray-900.active:focus,
.btn-outline-gray-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-gray-900:disabled,
.btn-outline-gray-900.disabled {
color: #212529;
background-color: transparent;
}
.btn-outline-white {
color: #fff;
border-color: #fff;
}
.btn-outline-white:hover {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-check:focus + .btn-outline-white,
.btn-outline-white:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-white,
.btn-check:active + .btn-outline-white,
.btn-outline-white:active,
.btn-outline-white.active,
.btn-outline-white.dropdown-toggle.show {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-check:checked + .btn-outline-white:focus,
.btn-check:active + .btn-outline-white:focus,
.btn-outline-white:active:focus,
.btn-outline-white.active:focus,
.btn-outline-white.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-outline-white:disabled,
.btn-outline-white.disabled {
color: #fff;
background-color: transparent;
}
.btn-link {
font-weight: 400;
color: #0d6efd;
text-decoration: underline;
}
.btn-link:hover {
color: #0a58ca;
}
.btn-link:disabled,
.btn-link.disabled {
color: #6c757d;
}
.btn-lg,
.btn-group-lg > .btn {
padding: 0.5rem 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.btn-sm,
.btn-group-sm > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
border-radius: 0.2rem;
}
.fade {
transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
.fade {
transition: none;
}
}
.fade:not(.show) {
opacity: 0;
}
.collapse:not(.show) {
display: none;
}
.collapsing {
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing {
transition: none;
}
}
.dropup,
.dropend,
.dropdown,
.dropstart {
position: relative;
}
.dropdown-toggle {
white-space: nowrap;
}
.dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid;
border-right: 0.3em solid transparent;
border-bottom: 0;
border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
margin-left: 0;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
min-width: 10rem;
padding: 0.5rem 0;
margin: 0.125rem 0 0;
font-size: 1rem;
color: #212529;
text-align: left;
list-style: none;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
}
.dropdown-menu[style] {
right: auto !important;
}
.dropdown-menu-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
@media (min-width: 576px) {
.dropdown-menu-sm-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-sm-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
@media (min-width: 768px) {
.dropdown-menu-md-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-md-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
@media (min-width: 992px) {
.dropdown-menu-lg-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-lg-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
@media (min-width: 1200px) {
.dropdown-menu-xl-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-xl-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
@media (min-width: 1400px) {
.dropdown-menu-xxl-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-xxl-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
.dropup .dropdown-menu {
top: auto;
bottom: 100%;
margin-top: 0;
margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0;
border-right: 0.3em solid transparent;
border-bottom: 0.3em solid;
border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropend .dropdown-menu {
top: 0;
right: auto;
left: 100%;
margin-top: 0;
margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid transparent;
border-right: 0;
border-bottom: 0.3em solid transparent;
border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropend .dropdown-toggle::after {
vertical-align: 0;
}
.dropstart .dropdown-menu {
top: 0;
right: 100%;
left: auto;
margin-top: 0;
margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
}
.dropstart .dropdown-toggle::after {
display: none;
}
.dropstart .dropdown-toggle::before {
display: inline-block;
margin-right: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid transparent;
border-right: 0.3em solid;
border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropstart .dropdown-toggle::before {
vertical-align: 0;
}
.dropdown-divider {
height: 0;
margin: 0.5rem 0;
overflow: hidden;
border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-item {
display: block;
width: 100%;
padding: 0.25rem 1rem;
clear: both;
font-weight: 400;
color: #212529;
text-align: inherit;
text-decoration: none;
white-space: nowrap;
background-color: transparent;
border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
color: #1e2125;
background-color: #f8f9fa;
}
.dropdown-item.active,
.dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #0d6efd;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: transparent;
}
.dropdown-menu.show {
display: block;
}
.dropdown-header {
display: block;
padding: 0.5rem 1rem;
margin-bottom: 0;
font-size: 0.875rem;
color: #6c757d;
white-space: nowrap;
}
.dropdown-item-text {
display: block;
padding: 0.25rem 1rem;
color: #212529;
}
.dropdown-menu-dark {
color: #dee2e6;
background-color: #343a40;
border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
color: #fff;
background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
color: #fff;
background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
color: #adb5bd;
}
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-flex;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
z-index: 1;
}
.btn-toolbar {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.btn-toolbar .input-group {
width: auto;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
padding-right: 0.5625rem;
padding-left: 0.5625rem;
}
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after {
margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
margin-right: 0;
}
.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
padding-right: 0.375rem;
padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
padding-right: 0.75rem;
padding-left: 0.75rem;
}
.btn-group-vertical {
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.nav {
display: flex;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
text-decoration: none;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.nav-link {
transition: none;
}
}
.nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}
.nav-tabs {
border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
margin-bottom: -1px;
border: 1px solid transparent;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
color: #6c757d;
background-color: transparent;
border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #495057;
background-color: #fff;
border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.nav-pills .nav-link {
border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
color: #fff;
background-color: #0d6efd;
}
.nav-fill > .nav-link,
.nav-fill .nav-item {
flex: 1 1 auto;
text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
flex-basis: 0;
flex-grow: 1;
text-align: center;
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.navbar {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
display: flex;
flex-wrap: inherit;
align-items: center;
justify-content: space-between;
}
.navbar-brand {
padding-top: 0.3125rem;
padding-bottom: 0.3125rem;
margin-right: 1rem;
font-size: 1.25rem;
text-decoration: none;
white-space: nowrap;
}
.navbar-nav {
display: flex;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.navbar-nav .nav-link {
padding-right: 0;
padding-left: 0;
}
.navbar-nav .dropdown-menu {
position: static;
}
.navbar-text {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.navbar-collapse {
align-items: center;
width: 100%;
}
.navbar-toggler {
padding: 0.25rem 0.75rem;
font-size: 1.25rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.navbar-toggler {
transition: none;
}
}
.navbar-toggler:hover {
text-decoration: none;
}
.navbar-toggler:focus {
text-decoration: none;
outline: 0;
box-shadow: 0 0 0 0.25rem;
}
.navbar-toggler-icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
@media (min-width: 576px) {
.navbar-expand-sm {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-sm .navbar-nav {
flex-direction: row;
}
.navbar-expand-sm .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-sm .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-sm .navbar-collapse {
display: flex !important;
}
.navbar-expand-sm .navbar-toggler {
display: none;
}
}
@media (min-width: 768px) {
.navbar-expand-md {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-md .navbar-nav {
flex-direction: row;
}
.navbar-expand-md .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-md .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-md .navbar-collapse {
display: flex !important;
}
.navbar-expand-md .navbar-toggler {
display: none;
}
}
@media (min-width: 992px) {
.navbar-expand-lg {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
flex-direction: row;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-lg .navbar-collapse {
display: flex !important;
}
.navbar-expand-lg .navbar-toggler {
display: none;
}
}
@media (min-width: 1200px) {
.navbar-expand-xl {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-xl .navbar-nav {
flex-direction: row;
}
.navbar-expand-xl .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-xl .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-xl .navbar-collapse {
display: flex !important;
}
.navbar-expand-xl .navbar-toggler {
display: none;
}
}
@media (min-width: 1400px) {
.navbar-expand-xxl {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-xxl .navbar-nav {
flex-direction: row;
}
.navbar-expand-xxl .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-xxl .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-xxl .navbar-collapse {
display: flex !important;
}
.navbar-expand-xxl .navbar-toggler {
display: none;
}
}
.navbar-expand {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand .navbar-nav {
flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand .navbar-collapse {
display: flex !important;
}
.navbar-expand .navbar-toggler {
display: none;
}
.navbar-light .navbar-brand {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
color: rgba(0, 0, 0, 0.55);
border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
color: #fff;
}
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
color: #fff;
}
.navbar-dark .navbar-toggler {
color: rgba(255, 255, 255, 0.55);
border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
color: #fff;
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem;
}
.card > hr {
margin-right: 0;
margin-left: 0;
}
.card > .list-group {
border-top: inherit;
border-bottom: inherit;
}
.card > .list-group:first-child {
border-top-width: 0;
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
border-bottom-width: 0;
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
border-top: 0;
}
.card-body {
flex: 1 1 auto;
padding: 1rem 1rem;
}
.card-title {
margin-bottom: 0.5rem;
}
.card-subtitle {
margin-top: -0.25rem;
margin-bottom: 0;
}
.card-text:last-child {
margin-bottom: 0;
}
.card-link:hover {
text-decoration: none;
}
.card-link + .card-link {
margin-left: 1rem ;
}
.card-header {
padding: 0.5rem 1rem;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
padding: 0.5rem 1rem;
background-color: rgba(0, 0, 0, 0.03);
border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
margin-right: -0.5rem;
margin-bottom: -0.5rem;
margin-left: -0.5rem;
border-bottom: 0;
}
.card-header-pills {
margin-right: -0.5rem;
margin-left: -0.5rem;
}
.card-img-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
border-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-top,
.card-img-bottom {
width: 100%;
}
.card-img,
.card-img-top {
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-group > .card {
margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
.card-group {
display: flex;
flex-flow: row wrap;
}
.card-group > .card {
flex: 1 0 0%;
margin-bottom: 0;
}
.card-group > .card + .card {
margin-left: 0;
border-left: 0;
}
.card-group > .card:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
border-top-right-radius: 0;
}
.card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
border-bottom-right-radius: 0;
}
.card-group > .card:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
border-top-left-radius: 0;
}
.card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
border-bottom-left-radius: 0;
}
}
.accordion-button {
position: relative;
display: flex;
align-items: center;
width: 100%;
padding: 1rem 1.25rem;
font-size: 1rem;
color: #212529;
background-color: transparent;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0;
overflow-anchor: none;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button {
transition: none;
}
}
.accordion-button.collapsed {
border-bottom-width: 0;
}
.accordion-button:not(.collapsed) {
color: #0c63e4;
background-color: #e7f1ff;
}
.accordion-button:not(.collapsed)::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: rotate(180deg);
}
.accordion-button::after {
flex-shrink: 0;
width: 1.25rem;
height: 1.25rem;
margin-left: auto;
content: "";
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-size: 1.25rem;
transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button::after {
transition: none;
}
}
.accordion-button:hover {
z-index: 2;
}
.accordion-button:focus {
z-index: 3;
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
margin-bottom: 0;
}
.accordion-item:first-of-type .accordion-button {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
border-bottom-width: 1px;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-collapse {
border-bottom-width: 1px;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-collapse {
border: solid rgba(0, 0, 0, 0.125);
border-width: 0 1px;
}
.accordion-body {
padding: 1rem 1.25rem;
}
.accordion-flush .accordion-button {
border-right: 0;
border-left: 0;
border-radius: 0;
}
.accordion-flush .accordion-collapse {
border-width: 0;
}
.accordion-flush .accordion-item:first-of-type .accordion-button {
border-top-width: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
border-bottom-width: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.breadcrumb {
display: flex;
flex-wrap: wrap;
padding: 0 0;
margin-bottom: 1rem;
list-style: none;
}
.breadcrumb-item + .breadcrumb-item {
padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
float: left;
padding-right: 0.5rem;
color: #6c757d;
content: var(--bs-breadcrumb-divider, "/") ;
}
.breadcrumb-item.active {
color: #6c757d;
}
.pagination {
display: flex;
padding-left: 0;
list-style: none;
}
.page-link {
position: relative;
display: block;
color: #0d6efd;
text-decoration: none;
background-color: #fff;
border: 1px solid #dee2e6;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.page-link {
transition: none;
}
}
.page-link:hover {
z-index: 2;
color: #0a58ca;
background-color: #e9ecef;
border-color: #dee2e6;
}
.page-link:focus {
z-index: 3;
color: #0a58ca;
background-color: #e9ecef;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.page-item:not(:first-child) .page-link {
margin-left: -1px;
}
.page-item.active .page-link {
z-index: 3;
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.page-item.disabled .page-link {
color: #6c757d;
pointer-events: none;
background-color: #fff;
border-color: #dee2e6;
}
.page-link {
padding: 0.375rem 0.75rem;
}
.page-item:first-child .page-link {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
.pagination-lg .page-link {
padding: 0.75rem 1.5rem;
font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
border-top-left-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
border-top-right-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
border-top-left-radius: 0.2rem;
border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
border-top-right-radius: 0.2rem;
border-bottom-right-radius: 0.2rem;
}
.badge {
display: inline-block;
padding: 0.35em 0.65em;
font-size: 0.75em;
font-weight: 700;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25rem;
}
.badge:empty {
display: none;
}
.btn .badge {
position: relative;
top: -1px;
}
.alert {
position: relative;
padding: 1rem 1rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;
}
.alert-heading {
color: inherit;
}
.alert-link {
font-weight: 700;
}
.alert-dismissible {
padding-right: 3rem;
}
.alert-dismissible .btn-close {
position: absolute;
top: 0;
right: 0;
z-index: 2;
padding: 1.25rem 1rem;
}
.alert-primary {
color: #084298;
background-color: #cfe2ff;
border-color: #b6d4fe;
}
.alert-primary .alert-link {
color: #06357a;
}
.alert-secondary {
color: #41464b;
background-color: #e2e3e5;
border-color: #d3d6d8;
}
.alert-secondary .alert-link {
color: #34383c;
}
.alert-success {
color: #0f5132;
background-color: #d1e7dd;
border-color: #badbcc;
}
.alert-success .alert-link {
color: #0c4128;
}
.alert-info {
color: #055160;
background-color: #cff4fc;
border-color: #b6effb;
}
.alert-info .alert-link {
color: #04414d;
}
.alert-warning {
color: #664d03;
background-color: #fff3cd;
border-color: #ffecb5;
}
.alert-warning .alert-link {
color: #523e02;
}
.alert-danger {
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
.alert-danger .alert-link {
color: #6a1a21;
}
.alert-light {
color: #636464;
background-color: #fefefe;
border-color: #fdfdfe;
}
.alert-light .alert-link {
color: #4f5050;
}
.alert-dark {
color: #141619;
background-color: #d3d3d4;
border-color: #bcbebf;
}
.alert-dark .alert-link {
color: #101214;
}
.alert-blue {
color: #084298;
background-color: #cfe2ff;
border-color: #b6d4fe;
}
.alert-blue .alert-link {
color: #06357a;
}
.alert-blue-100 {
color: #535a66;
background-color: #f5f9ff;
border-color: #f1f6ff;
}
.alert-blue-100 .alert-link {
color: #424852;
}
.alert-blue-200 {
color: #3f4f66;
background-color: #ecf3ff;
border-color: #e2eeff;
}
.alert-blue-200 .alert-link {
color: #323f52;
}
.alert-blue-300 {
color: #426598;
background-color: #e2eeff;
border-color: #d4e5ff;
}
.alert-blue-300 .alert-link {
color: #35517a;
}
.alert-blue-400 {
color: #255398;
background-color: #d8e8ff;
border-color: #c5dcfe;
}
.alert-blue-400 .alert-link {
color: #1e427a;
}
.alert-blue-500 {
color: #084298;
background-color: #cfe2ff;
border-color: #b6d4fe;
}
.alert-blue-500 .alert-link {
color: #06357a;
}
.alert-blue-600 {
color: #063579;
background-color: #cedef4;
border-color: #b6cdef;
}
.alert-blue-600 .alert-link {
color: #052a61;
}
.alert-blue-700 {
color: #05285b;
background-color: #ced9ea;
border-color: #b5c6e0;
}
.alert-blue-700 .alert-link {
color: #042049;
}
.alert-blue-800 {
color: #031a3d;
background-color: #cdd5e0;
border-color: #b4c0d1;
}
.alert-blue-800 .alert-link {
color: #021531;
}
.alert-blue-900 {
color: #020d1f;
background-color: #cdd0d6;
border-color: #b3b9c2;
}
.alert-blue-900 .alert-link {
color: #020a19;
}
.alert-indigo {
color: #3d0a91;
background-color: #e0cffc;
border-color: #d1b7fb;
}
.alert-indigo .alert-link {
color: #310874;
}
.alert-indigo-100 {
color: #5a5365;
background-color: #f9f5fe;
border-color: #f6f1fe;
}
.alert-indigo-100 .alert-link {
color: #484251;
}
.alert-indigo-200 {
color: #745f96;
background-color: #f3ecfe;
border-color: #ede2fe;
}
.alert-indigo-200 .alert-link {
color: #5d4c78;
}
.alert-indigo-300 {
color: #624394;
background-color: #ede2fd;
border-color: #e3d4fd;
}
.alert-indigo-300 .alert-link {
color: #4e3676;
}
.alert-indigo-400 {
color: #502693;
background-color: #e7d9fd;
border-color: #dac6fc;
}
.alert-indigo-400 .alert-link {
color: #401e76;
}
.alert-indigo-500 {
color: #3d0a91;
background-color: #e0cffc;
border-color: #d1b7fb;
}
.alert-indigo-500 .alert-link {
color: #310874;
}
.alert-indigo-600 {
color: #310874;
background-color: #dccff3;
border-color: #cbb6ed;
}
.alert-indigo-600 .alert-link {
color: #27065d;
}
.alert-indigo-700 {
color: #250657;
background-color: #d8cee9;
border-color: #c5b6de;
}
.alert-indigo-700 .alert-link {
color: #1e0546;
}
.alert-indigo-800 {
color: #19043a;
background-color: #d4cddf;
border-color: #bfb4d0;
}
.alert-indigo-800 .alert-link {
color: #14032e;
}
.alert-indigo-900 {
color: #0c021d;
background-color: #d0cdd6;
border-color: #b9b3c1;
}
.alert-indigo-900 .alert-link {
color: #0a0217;
}
.alert-purple {
color: #432874;
background-color: #e2d9f3;
border-color: #d4c6ec;
}
.alert-purple .alert-link {
color: #36205d;
}
.alert-purple-100 {
color: #5a5761;
background-color: #f9f7fd;
border-color: #f6f4fb;
}
.alert-purple-100 .alert-link {
color: #48464e;
}
.alert-purple-200 {
color: #4f485c;
background-color: #f3f0fa;
border-color: #eee8f8;
}
.alert-purple-200 .alert-link {
color: #3f3a4a;
}
.alert-purple-300 {
color: #655583;
background-color: #eee8f8;
border-color: #e5ddf4;
}
.alert-purple-300 .alert-link {
color: #514469;
}
.alert-purple-400 {
color: #543e7b;
background-color: #e8e1f5;
border-color: #ddd2f0;
}
.alert-purple-400 .alert-link {
color: #433262;
}
.alert-purple-500 {
color: #432874;
background-color: #e2d9f3;
border-color: #d4c6ec;
}
.alert-purple-500 .alert-link {
color: #36205d;
}
.alert-purple-600 {
color: #35205c;
background-color: #ded7eb;
border-color: #cdc2e1;
}
.alert-purple-600 .alert-link {
color: #2a1a4a;
}
.alert-purple-700 {
color: #281846;
background-color: #d9d4e3;
border-color: #c7bfd5;
}
.alert-purple-700 .alert-link {
color: #201338;
}
.alert-purple-800 {
color: #1a102e;
background-color: #d5d1db;
border-color: #c0baca;
}
.alert-purple-800 .alert-link {
color: #150d25;
}
.alert-purple-900 {
color: #0d0817;
background-color: #d0cfd4;
border-color: #b9b6be;
}
.alert-purple-900 .alert-link {
color: #0a0612;
}
.alert-pink {
color: #801f4f;
background-color: #f7d6e6;
border-color: #f3c2da;
}
.alert-pink .alert-link {
color: #66193f;
}
.alert-pink-100 {
color: #63565c;
background-color: #fdf7fa;
border-color: #fdf3f8;
}
.alert-pink-100 .alert-link {
color: #4f454a;
}
.alert-pink-200 {
color: #604552;
background-color: #fceff5;
border-color: #fae6f0;
}
.alert-pink-200 .alert-link {
color: #4d3742;
}
.alert-pink-300 {
color: #8a506d;
background-color: #fae7f0;
border-color: #f8dae9;
}
.alert-pink-300 .alert-link {
color: #6e4057;
}
.alert-pink-400 {
color: #85375e;
background-color: #f8deeb;
border-color: #f5cee2;
}
.alert-pink-400 .alert-link {
color: #6a2c4b;
}
.alert-pink-500 {
color: #801f4f;
background-color: #f7d6e6;
border-color: #f3c2da;
}
.alert-pink-500 .alert-link {
color: #66193f;
}
.alert-pink-600 {
color: #671940;
background-color: #eed4e1;
border-color: #e6bfd2;
}
.alert-pink-600 .alert-link {
color: #521433;
}
.alert-pink-700 {
color: #4d132f;
background-color: #e6d2dc;
border-color: #d9bcca;
}
.alert-pink-700 .alert-link {
color: #3e0f26;
}
.alert-pink-800 {
color: #340c20;
background-color: #ddd0d7;
border-color: #ccb9c2;
}
.alert-pink-800 .alert-link {
color: #2a0a1a;
}
.alert-pink-900 {
color: #1a0610;
background-color: #d5ced1;
border-color: #bfb6ba;
}
.alert-pink-900 .alert-link {
color: #15050d;
}
.alert-red {
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
.alert-red .alert-link {
color: #6a1a21;
}
.alert-red-100 {
color: #635657;
background-color: #fef7f8;
border-color: #fdf3f4;
}
.alert-red-100 .alert-link {
color: #4f4546;
}
.alert-red-200 {
color: #604648;
background-color: #fceff0;
border-color: #fbe7e9;
}
.alert-red-200 .alert-link {
color: #4d383a;
}
.alert-red-300 {
color: #8c5056;
background-color: #fbe7e9;
border-color: #f9dbdd;
}
.alert-red-300 .alert-link {
color: #704045;
}
.alert-red-400 {
color: #883840;
background-color: #f9dfe1;
border-color: #f7ced2;
}
.alert-red-400 .alert-link {
color: #6d2d33;
}
.alert-red-500 {
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
.alert-red-500 .alert-link {
color: #6a1a21;
}
.alert-red-600 {
color: #6a1921;
background-color: #efd4d7;
border-color: #e7bfc3;
}
.alert-red-600 .alert-link {
color: #55141a;
}
.alert-red-700 {
color: #4f1319;
background-color: #e6d2d4;
border-color: #dabcbf;
}
.alert-red-700 .alert-link {
color: #3f0f14;
}
.alert-red-800 {
color: #350d11;
background-color: #ded0d2;
border-color: #cdb9bb;
}
.alert-red-800 .alert-link {
color: #2a0a0e;
}
.alert-red-900 {
color: #1a0708;
background-color: #d5cecf;
border-color: #c0b6b7;
}
.alert-red-900 .alert-link {
color: #150606;
}
.alert-orange {
color: #984c0c;
background-color: #ffe5d0;
border-color: #fed8b9;
}
.alert-orange .alert-link {
color: #7a3d0a;
}
.alert-orange-100 {
color: #665c53;
background-color: #fffaf6;
border-color: #fff7f1;
}
.alert-orange-100 .alert-link {
color: #524a42;
}
.alert-orange-200 {
color: #665140;
background-color: #fff5ec;
border-color: #ffefe3;
}
.alert-orange-200 .alert-link {
color: #524133;
}
.alert-orange-300 {
color: #66472e;
background-color: #fff0e3;
border-color: #ffe8d5;
}
.alert-orange-300 .alert-link {
color: #523925;
}
.alert-orange-400 {
color: #985b28;
background-color: #ffead9;
border-color: #fee0c7;
}
.alert-orange-400 .alert-link {
color: #7a4920;
}
.alert-orange-500 {
color: #984c0c;
background-color: #ffe5d0;
border-color: #fed8b9;
}
.alert-orange-500 .alert-link {
color: #7a3d0a;
}
.alert-orange-600 {
color: #793d0a;
background-color: #f4e0cf;
border-color: #efd1b7;
}
.alert-orange-600 .alert-link {
color: #613108;
}
.alert-orange-700 {
color: #5b2e07;
background-color: #eadbce;
border-color: #e0c9b6;
}
.alert-orange-700 .alert-link {
color: #492506;
}
.alert-orange-800 {
color: #3d1e05;
background-color: #e0d6ce;
border-color: #d1c2b5;
}
.alert-orange-800 .alert-link {
color: #311804;
}
.alert-orange-900 {
color: #1f0f02;
background-color: #d6d1cd;
border-color: #c2bab4;
}
.alert-orange-900 .alert-link {
color: #190c02;
}
.alert-yellow {
color: #664d03;
background-color: #fff3cd;
border-color: #ffecb5;
}
.alert-yellow .alert-link {
color: #523e02;
}
.alert-yellow-100 {
color: #666152;
background-color: #fffdf5;
border-color: #fffbf0;
}
.alert-yellow-100 .alert-link {
color: #524e42;
}
.alert-yellow-200 {
color: #665c3e;
background-color: #fffaeb;
border-color: #fff8e1;
}
.alert-yellow-200 .alert-link {
color: #524a32;
}
.alert-yellow-300 {
color: #66572a;
background-color: #fff8e1;
border-color: #fff4d2;
}
.alert-yellow-300 .alert-link {
color: #524622;
}
.alert-yellow-400 {
color: #665217;
background-color: #fff5d7;
border-color: #fff0c4;
}
.alert-yellow-400 .alert-link {
color: #524212;
}
.alert-yellow-500 {
color: #664d03;
background-color: #fff3cd;
border-color: #ffecb5;
}
.alert-yellow-500 .alert-link {
color: #523e02;
}
.alert-yellow-600 {
color: #7a5c04;
background-color: #f5ebcd;
border-color: #f0e1b4;
}
.alert-yellow-600 .alert-link {
color: #624a03;
}
.alert-yellow-700 {
color: #5c4602;
background-color: #ebe3cd;
border-color: #e0d5b4;
}
.alert-yellow-700 .alert-link {
color: #4a3802;
}
.alert-yellow-800 {
color: #3d2e02;
background-color: #e0dbcd;
border-color: #d1cab3;
}
.alert-yellow-800 .alert-link {
color: #312502;
}
.alert-yellow-900 {
color: #1f1701;
background-color: #d6d4cc;
border-color: #c2beb3;
}
.alert-yellow-900 .alert-link {
color: #191201;
}
.alert-green {
color: #0f5132;
background-color: #d1e7dd;
border-color: #badbcc;
}
.alert-green .alert-link {
color: #0c4128;
}
.alert-green-100 {
color: #545c58;
background-color: #f6faf8;
border-color: #f1f8f5;
}
.alert-green-100 .alert-link {
color: #434a46;
}
.alert-green-200 {
color: #41534b;
background-color: #edf5f1;
border-color: #e3f1eb;
}
.alert-green-200 .alert-link {
color: #34423c;
}
.alert-green-300 {
color: #466e5b;
background-color: #e3f1ea;
border-color: #d6e9e0;
}
.alert-green-300 .alert-link {
color: #385849;
}
.alert-green-400 {
color: #2b5f47;
background-color: #daece4;
border-color: #c8e2d6;
}
.alert-green-400 .alert-link {
color: #224c39;
}
.alert-green-500 {
color: #0f5132;
background-color: #d1e7dd;
border-color: #badbcc;
}
.alert-green-500 .alert-link {
color: #0c4128;
}
.alert-green-600 {
color: #0c4128;
background-color: #d0e2d9;
border-color: #b9d3c7;
}
.alert-green-600 .alert-link {
color: #0a3420;
}
.alert-green-700 {
color: #09311e;
background-color: #cfdcd6;
border-color: #b7cbc2;
}
.alert-green-700 .alert-link {
color: #072718;
}
.alert-green-800 {
color: #062014;
background-color: #ced7d3;
border-color: #b6c3bd;
}
.alert-green-800 .alert-link {
color: #051a10;
}
.alert-green-900 {
color: #03100a;
background-color: #cdd1cf;
border-color: #b4bbb8;
}
.alert-green-900 .alert-link {
color: #020d08;
}
.alert-teal {
color: #13795b;
background-color: #d2f4ea;
border-color: #bcefe0;
}
.alert-teal .alert-link {
color: #0f6149;
}
.alert-teal-100 {
color: #54625e;
background-color: #f6fdfb;
border-color: #f2fcf9;
}
.alert-teal-100 .alert-link {
color: #434e4b;
}
.alert-teal-200 {
color: #425d55;
background-color: #edfbf7;
border-color: #e4f8f2;
}
.alert-teal-200 .alert-link {
color: #354a44;
}
.alert-teal-300 {
color: #30594d;
background-color: #e4f9f3;
border-color: #d7f5ec;
}
.alert-teal-300 .alert-link {
color: #26473e;
}
.alert-teal-400 {
color: #1f5545;
background-color: #dbf6ee;
border-color: #caf2e6;
}
.alert-teal-400 .alert-link {
color: #194437;
}
.alert-teal-500 {
color: #13795b;
background-color: #d2f4ea;
border-color: #bcefe0;
}
.alert-teal-500 .alert-link {
color: #0f6149;
}
.alert-teal-600 {
color: #106149;
background-color: #d1ece4;
border-color: #bae3d7;
}
.alert-teal-600 .alert-link {
color: #0d4e3a;
}
.alert-teal-700 {
color: #0b4937;
background-color: #d0e4de;
border-color: #b8d7ce;
}
.alert-teal-700 .alert-link {
color: #093a2c;
}
.alert-teal-800 {
color: #083024;
background-color: #cfdcd8;
border-color: #b6cbc5;
}
.alert-teal-800 .alert-link {
color: #06261d;
}
.alert-teal-900 {
color: #041812;
background-color: #cdd4d2;
border-color: #b4bfbc;
}
.alert-teal-900 .alert-link {
color: #03130e;
}
.alert-cyan {
color: #055160;
background-color: #cff4fc;
border-color: #b6effb;
}
.alert-cyan .alert-link {
color: #04414d;
}
.alert-cyan-100 {
color: #536265;
background-color: #f5fdfe;
border-color: #f1fcfe;
}
.alert-cyan-100 .alert-link {
color: #424e51;
}
.alert-cyan-200 {
color: #3f5e64;
background-color: #ecfbfe;
border-color: #e2f9fd;
}
.alert-cyan-200 .alert-link {
color: #324b50;
}
.alert-cyan-300 {
color: #2c5962;
background-color: #e2f9fd;
border-color: #d4f5fc;
}
.alert-cyan-300 .alert-link {
color: #23474e;
}
.alert-cyan-400 {
color: #185561;
background-color: #d8f7fd;
border-color: #c5f2fb;
}
.alert-cyan-400 .alert-link {
color: #13444e;
}
.alert-cyan-500 {
color: #055160;
background-color: #cff4fc;
border-color: #b6effb;
}
.alert-cyan-500 .alert-link {
color: #04414d;
}
.alert-cyan-600 {
color: #066173;
background-color: #ceecf2;
border-color: #b6e3ec;
}
.alert-cyan-600 .alert-link {
color: #054e5c;
}
.alert-cyan-700 {
color: #054956;
background-color: #cee4e9;
border-color: #b5d7de;
}
.alert-cyan-700 .alert-link {
color: #043a45;
}
.alert-cyan-800 {
color: #03313a;
background-color: #cddcdf;
border-color: #b4cbcf;
}
.alert-cyan-800 .alert-link {
color: #02272e;
}
.alert-cyan-900 {
color: #02181d;
background-color: #cdd4d6;
border-color: #b3bfc1;
}
.alert-cyan-900 .alert-link {
color: #021317;
}
.alert-gray-100 {
color: #636464;
background-color: #fefefe;
border-color: #fdfdfe;
}
.alert-gray-100 .alert-link {
color: #4f5050;
}
.alert-gray-200 {
color: #5d5e60;
background-color: #fbfbfc;
border-color: #f8f9fa;
}
.alert-gray-200 .alert-link {
color: #4a4b4d;
}
.alert-gray-300 {
color: #595a5c;
background-color: #f8f9fa;
border-color: #f5f6f8;
}
.alert-gray-300 .alert-link {
color: #47484a;
}
.alert-gray-400 {
color: #525557;
background-color: #f5f6f8;
border-color: #f0f2f4;
}
.alert-gray-400 .alert-link {
color: #424446;
}
.alert-gray-500 {
color: #686d71;
background-color: #eff0f2;
border-color: #e6e9eb;
}
.alert-gray-500 .alert-link {
color: #53575a;
}
.alert-gray-600 {
color: #41464b;
background-color: #e2e3e5;
border-color: #d3d6d8;
}
.alert-gray-600 .alert-link {
color: #34383c;
}
.alert-gray-700 {
color: #2c3034;
background-color: #dbdcdd;
border-color: #c8cbcd;
}
.alert-gray-700 .alert-link {
color: #23262a;
}
.alert-gray-800 {
color: #1f2326;
background-color: #d6d8d9;
border-color: #c2c4c6;
}
.alert-gray-800 .alert-link {
color: #191c1e;
}
.alert-gray-900 {
color: #141619;
background-color: #d3d3d4;
border-color: #bcbebf;
}
.alert-gray-900 .alert-link {
color: #101214;
}
.alert-white {
color: #666666;
background-color: white;
border-color: white;
}
.alert-white .alert-link {
color: #525252;
}
@-webkit-keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
@keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
.progress {
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #e9ecef;
border-radius: 0.25rem;
}
.progress-bar {
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #0d6efd;
transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar {
transition: none;
}
}
.progress-bar-striped {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 1rem 1rem;
}
.progress-bar-animated {
-webkit-animation: 1s linear infinite progress-bar-stripes;
animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar-animated {
-webkit-animation: none;
animation: none;
}
}
.list-group {
display: flex;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
border-radius: 0.25rem;
}
.list-group-item-action {
width: 100%;
color: #495057;
text-align: inherit;
}
.list-group-item-action:hover,
.list-group-item-action:focus {
z-index: 1;
color: #495057;
text-decoration: none;
background-color: #f8f9fa;
}
.list-group-item-action:active {
color: #212529;
background-color: #e9ecef;
}
.list-group-item {
position: relative;
display: block;
padding: 0.5rem 1rem;
text-decoration: none;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}
.list-group-item:last-child {
border-bottom-right-radius: inherit;
border-bottom-left-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: #fff;
}
.list-group-item.active {
z-index: 2;
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.list-group-item + .list-group-item {
border-top-width: 0;
}
.list-group-item + .list-group-item.active {
margin-top: -1px;
border-top-width: 1px;
}
.list-group-horizontal {
flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
@media (min-width: 576px) {
.list-group-horizontal-sm {
flex-direction: row;
}
.list-group-horizontal-sm > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-sm > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-sm > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-sm > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-sm > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
@media (min-width: 768px) {
.list-group-horizontal-md {
flex-direction: row;
}
.list-group-horizontal-md > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-md > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-md > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-md > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-md > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
@media (min-width: 992px) {
.list-group-horizontal-lg {
flex-direction: row;
}
.list-group-horizontal-lg > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-lg > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-lg > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-lg > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-lg > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
@media (min-width: 1200px) {
.list-group-horizontal-xl {
flex-direction: row;
}
.list-group-horizontal-xl > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-xl > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-xl > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-xl > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-xl > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
@media (min-width: 1400px) {
.list-group-horizontal-xxl {
flex-direction: row;
}
.list-group-horizontal-xxl > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-xxl > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-xxl > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-xxl > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
.list-group-flush {
border-radius: 0;
}
.list-group-flush > .list-group-item {
border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
border-bottom-width: 0;
}
.list-group-item-primary {
color: #084298;
background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
color: #084298;
background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.list-group-item-secondary {
color: #41464b;
background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
color: #41464b;
background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
color: #fff;
background-color: #41464b;
border-color: #41464b;
}
.list-group-item-success {
color: #0f5132;
background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
color: #0f5132;
background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.list-group-item-info {
color: #055160;
background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
color: #055160;
background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.list-group-item-warning {
color: #664d03;
background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
color: #664d03;
background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.list-group-item-danger {
color: #842029;
background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
color: #842029;
background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.list-group-item-light {
color: #636464;
background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
color: #636464;
background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
color: #fff;
background-color: #636464;
border-color: #636464;
}
.list-group-item-dark {
color: #141619;
background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
color: #141619;
background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
color: #fff;
background-color: #141619;
border-color: #141619;
}
.list-group-item-blue {
color: #084298;
background-color: #cfe2ff;
}
.list-group-item-blue.list-group-item-action:hover,
.list-group-item-blue.list-group-item-action:focus {
color: #084298;
background-color: #bacbe6;
}
.list-group-item-blue.list-group-item-action.active {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.list-group-item-blue-100 {
color: #535a66;
background-color: #f5f9ff;
}
.list-group-item-blue-100.list-group-item-action:hover,
.list-group-item-blue-100.list-group-item-action:focus {
color: #535a66;
background-color: #dde0e6;
}
.list-group-item-blue-100.list-group-item-action.active {
color: #fff;
background-color: #535a66;
border-color: #535a66;
}
.list-group-item-blue-200 {
color: #3f4f66;
background-color: #ecf3ff;
}
.list-group-item-blue-200.list-group-item-action:hover,
.list-group-item-blue-200.list-group-item-action:focus {
color: #3f4f66;
background-color: #d4dbe6;
}
.list-group-item-blue-200.list-group-item-action.active {
color: #fff;
background-color: #3f4f66;
border-color: #3f4f66;
}
.list-group-item-blue-300 {
color: #426598;
background-color: #e2eeff;
}
.list-group-item-blue-300.list-group-item-action:hover,
.list-group-item-blue-300.list-group-item-action:focus {
color: #426598;
background-color: #cbd6e6;
}
.list-group-item-blue-300.list-group-item-action.active {
color: #fff;
background-color: #426598;
border-color: #426598;
}
.list-group-item-blue-400 {
color: #255398;
background-color: #d8e8ff;
}
.list-group-item-blue-400.list-group-item-action:hover,
.list-group-item-blue-400.list-group-item-action:focus {
color: #255398;
background-color: #c2d1e6;
}
.list-group-item-blue-400.list-group-item-action.active {
color: #fff;
background-color: #255398;
border-color: #255398;
}
.list-group-item-blue-500 {
color: #084298;
background-color: #cfe2ff;
}
.list-group-item-blue-500.list-group-item-action:hover,
.list-group-item-blue-500.list-group-item-action:focus {
color: #084298;
background-color: #bacbe6;
}
.list-group-item-blue-500.list-group-item-action.active {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.list-group-item-blue-600 {
color: #063579;
background-color: #cedef4;
}
.list-group-item-blue-600.list-group-item-action:hover,
.list-group-item-blue-600.list-group-item-action:focus {
color: #063579;
background-color: #b9c8dc;
}
.list-group-item-blue-600.list-group-item-action.active {
color: #fff;
background-color: #063579;
border-color: #063579;
}
.list-group-item-blue-700 {
color: #05285b;
background-color: #ced9ea;
}
.list-group-item-blue-700.list-group-item-action:hover,
.list-group-item-blue-700.list-group-item-action:focus {
color: #05285b;
background-color: #b9c3d3;
}
.list-group-item-blue-700.list-group-item-action.active {
color: #fff;
background-color: #05285b;
border-color: #05285b;
}
.list-group-item-blue-800 {
color: #031a3d;
background-color: #cdd5e0;
}
.list-group-item-blue-800.list-group-item-action:hover,
.list-group-item-blue-800.list-group-item-action:focus {
color: #031a3d;
background-color: #b9c0ca;
}
.list-group-item-blue-800.list-group-item-action.active {
color: #fff;
background-color: #031a3d;
border-color: #031a3d;
}
.list-group-item-blue-900 {
color: #020d1f;
background-color: #cdd0d6;
}
.list-group-item-blue-900.list-group-item-action:hover,
.list-group-item-blue-900.list-group-item-action:focus {
color: #020d1f;
background-color: #b9bbc1;
}
.list-group-item-blue-900.list-group-item-action.active {
color: #fff;
background-color: #020d1f;
border-color: #020d1f;
}
.list-group-item-indigo {
color: #3d0a91;
background-color: #e0cffc;
}
.list-group-item-indigo.list-group-item-action:hover,
.list-group-item-indigo.list-group-item-action:focus {
color: #3d0a91;
background-color: #cabae3;
}
.list-group-item-indigo.list-group-item-action.active {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.list-group-item-indigo-100 {
color: #5a5365;
background-color: #f9f5fe;
}
.list-group-item-indigo-100.list-group-item-action:hover,
.list-group-item-indigo-100.list-group-item-action:focus {
color: #5a5365;
background-color: #e0dde5;
}
.list-group-item-indigo-100.list-group-item-action.active {
color: #fff;
background-color: #5a5365;
border-color: #5a5365;
}
.list-group-item-indigo-200 {
color: #745f96;
background-color: #f3ecfe;
}
.list-group-item-indigo-200.list-group-item-action:hover,
.list-group-item-indigo-200.list-group-item-action:focus {
color: #745f96;
background-color: #dbd4e5;
}
.list-group-item-indigo-200.list-group-item-action.active {
color: #fff;
background-color: #745f96;
border-color: #745f96;
}
.list-group-item-indigo-300 {
color: #624394;
background-color: #ede2fd;
}
.list-group-item-indigo-300.list-group-item-action:hover,
.list-group-item-indigo-300.list-group-item-action:focus {
color: #624394;
background-color: #d5cbe4;
}
.list-group-item-indigo-300.list-group-item-action.active {
color: #fff;
background-color: #624394;
border-color: #624394;
}
.list-group-item-indigo-400 {
color: #502693;
background-color: #e7d9fd;
}
.list-group-item-indigo-400.list-group-item-action:hover,
.list-group-item-indigo-400.list-group-item-action:focus {
color: #502693;
background-color: #d0c3e4;
}
.list-group-item-indigo-400.list-group-item-action.active {
color: #fff;
background-color: #502693;
border-color: #502693;
}
.list-group-item-indigo-500 {
color: #3d0a91;
background-color: #e0cffc;
}
.list-group-item-indigo-500.list-group-item-action:hover,
.list-group-item-indigo-500.list-group-item-action:focus {
color: #3d0a91;
background-color: #cabae3;
}
.list-group-item-indigo-500.list-group-item-action.active {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.list-group-item-indigo-600 {
color: #310874;
background-color: #dccff3;
}
.list-group-item-indigo-600.list-group-item-action:hover,
.list-group-item-indigo-600.list-group-item-action:focus {
color: #310874;
background-color: #c6badb;
}
.list-group-item-indigo-600.list-group-item-action.active {
color: #fff;
background-color: #310874;
border-color: #310874;
}
.list-group-item-indigo-700 {
color: #250657;
background-color: #d8cee9;
}
.list-group-item-indigo-700.list-group-item-action:hover,
.list-group-item-indigo-700.list-group-item-action:focus {
color: #250657;
background-color: #c2b9d2;
}
.list-group-item-indigo-700.list-group-item-action.active {
color: #fff;
background-color: #250657;
border-color: #250657;
}
.list-group-item-indigo-800 {
color: #19043a;
background-color: #d4cddf;
}
.list-group-item-indigo-800.list-group-item-action:hover,
.list-group-item-indigo-800.list-group-item-action:focus {
color: #19043a;
background-color: #bfb9c9;
}
.list-group-item-indigo-800.list-group-item-action.active {
color: #fff;
background-color: #19043a;
border-color: #19043a;
}
.list-group-item-indigo-900 {
color: #0c021d;
background-color: #d0cdd6;
}
.list-group-item-indigo-900.list-group-item-action:hover,
.list-group-item-indigo-900.list-group-item-action:focus {
color: #0c021d;
background-color: #bbb9c1;
}
.list-group-item-indigo-900.list-group-item-action.active {
color: #fff;
background-color: #0c021d;
border-color: #0c021d;
}
.list-group-item-purple {
color: #432874;
background-color: #e2d9f3;
}
.list-group-item-purple.list-group-item-action:hover,
.list-group-item-purple.list-group-item-action:focus {
color: #432874;
background-color: #cbc3db;
}
.list-group-item-purple.list-group-item-action.active {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.list-group-item-purple-100 {
color: #5a5761;
background-color: #f9f7fd;
}
.list-group-item-purple-100.list-group-item-action:hover,
.list-group-item-purple-100.list-group-item-action:focus {
color: #5a5761;
background-color: #e0dee4;
}
.list-group-item-purple-100.list-group-item-action.active {
color: #fff;
background-color: #5a5761;
border-color: #5a5761;
}
.list-group-item-purple-200 {
color: #4f485c;
background-color: #f3f0fa;
}
.list-group-item-purple-200.list-group-item-action:hover,
.list-group-item-purple-200.list-group-item-action:focus {
color: #4f485c;
background-color: #dbd8e1;
}
.list-group-item-purple-200.list-group-item-action.active {
color: #fff;
background-color: #4f485c;
border-color: #4f485c;
}
.list-group-item-purple-300 {
color: #655583;
background-color: #eee8f8;
}
.list-group-item-purple-300.list-group-item-action:hover,
.list-group-item-purple-300.list-group-item-action:focus {
color: #655583;
background-color: #d6d1df;
}
.list-group-item-purple-300.list-group-item-action.active {
color: #fff;
background-color: #655583;
border-color: #655583;
}
.list-group-item-purple-400 {
color: #543e7b;
background-color: #e8e1f5;
}
.list-group-item-purple-400.list-group-item-action:hover,
.list-group-item-purple-400.list-group-item-action:focus {
color: #543e7b;
background-color: #d1cbdd;
}
.list-group-item-purple-400.list-group-item-action.active {
color: #fff;
background-color: #543e7b;
border-color: #543e7b;
}
.list-group-item-purple-500 {
color: #432874;
background-color: #e2d9f3;
}
.list-group-item-purple-500.list-group-item-action:hover,
.list-group-item-purple-500.list-group-item-action:focus {
color: #432874;
background-color: #cbc3db;
}
.list-group-item-purple-500.list-group-item-action.active {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.list-group-item-purple-600 {
color: #35205c;
background-color: #ded7eb;
}
.list-group-item-purple-600.list-group-item-action:hover,
.list-group-item-purple-600.list-group-item-action:focus {
color: #35205c;
background-color: #c8c2d4;
}
.list-group-item-purple-600.list-group-item-action.active {
color: #fff;
background-color: #35205c;
border-color: #35205c;
}
.list-group-item-purple-700 {
color: #281846;
background-color: #d9d4e3;
}
.list-group-item-purple-700.list-group-item-action:hover,
.list-group-item-purple-700.list-group-item-action:focus {
color: #281846;
background-color: #c3bfcc;
}
.list-group-item-purple-700.list-group-item-action.active {
color: #fff;
background-color: #281846;
border-color: #281846;
}
.list-group-item-purple-800 {
color: #1a102e;
background-color: #d5d1db;
}
.list-group-item-purple-800.list-group-item-action:hover,
.list-group-item-purple-800.list-group-item-action:focus {
color: #1a102e;
background-color: #c0bcc5;
}
.list-group-item-purple-800.list-group-item-action.active {
color: #fff;
background-color: #1a102e;
border-color: #1a102e;
}
.list-group-item-purple-900 {
color: #0d0817;
background-color: #d0cfd4;
}
.list-group-item-purple-900.list-group-item-action:hover,
.list-group-item-purple-900.list-group-item-action:focus {
color: #0d0817;
background-color: #bbbabf;
}
.list-group-item-purple-900.list-group-item-action.active {
color: #fff;
background-color: #0d0817;
border-color: #0d0817;
}
.list-group-item-pink {
color: #801f4f;
background-color: #f7d6e6;
}
.list-group-item-pink.list-group-item-action:hover,
.list-group-item-pink.list-group-item-action:focus {
color: #801f4f;
background-color: #dec1cf;
}
.list-group-item-pink.list-group-item-action.active {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.list-group-item-pink-100 {
color: #63565c;
background-color: #fdf7fa;
}
.list-group-item-pink-100.list-group-item-action:hover,
.list-group-item-pink-100.list-group-item-action:focus {
color: #63565c;
background-color: #e4dee1;
}
.list-group-item-pink-100.list-group-item-action.active {
color: #fff;
background-color: #63565c;
border-color: #63565c;
}
.list-group-item-pink-200 {
color: #604552;
background-color: #fceff5;
}
.list-group-item-pink-200.list-group-item-action:hover,
.list-group-item-pink-200.list-group-item-action:focus {
color: #604552;
background-color: #e3d7dd;
}
.list-group-item-pink-200.list-group-item-action.active {
color: #fff;
background-color: #604552;
border-color: #604552;
}
.list-group-item-pink-300 {
color: #8a506d;
background-color: #fae7f0;
}
.list-group-item-pink-300.list-group-item-action:hover,
.list-group-item-pink-300.list-group-item-action:focus {
color: #8a506d;
background-color: #e1d0d8;
}
.list-group-item-pink-300.list-group-item-action.active {
color: #fff;
background-color: #8a506d;
border-color: #8a506d;
}
.list-group-item-pink-400 {
color: #85375e;
background-color: #f8deeb;
}
.list-group-item-pink-400.list-group-item-action:hover,
.list-group-item-pink-400.list-group-item-action:focus {
color: #85375e;
background-color: #dfc8d4;
}
.list-group-item-pink-400.list-group-item-action.active {
color: #fff;
background-color: #85375e;
border-color: #85375e;
}
.list-group-item-pink-500 {
color: #801f4f;
background-color: #f7d6e6;
}
.list-group-item-pink-500.list-group-item-action:hover,
.list-group-item-pink-500.list-group-item-action:focus {
color: #801f4f;
background-color: #dec1cf;
}
.list-group-item-pink-500.list-group-item-action.active {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.list-group-item-pink-600 {
color: #671940;
background-color: #eed4e1;
}
.list-group-item-pink-600.list-group-item-action:hover,
.list-group-item-pink-600.list-group-item-action:focus {
color: #671940;
background-color: #d6bfcb;
}
.list-group-item-pink-600.list-group-item-action.active {
color: #fff;
background-color: #671940;
border-color: #671940;
}
.list-group-item-pink-700 {
color: #4d132f;
background-color: #e6d2dc;
}
.list-group-item-pink-700.list-group-item-action:hover,
.list-group-item-pink-700.list-group-item-action:focus {
color: #4d132f;
background-color: #cfbdc6;
}
.list-group-item-pink-700.list-group-item-action.active {
color: #fff;
background-color: #4d132f;
border-color: #4d132f;
}
.list-group-item-pink-800 {
color: #340c20;
background-color: #ddd0d7;
}
.list-group-item-pink-800.list-group-item-action:hover,
.list-group-item-pink-800.list-group-item-action:focus {
color: #340c20;
background-color: #c7bbc2;
}
.list-group-item-pink-800.list-group-item-action.active {
color: #fff;
background-color: #340c20;
border-color: #340c20;
}
.list-group-item-pink-900 {
color: #1a0610;
background-color: #d5ced1;
}
.list-group-item-pink-900.list-group-item-action:hover,
.list-group-item-pink-900.list-group-item-action:focus {
color: #1a0610;
background-color: #c0b9bc;
}
.list-group-item-pink-900.list-group-item-action.active {
color: #fff;
background-color: #1a0610;
border-color: #1a0610;
}
.list-group-item-red {
color: #842029;
background-color: #f8d7da;
}
.list-group-item-red.list-group-item-action:hover,
.list-group-item-red.list-group-item-action:focus {
color: #842029;
background-color: #dfc2c4;
}
.list-group-item-red.list-group-item-action.active {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.list-group-item-red-100 {
color: #635657;
background-color: #fef7f8;
}
.list-group-item-red-100.list-group-item-action:hover,
.list-group-item-red-100.list-group-item-action:focus {
color: #635657;
background-color: #e5dedf;
}
.list-group-item-red-100.list-group-item-action.active {
color: #fff;
background-color: #635657;
border-color: #635657;
}
.list-group-item-red-200 {
color: #604648;
background-color: #fceff0;
}
.list-group-item-red-200.list-group-item-action:hover,
.list-group-item-red-200.list-group-item-action:focus {
color: #604648;
background-color: #e3d7d8;
}
.list-group-item-red-200.list-group-item-action.active {
color: #fff;
background-color: #604648;
border-color: #604648;
}
.list-group-item-red-300 {
color: #8c5056;
background-color: #fbe7e9;
}
.list-group-item-red-300.list-group-item-action:hover,
.list-group-item-red-300.list-group-item-action:focus {
color: #8c5056;
background-color: #e2d0d2;
}
.list-group-item-red-300.list-group-item-action.active {
color: #fff;
background-color: #8c5056;
border-color: #8c5056;
}
.list-group-item-red-400 {
color: #883840;
background-color: #f9dfe1;
}
.list-group-item-red-400.list-group-item-action:hover,
.list-group-item-red-400.list-group-item-action:focus {
color: #883840;
background-color: #e0c9cb;
}
.list-group-item-red-400.list-group-item-action.active {
color: #fff;
background-color: #883840;
border-color: #883840;
}
.list-group-item-red-500 {
color: #842029;
background-color: #f8d7da;
}
.list-group-item-red-500.list-group-item-action:hover,
.list-group-item-red-500.list-group-item-action:focus {
color: #842029;
background-color: #dfc2c4;
}
.list-group-item-red-500.list-group-item-action.active {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.list-group-item-red-600 {
color: #6a1921;
background-color: #efd4d7;
}
.list-group-item-red-600.list-group-item-action:hover,
.list-group-item-red-600.list-group-item-action:focus {
color: #6a1921;
background-color: #d7bfc2;
}
.list-group-item-red-600.list-group-item-action.active {
color: #fff;
background-color: #6a1921;
border-color: #6a1921;
}
.list-group-item-red-700 {
color: #4f1319;
background-color: #e6d2d4;
}
.list-group-item-red-700.list-group-item-action:hover,
.list-group-item-red-700.list-group-item-action:focus {
color: #4f1319;
background-color: #cfbdbf;
}
.list-group-item-red-700.list-group-item-action.active {
color: #fff;
background-color: #4f1319;
border-color: #4f1319;
}
.list-group-item-red-800 {
color: #350d11;
background-color: #ded0d2;
}
.list-group-item-red-800.list-group-item-action:hover,
.list-group-item-red-800.list-group-item-action:focus {
color: #350d11;
background-color: #c8bbbd;
}
.list-group-item-red-800.list-group-item-action.active {
color: #fff;
background-color: #350d11;
border-color: #350d11;
}
.list-group-item-red-900 {
color: #1a0708;
background-color: #d5cecf;
}
.list-group-item-red-900.list-group-item-action:hover,
.list-group-item-red-900.list-group-item-action:focus {
color: #1a0708;
background-color: #c0b9ba;
}
.list-group-item-red-900.list-group-item-action.active {
color: #fff;
background-color: #1a0708;
border-color: #1a0708;
}
.list-group-item-orange {
color: #984c0c;
background-color: #ffe5d0;
}
.list-group-item-orange.list-group-item-action:hover,
.list-group-item-orange.list-group-item-action:focus {
color: #984c0c;
background-color: #e6cebb;
}
.list-group-item-orange.list-group-item-action.active {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.list-group-item-orange-100 {
color: #665c53;
background-color: #fffaf6;
}
.list-group-item-orange-100.list-group-item-action:hover,
.list-group-item-orange-100.list-group-item-action:focus {
color: #665c53;
background-color: #e6e1dd;
}
.list-group-item-orange-100.list-group-item-action.active {
color: #fff;
background-color: #665c53;
border-color: #665c53;
}
.list-group-item-orange-200 {
color: #665140;
background-color: #fff5ec;
}
.list-group-item-orange-200.list-group-item-action:hover,
.list-group-item-orange-200.list-group-item-action:focus {
color: #665140;
background-color: #e6ddd4;
}
.list-group-item-orange-200.list-group-item-action.active {
color: #fff;
background-color: #665140;
border-color: #665140;
}
.list-group-item-orange-300 {
color: #66472e;
background-color: #fff0e3;
}
.list-group-item-orange-300.list-group-item-action:hover,
.list-group-item-orange-300.list-group-item-action:focus {
color: #66472e;
background-color: #e6d8cc;
}
.list-group-item-orange-300.list-group-item-action.active {
color: #fff;
background-color: #66472e;
border-color: #66472e;
}
.list-group-item-orange-400 {
color: #985b28;
background-color: #ffead9;
}
.list-group-item-orange-400.list-group-item-action:hover,
.list-group-item-orange-400.list-group-item-action:focus {
color: #985b28;
background-color: #e6d3c3;
}
.list-group-item-orange-400.list-group-item-action.active {
color: #fff;
background-color: #985b28;
border-color: #985b28;
}
.list-group-item-orange-500 {
color: #984c0c;
background-color: #ffe5d0;
}
.list-group-item-orange-500.list-group-item-action:hover,
.list-group-item-orange-500.list-group-item-action:focus {
color: #984c0c;
background-color: #e6cebb;
}
.list-group-item-orange-500.list-group-item-action.active {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.list-group-item-orange-600 {
color: #793d0a;
background-color: #f4e0cf;
}
.list-group-item-orange-600.list-group-item-action:hover,
.list-group-item-orange-600.list-group-item-action:focus {
color: #793d0a;
background-color: #dccaba;
}
.list-group-item-orange-600.list-group-item-action.active {
color: #fff;
background-color: #793d0a;
border-color: #793d0a;
}
.list-group-item-orange-700 {
color: #5b2e07;
background-color: #eadbce;
}
.list-group-item-orange-700.list-group-item-action:hover,
.list-group-item-orange-700.list-group-item-action:focus {
color: #5b2e07;
background-color: #d3c5b9;
}
.list-group-item-orange-700.list-group-item-action.active {
color: #fff;
background-color: #5b2e07;
border-color: #5b2e07;
}
.list-group-item-orange-800 {
color: #3d1e05;
background-color: #e0d6ce;
}
.list-group-item-orange-800.list-group-item-action:hover,
.list-group-item-orange-800.list-group-item-action:focus {
color: #3d1e05;
background-color: #cac1b9;
}
.list-group-item-orange-800.list-group-item-action.active {
color: #fff;
background-color: #3d1e05;
border-color: #3d1e05;
}
.list-group-item-orange-900 {
color: #1f0f02;
background-color: #d6d1cd;
}
.list-group-item-orange-900.list-group-item-action:hover,
.list-group-item-orange-900.list-group-item-action:focus {
color: #1f0f02;
background-color: #c1bcb9;
}
.list-group-item-orange-900.list-group-item-action.active {
color: #fff;
background-color: #1f0f02;
border-color: #1f0f02;
}
.list-group-item-yellow {
color: #664d03;
background-color: #fff3cd;
}
.list-group-item-yellow.list-group-item-action:hover,
.list-group-item-yellow.list-group-item-action:focus {
color: #664d03;
background-color: #e6dbb9;
}
.list-group-item-yellow.list-group-item-action.active {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.list-group-item-yellow-100 {
color: #666152;
background-color: #fffdf5;
}
.list-group-item-yellow-100.list-group-item-action:hover,
.list-group-item-yellow-100.list-group-item-action:focus {
color: #666152;
background-color: #e6e4dd;
}
.list-group-item-yellow-100.list-group-item-action.active {
color: #fff;
background-color: #666152;
border-color: #666152;
}
.list-group-item-yellow-200 {
color: #665c3e;
background-color: #fffaeb;
}
.list-group-item-yellow-200.list-group-item-action:hover,
.list-group-item-yellow-200.list-group-item-action:focus {
color: #665c3e;
background-color: #e6e1d4;
}
.list-group-item-yellow-200.list-group-item-action.active {
color: #fff;
background-color: #665c3e;
border-color: #665c3e;
}
.list-group-item-yellow-300 {
color: #66572a;
background-color: #fff8e1;
}
.list-group-item-yellow-300.list-group-item-action:hover,
.list-group-item-yellow-300.list-group-item-action:focus {
color: #66572a;
background-color: #e6dfcb;
}
.list-group-item-yellow-300.list-group-item-action.active {
color: #fff;
background-color: #66572a;
border-color: #66572a;
}
.list-group-item-yellow-400 {
color: #665217;
background-color: #fff5d7;
}
.list-group-item-yellow-400.list-group-item-action:hover,
.list-group-item-yellow-400.list-group-item-action:focus {
color: #665217;
background-color: #e6ddc2;
}
.list-group-item-yellow-400.list-group-item-action.active {
color: #fff;
background-color: #665217;
border-color: #665217;
}
.list-group-item-yellow-500 {
color: #664d03;
background-color: #fff3cd;
}
.list-group-item-yellow-500.list-group-item-action:hover,
.list-group-item-yellow-500.list-group-item-action:focus {
color: #664d03;
background-color: #e6dbb9;
}
.list-group-item-yellow-500.list-group-item-action.active {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.list-group-item-yellow-600 {
color: #7a5c04;
background-color: #f5ebcd;
}
.list-group-item-yellow-600.list-group-item-action:hover,
.list-group-item-yellow-600.list-group-item-action:focus {
color: #7a5c04;
background-color: #ddd4b9;
}
.list-group-item-yellow-600.list-group-item-action.active {
color: #fff;
background-color: #7a5c04;
border-color: #7a5c04;
}
.list-group-item-yellow-700 {
color: #5c4602;
background-color: #ebe3cd;
}
.list-group-item-yellow-700.list-group-item-action:hover,
.list-group-item-yellow-700.list-group-item-action:focus {
color: #5c4602;
background-color: #d4ccb9;
}
.list-group-item-yellow-700.list-group-item-action.active {
color: #fff;
background-color: #5c4602;
border-color: #5c4602;
}
.list-group-item-yellow-800 {
color: #3d2e02;
background-color: #e0dbcd;
}
.list-group-item-yellow-800.list-group-item-action:hover,
.list-group-item-yellow-800.list-group-item-action:focus {
color: #3d2e02;
background-color: #cac5b9;
}
.list-group-item-yellow-800.list-group-item-action.active {
color: #fff;
background-color: #3d2e02;
border-color: #3d2e02;
}
.list-group-item-yellow-900 {
color: #1f1701;
background-color: #d6d4cc;
}
.list-group-item-yellow-900.list-group-item-action:hover,
.list-group-item-yellow-900.list-group-item-action:focus {
color: #1f1701;
background-color: #c1bfb8;
}
.list-group-item-yellow-900.list-group-item-action.active {
color: #fff;
background-color: #1f1701;
border-color: #1f1701;
}
.list-group-item-green {
color: #0f5132;
background-color: #d1e7dd;
}
.list-group-item-green.list-group-item-action:hover,
.list-group-item-green.list-group-item-action:focus {
color: #0f5132;
background-color: #bcd0c7;
}
.list-group-item-green.list-group-item-action.active {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.list-group-item-green-100 {
color: #545c58;
background-color: #f6faf8;
}
.list-group-item-green-100.list-group-item-action:hover,
.list-group-item-green-100.list-group-item-action:focus {
color: #545c58;
background-color: #dde1df;
}
.list-group-item-green-100.list-group-item-action.active {
color: #fff;
background-color: #545c58;
border-color: #545c58;
}
.list-group-item-green-200 {
color: #41534b;
background-color: #edf5f1;
}
.list-group-item-green-200.list-group-item-action:hover,
.list-group-item-green-200.list-group-item-action:focus {
color: #41534b;
background-color: #d5ddd9;
}
.list-group-item-green-200.list-group-item-action.active {
color: #fff;
background-color: #41534b;
border-color: #41534b;
}
.list-group-item-green-300 {
color: #466e5b;
background-color: #e3f1ea;
}
.list-group-item-green-300.list-group-item-action:hover,
.list-group-item-green-300.list-group-item-action:focus {
color: #466e5b;
background-color: #ccd9d3;
}
.list-group-item-green-300.list-group-item-action.active {
color: #fff;
background-color: #466e5b;
border-color: #466e5b;
}
.list-group-item-green-400 {
color: #2b5f47;
background-color: #daece4;
}
.list-group-item-green-400.list-group-item-action:hover,
.list-group-item-green-400.list-group-item-action:focus {
color: #2b5f47;
background-color: #c4d4cd;
}
.list-group-item-green-400.list-group-item-action.active {
color: #fff;
background-color: #2b5f47;
border-color: #2b5f47;
}
.list-group-item-green-500 {
color: #0f5132;
background-color: #d1e7dd;
}
.list-group-item-green-500.list-group-item-action:hover,
.list-group-item-green-500.list-group-item-action:focus {
color: #0f5132;
background-color: #bcd0c7;
}
.list-group-item-green-500.list-group-item-action.active {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.list-group-item-green-600 {
color: #0c4128;
background-color: #d0e2d9;
}
.list-group-item-green-600.list-group-item-action:hover,
.list-group-item-green-600.list-group-item-action:focus {
color: #0c4128;
background-color: #bbcbc3;
}
.list-group-item-green-600.list-group-item-action.active {
color: #fff;
background-color: #0c4128;
border-color: #0c4128;
}
.list-group-item-green-700 {
color: #09311e;
background-color: #cfdcd6;
}
.list-group-item-green-700.list-group-item-action:hover,
.list-group-item-green-700.list-group-item-action:focus {
color: #09311e;
background-color: #bac6c1;
}
.list-group-item-green-700.list-group-item-action.active {
color: #fff;
background-color: #09311e;
border-color: #09311e;
}
.list-group-item-green-800 {
color: #062014;
background-color: #ced7d3;
}
.list-group-item-green-800.list-group-item-action:hover,
.list-group-item-green-800.list-group-item-action:focus {
color: #062014;
background-color: #b9c2be;
}
.list-group-item-green-800.list-group-item-action.active {
color: #fff;
background-color: #062014;
border-color: #062014;
}
.list-group-item-green-900 {
color: #03100a;
background-color: #cdd1cf;
}
.list-group-item-green-900.list-group-item-action:hover,
.list-group-item-green-900.list-group-item-action:focus {
color: #03100a;
background-color: #b9bcba;
}
.list-group-item-green-900.list-group-item-action.active {
color: #fff;
background-color: #03100a;
border-color: #03100a;
}
.list-group-item-teal {
color: #13795b;
background-color: #d2f4ea;
}
.list-group-item-teal.list-group-item-action:hover,
.list-group-item-teal.list-group-item-action:focus {
color: #13795b;
background-color: #bddcd3;
}
.list-group-item-teal.list-group-item-action.active {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.list-group-item-teal-100 {
color: #54625e;
background-color: #f6fdfb;
}
.list-group-item-teal-100.list-group-item-action:hover,
.list-group-item-teal-100.list-group-item-action:focus {
color: #54625e;
background-color: #dde4e2;
}
.list-group-item-teal-100.list-group-item-action.active {
color: #fff;
background-color: #54625e;
border-color: #54625e;
}
.list-group-item-teal-200 {
color: #425d55;
background-color: #edfbf7;
}
.list-group-item-teal-200.list-group-item-action:hover,
.list-group-item-teal-200.list-group-item-action:focus {
color: #425d55;
background-color: #d5e2de;
}
.list-group-item-teal-200.list-group-item-action.active {
color: #fff;
background-color: #425d55;
border-color: #425d55;
}
.list-group-item-teal-300 {
color: #30594d;
background-color: #e4f9f3;
}
.list-group-item-teal-300.list-group-item-action:hover,
.list-group-item-teal-300.list-group-item-action:focus {
color: #30594d;
background-color: #cde0db;
}
.list-group-item-teal-300.list-group-item-action.active {
color: #fff;
background-color: #30594d;
border-color: #30594d;
}
.list-group-item-teal-400 {
color: #1f5545;
background-color: #dbf6ee;
}
.list-group-item-teal-400.list-group-item-action:hover,
.list-group-item-teal-400.list-group-item-action:focus {
color: #1f5545;
background-color: #c5ddd6;
}
.list-group-item-teal-400.list-group-item-action.active {
color: #fff;
background-color: #1f5545;
border-color: #1f5545;
}
.list-group-item-teal-500 {
color: #13795b;
background-color: #d2f4ea;
}
.list-group-item-teal-500.list-group-item-action:hover,
.list-group-item-teal-500.list-group-item-action:focus {
color: #13795b;
background-color: #bddcd3;
}
.list-group-item-teal-500.list-group-item-action.active {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.list-group-item-teal-600 {
color: #106149;
background-color: #d1ece4;
}
.list-group-item-teal-600.list-group-item-action:hover,
.list-group-item-teal-600.list-group-item-action:focus {
color: #106149;
background-color: #bcd4cd;
}
.list-group-item-teal-600.list-group-item-action.active {
color: #fff;
background-color: #106149;
border-color: #106149;
}
.list-group-item-teal-700 {
color: #0b4937;
background-color: #d0e4de;
}
.list-group-item-teal-700.list-group-item-action:hover,
.list-group-item-teal-700.list-group-item-action:focus {
color: #0b4937;
background-color: #bbcdc8;
}
.list-group-item-teal-700.list-group-item-action.active {
color: #fff;
background-color: #0b4937;
border-color: #0b4937;
}
.list-group-item-teal-800 {
color: #083024;
background-color: #cfdcd8;
}
.list-group-item-teal-800.list-group-item-action:hover,
.list-group-item-teal-800.list-group-item-action:focus {
color: #083024;
background-color: #bac6c2;
}
.list-group-item-teal-800.list-group-item-action.active {
color: #fff;
background-color: #083024;
border-color: #083024;
}
.list-group-item-teal-900 {
color: #041812;
background-color: #cdd4d2;
}
.list-group-item-teal-900.list-group-item-action:hover,
.list-group-item-teal-900.list-group-item-action:focus {
color: #041812;
background-color: #b9bfbd;
}
.list-group-item-teal-900.list-group-item-action.active {
color: #fff;
background-color: #041812;
border-color: #041812;
}
.list-group-item-cyan {
color: #055160;
background-color: #cff4fc;
}
.list-group-item-cyan.list-group-item-action:hover,
.list-group-item-cyan.list-group-item-action:focus {
color: #055160;
background-color: #badce3;
}
.list-group-item-cyan.list-group-item-action.active {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.list-group-item-cyan-100 {
color: #536265;
background-color: #f5fdfe;
}
.list-group-item-cyan-100.list-group-item-action:hover,
.list-group-item-cyan-100.list-group-item-action:focus {
color: #536265;
background-color: #dde4e5;
}
.list-group-item-cyan-100.list-group-item-action.active {
color: #fff;
background-color: #536265;
border-color: #536265;
}
.list-group-item-cyan-200 {
color: #3f5e64;
background-color: #ecfbfe;
}
.list-group-item-cyan-200.list-group-item-action:hover,
.list-group-item-cyan-200.list-group-item-action:focus {
color: #3f5e64;
background-color: #d4e2e5;
}
.list-group-item-cyan-200.list-group-item-action.active {
color: #fff;
background-color: #3f5e64;
border-color: #3f5e64;
}
.list-group-item-cyan-300 {
color: #2c5962;
background-color: #e2f9fd;
}
.list-group-item-cyan-300.list-group-item-action:hover,
.list-group-item-cyan-300.list-group-item-action:focus {
color: #2c5962;
background-color: #cbe0e4;
}
.list-group-item-cyan-300.list-group-item-action.active {
color: #fff;
background-color: #2c5962;
border-color: #2c5962;
}
.list-group-item-cyan-400 {
color: #185561;
background-color: #d8f7fd;
}
.list-group-item-cyan-400.list-group-item-action:hover,
.list-group-item-cyan-400.list-group-item-action:focus {
color: #185561;
background-color: #c2dee4;
}
.list-group-item-cyan-400.list-group-item-action.active {
color: #fff;
background-color: #185561;
border-color: #185561;
}
.list-group-item-cyan-500 {
color: #055160;
background-color: #cff4fc;
}
.list-group-item-cyan-500.list-group-item-action:hover,
.list-group-item-cyan-500.list-group-item-action:focus {
color: #055160;
background-color: #badce3;
}
.list-group-item-cyan-500.list-group-item-action.active {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.list-group-item-cyan-600 {
color: #066173;
background-color: #ceecf2;
}
.list-group-item-cyan-600.list-group-item-action:hover,
.list-group-item-cyan-600.list-group-item-action:focus {
color: #066173;
background-color: #b9d4da;
}
.list-group-item-cyan-600.list-group-item-action.active {
color: #fff;
background-color: #066173;
border-color: #066173;
}
.list-group-item-cyan-700 {
color: #054956;
background-color: #cee4e9;
}
.list-group-item-cyan-700.list-group-item-action:hover,
.list-group-item-cyan-700.list-group-item-action:focus {
color: #054956;
background-color: #b9cdd2;
}
.list-group-item-cyan-700.list-group-item-action.active {
color: #fff;
background-color: #054956;
border-color: #054956;
}
.list-group-item-cyan-800 {
color: #03313a;
background-color: #cddcdf;
}
.list-group-item-cyan-800.list-group-item-action:hover,
.list-group-item-cyan-800.list-group-item-action:focus {
color: #03313a;
background-color: #b9c6c9;
}
.list-group-item-cyan-800.list-group-item-action.active {
color: #fff;
background-color: #03313a;
border-color: #03313a;
}
.list-group-item-cyan-900 {
color: #02181d;
background-color: #cdd4d6;
}
.list-group-item-cyan-900.list-group-item-action:hover,
.list-group-item-cyan-900.list-group-item-action:focus {
color: #02181d;
background-color: #b9bfc1;
}
.list-group-item-cyan-900.list-group-item-action.active {
color: #fff;
background-color: #02181d;
border-color: #02181d;
}
.list-group-item-gray-100 {
color: #636464;
background-color: #fefefe;
}
.list-group-item-gray-100.list-group-item-action:hover,
.list-group-item-gray-100.list-group-item-action:focus {
color: #636464;
background-color: #e5e5e5;
}
.list-group-item-gray-100.list-group-item-action.active {
color: #fff;
background-color: #636464;
border-color: #636464;
}
.list-group-item-gray-200 {
color: #5d5e60;
background-color: #fbfbfc;
}
.list-group-item-gray-200.list-group-item-action:hover,
.list-group-item-gray-200.list-group-item-action:focus {
color: #5d5e60;
background-color: #e2e2e3;
}
.list-group-item-gray-200.list-group-item-action.active {
color: #fff;
background-color: #5d5e60;
border-color: #5d5e60;
}
.list-group-item-gray-300 {
color: #595a5c;
background-color: #f8f9fa;
}
.list-group-item-gray-300.list-group-item-action:hover,
.list-group-item-gray-300.list-group-item-action:focus {
color: #595a5c;
background-color: #dfe0e1;
}
.list-group-item-gray-300.list-group-item-action.active {
color: #fff;
background-color: #595a5c;
border-color: #595a5c;
}
.list-group-item-gray-400 {
color: #525557;
background-color: #f5f6f8;
}
.list-group-item-gray-400.list-group-item-action:hover,
.list-group-item-gray-400.list-group-item-action:focus {
color: #525557;
background-color: #dddddf;
}
.list-group-item-gray-400.list-group-item-action.active {
color: #fff;
background-color: #525557;
border-color: #525557;
}
.list-group-item-gray-500 {
color: #686d71;
background-color: #eff0f2;
}
.list-group-item-gray-500.list-group-item-action:hover,
.list-group-item-gray-500.list-group-item-action:focus {
color: #686d71;
background-color: #d7d8da;
}
.list-group-item-gray-500.list-group-item-action.active {
color: #fff;
background-color: #686d71;
border-color: #686d71;
}
.list-group-item-gray-600 {
color: #41464b;
background-color: #e2e3e5;
}
.list-group-item-gray-600.list-group-item-action:hover,
.list-group-item-gray-600.list-group-item-action:focus {
color: #41464b;
background-color: #cbccce;
}
.list-group-item-gray-600.list-group-item-action.active {
color: #fff;
background-color: #41464b;
border-color: #41464b;
}
.list-group-item-gray-700 {
color: #2c3034;
background-color: #dbdcdd;
}
.list-group-item-gray-700.list-group-item-action:hover,
.list-group-item-gray-700.list-group-item-action:focus {
color: #2c3034;
background-color: #c5c6c7;
}
.list-group-item-gray-700.list-group-item-action.active {
color: #fff;
background-color: #2c3034;
border-color: #2c3034;
}
.list-group-item-gray-800 {
color: #1f2326;
background-color: #d6d8d9;
}
.list-group-item-gray-800.list-group-item-action:hover,
.list-group-item-gray-800.list-group-item-action:focus {
color: #1f2326;
background-color: #c1c2c3;
}
.list-group-item-gray-800.list-group-item-action.active {
color: #fff;
background-color: #1f2326;
border-color: #1f2326;
}
.list-group-item-gray-900 {
color: #141619;
background-color: #d3d3d4;
}
.list-group-item-gray-900.list-group-item-action:hover,
.list-group-item-gray-900.list-group-item-action:focus {
color: #141619;
background-color: #bebebf;
}
.list-group-item-gray-900.list-group-item-action.active {
color: #fff;
background-color: #141619;
border-color: #141619;
}
.list-group-item-white {
color: #666666;
background-color: white;
}
.list-group-item-white.list-group-item-action:hover,
.list-group-item-white.list-group-item-action:focus {
color: #666666;
background-color: #e6e6e6;
}
.list-group-item-white.list-group-item-action.active {
color: #fff;
background-color: #666666;
border-color: #666666;
}
.btn-close {
box-sizing: content-box;
width: 1em;
height: 1em;
padding: 0.25em 0.25em;
color: #000;
background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
border: 0;
border-radius: 0.25rem;
opacity: 0.5;
}
.btn-close:hover {
color: #000;
text-decoration: none;
opacity: 0.75;
}
.btn-close:focus {
outline: none;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
opacity: 1;
}
.btn-close:disabled,
.btn-close.disabled {
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
opacity: 0.25;
}
.btn-close-white {
filter: invert(1) grayscale(100%) brightness(200%);
}
.toast {
width: 350px;
max-width: 100%;
font-size: 0.875rem;
pointer-events: auto;
background-color: rgba(255, 255, 255, 0.85);
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
opacity: 0;
}
.toast.hide {
display: none;
}
.toast-container {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
max-width: 100%;
pointer-events: none;
}
.toast-container > :not(:last-child) {
margin-bottom: 0.75rem;
}
.toast-header {
display: flex;
align-items: center;
padding: 0.5rem 0.75rem;
color: #6c757d;
background-color: rgba(255, 255, 255, 0.85);
background-clip: padding-box;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
margin-right: -0.375rem;
margin-left: 0.75rem;
}
.toast-body {
padding: 0.75rem;
}
.modal-open {
overflow: hidden;
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1050;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
transition: transform 0.3s ease-out;
transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
transition: none;
}
}
.modal.show .modal-dialog {
transform: none;
}
.modal.modal-static .modal-dialog {
transform: scale(1.02);
}
.modal-dialog-scrollable {
height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
max-height: 100%;
overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
overflow-y: auto;
}
.modal-dialog-centered {
display: flex;
align-items: center;
min-height: calc(100% - 1rem);
}
.modal-content {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
outline: 0;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.5;
}
.modal-header {
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: space-between;
padding: 1rem 1rem;
border-bottom: 1px solid #dee2e6;
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
padding: 0.5rem 0.5rem;
margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-title {
margin-bottom: 0;
line-height: 1.5;
}
.modal-body {
position: relative;
flex: 1 1 auto;
padding: 1rem;
}
.modal-footer {
display: flex;
flex-wrap: wrap;
flex-shrink: 0;
align-items: center;
justify-content: flex-end;
padding: 0.75rem;
border-top: 1px solid #dee2e6;
border-bottom-right-radius: calc(0.3rem - 1px);
border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
margin: 0.25rem;
}
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 576px) {
.modal-dialog {
max-width: 500px;
margin: 1.75rem auto;
}
.modal-dialog-scrollable {
height: calc(100% - 3.5rem);
}
.modal-dialog-centered {
min-height: calc(100% - 3.5rem);
}
.modal-sm {
max-width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg,
.modal-xl {
max-width: 800px;
}
}
@media (min-width: 1200px) {
.modal-xl {
max-width: 1140px;
}
}
.modal-fullscreen {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen .modal-header {
border-radius: 0;
}
.modal-fullscreen .modal-body {
overflow-y: auto;
}
.modal-fullscreen .modal-footer {
border-radius: 0;
}
@media (max-width: 575.98px) {
.modal-fullscreen-sm-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-sm-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-sm-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-sm-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-sm-down .modal-footer {
border-radius: 0;
}
}
@media (max-width: 767.98px) {
.modal-fullscreen-md-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-md-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-md-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-md-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-md-down .modal-footer {
border-radius: 0;
}
}
@media (max-width: 991.98px) {
.modal-fullscreen-lg-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-lg-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-lg-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-lg-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-lg-down .modal-footer {
border-radius: 0;
}
}
@media (max-width: 1199.98px) {
.modal-fullscreen-xl-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-xl-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-xl-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-xl-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-xl-down .modal-footer {
border-radius: 0;
}
}
@media (max-width: 1399.98px) {
.modal-fullscreen-xxl-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-xxl-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-xxl-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-xxl-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-xxl-down .modal-footer {
border-radius: 0;
}
}
.tooltip {
position: absolute;
z-index: 1070;
display: block;
margin: 0;
font-family: var(--bs-font-sans-serif);
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
font-size: 0.875rem;
word-wrap: break-word;
opacity: 0;
}
.tooltip.show {
opacity: 0.9;
}
.tooltip .tooltip-arrow {
position: absolute;
display: block;
width: 0.8rem;
height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
position: absolute;
content: "";
border-color: transparent;
border-style: solid;
}
.bs-tooltip-top,
.bs-tooltip-auto[data-popper-placement^=top] {
padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
top: -1px;
border-width: 0.4rem 0.4rem 0;
border-top-color: #000;
}
.bs-tooltip-end,
.bs-tooltip-auto[data-popper-placement^=right] {
padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
left: 0;
width: 0.4rem;
height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
right: -1px;
border-width: 0.4rem 0.4rem 0.4rem 0;
border-right-color: #000;
}
.bs-tooltip-bottom,
.bs-tooltip-auto[data-popper-placement^=bottom] {
padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
bottom: -1px;
border-width: 0 0.4rem 0.4rem;
border-bottom-color: #000;
}
.bs-tooltip-start,
.bs-tooltip-auto[data-popper-placement^=left] {
padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
right: 0;
width: 0.4rem;
height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
left: -1px;
border-width: 0.4rem 0 0.4rem 0.4rem;
border-left-color: #000;
}
.tooltip-inner {
max-width: 200px;
padding: 0.25rem 0.5rem;
color: #fff;
text-align: center;
background-color: #000;
border-radius: 0.25rem;
}
.popover {
position: absolute;
top: 0;
left: 0 ;
z-index: 1060;
display: block;
max-width: 276px;
font-family: var(--bs-font-sans-serif);
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
font-size: 0.875rem;
word-wrap: break-word;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
}
.popover .popover-arrow {
position: absolute;
display: block;
width: 1rem;
height: 0.5rem;
margin: 0 0.3rem;
}
.popover .popover-arrow::before,
.popover .popover-arrow::after {
position: absolute;
display: block;
content: "";
border-color: transparent;
border-style: solid;
}
.bs-popover-top,
.bs-popover-auto[data-popper-placement^=top] {
margin-bottom: 0.5rem !important;
}
.bs-popover-top > .popover-arrow,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
bottom: 0;
border-width: 0.5rem 0.5rem 0;
border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
bottom: 1px;
border-width: 0.5rem 0.5rem 0;
border-top-color: #fff;
}
.bs-popover-end,
.bs-popover-auto[data-popper-placement^=right] {
margin-left: 0.5rem !important;
}
.bs-popover-end > .popover-arrow,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
left: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0;
}
.bs-popover-end > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
left: 0;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
left: 1px;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: #fff;
}
.bs-popover-bottom,
.bs-popover-auto[data-popper-placement^=bottom] {
margin-top: 0.5rem !important;
}
.bs-popover-bottom > .popover-arrow,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
top: 0;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
top: 1px;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before,
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
position: absolute;
top: 0;
left: 50%;
display: block;
width: 1rem;
margin-left: -0.5rem;
content: "";
border-bottom: 1px solid #f0f0f0;
}
.bs-popover-start,
.bs-popover-auto[data-popper-placement^=left] {
margin-right: 0.5rem !important;
}
.bs-popover-start > .popover-arrow,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
right: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0;
}
.bs-popover-start > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
right: 0;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
right: 1px;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: #fff;
}
.popover-header {
padding: 0.5rem 1rem;
margin-bottom: 0;
font-size: 1rem;
background-color: #f0f0f0;
border-bottom: 1px solid #d8d8d8;
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
display: none;
}
.popover-body {
padding: 1rem 1rem;
color: #212529;
}
.carousel {
position: relative;
}
.carousel.pointer-event {
touch-action: pan-y;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner::after {
display: block;
clear: both;
content: "";
}
.carousel-item {
position: relative;
display: none;
float: left;
width: 100%;
margin-right: -100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.carousel-item {
transition: none;
}
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block;
}
/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
transform: translateX(-100%);
}
/* rtl:end:ignore */
.carousel-fade .carousel-item {
opacity: 0;
transition-property: opacity;
transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
z-index: 1;
opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
z-index: 0;
opacity: 0;
transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
transition: none;
}
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 15%;
color: #fff;
text-align: center;
opacity: 0.5;
transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
transition: none;
}
}
.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
color: #fff;
text-decoration: none;
outline: 0;
opacity: 0.9;
}
.carousel-control-prev {
left: 0;
}
.carousel-control-next {
right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
display: inline-block;
width: 2rem;
height: 2rem;
background-repeat: no-repeat;
background-position: 50%;
background-size: 100% 100%;
}
/* rtl:options: {
"autoRename": true,
"stringMap":[ {
"name" : "prev-next",
"search" : "prev",
"replace" : "next"
} ]
} */
.carousel-control-prev-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-indicators {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 2;
display: flex;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
list-style: none;
}
.carousel-indicators li {
box-sizing: content-box;
flex: 0 1 auto;
width: 30px;
height: 3px;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #fff;
background-clip: padding-box;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: 0.5;
transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-indicators li {
transition: none;
}
}
.carousel-indicators .active {
opacity: 1;
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: 1.25rem;
left: 15%;
padding-top: 1.25rem;
padding-bottom: 1.25rem;
color: #fff;
text-align: center;
}
.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators li {
background-color: #000;
}
.carousel-dark .carousel-caption {
color: #000;
}
@-webkit-keyframes spinner-border {
to {
transform: rotate(360deg) ;
}
}
@keyframes spinner-border {
to {
transform: rotate(360deg) ;
}
}
.spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
border: 0.25em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
-webkit-animation: 0.75s linear infinite spinner-border;
animation: 0.75s linear infinite spinner-border;
}
.spinner-border-sm {
width: 1rem;
height: 1rem;
border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
0% {
transform: scale(0);
}
50% {
opacity: 1;
transform: none;
}
}
@keyframes spinner-grow {
0% {
transform: scale(0);
}
50% {
opacity: 1;
transform: none;
}
}
.spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
background-color: currentColor;
border-radius: 50%;
opacity: 0;
-webkit-animation: 0.75s linear infinite spinner-grow;
animation: 0.75s linear infinite spinner-grow;
}
.spinner-grow-sm {
width: 1rem;
height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
.spinner-border,
.spinner-grow {
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
}
}
.clearfix::after {
display: block;
clear: both;
content: "";
}
.link-primary {
color: #0d6efd;
}
.link-primary:hover,
.link-primary:focus {
color: #0a58ca;
}
.link-secondary {
color: #6c757d;
}
.link-secondary:hover,
.link-secondary:focus {
color: #565e64;
}
.link-success {
color: #198754;
}
.link-success:hover,
.link-success:focus {
color: #146c43;
}
.link-info {
color: #0dcaf0;
}
.link-info:hover,
.link-info:focus {
color: #3dd5f3;
}
.link-warning {
color: #ffc107;
}
.link-warning:hover,
.link-warning:focus {
color: #ffcd39;
}
.link-danger {
color: #dc3545;
}
.link-danger:hover,
.link-danger:focus {
color: #b02a37;
}
.link-light {
color: #f8f9fa;
}
.link-light:hover,
.link-light:focus {
color: #f9fafb;
}
.link-dark {
color: #212529;
}
.link-dark:hover,
.link-dark:focus {
color: #1a1e21;
}
.link-blue {
color: #0d6efd;
}
.link-blue:hover,
.link-blue:focus {
color: #0a58ca;
}
.link-blue-100 {
color: #cfe2ff;
}
.link-blue-100:hover,
.link-blue-100:focus {
color: #d9e8ff;
}
.link-blue-200 {
color: #9ec5fe;
}
.link-blue-200:hover,
.link-blue-200:focus {
color: #b1d1fe;
}
.link-blue-300 {
color: #6ea8fe;
}
.link-blue-300:hover,
.link-blue-300:focus {
color: #8bb9fe;
}
.link-blue-400 {
color: #3d8bfd;
}
.link-blue-400:hover,
.link-blue-400:focus {
color: #64a2fd;
}
.link-blue-500 {
color: #0d6efd;
}
.link-blue-500:hover,
.link-blue-500:focus {
color: #0a58ca;
}
.link-blue-600 {
color: #0a58ca;
}
.link-blue-600:hover,
.link-blue-600:focus {
color: #0846a2;
}
.link-blue-700 {
color: #084298;
}
.link-blue-700:hover,
.link-blue-700:focus {
color: #06357a;
}
.link-blue-800 {
color: #052c65;
}
.link-blue-800:hover,
.link-blue-800:focus {
color: #042351;
}
.link-blue-900 {
color: #031633;
}
.link-blue-900:hover,
.link-blue-900:focus {
color: #021229;
}
.link-indigo {
color: #6610f2;
}
.link-indigo:hover,
.link-indigo:focus {
color: #520dc2;
}
.link-indigo-100 {
color: #e0cffc;
}
.link-indigo-100:hover,
.link-indigo-100:focus {
color: #e6d9fd;
}
.link-indigo-200 {
color: #c29ffa;
}
.link-indigo-200:hover,
.link-indigo-200:focus {
color: #ceb2fb;
}
.link-indigo-300 {
color: #a370f7;
}
.link-indigo-300:hover,
.link-indigo-300:focus {
color: #b58df9;
}
.link-indigo-400 {
color: #8540f5;
}
.link-indigo-400:hover,
.link-indigo-400:focus {
color: #6a33c4;
}
.link-indigo-500 {
color: #6610f2;
}
.link-indigo-500:hover,
.link-indigo-500:focus {
color: #520dc2;
}
.link-indigo-600 {
color: #520dc2;
}
.link-indigo-600:hover,
.link-indigo-600:focus {
color: #420a9b;
}
.link-indigo-700 {
color: #3d0a91;
}
.link-indigo-700:hover,
.link-indigo-700:focus {
color: #310874;
}
.link-indigo-800 {
color: #290661;
}
.link-indigo-800:hover,
.link-indigo-800:focus {
color: #21054e;
}
.link-indigo-900 {
color: #140330;
}
.link-indigo-900:hover,
.link-indigo-900:focus {
color: #100226;
}
.link-purple {
color: #6f42c1;
}
.link-purple:hover,
.link-purple:focus {
color: #59359a;
}
.link-purple-100 {
color: #e2d9f3;
}
.link-purple-100:hover,
.link-purple-100:focus {
color: #e8e1f5;
}
.link-purple-200 {
color: #c5b3e6;
}
.link-purple-200:hover,
.link-purple-200:focus {
color: #d1c2eb;
}
.link-purple-300 {
color: #a98eda;
}
.link-purple-300:hover,
.link-purple-300:focus {
color: #baa5e1;
}
.link-purple-400 {
color: #8c68cd;
}
.link-purple-400:hover,
.link-purple-400:focus {
color: #a386d7;
}
.link-purple-500 {
color: #6f42c1;
}
.link-purple-500:hover,
.link-purple-500:focus {
color: #59359a;
}
.link-purple-600 {
color: #59359a;
}
.link-purple-600:hover,
.link-purple-600:focus {
color: #472a7b;
}
.link-purple-700 {
color: #432874;
}
.link-purple-700:hover,
.link-purple-700:focus {
color: #36205d;
}
.link-purple-800 {
color: #2c1a4d;
}
.link-purple-800:hover,
.link-purple-800:focus {
color: #23153e;
}
.link-purple-900 {
color: #160d27;
}
.link-purple-900:hover,
.link-purple-900:focus {
color: #120a1f;
}
.link-pink {
color: #d63384;
}
.link-pink:hover,
.link-pink:focus {
color: #ab296a;
}
.link-pink-100 {
color: #f7d6e6;
}
.link-pink-100:hover,
.link-pink-100:focus {
color: #f9deeb;
}
.link-pink-200 {
color: #efadce;
}
.link-pink-200:hover,
.link-pink-200:focus {
color: #f2bdd8;
}
.link-pink-300 {
color: #e685b5;
}
.link-pink-300:hover,
.link-pink-300:focus {
color: #eb9dc4;
}
.link-pink-400 {
color: #de5c9d;
}
.link-pink-400:hover,
.link-pink-400:focus {
color: #e57db1;
}
.link-pink-500 {
color: #d63384;
}
.link-pink-500:hover,
.link-pink-500:focus {
color: #ab296a;
}
.link-pink-600 {
color: #ab296a;
}
.link-pink-600:hover,
.link-pink-600:focus {
color: #892155;
}
.link-pink-700 {
color: #801f4f;
}
.link-pink-700:hover,
.link-pink-700:focus {
color: #66193f;
}
.link-pink-800 {
color: #561435;
}
.link-pink-800:hover,
.link-pink-800:focus {
color: #45102a;
}
.link-pink-900 {
color: #2b0a1a;
}
.link-pink-900:hover,
.link-pink-900:focus {
color: #220815;
}
.link-red {
color: #dc3545;
}
.link-red:hover,
.link-red:focus {
color: #b02a37;
}
.link-red-100 {
color: #f8d7da;
}
.link-red-100:hover,
.link-red-100:focus {
color: #f9dfe1;
}
.link-red-200 {
color: #f1aeb5;
}
.link-red-200:hover,
.link-red-200:focus {
color: #f4bec4;
}
.link-red-300 {
color: #ea868f;
}
.link-red-300:hover,
.link-red-300:focus {
color: #ee9ea5;
}
.link-red-400 {
color: #e35d6a;
}
.link-red-400:hover,
.link-red-400:focus {
color: #e97d88;
}
.link-red-500 {
color: #dc3545;
}
.link-red-500:hover,
.link-red-500:focus {
color: #b02a37;
}
.link-red-600 {
color: #b02a37;
}
.link-red-600:hover,
.link-red-600:focus {
color: #8d222c;
}
.link-red-700 {
color: #842029;
}
.link-red-700:hover,
.link-red-700:focus {
color: #6a1a21;
}
.link-red-800 {
color: #58151c;
}
.link-red-800:hover,
.link-red-800:focus {
color: #461116;
}
.link-red-900 {
color: #2c0b0e;
}
.link-red-900:hover,
.link-red-900:focus {
color: #23090b;
}
.link-orange {
color: #fd7e14;
}
.link-orange:hover,
.link-orange:focus {
color: #fd9843;
}
.link-orange-100 {
color: #ffe5d0;
}
.link-orange-100:hover,
.link-orange-100:focus {
color: #ffead9;
}
.link-orange-200 {
color: #fecba1;
}
.link-orange-200:hover,
.link-orange-200:focus {
color: #fed5b4;
}
.link-orange-300 {
color: #feb272;
}
.link-orange-300:hover,
.link-orange-300:focus {
color: #fec18e;
}
.link-orange-400 {
color: #fd9843;
}
.link-orange-400:hover,
.link-orange-400:focus {
color: #fdad69;
}
.link-orange-500 {
color: #fd7e14;
}
.link-orange-500:hover,
.link-orange-500:focus {
color: #fd9843;
}
.link-orange-600 {
color: #ca6510;
}
.link-orange-600:hover,
.link-orange-600:focus {
color: #d58440;
}
.link-orange-700 {
color: #984c0c;
}
.link-orange-700:hover,
.link-orange-700:focus {
color: #7a3d0a;
}
.link-orange-800 {
color: #653208;
}
.link-orange-800:hover,
.link-orange-800:focus {
color: #512806;
}
.link-orange-900 {
color: #331904;
}
.link-orange-900:hover,
.link-orange-900:focus {
color: #291403;
}
.link-yellow {
color: #ffc107;
}
.link-yellow:hover,
.link-yellow:focus {
color: #ffcd39;
}
.link-yellow-100 {
color: #fff3cd;
}
.link-yellow-100:hover,
.link-yellow-100:focus {
color: #fff5d7;
}
.link-yellow-200 {
color: #ffe69c;
}
.link-yellow-200:hover,
.link-yellow-200:focus {
color: #ffebb0;
}
.link-yellow-300 {
color: #ffda6a;
}
.link-yellow-300:hover,
.link-yellow-300:focus {
color: #ffe188;
}
.link-yellow-400 {
color: #ffcd39;
}
.link-yellow-400:hover,
.link-yellow-400:focus {
color: #ffd761;
}
.link-yellow-500 {
color: #ffc107;
}
.link-yellow-500:hover,
.link-yellow-500:focus {
color: #ffcd39;
}
.link-yellow-600 {
color: #cc9a06;
}
.link-yellow-600:hover,
.link-yellow-600:focus {
color: #d6ae38;
}
.link-yellow-700 {
color: #997404;
}
.link-yellow-700:hover,
.link-yellow-700:focus {
color: #ad9036;
}
.link-yellow-800 {
color: #664d03;
}
.link-yellow-800:hover,
.link-yellow-800:focus {
color: #523e02;
}
.link-yellow-900 {
color: #332701;
}
.link-yellow-900:hover,
.link-yellow-900:focus {
color: #291f01;
}
.link-green {
color: #198754;
}
.link-green:hover,
.link-green:focus {
color: #146c43;
}
.link-green-100 {
color: #d1e7dd;
}
.link-green-100:hover,
.link-green-100:focus {
color: #daece4;
}
.link-green-200 {
color: #a3cfbb;
}
.link-green-200:hover,
.link-green-200:focus {
color: #b5d9c9;
}
.link-green-300 {
color: #75b798;
}
.link-green-300:hover,
.link-green-300:focus {
color: #91c5ad;
}
.link-green-400 {
color: #479f76;
}
.link-green-400:hover,
.link-green-400:focus {
color: #6cb291;
}
.link-green-500 {
color: #198754;
}
.link-green-500:hover,
.link-green-500:focus {
color: #146c43;
}
.link-green-600 {
color: #146c43;
}
.link-green-600:hover,
.link-green-600:focus {
color: #105636;
}
.link-green-700 {
color: #0f5132;
}
.link-green-700:hover,
.link-green-700:focus {
color: #0c4128;
}
.link-green-800 {
color: #0a3622;
}
.link-green-800:hover,
.link-green-800:focus {
color: #082b1b;
}
.link-green-900 {
color: #051b11;
}
.link-green-900:hover,
.link-green-900:focus {
color: #04160e;
}
.link-teal {
color: #20c997;
}
.link-teal:hover,
.link-teal:focus {
color: #4dd4ac;
}
.link-teal-100 {
color: #d2f4ea;
}
.link-teal-100:hover,
.link-teal-100:focus {
color: #dbf6ee;
}
.link-teal-200 {
color: #a6e9d5;
}
.link-teal-200:hover,
.link-teal-200:focus {
color: #b8eddd;
}
.link-teal-300 {
color: #79dfc1;
}
.link-teal-300:hover,
.link-teal-300:focus {
color: #94e5cd;
}
.link-teal-400 {
color: #4dd4ac;
}
.link-teal-400:hover,
.link-teal-400:focus {
color: #71ddbd;
}
.link-teal-500 {
color: #20c997;
}
.link-teal-500:hover,
.link-teal-500:focus {
color: #4dd4ac;
}
.link-teal-600 {
color: #1aa179;
}
.link-teal-600:hover,
.link-teal-600:focus {
color: #48b494;
}
.link-teal-700 {
color: #13795b;
}
.link-teal-700:hover,
.link-teal-700:focus {
color: #0f6149;
}
.link-teal-800 {
color: #0d503c;
}
.link-teal-800:hover,
.link-teal-800:focus {
color: #0a4030;
}
.link-teal-900 {
color: #06281e;
}
.link-teal-900:hover,
.link-teal-900:focus {
color: #052018;
}
.link-cyan {
color: #0dcaf0;
}
.link-cyan:hover,
.link-cyan:focus {
color: #3dd5f3;
}
.link-cyan-100 {
color: #cff4fc;
}
.link-cyan-100:hover,
.link-cyan-100:focus {
color: #d9f6fd;
}
.link-cyan-200 {
color: #9eeaf9;
}
.link-cyan-200:hover,
.link-cyan-200:focus {
color: #b1eefa;
}
.link-cyan-300 {
color: #6edff6;
}
.link-cyan-300:hover,
.link-cyan-300:focus {
color: #8be5f8;
}
.link-cyan-400 {
color: #3dd5f3;
}
.link-cyan-400:hover,
.link-cyan-400:focus {
color: #64ddf5;
}
.link-cyan-500 {
color: #0dcaf0;
}
.link-cyan-500:hover,
.link-cyan-500:focus {
color: #3dd5f3;
}
.link-cyan-600 {
color: #0aa2c0;
}
.link-cyan-600:hover,
.link-cyan-600:focus {
color: #3bb5cd;
}
.link-cyan-700 {
color: #087990;
}
.link-cyan-700:hover,
.link-cyan-700:focus {
color: #066173;
}
.link-cyan-800 {
color: #055160;
}
.link-cyan-800:hover,
.link-cyan-800:focus {
color: #04414d;
}
.link-cyan-900 {
color: #032830;
}
.link-cyan-900:hover,
.link-cyan-900:focus {
color: #022026;
}
.link-gray-100 {
color: #f8f9fa;
}
.link-gray-100:hover,
.link-gray-100:focus {
color: #f9fafb;
}
.link-gray-200 {
color: #e9ecef;
}
.link-gray-200:hover,
.link-gray-200:focus {
color: #edf0f2;
}
.link-gray-300 {
color: #dee2e6;
}
.link-gray-300:hover,
.link-gray-300:focus {
color: #e5e8eb;
}
.link-gray-400 {
color: #ced4da;
}
.link-gray-400:hover,
.link-gray-400:focus {
color: #d8dde1;
}
.link-gray-500 {
color: #adb5bd;
}
.link-gray-500:hover,
.link-gray-500:focus {
color: #bdc4ca;
}
.link-gray-600 {
color: #6c757d;
}
.link-gray-600:hover,
.link-gray-600:focus {
color: #565e64;
}
.link-gray-700 {
color: #495057;
}
.link-gray-700:hover,
.link-gray-700:focus {
color: #3a4046;
}
.link-gray-800 {
color: #343a40;
}
.link-gray-800:hover,
.link-gray-800:focus {
color: #2a2e33;
}
.link-gray-900 {
color: #212529;
}
.link-gray-900:hover,
.link-gray-900:focus {
color: #1a1e21;
}
.link-white {
color: #fff;
}
.link-white:hover,
.link-white:focus {
color: white;
}
.ratio {
position: relative;
width: 100%;
}
.ratio::before {
display: block;
padding-top: var(--aspect-ratio);
content: "";
}
.ratio > * {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ratio-1x1 {
--aspect-ratio: 100%;
}
.ratio-4x3 {
--aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
--aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
--aspect-ratio: calc(9 / 21 * 100%);
}
.fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
}
.fixed-bottom {
position: fixed;
right: 0;
bottom: 0;
left: 0;
z-index: 1030;
}
.sticky-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
@media (min-width: 576px) {
.sticky-sm-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 768px) {
.sticky-md-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 992px) {
.sticky-lg-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 1200px) {
.sticky-xl-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 1400px) {
.sticky-xxl-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
.visually-hidden,
.visually-hidden-focusable:not(:focus) {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.stretched-link::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
content: "";
}
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.align-baseline {
vertical-align: baseline !important;
}
.align-top {
vertical-align: top !important;
}
.align-middle {
vertical-align: middle !important;
}
.align-bottom {
vertical-align: bottom !important;
}
.align-text-bottom {
vertical-align: text-bottom !important;
}
.align-text-top {
vertical-align: text-top !important;
}
.float-start {
float: left !important;
}
.float-end {
float: right !important;
}
.float-none {
float: none !important;
}
.overflow-auto {
overflow: auto !important;
}
.overflow-hidden {
overflow: hidden !important;
}
.overflow-visible {
overflow: visible !important;
}
.overflow-scroll {
overflow: scroll !important;
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-block {
display: block !important;
}
.d-grid {
display: grid !important;
}
.d-table {
display: table !important;
}
.d-table-row {
display: table-row !important;
}
.d-table-cell {
display: table-cell !important;
}
.d-flex {
display: flex !important;
}
.d-inline-flex {
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
box-shadow: none !important;
}
.position-static {
position: static !important;
}
.position-relative {
position: relative !important;
}
.position-absolute {
position: absolute !important;
}
.position-fixed {
position: fixed !important;
}
.position-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.top-0 {
top: 0 !important;
}
.top-50 {
top: 50% !important;
}
.top-100 {
top: 100% !important;
}
.bottom-0 {
bottom: 0 !important;
}
.bottom-50 {
bottom: 50% !important;
}
.bottom-100 {
bottom: 100% !important;
}
.start-0 {
left: 0 !important;
}
.start-50 {
left: 50% !important;
}
.start-100 {
left: 100% !important;
}
.end-0 {
right: 0 !important;
}
.end-50 {
right: 50% !important;
}
.end-100 {
right: 100% !important;
}
.translate-middle {
transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
transform: translateX(-50%) !important;
}
.translate-middle-y {
transform: translateY(-50%) !important;
}
.border {
border: 1px solid #dee2e6 !important;
}
.border-0 {
border: 0 !important;
}
.border-top {
border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
border-top: 0 !important;
}
.border-end {
border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
border-right: 0 !important;
}
.border-bottom {
border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
border-bottom: 0 !important;
}
.border-start {
border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
border-left: 0 !important;
}
.border-primary {
border-color: #0d6efd !important;
}
.border-secondary {
border-color: #6c757d !important;
}
.border-success {
border-color: #198754 !important;
}
.border-info {
border-color: #0dcaf0 !important;
}
.border-warning {
border-color: #ffc107 !important;
}
.border-danger {
border-color: #dc3545 !important;
}
.border-light {
border-color: #f8f9fa !important;
}
.border-dark {
border-color: #212529 !important;
}
.border-blue {
border-color: #0d6efd !important;
}
.border-blue-100 {
border-color: #cfe2ff !important;
}
.border-blue-200 {
border-color: #9ec5fe !important;
}
.border-blue-300 {
border-color: #6ea8fe !important;
}
.border-blue-400 {
border-color: #3d8bfd !important;
}
.border-blue-500 {
border-color: #0d6efd !important;
}
.border-blue-600 {
border-color: #0a58ca !important;
}
.border-blue-700 {
border-color: #084298 !important;
}
.border-blue-800 {
border-color: #052c65 !important;
}
.border-blue-900 {
border-color: #031633 !important;
}
.border-indigo {
border-color: #6610f2 !important;
}
.border-indigo-100 {
border-color: #e0cffc !important;
}
.border-indigo-200 {
border-color: #c29ffa !important;
}
.border-indigo-300 {
border-color: #a370f7 !important;
}
.border-indigo-400 {
border-color: #8540f5 !important;
}
.border-indigo-500 {
border-color: #6610f2 !important;
}
.border-indigo-600 {
border-color: #520dc2 !important;
}
.border-indigo-700 {
border-color: #3d0a91 !important;
}
.border-indigo-800 {
border-color: #290661 !important;
}
.border-indigo-900 {
border-color: #140330 !important;
}
.border-purple {
border-color: #6f42c1 !important;
}
.border-purple-100 {
border-color: #e2d9f3 !important;
}
.border-purple-200 {
border-color: #c5b3e6 !important;
}
.border-purple-300 {
border-color: #a98eda !important;
}
.border-purple-400 {
border-color: #8c68cd !important;
}
.border-purple-500 {
border-color: #6f42c1 !important;
}
.border-purple-600 {
border-color: #59359a !important;
}
.border-purple-700 {
border-color: #432874 !important;
}
.border-purple-800 {
border-color: #2c1a4d !important;
}
.border-purple-900 {
border-color: #160d27 !important;
}
.border-pink {
border-color: #d63384 !important;
}
.border-pink-100 {
border-color: #f7d6e6 !important;
}
.border-pink-200 {
border-color: #efadce !important;
}
.border-pink-300 {
border-color: #e685b5 !important;
}
.border-pink-400 {
border-color: #de5c9d !important;
}
.border-pink-500 {
border-color: #d63384 !important;
}
.border-pink-600 {
border-color: #ab296a !important;
}
.border-pink-700 {
border-color: #801f4f !important;
}
.border-pink-800 {
border-color: #561435 !important;
}
.border-pink-900 {
border-color: #2b0a1a !important;
}
.border-red {
border-color: #dc3545 !important;
}
.border-red-100 {
border-color: #f8d7da !important;
}
.border-red-200 {
border-color: #f1aeb5 !important;
}
.border-red-300 {
border-color: #ea868f !important;
}
.border-red-400 {
border-color: #e35d6a !important;
}
.border-red-500 {
border-color: #dc3545 !important;
}
.border-red-600 {
border-color: #b02a37 !important;
}
.border-red-700 {
border-color: #842029 !important;
}
.border-red-800 {
border-color: #58151c !important;
}
.border-red-900 {
border-color: #2c0b0e !important;
}
.border-orange {
border-color: #fd7e14 !important;
}
.border-orange-100 {
border-color: #ffe5d0 !important;
}
.border-orange-200 {
border-color: #fecba1 !important;
}
.border-orange-300 {
border-color: #feb272 !important;
}
.border-orange-400 {
border-color: #fd9843 !important;
}
.border-orange-500 {
border-color: #fd7e14 !important;
}
.border-orange-600 {
border-color: #ca6510 !important;
}
.border-orange-700 {
border-color: #984c0c !important;
}
.border-orange-800 {
border-color: #653208 !important;
}
.border-orange-900 {
border-color: #331904 !important;
}
.border-yellow {
border-color: #ffc107 !important;
}
.border-yellow-100 {
border-color: #fff3cd !important;
}
.border-yellow-200 {
border-color: #ffe69c !important;
}
.border-yellow-300 {
border-color: #ffda6a !important;
}
.border-yellow-400 {
border-color: #ffcd39 !important;
}
.border-yellow-500 {
border-color: #ffc107 !important;
}
.border-yellow-600 {
border-color: #cc9a06 !important;
}
.border-yellow-700 {
border-color: #997404 !important;
}
.border-yellow-800 {
border-color: #664d03 !important;
}
.border-yellow-900 {
border-color: #332701 !important;
}
.border-green {
border-color: #198754 !important;
}
.border-green-100 {
border-color: #d1e7dd !important;
}
.border-green-200 {
border-color: #a3cfbb !important;
}
.border-green-300 {
border-color: #75b798 !important;
}
.border-green-400 {
border-color: #479f76 !important;
}
.border-green-500 {
border-color: #198754 !important;
}
.border-green-600 {
border-color: #146c43 !important;
}
.border-green-700 {
border-color: #0f5132 !important;
}
.border-green-800 {
border-color: #0a3622 !important;
}
.border-green-900 {
border-color: #051b11 !important;
}
.border-teal {
border-color: #20c997 !important;
}
.border-teal-100 {
border-color: #d2f4ea !important;
}
.border-teal-200 {
border-color: #a6e9d5 !important;
}
.border-teal-300 {
border-color: #79dfc1 !important;
}
.border-teal-400 {
border-color: #4dd4ac !important;
}
.border-teal-500 {
border-color: #20c997 !important;
}
.border-teal-600 {
border-color: #1aa179 !important;
}
.border-teal-700 {
border-color: #13795b !important;
}
.border-teal-800 {
border-color: #0d503c !important;
}
.border-teal-900 {
border-color: #06281e !important;
}
.border-cyan {
border-color: #0dcaf0 !important;
}
.border-cyan-100 {
border-color: #cff4fc !important;
}
.border-cyan-200 {
border-color: #9eeaf9 !important;
}
.border-cyan-300 {
border-color: #6edff6 !important;
}
.border-cyan-400 {
border-color: #3dd5f3 !important;
}
.border-cyan-500 {
border-color: #0dcaf0 !important;
}
.border-cyan-600 {
border-color: #0aa2c0 !important;
}
.border-cyan-700 {
border-color: #087990 !important;
}
.border-cyan-800 {
border-color: #055160 !important;
}
.border-cyan-900 {
border-color: #032830 !important;
}
.border-gray-100 {
border-color: #f8f9fa !important;
}
.border-gray-200 {
border-color: #e9ecef !important;
}
.border-gray-300 {
border-color: #dee2e6 !important;
}
.border-gray-400 {
border-color: #ced4da !important;
}
.border-gray-500 {
border-color: #adb5bd !important;
}
.border-gray-600 {
border-color: #6c757d !important;
}
.border-gray-700 {
border-color: #495057 !important;
}
.border-gray-800 {
border-color: #343a40 !important;
}
.border-gray-900 {
border-color: #212529 !important;
}
.border-white {
border-color: #fff !important;
}
.border-0 {
border-width: 0 !important;
}
.border-1 {
border-width: 1px !important;
}
.border-2 {
border-width: 2px !important;
}
.border-3 {
border-width: 3px !important;
}
.border-4 {
border-width: 4px !important;
}
.border-5 {
border-width: 5px !important;
}
.w-25 {
width: 25% !important;
}
.w-50 {
width: 50% !important;
}
.w-75 {
width: 75% !important;
}
.w-100 {
width: 100% !important;
}
.w-auto {
width: auto !important;
}
.mw-100 {
max-width: 100% !important;
}
.vw-100 {
width: 100vw !important;
}
.min-vw-100 {
min-width: 100vw !important;
}
.h-25 {
height: 25% !important;
}
.h-50 {
height: 50% !important;
}
.h-75 {
height: 75% !important;
}
.h-100 {
height: 100% !important;
}
.h-auto {
height: auto !important;
}
.mh-100 {
max-height: 100% !important;
}
.vh-100 {
height: 100vh !important;
}
.min-vh-100 {
min-height: 100vh !important;
}
.flex-fill {
flex: 1 1 auto !important;
}
.flex-row {
flex-direction: row !important;
}
.flex-column {
flex-direction: column !important;
}
.flex-row-reverse {
flex-direction: row-reverse !important;
}
.flex-column-reverse {
flex-direction: column-reverse !important;
}
.flex-grow-0 {
flex-grow: 0 !important;
}
.flex-grow-1 {
flex-grow: 1 !important;
}
.flex-shrink-0 {
flex-shrink: 0 !important;
}
.flex-shrink-1 {
flex-shrink: 1 !important;
}
.flex-wrap {
flex-wrap: wrap !important;
}
.flex-nowrap {
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-0 {
gap: 0 !important;
}
.gap-1 {
gap: 0.25rem !important;
}
.gap-2 {
gap: 0.5rem !important;
}
.gap-3 {
gap: 1rem !important;
}
.gap-4 {
gap: 1.5rem !important;
}
.gap-5 {
gap: 3rem !important;
}
.justify-content-start {
justify-content: flex-start !important;
}
.justify-content-end {
justify-content: flex-end !important;
}
.justify-content-center {
justify-content: center !important;
}
.justify-content-between {
justify-content: space-between !important;
}
.justify-content-around {
justify-content: space-around !important;
}
.justify-content-evenly {
justify-content: space-evenly !important;
}
.align-items-start {
align-items: flex-start !important;
}
.align-items-end {
align-items: flex-end !important;
}
.align-items-center {
align-items: center !important;
}
.align-items-baseline {
align-items: baseline !important;
}
.align-items-stretch {
align-items: stretch !important;
}
.align-content-start {
align-content: flex-start !important;
}
.align-content-end {
align-content: flex-end !important;
}
.align-content-center {
align-content: center !important;
}
.align-content-between {
align-content: space-between !important;
}
.align-content-around {
align-content: space-around !important;
}
.align-content-stretch {
align-content: stretch !important;
}
.align-self-auto {
align-self: auto !important;
}
.align-self-start {
align-self: flex-start !important;
}
.align-self-end {
align-self: flex-end !important;
}
.align-self-center {
align-self: center !important;
}
.align-self-baseline {
align-self: baseline !important;
}
.align-self-stretch {
align-self: stretch !important;
}
.order-first {
order: -1 !important;
}
.order-0 {
order: 0 !important;
}
.order-1 {
order: 1 !important;
}
.order-2 {
order: 2 !important;
}
.order-3 {
order: 3 !important;
}
.order-4 {
order: 4 !important;
}
.order-5 {
order: 5 !important;
}
.order-last {
order: 6 !important;
}
.m-0 {
margin: 0 !important;
}
.m-1 {
margin: 0.25rem !important;
}
.m-2 {
margin: 0.5rem !important;
}
.m-3 {
margin: 1rem !important;
}
.m-4 {
margin: 1.5rem !important;
}
.m-5 {
margin: 3rem !important;
}
.m-auto {
margin: auto !important;
}
.mx-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-0 {
margin-top: 0 !important;
}
.mt-1 {
margin-top: 0.25rem !important;
}
.mt-2 {
margin-top: 0.5rem !important;
}
.mt-3 {
margin-top: 1rem !important;
}
.mt-4 {
margin-top: 1.5rem !important;
}
.mt-5 {
margin-top: 3rem !important;
}
.mt-auto {
margin-top: auto !important;
}
.me-0 {
margin-right: 0 !important;
}
.me-1 {
margin-right: 0.25rem !important;
}
.me-2 {
margin-right: 0.5rem !important;
}
.me-3 {
margin-right: 1rem !important;
}
.me-4 {
margin-right: 1.5rem !important;
}
.me-5 {
margin-right: 3rem !important;
}
.me-auto {
margin-right: auto !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-1 {
margin-bottom: 0.25rem !important;
}
.mb-2 {
margin-bottom: 0.5rem !important;
}
.mb-3 {
margin-bottom: 1rem !important;
}
.mb-4 {
margin-bottom: 1.5rem !important;
}
.mb-5 {
margin-bottom: 3rem !important;
}
.mb-auto {
margin-bottom: auto !important;
}
.ms-0 {
margin-left: 0 !important;
}
.ms-1 {
margin-left: 0.25rem !important;
}
.ms-2 {
margin-left: 0.5rem !important;
}
.ms-3 {
margin-left: 1rem !important;
}
.ms-4 {
margin-left: 1.5rem !important;
}
.ms-5 {
margin-left: 3rem !important;
}
.ms-auto {
margin-left: auto !important;
}
.p-0 {
padding: 0 !important;
}
.p-1 {
padding: 0.25rem !important;
}
.p-2 {
padding: 0.5rem !important;
}
.p-3 {
padding: 1rem !important;
}
.p-4 {
padding: 1.5rem !important;
}
.p-5 {
padding: 3rem !important;
}
.px-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pt-1 {
padding-top: 0.25rem !important;
}
.pt-2 {
padding-top: 0.5rem !important;
}
.pt-3 {
padding-top: 1rem !important;
}
.pt-4 {
padding-top: 1.5rem !important;
}
.pt-5 {
padding-top: 3rem !important;
}
.pe-0 {
padding-right: 0 !important;
}
.pe-1 {
padding-right: 0.25rem !important;
}
.pe-2 {
padding-right: 0.5rem !important;
}
.pe-3 {
padding-right: 1rem !important;
}
.pe-4 {
padding-right: 1.5rem !important;
}
.pe-5 {
padding-right: 3rem !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.pb-1 {
padding-bottom: 0.25rem !important;
}
.pb-2 {
padding-bottom: 0.5rem !important;
}
.pb-3 {
padding-bottom: 1rem !important;
}
.pb-4 {
padding-bottom: 1.5rem !important;
}
.pb-5 {
padding-bottom: 3rem !important;
}
.ps-0 {
padding-left: 0 !important;
}
.ps-1 {
padding-left: 0.25rem !important;
}
.ps-2 {
padding-left: 0.5rem !important;
}
.ps-3 {
padding-left: 1rem !important;
}
.ps-4 {
padding-left: 1.5rem !important;
}
.ps-5 {
padding-left: 3rem !important;
}
.fs-1 {
font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
font-size: 1.25rem !important;
}
.fs-6 {
font-size: 1rem !important;
}
.fst-italic {
font-style: italic !important;
}
.fst-normal {
font-style: normal !important;
}
.fw-light {
font-weight: 300 !important;
}
.fw-lighter {
font-weight: lighter !important;
}
.fw-normal {
font-weight: 400 !important;
}
.fw-bold {
font-weight: 700 !important;
}
.fw-bolder {
font-weight: bolder !important;
}
.text-lowercase {
text-transform: lowercase !important;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: capitalize !important;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-primary {
color: #0d6efd !important;
}
.text-secondary {
color: #6c757d !important;
}
.text-success {
color: #198754 !important;
}
.text-info {
color: #0dcaf0 !important;
}
.text-warning {
color: #ffc107 !important;
}
.text-danger {
color: #dc3545 !important;
}
.text-light {
color: #f8f9fa !important;
}
.text-dark {
color: #212529 !important;
}
.text-blue {
color: #0d6efd !important;
}
.text-blue-100 {
color: #cfe2ff !important;
}
.text-blue-200 {
color: #9ec5fe !important;
}
.text-blue-300 {
color: #6ea8fe !important;
}
.text-blue-400 {
color: #3d8bfd !important;
}
.text-blue-500 {
color: #0d6efd !important;
}
.text-blue-600 {
color: #0a58ca !important;
}
.text-blue-700 {
color: #084298 !important;
}
.text-blue-800 {
color: #052c65 !important;
}
.text-blue-900 {
color: #031633 !important;
}
.text-indigo {
color: #6610f2 !important;
}
.text-indigo-100 {
color: #e0cffc !important;
}
.text-indigo-200 {
color: #c29ffa !important;
}
.text-indigo-300 {
color: #a370f7 !important;
}
.text-indigo-400 {
color: #8540f5 !important;
}
.text-indigo-500 {
color: #6610f2 !important;
}
.text-indigo-600 {
color: #520dc2 !important;
}
.text-indigo-700 {
color: #3d0a91 !important;
}
.text-indigo-800 {
color: #290661 !important;
}
.text-indigo-900 {
color: #140330 !important;
}
.text-purple {
color: #6f42c1 !important;
}
.text-purple-100 {
color: #e2d9f3 !important;
}
.text-purple-200 {
color: #c5b3e6 !important;
}
.text-purple-300 {
color: #a98eda !important;
}
.text-purple-400 {
color: #8c68cd !important;
}
.text-purple-500 {
color: #6f42c1 !important;
}
.text-purple-600 {
color: #59359a !important;
}
.text-purple-700 {
color: #432874 !important;
}
.text-purple-800 {
color: #2c1a4d !important;
}
.text-purple-900 {
color: #160d27 !important;
}
.text-pink {
color: #d63384 !important;
}
.text-pink-100 {
color: #f7d6e6 !important;
}
.text-pink-200 {
color: #efadce !important;
}
.text-pink-300 {
color: #e685b5 !important;
}
.text-pink-400 {
color: #de5c9d !important;
}
.text-pink-500 {
color: #d63384 !important;
}
.text-pink-600 {
color: #ab296a !important;
}
.text-pink-700 {
color: #801f4f !important;
}
.text-pink-800 {
color: #561435 !important;
}
.text-pink-900 {
color: #2b0a1a !important;
}
.text-red {
color: #dc3545 !important;
}
.text-red-100 {
color: #f8d7da !important;
}
.text-red-200 {
color: #f1aeb5 !important;
}
.text-red-300 {
color: #ea868f !important;
}
.text-red-400 {
color: #e35d6a !important;
}
.text-red-500 {
color: #dc3545 !important;
}
.text-red-600 {
color: #b02a37 !important;
}
.text-red-700 {
color: #842029 !important;
}
.text-red-800 {
color: #58151c !important;
}
.text-red-900 {
color: #2c0b0e !important;
}
.text-orange {
color: #fd7e14 !important;
}
.text-orange-100 {
color: #ffe5d0 !important;
}
.text-orange-200 {
color: #fecba1 !important;
}
.text-orange-300 {
color: #feb272 !important;
}
.text-orange-400 {
color: #fd9843 !important;
}
.text-orange-500 {
color: #fd7e14 !important;
}
.text-orange-600 {
color: #ca6510 !important;
}
.text-orange-700 {
color: #984c0c !important;
}
.text-orange-800 {
color: #653208 !important;
}
.text-orange-900 {
color: #331904 !important;
}
.text-yellow {
color: #ffc107 !important;
}
.text-yellow-100 {
color: #fff3cd !important;
}
.text-yellow-200 {
color: #ffe69c !important;
}
.text-yellow-300 {
color: #ffda6a !important;
}
.text-yellow-400 {
color: #ffcd39 !important;
}
.text-yellow-500 {
color: #ffc107 !important;
}
.text-yellow-600 {
color: #cc9a06 !important;
}
.text-yellow-700 {
color: #997404 !important;
}
.text-yellow-800 {
color: #664d03 !important;
}
.text-yellow-900 {
color: #332701 !important;
}
.text-green {
color: #198754 !important;
}
.text-green-100 {
color: #d1e7dd !important;
}
.text-green-200 {
color: #a3cfbb !important;
}
.text-green-300 {
color: #75b798 !important;
}
.text-green-400 {
color: #479f76 !important;
}
.text-green-500 {
color: #198754 !important;
}
.text-green-600 {
color: #146c43 !important;
}
.text-green-700 {
color: #0f5132 !important;
}
.text-green-800 {
color: #0a3622 !important;
}
.text-green-900 {
color: #051b11 !important;
}
.text-teal {
color: #20c997 !important;
}
.text-teal-100 {
color: #d2f4ea !important;
}
.text-teal-200 {
color: #a6e9d5 !important;
}
.text-teal-300 {
color: #79dfc1 !important;
}
.text-teal-400 {
color: #4dd4ac !important;
}
.text-teal-500 {
color: #20c997 !important;
}
.text-teal-600 {
color: #1aa179 !important;
}
.text-teal-700 {
color: #13795b !important;
}
.text-teal-800 {
color: #0d503c !important;
}
.text-teal-900 {
color: #06281e !important;
}
.text-cyan {
color: #0dcaf0 !important;
}
.text-cyan-100 {
color: #cff4fc !important;
}
.text-cyan-200 {
color: #9eeaf9 !important;
}
.text-cyan-300 {
color: #6edff6 !important;
}
.text-cyan-400 {
color: #3dd5f3 !important;
}
.text-cyan-500 {
color: #0dcaf0 !important;
}
.text-cyan-600 {
color: #0aa2c0 !important;
}
.text-cyan-700 {
color: #087990 !important;
}
.text-cyan-800 {
color: #055160 !important;
}
.text-cyan-900 {
color: #032830 !important;
}
.text-gray-100 {
color: #f8f9fa !important;
}
.text-gray-200 {
color: #e9ecef !important;
}
.text-gray-300 {
color: #dee2e6 !important;
}
.text-gray-400 {
color: #ced4da !important;
}
.text-gray-500 {
color: #adb5bd !important;
}
.text-gray-600 {
color: #6c757d !important;
}
.text-gray-700 {
color: #495057 !important;
}
.text-gray-800 {
color: #343a40 !important;
}
.text-gray-900 {
color: #212529 !important;
}
.text-white {
color: #fff !important;
}
.text-body {
color: #212529 !important;
}
.text-muted {
color: #6c757d !important;
}
.text-black-50 {
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
color: inherit !important;
}
.lh-1 {
line-height: 1 !important;
}
.lh-sm {
line-height: 1.25 !important;
}
.lh-base {
line-height: 1.5 !important;
}
.lh-lg {
line-height: 2 !important;
}
.bg-primary {
background-color: #0d6efd !important;
}
.bg-secondary {
background-color: #6c757d !important;
}
.bg-success {
background-color: #198754 !important;
}
.bg-info {
background-color: #0dcaf0 !important;
}
.bg-warning {
background-color: #ffc107 !important;
}
.bg-danger {
background-color: #dc3545 !important;
}
.bg-light {
background-color: #f8f9fa !important;
}
.bg-dark {
background-color: #212529 !important;
}
.bg-blue {
background-color: #0d6efd !important;
}
.bg-blue-100 {
background-color: #cfe2ff !important;
}
.bg-blue-200 {
background-color: #9ec5fe !important;
}
.bg-blue-300 {
background-color: #6ea8fe !important;
}
.bg-blue-400 {
background-color: #3d8bfd !important;
}
.bg-blue-500 {
background-color: #0d6efd !important;
}
.bg-blue-600 {
background-color: #0a58ca !important;
}
.bg-blue-700 {
background-color: #084298 !important;
}
.bg-blue-800 {
background-color: #052c65 !important;
}
.bg-blue-900 {
background-color: #031633 !important;
}
.bg-indigo {
background-color: #6610f2 !important;
}
.bg-indigo-100 {
background-color: #e0cffc !important;
}
.bg-indigo-200 {
background-color: #c29ffa !important;
}
.bg-indigo-300 {
background-color: #a370f7 !important;
}
.bg-indigo-400 {
background-color: #8540f5 !important;
}
.bg-indigo-500 {
background-color: #6610f2 !important;
}
.bg-indigo-600 {
background-color: #520dc2 !important;
}
.bg-indigo-700 {
background-color: #3d0a91 !important;
}
.bg-indigo-800 {
background-color: #290661 !important;
}
.bg-indigo-900 {
background-color: #140330 !important;
}
.bg-purple {
background-color: #6f42c1 !important;
}
.bg-purple-100 {
background-color: #e2d9f3 !important;
}
.bg-purple-200 {
background-color: #c5b3e6 !important;
}
.bg-purple-300 {
background-color: #a98eda !important;
}
.bg-purple-400 {
background-color: #8c68cd !important;
}
.bg-purple-500 {
background-color: #6f42c1 !important;
}
.bg-purple-600 {
background-color: #59359a !important;
}
.bg-purple-700 {
background-color: #432874 !important;
}
.bg-purple-800 {
background-color: #2c1a4d !important;
}
.bg-purple-900 {
background-color: #160d27 !important;
}
.bg-pink {
background-color: #d63384 !important;
}
.bg-pink-100 {
background-color: #f7d6e6 !important;
}
.bg-pink-200 {
background-color: #efadce !important;
}
.bg-pink-300 {
background-color: #e685b5 !important;
}
.bg-pink-400 {
background-color: #de5c9d !important;
}
.bg-pink-500 {
background-color: #d63384 !important;
}
.bg-pink-600 {
background-color: #ab296a !important;
}
.bg-pink-700 {
background-color: #801f4f !important;
}
.bg-pink-800 {
background-color: #561435 !important;
}
.bg-pink-900 {
background-color: #2b0a1a !important;
}
.bg-red {
background-color: #dc3545 !important;
}
.bg-red-100 {
background-color: #f8d7da !important;
}
.bg-red-200 {
background-color: #f1aeb5 !important;
}
.bg-red-300 {
background-color: #ea868f !important;
}
.bg-red-400 {
background-color: #e35d6a !important;
}
.bg-red-500 {
background-color: #dc3545 !important;
}
.bg-red-600 {
background-color: #b02a37 !important;
}
.bg-red-700 {
background-color: #842029 !important;
}
.bg-red-800 {
background-color: #58151c !important;
}
.bg-red-900 {
background-color: #2c0b0e !important;
}
.bg-orange {
background-color: #fd7e14 !important;
}
.bg-orange-100 {
background-color: #ffe5d0 !important;
}
.bg-orange-200 {
background-color: #fecba1 !important;
}
.bg-orange-300 {
background-color: #feb272 !important;
}
.bg-orange-400 {
background-color: #fd9843 !important;
}
.bg-orange-500 {
background-color: #fd7e14 !important;
}
.bg-orange-600 {
background-color: #ca6510 !important;
}
.bg-orange-700 {
background-color: #984c0c !important;
}
.bg-orange-800 {
background-color: #653208 !important;
}
.bg-orange-900 {
background-color: #331904 !important;
}
.bg-yellow {
background-color: #ffc107 !important;
}
.bg-yellow-100 {
background-color: #fff3cd !important;
}
.bg-yellow-200 {
background-color: #ffe69c !important;
}
.bg-yellow-300 {
background-color: #ffda6a !important;
}
.bg-yellow-400 {
background-color: #ffcd39 !important;
}
.bg-yellow-500 {
background-color: #ffc107 !important;
}
.bg-yellow-600 {
background-color: #cc9a06 !important;
}
.bg-yellow-700 {
background-color: #997404 !important;
}
.bg-yellow-800 {
background-color: #664d03 !important;
}
.bg-yellow-900 {
background-color: #332701 !important;
}
.bg-green {
background-color: #198754 !important;
}
.bg-green-100 {
background-color: #d1e7dd !important;
}
.bg-green-200 {
background-color: #a3cfbb !important;
}
.bg-green-300 {
background-color: #75b798 !important;
}
.bg-green-400 {
background-color: #479f76 !important;
}
.bg-green-500 {
background-color: #198754 !important;
}
.bg-green-600 {
background-color: #146c43 !important;
}
.bg-green-700 {
background-color: #0f5132 !important;
}
.bg-green-800 {
background-color: #0a3622 !important;
}
.bg-green-900 {
background-color: #051b11 !important;
}
.bg-teal {
background-color: #20c997 !important;
}
.bg-teal-100 {
background-color: #d2f4ea !important;
}
.bg-teal-200 {
background-color: #a6e9d5 !important;
}
.bg-teal-300 {
background-color: #79dfc1 !important;
}
.bg-teal-400 {
background-color: #4dd4ac !important;
}
.bg-teal-500 {
background-color: #20c997 !important;
}
.bg-teal-600 {
background-color: #1aa179 !important;
}
.bg-teal-700 {
background-color: #13795b !important;
}
.bg-teal-800 {
background-color: #0d503c !important;
}
.bg-teal-900 {
background-color: #06281e !important;
}
.bg-cyan {
background-color: #0dcaf0 !important;
}
.bg-cyan-100 {
background-color: #cff4fc !important;
}
.bg-cyan-200 {
background-color: #9eeaf9 !important;
}
.bg-cyan-300 {
background-color: #6edff6 !important;
}
.bg-cyan-400 {
background-color: #3dd5f3 !important;
}
.bg-cyan-500 {
background-color: #0dcaf0 !important;
}
.bg-cyan-600 {
background-color: #0aa2c0 !important;
}
.bg-cyan-700 {
background-color: #087990 !important;
}
.bg-cyan-800 {
background-color: #055160 !important;
}
.bg-cyan-900 {
background-color: #032830 !important;
}
.bg-gray-100 {
background-color: #f8f9fa !important;
}
.bg-gray-200 {
background-color: #e9ecef !important;
}
.bg-gray-300 {
background-color: #dee2e6 !important;
}
.bg-gray-400 {
background-color: #ced4da !important;
}
.bg-gray-500 {
background-color: #adb5bd !important;
}
.bg-gray-600 {
background-color: #6c757d !important;
}
.bg-gray-700 {
background-color: #495057 !important;
}
.bg-gray-800 {
background-color: #343a40 !important;
}
.bg-gray-900 {
background-color: #212529 !important;
}
.bg-white {
background-color: #fff !important;
}
.bg-body {
background-color: #fff !important;
}
.bg-transparent {
background-color: transparent !important;
}
.bg-gradient {
background-image: var(--bs-gradient) !important;
}
.text-wrap {
white-space: normal !important;
}
.text-nowrap {
white-space: nowrap !important;
}
.text-decoration-none {
text-decoration: none !important;
}
.text-decoration-underline {
text-decoration: underline !important;
}
.text-decoration-line-through {
text-decoration: line-through !important;
}
/* rtl:begin:remove */
.text-break {
word-wrap: break-word !important;
word-break: break-word !important;
}
/* rtl:end:remove */
.font-monospace {
font-family: var(--bs-font-monospace) !important;
}
.user-select-all {
-webkit-user-select: all !important;
-moz-user-select: all !important;
-ms-user-select: all !important;
user-select: all !important;
}
.user-select-auto {
-webkit-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;
}
.user-select-none {
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.pe-none {
pointer-events: none !important;
}
.pe-auto {
pointer-events: auto !important;
}
.rounded {
border-radius: 0.25rem !important;
}
.rounded-0 {
border-radius: 0 !important;
}
.rounded-1 {
border-radius: 0.2rem !important;
}
.rounded-2 {
border-radius: 0.25rem !important;
}
.rounded-3 {
border-radius: 0.3rem !important;
}
.rounded-circle {
border-radius: 50% !important;
}
.rounded-pill {
border-radius: 50rem !important;
}
.rounded-top {
border-top-left-radius: 0.25rem !important;
border-top-right-radius: 0.25rem !important;
}
.rounded-end {
border-top-right-radius: 0.25rem !important;
border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
border-bottom-right-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important;
}
.rounded-start {
border-bottom-left-radius: 0.25rem !important;
border-top-left-radius: 0.25rem !important;
}
.visible {
visibility: visible !important;
}
.invisible {
visibility: hidden !important;
}
@media (min-width: 576px) {
.float-sm-start {
float: left !important;
}
.float-sm-end {
float: right !important;
}
.float-sm-none {
float: none !important;
}
.d-sm-inline {
display: inline !important;
}
.d-sm-inline-block {
display: inline-block !important;
}
.d-sm-block {
display: block !important;
}
.d-sm-grid {
display: grid !important;
}
.d-sm-table {
display: table !important;
}
.d-sm-table-row {
display: table-row !important;
}
.d-sm-table-cell {
display: table-cell !important;
}
.d-sm-flex {
display: flex !important;
}
.d-sm-inline-flex {
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
flex: 1 1 auto !important;
}
.flex-sm-row {
flex-direction: row !important;
}
.flex-sm-column {
flex-direction: column !important;
}
.flex-sm-row-reverse {
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
flex-shrink: 1 !important;
}
.flex-sm-wrap {
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-sm-0 {
gap: 0 !important;
}
.gap-sm-1 {
gap: 0.25rem !important;
}
.gap-sm-2 {
gap: 0.5rem !important;
}
.gap-sm-3 {
gap: 1rem !important;
}
.gap-sm-4 {
gap: 1.5rem !important;
}
.gap-sm-5 {
gap: 3rem !important;
}
.justify-content-sm-start {
justify-content: flex-start !important;
}
.justify-content-sm-end {
justify-content: flex-end !important;
}
.justify-content-sm-center {
justify-content: center !important;
}
.justify-content-sm-between {
justify-content: space-between !important;
}
.justify-content-sm-around {
justify-content: space-around !important;
}
.justify-content-sm-evenly {
justify-content: space-evenly !important;
}
.align-items-sm-start {
align-items: flex-start !important;
}
.align-items-sm-end {
align-items: flex-end !important;
}
.align-items-sm-center {
align-items: center !important;
}
.align-items-sm-baseline {
align-items: baseline !important;
}
.align-items-sm-stretch {
align-items: stretch !important;
}
.align-content-sm-start {
align-content: flex-start !important;
}
.align-content-sm-end {
align-content: flex-end !important;
}
.align-content-sm-center {
align-content: center !important;
}
.align-content-sm-between {
align-content: space-between !important;
}
.align-content-sm-around {
align-content: space-around !important;
}
.align-content-sm-stretch {
align-content: stretch !important;
}
.align-self-sm-auto {
align-self: auto !important;
}
.align-self-sm-start {
align-self: flex-start !important;
}
.align-self-sm-end {
align-self: flex-end !important;
}
.align-self-sm-center {
align-self: center !important;
}
.align-self-sm-baseline {
align-self: baseline !important;
}
.align-self-sm-stretch {
align-self: stretch !important;
}
.order-sm-first {
order: -1 !important;
}
.order-sm-0 {
order: 0 !important;
}
.order-sm-1 {
order: 1 !important;
}
.order-sm-2 {
order: 2 !important;
}
.order-sm-3 {
order: 3 !important;
}
.order-sm-4 {
order: 4 !important;
}
.order-sm-5 {
order: 5 !important;
}
.order-sm-last {
order: 6 !important;
}
.m-sm-0 {
margin: 0 !important;
}
.m-sm-1 {
margin: 0.25rem !important;
}
.m-sm-2 {
margin: 0.5rem !important;
}
.m-sm-3 {
margin: 1rem !important;
}
.m-sm-4 {
margin: 1.5rem !important;
}
.m-sm-5 {
margin: 3rem !important;
}
.m-sm-auto {
margin: auto !important;
}
.mx-sm-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-sm-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-sm-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-sm-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-sm-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-sm-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-sm-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-sm-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-sm-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-sm-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-sm-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-sm-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-sm-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-sm-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-sm-0 {
margin-top: 0 !important;
}
.mt-sm-1 {
margin-top: 0.25rem !important;
}
.mt-sm-2 {
margin-top: 0.5rem !important;
}
.mt-sm-3 {
margin-top: 1rem !important;
}
.mt-sm-4 {
margin-top: 1.5rem !important;
}
.mt-sm-5 {
margin-top: 3rem !important;
}
.mt-sm-auto {
margin-top: auto !important;
}
.me-sm-0 {
margin-right: 0 !important;
}
.me-sm-1 {
margin-right: 0.25rem !important;
}
.me-sm-2 {
margin-right: 0.5rem !important;
}
.me-sm-3 {
margin-right: 1rem !important;
}
.me-sm-4 {
margin-right: 1.5rem !important;
}
.me-sm-5 {
margin-right: 3rem !important;
}
.me-sm-auto {
margin-right: auto !important;
}
.mb-sm-0 {
margin-bottom: 0 !important;
}
.mb-sm-1 {
margin-bottom: 0.25rem !important;
}
.mb-sm-2 {
margin-bottom: 0.5rem !important;
}
.mb-sm-3 {
margin-bottom: 1rem !important;
}
.mb-sm-4 {
margin-bottom: 1.5rem !important;
}
.mb-sm-5 {
margin-bottom: 3rem !important;
}
.mb-sm-auto {
margin-bottom: auto !important;
}
.ms-sm-0 {
margin-left: 0 !important;
}
.ms-sm-1 {
margin-left: 0.25rem !important;
}
.ms-sm-2 {
margin-left: 0.5rem !important;
}
.ms-sm-3 {
margin-left: 1rem !important;
}
.ms-sm-4 {
margin-left: 1.5rem !important;
}
.ms-sm-5 {
margin-left: 3rem !important;
}
.ms-sm-auto {
margin-left: auto !important;
}
.p-sm-0 {
padding: 0 !important;
}
.p-sm-1 {
padding: 0.25rem !important;
}
.p-sm-2 {
padding: 0.5rem !important;
}
.p-sm-3 {
padding: 1rem !important;
}
.p-sm-4 {
padding: 1.5rem !important;
}
.p-sm-5 {
padding: 3rem !important;
}
.px-sm-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-sm-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-sm-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-sm-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-sm-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-sm-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-sm-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-sm-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-sm-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-sm-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-sm-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-sm-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-sm-0 {
padding-top: 0 !important;
}
.pt-sm-1 {
padding-top: 0.25rem !important;
}
.pt-sm-2 {
padding-top: 0.5rem !important;
}
.pt-sm-3 {
padding-top: 1rem !important;
}
.pt-sm-4 {
padding-top: 1.5rem !important;
}
.pt-sm-5 {
padding-top: 3rem !important;
}
.pe-sm-0 {
padding-right: 0 !important;
}
.pe-sm-1 {
padding-right: 0.25rem !important;
}
.pe-sm-2 {
padding-right: 0.5rem !important;
}
.pe-sm-3 {
padding-right: 1rem !important;
}
.pe-sm-4 {
padding-right: 1.5rem !important;
}
.pe-sm-5 {
padding-right: 3rem !important;
}
.pb-sm-0 {
padding-bottom: 0 !important;
}
.pb-sm-1 {
padding-bottom: 0.25rem !important;
}
.pb-sm-2 {
padding-bottom: 0.5rem !important;
}
.pb-sm-3 {
padding-bottom: 1rem !important;
}
.pb-sm-4 {
padding-bottom: 1.5rem !important;
}
.pb-sm-5 {
padding-bottom: 3rem !important;
}
.ps-sm-0 {
padding-left: 0 !important;
}
.ps-sm-1 {
padding-left: 0.25rem !important;
}
.ps-sm-2 {
padding-left: 0.5rem !important;
}
.ps-sm-3 {
padding-left: 1rem !important;
}
.ps-sm-4 {
padding-left: 1.5rem !important;
}
.ps-sm-5 {
padding-left: 3rem !important;
}
.text-sm-start {
text-align: left !important;
}
.text-sm-end {
text-align: right !important;
}
.text-sm-center {
text-align: center !important;
}
}
@media (min-width: 768px) {
.float-md-start {
float: left !important;
}
.float-md-end {
float: right !important;
}
.float-md-none {
float: none !important;
}
.d-md-inline {
display: inline !important;
}
.d-md-inline-block {
display: inline-block !important;
}
.d-md-block {
display: block !important;
}
.d-md-grid {
display: grid !important;
}
.d-md-table {
display: table !important;
}
.d-md-table-row {
display: table-row !important;
}
.d-md-table-cell {
display: table-cell !important;
}
.d-md-flex {
display: flex !important;
}
.d-md-inline-flex {
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
flex: 1 1 auto !important;
}
.flex-md-row {
flex-direction: row !important;
}
.flex-md-column {
flex-direction: column !important;
}
.flex-md-row-reverse {
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
flex-grow: 0 !important;
}
.flex-md-grow-1 {
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
flex-shrink: 1 !important;
}
.flex-md-wrap {
flex-wrap: wrap !important;
}
.flex-md-nowrap {
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-md-0 {
gap: 0 !important;
}
.gap-md-1 {
gap: 0.25rem !important;
}
.gap-md-2 {
gap: 0.5rem !important;
}
.gap-md-3 {
gap: 1rem !important;
}
.gap-md-4 {
gap: 1.5rem !important;
}
.gap-md-5 {
gap: 3rem !important;
}
.justify-content-md-start {
justify-content: flex-start !important;
}
.justify-content-md-end {
justify-content: flex-end !important;
}
.justify-content-md-center {
justify-content: center !important;
}
.justify-content-md-between {
justify-content: space-between !important;
}
.justify-content-md-around {
justify-content: space-around !important;
}
.justify-content-md-evenly {
justify-content: space-evenly !important;
}
.align-items-md-start {
align-items: flex-start !important;
}
.align-items-md-end {
align-items: flex-end !important;
}
.align-items-md-center {
align-items: center !important;
}
.align-items-md-baseline {
align-items: baseline !important;
}
.align-items-md-stretch {
align-items: stretch !important;
}
.align-content-md-start {
align-content: flex-start !important;
}
.align-content-md-end {
align-content: flex-end !important;
}
.align-content-md-center {
align-content: center !important;
}
.align-content-md-between {
align-content: space-between !important;
}
.align-content-md-around {
align-content: space-around !important;
}
.align-content-md-stretch {
align-content: stretch !important;
}
.align-self-md-auto {
align-self: auto !important;
}
.align-self-md-start {
align-self: flex-start !important;
}
.align-self-md-end {
align-self: flex-end !important;
}
.align-self-md-center {
align-self: center !important;
}
.align-self-md-baseline {
align-self: baseline !important;
}
.align-self-md-stretch {
align-self: stretch !important;
}
.order-md-first {
order: -1 !important;
}
.order-md-0 {
order: 0 !important;
}
.order-md-1 {
order: 1 !important;
}
.order-md-2 {
order: 2 !important;
}
.order-md-3 {
order: 3 !important;
}
.order-md-4 {
order: 4 !important;
}
.order-md-5 {
order: 5 !important;
}
.order-md-last {
order: 6 !important;
}
.m-md-0 {
margin: 0 !important;
}
.m-md-1 {
margin: 0.25rem !important;
}
.m-md-2 {
margin: 0.5rem !important;
}
.m-md-3 {
margin: 1rem !important;
}
.m-md-4 {
margin: 1.5rem !important;
}
.m-md-5 {
margin: 3rem !important;
}
.m-md-auto {
margin: auto !important;
}
.mx-md-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-md-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-md-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-md-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-md-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-md-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-md-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-md-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-md-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-md-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-md-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-md-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-md-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-md-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-md-0 {
margin-top: 0 !important;
}
.mt-md-1 {
margin-top: 0.25rem !important;
}
.mt-md-2 {
margin-top: 0.5rem !important;
}
.mt-md-3 {
margin-top: 1rem !important;
}
.mt-md-4 {
margin-top: 1.5rem !important;
}
.mt-md-5 {
margin-top: 3rem !important;
}
.mt-md-auto {
margin-top: auto !important;
}
.me-md-0 {
margin-right: 0 !important;
}
.me-md-1 {
margin-right: 0.25rem !important;
}
.me-md-2 {
margin-right: 0.5rem !important;
}
.me-md-3 {
margin-right: 1rem !important;
}
.me-md-4 {
margin-right: 1.5rem !important;
}
.me-md-5 {
margin-right: 3rem !important;
}
.me-md-auto {
margin-right: auto !important;
}
.mb-md-0 {
margin-bottom: 0 !important;
}
.mb-md-1 {
margin-bottom: 0.25rem !important;
}
.mb-md-2 {
margin-bottom: 0.5rem !important;
}
.mb-md-3 {
margin-bottom: 1rem !important;
}
.mb-md-4 {
margin-bottom: 1.5rem !important;
}
.mb-md-5 {
margin-bottom: 3rem !important;
}
.mb-md-auto {
margin-bottom: auto !important;
}
.ms-md-0 {
margin-left: 0 !important;
}
.ms-md-1 {
margin-left: 0.25rem !important;
}
.ms-md-2 {
margin-left: 0.5rem !important;
}
.ms-md-3 {
margin-left: 1rem !important;
}
.ms-md-4 {
margin-left: 1.5rem !important;
}
.ms-md-5 {
margin-left: 3rem !important;
}
.ms-md-auto {
margin-left: auto !important;
}
.p-md-0 {
padding: 0 !important;
}
.p-md-1 {
padding: 0.25rem !important;
}
.p-md-2 {
padding: 0.5rem !important;
}
.p-md-3 {
padding: 1rem !important;
}
.p-md-4 {
padding: 1.5rem !important;
}
.p-md-5 {
padding: 3rem !important;
}
.px-md-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-md-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-md-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-md-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-md-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-md-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-md-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-md-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-md-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-md-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-md-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-md-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-md-0 {
padding-top: 0 !important;
}
.pt-md-1 {
padding-top: 0.25rem !important;
}
.pt-md-2 {
padding-top: 0.5rem !important;
}
.pt-md-3 {
padding-top: 1rem !important;
}
.pt-md-4 {
padding-top: 1.5rem !important;
}
.pt-md-5 {
padding-top: 3rem !important;
}
.pe-md-0 {
padding-right: 0 !important;
}
.pe-md-1 {
padding-right: 0.25rem !important;
}
.pe-md-2 {
padding-right: 0.5rem !important;
}
.pe-md-3 {
padding-right: 1rem !important;
}
.pe-md-4 {
padding-right: 1.5rem !important;
}
.pe-md-5 {
padding-right: 3rem !important;
}
.pb-md-0 {
padding-bottom: 0 !important;
}
.pb-md-1 {
padding-bottom: 0.25rem !important;
}
.pb-md-2 {
padding-bottom: 0.5rem !important;
}
.pb-md-3 {
padding-bottom: 1rem !important;
}
.pb-md-4 {
padding-bottom: 1.5rem !important;
}
.pb-md-5 {
padding-bottom: 3rem !important;
}
.ps-md-0 {
padding-left: 0 !important;
}
.ps-md-1 {
padding-left: 0.25rem !important;
}
.ps-md-2 {
padding-left: 0.5rem !important;
}
.ps-md-3 {
padding-left: 1rem !important;
}
.ps-md-4 {
padding-left: 1.5rem !important;
}
.ps-md-5 {
padding-left: 3rem !important;
}
.text-md-start {
text-align: left !important;
}
.text-md-end {
text-align: right !important;
}
.text-md-center {
text-align: center !important;
}
}
@media (min-width: 992px) {
.float-lg-start {
float: left !important;
}
.float-lg-end {
float: right !important;
}
.float-lg-none {
float: none !important;
}
.d-lg-inline {
display: inline !important;
}
.d-lg-inline-block {
display: inline-block !important;
}
.d-lg-block {
display: block !important;
}
.d-lg-grid {
display: grid !important;
}
.d-lg-table {
display: table !important;
}
.d-lg-table-row {
display: table-row !important;
}
.d-lg-table-cell {
display: table-cell !important;
}
.d-lg-flex {
display: flex !important;
}
.d-lg-inline-flex {
display: inline-flex !important;
}
.d-lg-none {
display: none !important;
}
.flex-lg-fill {
flex: 1 1 auto !important;
}
.flex-lg-row {
flex-direction: row !important;
}
.flex-lg-column {
flex-direction: column !important;
}
.flex-lg-row-reverse {
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
flex-direction: column-reverse !important;
}
.flex-lg-grow-0 {
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
flex-shrink: 1 !important;
}
.flex-lg-wrap {
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-lg-0 {
gap: 0 !important;
}
.gap-lg-1 {
gap: 0.25rem !important;
}
.gap-lg-2 {
gap: 0.5rem !important;
}
.gap-lg-3 {
gap: 1rem !important;
}
.gap-lg-4 {
gap: 1.5rem !important;
}
.gap-lg-5 {
gap: 3rem !important;
}
.justify-content-lg-start {
justify-content: flex-start !important;
}
.justify-content-lg-end {
justify-content: flex-end !important;
}
.justify-content-lg-center {
justify-content: center !important;
}
.justify-content-lg-between {
justify-content: space-between !important;
}
.justify-content-lg-around {
justify-content: space-around !important;
}
.justify-content-lg-evenly {
justify-content: space-evenly !important;
}
.align-items-lg-start {
align-items: flex-start !important;
}
.align-items-lg-end {
align-items: flex-end !important;
}
.align-items-lg-center {
align-items: center !important;
}
.align-items-lg-baseline {
align-items: baseline !important;
}
.align-items-lg-stretch {
align-items: stretch !important;
}
.align-content-lg-start {
align-content: flex-start !important;
}
.align-content-lg-end {
align-content: flex-end !important;
}
.align-content-lg-center {
align-content: center !important;
}
.align-content-lg-between {
align-content: space-between !important;
}
.align-content-lg-around {
align-content: space-around !important;
}
.align-content-lg-stretch {
align-content: stretch !important;
}
.align-self-lg-auto {
align-self: auto !important;
}
.align-self-lg-start {
align-self: flex-start !important;
}
.align-self-lg-end {
align-self: flex-end !important;
}
.align-self-lg-center {
align-self: center !important;
}
.align-self-lg-baseline {
align-self: baseline !important;
}
.align-self-lg-stretch {
align-self: stretch !important;
}
.order-lg-first {
order: -1 !important;
}
.order-lg-0 {
order: 0 !important;
}
.order-lg-1 {
order: 1 !important;
}
.order-lg-2 {
order: 2 !important;
}
.order-lg-3 {
order: 3 !important;
}
.order-lg-4 {
order: 4 !important;
}
.order-lg-5 {
order: 5 !important;
}
.order-lg-last {
order: 6 !important;
}
.m-lg-0 {
margin: 0 !important;
}
.m-lg-1 {
margin: 0.25rem !important;
}
.m-lg-2 {
margin: 0.5rem !important;
}
.m-lg-3 {
margin: 1rem !important;
}
.m-lg-4 {
margin: 1.5rem !important;
}
.m-lg-5 {
margin: 3rem !important;
}
.m-lg-auto {
margin: auto !important;
}
.mx-lg-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-lg-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-lg-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-lg-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-lg-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-lg-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-lg-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-lg-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-lg-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-lg-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-lg-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-lg-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-lg-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-lg-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-lg-0 {
margin-top: 0 !important;
}
.mt-lg-1 {
margin-top: 0.25rem !important;
}
.mt-lg-2 {
margin-top: 0.5rem !important;
}
.mt-lg-3 {
margin-top: 1rem !important;
}
.mt-lg-4 {
margin-top: 1.5rem !important;
}
.mt-lg-5 {
margin-top: 3rem !important;
}
.mt-lg-auto {
margin-top: auto !important;
}
.me-lg-0 {
margin-right: 0 !important;
}
.me-lg-1 {
margin-right: 0.25rem !important;
}
.me-lg-2 {
margin-right: 0.5rem !important;
}
.me-lg-3 {
margin-right: 1rem !important;
}
.me-lg-4 {
margin-right: 1.5rem !important;
}
.me-lg-5 {
margin-right: 3rem !important;
}
.me-lg-auto {
margin-right: auto !important;
}
.mb-lg-0 {
margin-bottom: 0 !important;
}
.mb-lg-1 {
margin-bottom: 0.25rem !important;
}
.mb-lg-2 {
margin-bottom: 0.5rem !important;
}
.mb-lg-3 {
margin-bottom: 1rem !important;
}
.mb-lg-4 {
margin-bottom: 1.5rem !important;
}
.mb-lg-5 {
margin-bottom: 3rem !important;
}
.mb-lg-auto {
margin-bottom: auto !important;
}
.ms-lg-0 {
margin-left: 0 !important;
}
.ms-lg-1 {
margin-left: 0.25rem !important;
}
.ms-lg-2 {
margin-left: 0.5rem !important;
}
.ms-lg-3 {
margin-left: 1rem !important;
}
.ms-lg-4 {
margin-left: 1.5rem !important;
}
.ms-lg-5 {
margin-left: 3rem !important;
}
.ms-lg-auto {
margin-left: auto !important;
}
.p-lg-0 {
padding: 0 !important;
}
.p-lg-1 {
padding: 0.25rem !important;
}
.p-lg-2 {
padding: 0.5rem !important;
}
.p-lg-3 {
padding: 1rem !important;
}
.p-lg-4 {
padding: 1.5rem !important;
}
.p-lg-5 {
padding: 3rem !important;
}
.px-lg-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-lg-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-lg-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-lg-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-lg-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-lg-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-lg-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-lg-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-lg-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-lg-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-lg-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-lg-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-lg-0 {
padding-top: 0 !important;
}
.pt-lg-1 {
padding-top: 0.25rem !important;
}
.pt-lg-2 {
padding-top: 0.5rem !important;
}
.pt-lg-3 {
padding-top: 1rem !important;
}
.pt-lg-4 {
padding-top: 1.5rem !important;
}
.pt-lg-5 {
padding-top: 3rem !important;
}
.pe-lg-0 {
padding-right: 0 !important;
}
.pe-lg-1 {
padding-right: 0.25rem !important;
}
.pe-lg-2 {
padding-right: 0.5rem !important;
}
.pe-lg-3 {
padding-right: 1rem !important;
}
.pe-lg-4 {
padding-right: 1.5rem !important;
}
.pe-lg-5 {
padding-right: 3rem !important;
}
.pb-lg-0 {
padding-bottom: 0 !important;
}
.pb-lg-1 {
padding-bottom: 0.25rem !important;
}
.pb-lg-2 {
padding-bottom: 0.5rem !important;
}
.pb-lg-3 {
padding-bottom: 1rem !important;
}
.pb-lg-4 {
padding-bottom: 1.5rem !important;
}
.pb-lg-5 {
padding-bottom: 3rem !important;
}
.ps-lg-0 {
padding-left: 0 !important;
}
.ps-lg-1 {
padding-left: 0.25rem !important;
}
.ps-lg-2 {
padding-left: 0.5rem !important;
}
.ps-lg-3 {
padding-left: 1rem !important;
}
.ps-lg-4 {
padding-left: 1.5rem !important;
}
.ps-lg-5 {
padding-left: 3rem !important;
}
.text-lg-start {
text-align: left !important;
}
.text-lg-end {
text-align: right !important;
}
.text-lg-center {
text-align: center !important;
}
}
@media (min-width: 1200px) {
.float-xl-start {
float: left !important;
}
.float-xl-end {
float: right !important;
}
.float-xl-none {
float: none !important;
}
.d-xl-inline {
display: inline !important;
}
.d-xl-inline-block {
display: inline-block !important;
}
.d-xl-block {
display: block !important;
}
.d-xl-grid {
display: grid !important;
}
.d-xl-table {
display: table !important;
}
.d-xl-table-row {
display: table-row !important;
}
.d-xl-table-cell {
display: table-cell !important;
}
.d-xl-flex {
display: flex !important;
}
.d-xl-inline-flex {
display: inline-flex !important;
}
.d-xl-none {
display: none !important;
}
.flex-xl-fill {
flex: 1 1 auto !important;
}
.flex-xl-row {
flex-direction: row !important;
}
.flex-xl-column {
flex-direction: column !important;
}
.flex-xl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xl-grow-0 {
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
flex-shrink: 1 !important;
}
.flex-xl-wrap {
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-xl-0 {
gap: 0 !important;
}
.gap-xl-1 {
gap: 0.25rem !important;
}
.gap-xl-2 {
gap: 0.5rem !important;
}
.gap-xl-3 {
gap: 1rem !important;
}
.gap-xl-4 {
gap: 1.5rem !important;
}
.gap-xl-5 {
gap: 3rem !important;
}
.justify-content-xl-start {
justify-content: flex-start !important;
}
.justify-content-xl-end {
justify-content: flex-end !important;
}
.justify-content-xl-center {
justify-content: center !important;
}
.justify-content-xl-between {
justify-content: space-between !important;
}
.justify-content-xl-around {
justify-content: space-around !important;
}
.justify-content-xl-evenly {
justify-content: space-evenly !important;
}
.align-items-xl-start {
align-items: flex-start !important;
}
.align-items-xl-end {
align-items: flex-end !important;
}
.align-items-xl-center {
align-items: center !important;
}
.align-items-xl-baseline {
align-items: baseline !important;
}
.align-items-xl-stretch {
align-items: stretch !important;
}
.align-content-xl-start {
align-content: flex-start !important;
}
.align-content-xl-end {
align-content: flex-end !important;
}
.align-content-xl-center {
align-content: center !important;
}
.align-content-xl-between {
align-content: space-between !important;
}
.align-content-xl-around {
align-content: space-around !important;
}
.align-content-xl-stretch {
align-content: stretch !important;
}
.align-self-xl-auto {
align-self: auto !important;
}
.align-self-xl-start {
align-self: flex-start !important;
}
.align-self-xl-end {
align-self: flex-end !important;
}
.align-self-xl-center {
align-self: center !important;
}
.align-self-xl-baseline {
align-self: baseline !important;
}
.align-self-xl-stretch {
align-self: stretch !important;
}
.order-xl-first {
order: -1 !important;
}
.order-xl-0 {
order: 0 !important;
}
.order-xl-1 {
order: 1 !important;
}
.order-xl-2 {
order: 2 !important;
}
.order-xl-3 {
order: 3 !important;
}
.order-xl-4 {
order: 4 !important;
}
.order-xl-5 {
order: 5 !important;
}
.order-xl-last {
order: 6 !important;
}
.m-xl-0 {
margin: 0 !important;
}
.m-xl-1 {
margin: 0.25rem !important;
}
.m-xl-2 {
margin: 0.5rem !important;
}
.m-xl-3 {
margin: 1rem !important;
}
.m-xl-4 {
margin: 1.5rem !important;
}
.m-xl-5 {
margin: 3rem !important;
}
.m-xl-auto {
margin: auto !important;
}
.mx-xl-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-xl-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-xl-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-xl-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-xl-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-xl-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-xl-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-xl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xl-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xl-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xl-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xl-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xl-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-xl-0 {
margin-top: 0 !important;
}
.mt-xl-1 {
margin-top: 0.25rem !important;
}
.mt-xl-2 {
margin-top: 0.5rem !important;
}
.mt-xl-3 {
margin-top: 1rem !important;
}
.mt-xl-4 {
margin-top: 1.5rem !important;
}
.mt-xl-5 {
margin-top: 3rem !important;
}
.mt-xl-auto {
margin-top: auto !important;
}
.me-xl-0 {
margin-right: 0 !important;
}
.me-xl-1 {
margin-right: 0.25rem !important;
}
.me-xl-2 {
margin-right: 0.5rem !important;
}
.me-xl-3 {
margin-right: 1rem !important;
}
.me-xl-4 {
margin-right: 1.5rem !important;
}
.me-xl-5 {
margin-right: 3rem !important;
}
.me-xl-auto {
margin-right: auto !important;
}
.mb-xl-0 {
margin-bottom: 0 !important;
}
.mb-xl-1 {
margin-bottom: 0.25rem !important;
}
.mb-xl-2 {
margin-bottom: 0.5rem !important;
}
.mb-xl-3 {
margin-bottom: 1rem !important;
}
.mb-xl-4 {
margin-bottom: 1.5rem !important;
}
.mb-xl-5 {
margin-bottom: 3rem !important;
}
.mb-xl-auto {
margin-bottom: auto !important;
}
.ms-xl-0 {
margin-left: 0 !important;
}
.ms-xl-1 {
margin-left: 0.25rem !important;
}
.ms-xl-2 {
margin-left: 0.5rem !important;
}
.ms-xl-3 {
margin-left: 1rem !important;
}
.ms-xl-4 {
margin-left: 1.5rem !important;
}
.ms-xl-5 {
margin-left: 3rem !important;
}
.ms-xl-auto {
margin-left: auto !important;
}
.p-xl-0 {
padding: 0 !important;
}
.p-xl-1 {
padding: 0.25rem !important;
}
.p-xl-2 {
padding: 0.5rem !important;
}
.p-xl-3 {
padding: 1rem !important;
}
.p-xl-4 {
padding: 1.5rem !important;
}
.p-xl-5 {
padding: 3rem !important;
}
.px-xl-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-xl-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-xl-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-xl-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-xl-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-xl-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-xl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xl-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xl-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xl-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xl-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xl-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-xl-0 {
padding-top: 0 !important;
}
.pt-xl-1 {
padding-top: 0.25rem !important;
}
.pt-xl-2 {
padding-top: 0.5rem !important;
}
.pt-xl-3 {
padding-top: 1rem !important;
}
.pt-xl-4 {
padding-top: 1.5rem !important;
}
.pt-xl-5 {
padding-top: 3rem !important;
}
.pe-xl-0 {
padding-right: 0 !important;
}
.pe-xl-1 {
padding-right: 0.25rem !important;
}
.pe-xl-2 {
padding-right: 0.5rem !important;
}
.pe-xl-3 {
padding-right: 1rem !important;
}
.pe-xl-4 {
padding-right: 1.5rem !important;
}
.pe-xl-5 {
padding-right: 3rem !important;
}
.pb-xl-0 {
padding-bottom: 0 !important;
}
.pb-xl-1 {
padding-bottom: 0.25rem !important;
}
.pb-xl-2 {
padding-bottom: 0.5rem !important;
}
.pb-xl-3 {
padding-bottom: 1rem !important;
}
.pb-xl-4 {
padding-bottom: 1.5rem !important;
}
.pb-xl-5 {
padding-bottom: 3rem !important;
}
.ps-xl-0 {
padding-left: 0 !important;
}
.ps-xl-1 {
padding-left: 0.25rem !important;
}
.ps-xl-2 {
padding-left: 0.5rem !important;
}
.ps-xl-3 {
padding-left: 1rem !important;
}
.ps-xl-4 {
padding-left: 1.5rem !important;
}
.ps-xl-5 {
padding-left: 3rem !important;
}
.text-xl-start {
text-align: left !important;
}
.text-xl-end {
text-align: right !important;
}
.text-xl-center {
text-align: center !important;
}
}
@media (min-width: 1400px) {
.float-xxl-start {
float: left !important;
}
.float-xxl-end {
float: right !important;
}
.float-xxl-none {
float: none !important;
}
.d-xxl-inline {
display: inline !important;
}
.d-xxl-inline-block {
display: inline-block !important;
}
.d-xxl-block {
display: block !important;
}
.d-xxl-grid {
display: grid !important;
}
.d-xxl-table {
display: table !important;
}
.d-xxl-table-row {
display: table-row !important;
}
.d-xxl-table-cell {
display: table-cell !important;
}
.d-xxl-flex {
display: flex !important;
}
.d-xxl-inline-flex {
display: inline-flex !important;
}
.d-xxl-none {
display: none !important;
}
.flex-xxl-fill {
flex: 1 1 auto !important;
}
.flex-xxl-row {
flex-direction: row !important;
}
.flex-xxl-column {
flex-direction: column !important;
}
.flex-xxl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xxl-grow-0 {
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
flex-shrink: 1 !important;
}
.flex-xxl-wrap {
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-xxl-0 {
gap: 0 !important;
}
.gap-xxl-1 {
gap: 0.25rem !important;
}
.gap-xxl-2 {
gap: 0.5rem !important;
}
.gap-xxl-3 {
gap: 1rem !important;
}
.gap-xxl-4 {
gap: 1.5rem !important;
}
.gap-xxl-5 {
gap: 3rem !important;
}
.justify-content-xxl-start {
justify-content: flex-start !important;
}
.justify-content-xxl-end {
justify-content: flex-end !important;
}
.justify-content-xxl-center {
justify-content: center !important;
}
.justify-content-xxl-between {
justify-content: space-between !important;
}
.justify-content-xxl-around {
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
justify-content: space-evenly !important;
}
.align-items-xxl-start {
align-items: flex-start !important;
}
.align-items-xxl-end {
align-items: flex-end !important;
}
.align-items-xxl-center {
align-items: center !important;
}
.align-items-xxl-baseline {
align-items: baseline !important;
}
.align-items-xxl-stretch {
align-items: stretch !important;
}
.align-content-xxl-start {
align-content: flex-start !important;
}
.align-content-xxl-end {
align-content: flex-end !important;
}
.align-content-xxl-center {
align-content: center !important;
}
.align-content-xxl-between {
align-content: space-between !important;
}
.align-content-xxl-around {
align-content: space-around !important;
}
.align-content-xxl-stretch {
align-content: stretch !important;
}
.align-self-xxl-auto {
align-self: auto !important;
}
.align-self-xxl-start {
align-self: flex-start !important;
}
.align-self-xxl-end {
align-self: flex-end !important;
}
.align-self-xxl-center {
align-self: center !important;
}
.align-self-xxl-baseline {
align-self: baseline !important;
}
.align-self-xxl-stretch {
align-self: stretch !important;
}
.order-xxl-first {
order: -1 !important;
}
.order-xxl-0 {
order: 0 !important;
}
.order-xxl-1 {
order: 1 !important;
}
.order-xxl-2 {
order: 2 !important;
}
.order-xxl-3 {
order: 3 !important;
}
.order-xxl-4 {
order: 4 !important;
}
.order-xxl-5 {
order: 5 !important;
}
.order-xxl-last {
order: 6 !important;
}
.m-xxl-0 {
margin: 0 !important;
}
.m-xxl-1 {
margin: 0.25rem !important;
}
.m-xxl-2 {
margin: 0.5rem !important;
}
.m-xxl-3 {
margin: 1rem !important;
}
.m-xxl-4 {
margin: 1.5rem !important;
}
.m-xxl-5 {
margin: 3rem !important;
}
.m-xxl-auto {
margin: auto !important;
}
.mx-xxl-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-xxl-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-xxl-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-xxl-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-xxl-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-xxl-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-xxl-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-xxl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xxl-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xxl-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xxl-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xxl-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xxl-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xxl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-xxl-0 {
margin-top: 0 !important;
}
.mt-xxl-1 {
margin-top: 0.25rem !important;
}
.mt-xxl-2 {
margin-top: 0.5rem !important;
}
.mt-xxl-3 {
margin-top: 1rem !important;
}
.mt-xxl-4 {
margin-top: 1.5rem !important;
}
.mt-xxl-5 {
margin-top: 3rem !important;
}
.mt-xxl-auto {
margin-top: auto !important;
}
.me-xxl-0 {
margin-right: 0 !important;
}
.me-xxl-1 {
margin-right: 0.25rem !important;
}
.me-xxl-2 {
margin-right: 0.5rem !important;
}
.me-xxl-3 {
margin-right: 1rem !important;
}
.me-xxl-4 {
margin-right: 1.5rem !important;
}
.me-xxl-5 {
margin-right: 3rem !important;
}
.me-xxl-auto {
margin-right: auto !important;
}
.mb-xxl-0 {
margin-bottom: 0 !important;
}
.mb-xxl-1 {
margin-bottom: 0.25rem !important;
}
.mb-xxl-2 {
margin-bottom: 0.5rem !important;
}
.mb-xxl-3 {
margin-bottom: 1rem !important;
}
.mb-xxl-4 {
margin-bottom: 1.5rem !important;
}
.mb-xxl-5 {
margin-bottom: 3rem !important;
}
.mb-xxl-auto {
margin-bottom: auto !important;
}
.ms-xxl-0 {
margin-left: 0 !important;
}
.ms-xxl-1 {
margin-left: 0.25rem !important;
}
.ms-xxl-2 {
margin-left: 0.5rem !important;
}
.ms-xxl-3 {
margin-left: 1rem !important;
}
.ms-xxl-4 {
margin-left: 1.5rem !important;
}
.ms-xxl-5 {
margin-left: 3rem !important;
}
.ms-xxl-auto {
margin-left: auto !important;
}
.p-xxl-0 {
padding: 0 !important;
}
.p-xxl-1 {
padding: 0.25rem !important;
}
.p-xxl-2 {
padding: 0.5rem !important;
}
.p-xxl-3 {
padding: 1rem !important;
}
.p-xxl-4 {
padding: 1.5rem !important;
}
.p-xxl-5 {
padding: 3rem !important;
}
.px-xxl-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-xxl-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-xxl-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-xxl-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-xxl-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-xxl-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-xxl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xxl-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xxl-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xxl-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xxl-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xxl-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-xxl-0 {
padding-top: 0 !important;
}
.pt-xxl-1 {
padding-top: 0.25rem !important;
}
.pt-xxl-2 {
padding-top: 0.5rem !important;
}
.pt-xxl-3 {
padding-top: 1rem !important;
}
.pt-xxl-4 {
padding-top: 1.5rem !important;
}
.pt-xxl-5 {
padding-top: 3rem !important;
}
.pe-xxl-0 {
padding-right: 0 !important;
}
.pe-xxl-1 {
padding-right: 0.25rem !important;
}
.pe-xxl-2 {
padding-right: 0.5rem !important;
}
.pe-xxl-3 {
padding-right: 1rem !important;
}
.pe-xxl-4 {
padding-right: 1.5rem !important;
}
.pe-xxl-5 {
padding-right: 3rem !important;
}
.pb-xxl-0 {
padding-bottom: 0 !important;
}
.pb-xxl-1 {
padding-bottom: 0.25rem !important;
}
.pb-xxl-2 {
padding-bottom: 0.5rem !important;
}
.pb-xxl-3 {
padding-bottom: 1rem !important;
}
.pb-xxl-4 {
padding-bottom: 1.5rem !important;
}
.pb-xxl-5 {
padding-bottom: 3rem !important;
}
.ps-xxl-0 {
padding-left: 0 !important;
}
.ps-xxl-1 {
padding-left: 0.25rem !important;
}
.ps-xxl-2 {
padding-left: 0.5rem !important;
}
.ps-xxl-3 {
padding-left: 1rem !important;
}
.ps-xxl-4 {
padding-left: 1.5rem !important;
}
.ps-xxl-5 {
padding-left: 3rem !important;
}
.text-xxl-start {
text-align: left !important;
}
.text-xxl-end {
text-align: right !important;
}
.text-xxl-center {
text-align: center !important;
}
}
@media (min-width: 1200px) {
.fs-1 {
font-size: 2.5rem !important;
}
.fs-2 {
font-size: 2rem !important;
}
.fs-3 {
font-size: 1.75rem !important;
}
.fs-4 {
font-size: 1.5rem !important;
}
.fs-sm-1 {
font-size: 2.5rem !important;
}
.fs-sm-2 {
font-size: 2rem !important;
}
.fs-sm-3 {
font-size: 1.75rem !important;
}
.fs-sm-4 {
font-size: 1.5rem !important;
}
.fs-md-1 {
font-size: 2.5rem !important;
}
.fs-md-2 {
font-size: 2rem !important;
}
.fs-md-3 {
font-size: 1.75rem !important;
}
.fs-md-4 {
font-size: 1.5rem !important;
}
.fs-lg-1 {
font-size: 2.5rem !important;
}
.fs-lg-2 {
font-size: 2rem !important;
}
.fs-lg-3 {
font-size: 1.75rem !important;
}
.fs-lg-4 {
font-size: 1.5rem !important;
}
}
@media print {
.d-print-inline {
display: inline !important;
}
.d-print-inline-block {
display: inline-block !important;
}
.d-print-block {
display: block !important;
}
.d-print-grid {
display: grid !important;
}
.d-print-table {
display: table !important;
}
.d-print-table-row {
display: table-row !important;
}
.d-print-table-cell {
display: table-cell !important;
}
.d-print-flex {
display: flex !important;
}
.d-print-inline-flex {
display: inline-flex !important;
}
.d-print-none {
display: none !important;
}
}
|
public/css/bootstrap.css
|
@charset "UTF-8";
/*!
* Bootstrap v5.0.0-beta1 (https://getbootstrap.com/)
* Copyright 2011-2020 The Bootstrap Authors
* Copyright 2011-2020 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-blue: #0d6efd;
--bs-blue-100: #cfe2ff;
--bs-blue-200: #9ec5fe;
--bs-blue-300: #6ea8fe;
--bs-blue-400: #3d8bfd;
--bs-blue-500: #0d6efd;
--bs-blue-600: #0a58ca;
--bs-blue-700: #084298;
--bs-blue-800: #052c65;
--bs-blue-900: #031633;
--bs-indigo: #6610f2;
--bs-indigo-100: #e0cffc;
--bs-indigo-200: #c29ffa;
--bs-indigo-300: #a370f7;
--bs-indigo-400: #8540f5;
--bs-indigo-500: #6610f2;
--bs-indigo-600: #520dc2;
--bs-indigo-700: #3d0a91;
--bs-indigo-800: #290661;
--bs-indigo-900: #140330;
--bs-purple: #6f42c1;
--bs-purple-100: #e2d9f3;
--bs-purple-200: #c5b3e6;
--bs-purple-300: #a98eda;
--bs-purple-400: #8c68cd;
--bs-purple-500: #6f42c1;
--bs-purple-600: #59359a;
--bs-purple-700: #432874;
--bs-purple-800: #2c1a4d;
--bs-purple-900: #160d27;
--bs-pink: #d63384;
--bs-pink-100: #f7d6e6;
--bs-pink-200: #efadce;
--bs-pink-300: #e685b5;
--bs-pink-400: #de5c9d;
--bs-pink-500: #d63384;
--bs-pink-600: #ab296a;
--bs-pink-700: #801f4f;
--bs-pink-800: #561435;
--bs-pink-900: #2b0a1a;
--bs-red: #dc3545;
--bs-red-100: #f8d7da;
--bs-red-200: #f1aeb5;
--bs-red-300: #ea868f;
--bs-red-400: #e35d6a;
--bs-red-500: #dc3545;
--bs-red-600: #b02a37;
--bs-red-700: #842029;
--bs-red-800: #58151c;
--bs-red-900: #2c0b0e;
--bs-orange: #fd7e14;
--bs-orange-100: #ffe5d0;
--bs-orange-200: #fecba1;
--bs-orange-300: #feb272;
--bs-orange-400: #fd9843;
--bs-orange-500: #fd7e14;
--bs-orange-600: #ca6510;
--bs-orange-700: #984c0c;
--bs-orange-800: #653208;
--bs-orange-900: #331904;
--bs-yellow: #ffc107;
--bs-yellow-100: #fff3cd;
--bs-yellow-200: #ffe69c;
--bs-yellow-300: #ffda6a;
--bs-yellow-400: #ffcd39;
--bs-yellow-500: #ffc107;
--bs-yellow-600: #cc9a06;
--bs-yellow-700: #997404;
--bs-yellow-800: #664d03;
--bs-yellow-900: #332701;
--bs-green: #198754;
--bs-green-100: #d1e7dd;
--bs-green-200: #a3cfbb;
--bs-green-300: #75b798;
--bs-green-400: #479f76;
--bs-green-500: #198754;
--bs-green-600: #146c43;
--bs-green-700: #0f5132;
--bs-green-800: #0a3622;
--bs-green-900: #051b11;
--bs-teal: #20c997;
--bs-teal-100: #d2f4ea;
--bs-teal-200: #a6e9d5;
--bs-teal-300: #79dfc1;
--bs-teal-400: #4dd4ac;
--bs-teal-500: #20c997;
--bs-teal-600: #1aa179;
--bs-teal-700: #13795b;
--bs-teal-800: #0d503c;
--bs-teal-900: #06281e;
--bs-cyan: #0dcaf0;
--bs-cyan-100: #cff4fc;
--bs-cyan-200: #9eeaf9;
--bs-cyan-300: #6edff6;
--bs-cyan-400: #3dd5f3;
--bs-cyan-500: #0dcaf0;
--bs-cyan-600: #0aa2c0;
--bs-cyan-700: #087990;
--bs-cyan-800: #055160;
--bs-cyan-900: #032830;
--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-white: #fff;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
*,
*::before,
*::after {
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: var(--bs-font-sans-serif);
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
background-color: #fff;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
[tabindex="-1"]:focus:not(:focus-visible) {
outline: 0 !important;
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
h1,
.h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1,
.h1 {
font-size: 2.5rem;
}
}
h2,
.h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2,
.h2 {
font-size: 2rem;
}
}
h3,
.h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3,
.h3 {
font-size: 1.75rem;
}
}
h4,
.h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4,
.h4 {
font-size: 1.5rem;
}
}
h5,
.h5 {
font-size: 1.25rem;
}
h6,
.h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-bs-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
-webkit-text-decoration-skip-ink: none;
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: 0.5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small,
.small {
font-size: 0.875em;
}
mark,
.mark {
padding: 0.2em;
background-color: #fcf8e3;
}
sub,
sup {
position: relative;
font-size: 0.75em;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.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 ;
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 {
outline: dotted 1px;
outline: -webkit-focus-ring-color auto 5px;
}
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;
}
[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;
}
.lead {
font-size: 1.25rem;
font-weight: 300;
}
.display-1 {
font-size: calc(1.625rem + 4.5vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-1 {
font-size: 5rem;
}
}
.display-2 {
font-size: calc(1.575rem + 3.9vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-2 {
font-size: 4.5rem;
}
}
.display-3 {
font-size: calc(1.525rem + 3.3vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-3 {
font-size: 4rem;
}
}
.display-4 {
font-size: calc(1.475rem + 2.7vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-4 {
font-size: 3.5rem;
}
}
.display-5 {
font-size: calc(1.425rem + 2.1vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-5 {
font-size: 3rem;
}
}
.display-6 {
font-size: calc(1.375rem + 1.5vw);
font-weight: 300;
line-height: 1.2;
}
@media (min-width: 1200px) {
.display-6 {
font-size: 2.5rem;
}
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
list-style: none;
}
.list-inline-item {
display: inline-block;
}
.list-inline-item:not(:last-child) {
margin-right: 0.5rem;
}
.initialism {
font-size: 0.875em;
text-transform: uppercase;
}
.blockquote {
margin-bottom: 1rem;
font-size: 1.25rem;
}
.blockquote > :last-child {
margin-bottom: 0;
}
.blockquote-footer {
margin-top: -1rem;
margin-bottom: 1rem;
font-size: 0.875em;
color: #6c757d;
}
.blockquote-footer::before {
content: "\2014\A0";
}
.img-fluid {
max-width: 100%;
height: auto;
}
.img-thumbnail {
padding: 0.25rem;
background-color: #fff;
border: 1px solid #dee2e6;
border-radius: 0.25rem;
max-width: 100%;
height: auto;
}
.figure {
display: inline-block;
}
.figure-img {
margin-bottom: 0.5rem;
line-height: 1;
}
.figure-caption {
font-size: 0.875em;
color: #6c757d;
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
width: 100%;
padding-right: var(--bs-gutter-x, 0.75rem);
padding-left: var(--bs-gutter-x, 0.75rem);
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container-sm,
.container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container-md,
.container-sm,
.container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container-lg,
.container-md,
.container-sm,
.container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
max-width: 1320px;
}
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: flex;
flex-wrap: wrap;
margin-top: calc(var(--bs-gutter-y) * -1);
margin-right: calc(var(--bs-gutter-x) / -2);
margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) / 2);
padding-left: calc(var(--bs-gutter-x) / 2);
margin-top: var(--bs-gutter-y);
}
.col {
flex: 1 0 0%;
}
.row-cols-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-auto {
flex: 0 0 auto;
width: auto;
}
.col-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-3 {
flex: 0 0 auto;
width: 25%;
}
.col-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-6 {
flex: 0 0 auto;
width: 50%;
}
.col-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-9 {
flex: 0 0 auto;
width: 75%;
}
.col-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.3333333333%;
}
.offset-2 {
margin-left: 16.6666666667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.3333333333%;
}
.offset-5 {
margin-left: 41.6666666667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.3333333333%;
}
.offset-8 {
margin-left: 66.6666666667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.3333333333%;
}
.offset-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-sm-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-sm-auto {
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-sm-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-sm-3 {
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-sm-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-sm-6 {
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-sm-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-sm-9 {
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-sm-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-sm-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.3333333333%;
}
.offset-sm-2 {
margin-left: 16.6666666667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.3333333333%;
}
.offset-sm-5 {
margin-left: 41.6666666667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.3333333333%;
}
.offset-sm-8 {
margin-left: 66.6666666667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.3333333333%;
}
.offset-sm-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-md-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-md-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-md-auto {
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-md-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-md-3 {
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-md-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-md-6 {
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-md-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-md-9 {
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-md-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-md-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.3333333333%;
}
.offset-md-2 {
margin-left: 16.6666666667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.3333333333%;
}
.offset-md-5 {
margin-left: 41.6666666667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.3333333333%;
}
.offset-md-8 {
margin-left: 66.6666666667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.3333333333%;
}
.offset-md-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-lg-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-lg-auto {
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-lg-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-lg-3 {
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-lg-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-lg-6 {
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-lg-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-lg-9 {
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-lg-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-lg-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.3333333333%;
}
.offset-lg-2 {
margin-left: 16.6666666667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.3333333333%;
}
.offset-lg-5 {
margin-left: 41.6666666667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.3333333333%;
}
.offset-lg-8 {
margin-left: 66.6666666667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.3333333333%;
}
.offset-lg-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-xl-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-xl-auto {
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-xl-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-xl-3 {
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-xl-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-xl-6 {
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-xl-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-xl-9 {
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-xl-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-xl-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.3333333333%;
}
.offset-xl-2 {
margin-left: 16.6666666667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.3333333333%;
}
.offset-xl-5 {
margin-left: 41.6666666667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.3333333333%;
}
.offset-xl-8 {
margin-left: 66.6666666667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.3333333333%;
}
.offset-xl-11 {
margin-left: 91.6666666667%;
}
.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 {
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-xxl-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-xxl-auto {
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
flex: 0 0 auto;
width: 8.3333333333%;
}
.col-xxl-2 {
flex: 0 0 auto;
width: 16.6666666667%;
}
.col-xxl-3 {
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
flex: 0 0 auto;
width: 33.3333333333%;
}
.col-xxl-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-xxl-6 {
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
.col-xxl-8 {
flex: 0 0 auto;
width: 66.6666666667%;
}
.col-xxl-9 {
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
flex: 0 0 auto;
width: 83.3333333333%;
}
.col-xxl-11 {
flex: 0 0 auto;
width: 91.6666666667%;
}
.col-xxl-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.3333333333%;
}
.offset-xxl-2 {
margin-left: 16.6666666667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.3333333333%;
}
.offset-xxl-5 {
margin-left: 41.6666666667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.3333333333%;
}
.offset-xxl-8 {
margin-left: 66.6666666667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.3333333333%;
}
.offset-xxl-11 {
margin-left: 91.6666666667%;
}
.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;
}
}
.table {
--bs-table-bg: transparent;
--bs-table-striped-color: #212529;
--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
--bs-table-active-color: #212529;
--bs-table-active-bg: rgba(0, 0, 0, 0.1);
--bs-table-hover-color: #212529;
--bs-table-hover-bg: rgba(0, 0, 0, 0.075);
width: 100%;
margin-bottom: 1rem;
color: #212529;
vertical-align: top;
border-color: #dee2e6;
}
.table > :not(caption) > * > * {
padding: 0.5rem 0.5rem;
background-color: var(--bs-table-bg);
background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
border-bottom-width: 1px;
}
.table > tbody {
vertical-align: inherit;
}
.table > thead {
vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
border-bottom-color: currentColor;
}
.caption-top {
caption-side: top;
}
.table-sm > :not(caption) > * > * {
padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
border-width: 0 1px;
}
.table-borderless > :not(caption) > * > * {
border-bottom-width: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) {
--bs-table-accent-bg: var(--bs-table-striped-bg);
color: var(--bs-table-striped-color);
}
.table-active {
--bs-table-accent-bg: var(--bs-table-active-bg);
color: var(--bs-table-active-color);
}
.table-hover > tbody > tr:hover {
--bs-table-accent-bg: var(--bs-table-hover-bg);
color: var(--bs-table-hover-color);
}
.table-primary {
--bs-table-bg: #cfe2ff;
--bs-table-striped-bg: #c5d7f2;
--bs-table-striped-color: #000;
--bs-table-active-bg: #bacbe6;
--bs-table-active-color: #000;
--bs-table-hover-bg: #bfd1ec;
--bs-table-hover-color: #000;
color: #000;
border-color: #bacbe6;
}
.table-secondary {
--bs-table-bg: #e2e3e5;
--bs-table-striped-bg: #d7d8da;
--bs-table-striped-color: #000;
--bs-table-active-bg: #cbccce;
--bs-table-active-color: #000;
--bs-table-hover-bg: #d1d2d4;
--bs-table-hover-color: #000;
color: #000;
border-color: #cbccce;
}
.table-success {
--bs-table-bg: #d1e7dd;
--bs-table-striped-bg: #c7dbd2;
--bs-table-striped-color: #000;
--bs-table-active-bg: #bcd0c7;
--bs-table-active-color: #000;
--bs-table-hover-bg: #c1d6cc;
--bs-table-hover-color: #000;
color: #000;
border-color: #bcd0c7;
}
.table-info {
--bs-table-bg: #cff4fc;
--bs-table-striped-bg: #c5e8ef;
--bs-table-striped-color: #000;
--bs-table-active-bg: #badce3;
--bs-table-active-color: #000;
--bs-table-hover-bg: #bfe2e9;
--bs-table-hover-color: #000;
color: #000;
border-color: #badce3;
}
.table-warning {
--bs-table-bg: #fff3cd;
--bs-table-striped-bg: #f2e7c3;
--bs-table-striped-color: #000;
--bs-table-active-bg: #e6dbb9;
--bs-table-active-color: #000;
--bs-table-hover-bg: #ece1be;
--bs-table-hover-color: #000;
color: #000;
border-color: #e6dbb9;
}
.table-danger {
--bs-table-bg: #f8d7da;
--bs-table-striped-bg: #eccccf;
--bs-table-striped-color: #000;
--bs-table-active-bg: #dfc2c4;
--bs-table-active-color: #000;
--bs-table-hover-bg: #e5c7ca;
--bs-table-hover-color: #000;
color: #000;
border-color: #dfc2c4;
}
.table-light {
--bs-table-bg: #f8f9fa;
--bs-table-striped-bg: #ecedee;
--bs-table-striped-color: #000;
--bs-table-active-bg: #dfe0e1;
--bs-table-active-color: #000;
--bs-table-hover-bg: #e5e6e7;
--bs-table-hover-color: #000;
color: #000;
border-color: #dfe0e1;
}
.table-dark {
--bs-table-bg: #212529;
--bs-table-striped-bg: #2c3034;
--bs-table-striped-color: #fff;
--bs-table-active-bg: #373b3e;
--bs-table-active-color: #fff;
--bs-table-hover-bg: #323539;
--bs-table-hover-color: #fff;
color: #fff;
border-color: #373b3e;
}
.table-responsive {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
.table-responsive-sm {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 767.98px) {
.table-responsive-md {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 991.98px) {
.table-responsive-lg {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 1199.98px) {
.table-responsive-xl {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 1399.98px) {
.table-responsive-xxl {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
.form-label {
margin-bottom: 0.5rem;
}
.col-form-label {
padding-top: calc(0.375rem + 1px);
padding-bottom: calc(0.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.5;
}
.col-form-label-lg {
padding-top: calc(0.5rem + 1px);
padding-bottom: calc(0.5rem + 1px);
font-size: 1.25rem;
}
.col-form-label-sm {
padding-top: calc(0.25rem + 1px);
padding-bottom: calc(0.25rem + 1px);
font-size: 0.875rem;
}
.form-text {
margin-top: 0.25rem;
font-size: 0.875em;
color: #6c757d;
}
.form-control {
display: block;
width: 100%;
padding: 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control {
transition: none;
}
}
.form-control[type=file] {
overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
cursor: pointer;
}
.form-control:focus {
color: #212529;
background-color: #fff;
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
height: 1.5em;
}
.form-control::-moz-placeholder {
color: #6c757d;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #6c757d;
opacity: 1;
}
.form-control::placeholder {
color: #6c757d;
opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
background-color: #e9ecef;
opacity: 1;
}
.form-control::file-selector-button {
padding: 0.375rem 0.75rem;
margin: -0.375rem -0.75rem;
-webkit-margin-end: 0.75rem;
margin-inline-end: 0.75rem;
color: #212529;
background-color: #e9ecef;
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 1px;
border-radius: 0;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control::file-selector-button {
transition: none;
}
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
padding: 0.375rem 0.75rem;
margin: -0.375rem -0.75rem;
-webkit-margin-end: 0.75rem;
margin-inline-end: 0.75rem;
color: #212529;
background-color: #e9ecef;
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 1px;
border-radius: 0;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control::-webkit-file-upload-button {
-webkit-transition: none;
transition: none;
}
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
background-color: #dde0e3;
}
.form-control-plaintext {
display: block;
width: 100%;
padding: 0.375rem 0;
margin-bottom: 0;
line-height: 1.5;
color: #212529;
background-color: transparent;
border: solid transparent;
border-width: 1px 0;
}
.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
padding-right: 0;
padding-left: 0;
}
.form-control-sm {
min-height: calc(1.5em + 0.5rem + 2px);
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
padding: 0.25rem 0.5rem;
margin: -0.25rem -0.5rem;
-webkit-margin-end: 0.5rem;
margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
padding: 0.25rem 0.5rem;
margin: -0.25rem -0.5rem;
-webkit-margin-end: 0.5rem;
margin-inline-end: 0.5rem;
}
.form-control-lg {
min-height: calc(1.5em + 1rem + 2px);
padding: 0.5rem 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
padding: 0.5rem 1rem;
margin: -0.5rem -1rem;
-webkit-margin-end: 1rem;
margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
padding: 0.5rem 1rem;
margin: -0.5rem -1rem;
-webkit-margin-end: 1rem;
margin-inline-end: 1rem;
}
textarea.form-control {
min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
min-height: calc(1.5em + 1rem + 2px);
}
.form-control-color {
max-width: 3rem;
height: auto;
padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
cursor: pointer;
}
.form-control-color::-moz-color-swatch {
height: 1.5em;
border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
height: 1.5em;
border-radius: 0.25rem;
}
.form-select {
display: block;
width: 100%;
padding: 0.375rem 1.75rem 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
vertical-align: middle;
background-color: #fff;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 0.75rem center;
background-size: 16px 12px;
border: 1px solid #ced4da;
border-radius: 0.25rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.form-select:focus {
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
padding-right: 0.75rem;
background-image: none;
}
.form-select:disabled {
color: #6c757d;
background-color: #e9ecef;
}
.form-select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #212529;
}
.form-select-sm {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
padding-left: 0.5rem;
font-size: 0.875rem;
}
.form-select-lg {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.25rem;
}
.form-check {
display: block;
min-height: 1.5rem;
padding-left: 1.5em;
margin-bottom: 0.125rem;
}
.form-check .form-check-input {
float: left;
margin-left: -1.5em;
}
.form-check-input {
width: 1em;
height: 1em;
margin-top: 0.25em;
vertical-align: top;
background-color: #fff;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
border: 1px solid rgba(0, 0, 0, 0.25);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-print-color-adjust: exact;
color-adjust: exact;
transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-check-input {
transition: none;
}
}
.form-check-input[type=checkbox] {
border-radius: 0.25em;
}
.form-check-input[type=radio] {
border-radius: 50%;
}
.form-check-input:active {
filter: brightness(90%);
}
.form-check-input:focus {
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
background-color: #0d6efd;
border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
background-color: #0d6efd;
border-color: #0d6efd;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
pointer-events: none;
filter: none;
opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
opacity: 0.5;
}
.form-switch {
padding-left: 2.5em;
}
.form-switch .form-check-input {
width: 2em;
margin-left: -2.5em;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
background-position: left center;
border-radius: 2em;
}
.form-switch .form-check-input:focus {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
background-position: right center;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-inline {
display: inline-block;
margin-right: 1rem;
}
.btn-check {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.btn-check[disabled] + .btn,
.btn-check:disabled + .btn {
pointer-events: none;
filter: none;
opacity: 0.65;
}
.form-range {
width: 100%;
height: 1.5rem;
padding: 0;
background-color: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.form-range:focus {
outline: none;
}
.form-range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
border: 0;
}
.form-range::-webkit-slider-thumb {
width: 1rem;
height: 1rem;
margin-top: -0.25rem;
background-color: #0d6efd;
border: 0;
border-radius: 1rem;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
-webkit-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-range::-webkit-slider-thumb {
-webkit-transition: none;
transition: none;
}
}
.form-range::-webkit-slider-thumb:active {
background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: #dee2e6;
border-color: transparent;
border-radius: 1rem;
}
.form-range::-moz-range-thumb {
width: 1rem;
height: 1rem;
background-color: #0d6efd;
border: 0;
border-radius: 1rem;
-moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-range::-moz-range-thumb {
-moz-transition: none;
transition: none;
}
}
.form-range::-moz-range-thumb:active {
background-color: #b6d4fe;
}
.form-range::-moz-range-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: #dee2e6;
border-color: transparent;
border-radius: 1rem;
}
.form-range:disabled {
pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
background-color: #adb5bd;
}
.form-floating {
position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
height: calc(3.5rem + 2px);
padding: 1rem 0.75rem;
}
.form-floating > label {
position: absolute;
top: 0;
left: 0;
height: 100%;
padding: 1rem 0.75rem;
pointer-events: none;
border: 1px solid transparent;
transform-origin: 0 0;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-floating > label {
transition: none;
}
}
.form-floating > .form-control::-moz-placeholder {
color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::placeholder {
color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-select {
padding-top: 1.625rem;
padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
opacity: 0.65;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
opacity: 0.65;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
opacity: 0.65;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
opacity: 0.65;
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: stretch;
width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
position: relative;
flex: 1 1 auto;
width: 1%;
min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
z-index: 3;
}
.input-group .btn {
position: relative;
z-index: 2;
}
.input-group .btn:focus {
z-index: 3;
}
.input-group-text {
display: flex;
align-items: center;
padding: 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: center;
white-space: nowrap;
background-color: #e9ecef;
border: 1px solid #ced4da;
border-radius: 0.25rem;
}
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
padding: 0.5rem 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
border-radius: 0.2rem;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
padding-right: 1.75rem;
}
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
margin-left: -1px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.valid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: #198754;
}
.valid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
display: none;
max-width: 100%;
padding: 0.25rem 0.5rem;
margin-top: 0.1rem;
font-size: 0.875rem;
color: #fff;
background-color: rgba(25, 135, 84, 0.9);
border-radius: 0.25rem;
}
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
display: block;
}
.was-validated .form-control:valid,
.form-control.is-valid {
border-color: #198754;
padding-right: calc(1.5em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right calc(0.375em + 0.1875rem) center;
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
border-color: #198754;
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
padding-right: calc(1.5em + 0.75rem);
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .form-select:valid,
.form-select.is-valid {
border-color: #198754;
padding-right: calc(0.75em + 2.3125rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
background-position: right 0.75rem center, center right 1.75rem;
background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
border-color: #198754;
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid,
.form-check-input.is-valid {
border-color: #198754;
}
.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
background-color: #198754;
}
.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
color: #198754;
}
.form-check-inline .form-check-input ~ .valid-feedback {
margin-left: 0.5em;
}
.invalid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: #dc3545;
}
.invalid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
display: none;
max-width: 100%;
padding: 0.25rem 0.5rem;
margin-top: 0.1rem;
font-size: 0.875rem;
color: #fff;
background-color: rgba(220, 53, 69, 0.9);
border-radius: 0.25rem;
}
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
display: block;
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
border-color: #dc3545;
padding-right: calc(1.5em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right calc(0.375em + 0.1875rem) center;
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
border-color: #dc3545;
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
padding-right: calc(1.5em + 0.75rem);
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .form-select:invalid,
.form-select.is-invalid {
border-color: #dc3545;
padding-right: calc(0.75em + 2.3125rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
background-position: right 0.75rem center, center right 1.75rem;
background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
border-color: #dc3545;
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
color: #dc3545;
}
.form-check-inline .form-check-input ~ .invalid-feedback {
margin-left: 0.5em;
}
.btn {
display: inline-block;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: center;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
transition: none;
}
}
.btn:hover {
color: #212529;
}
.btn-check:focus + .btn,
.btn:focus {
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
pointer-events: none;
opacity: 0.65;
}
.btn-primary {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-primary:hover {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #0a58ca;
border-color: #0a53be;
}
.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-primary:disabled,
.btn-primary.disabled {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-secondary {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-secondary:hover {
color: #fff;
background-color: #5c636a;
border-color: #565e64;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
color: #fff;
background-color: #5c636a;
border-color: #565e64;
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
color: #fff;
background-color: #565e64;
border-color: #51585e;
}
.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:disabled,
.btn-secondary.disabled {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-success {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-success:hover {
color: #fff;
background-color: #157347;
border-color: #146c43;
}
.btn-check:focus + .btn-success,
.btn-success:focus {
color: #fff;
background-color: #157347;
border-color: #146c43;
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-success,
.btn-check:active + .btn-success,
.btn-success:active,
.btn-success.active,
.show > .btn-success.dropdown-toggle {
color: #fff;
background-color: #146c43;
border-color: #13653f;
}
.btn-check:checked + .btn-success:focus,
.btn-check:active + .btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show > .btn-success.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success:disabled,
.btn-success.disabled {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-info {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-info:hover {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-info,
.btn-check:active + .btn-info,
.btn-info:active,
.btn-info.active,
.show > .btn-info.dropdown-toggle {
color: #000;
background-color: #3dd5f3;
border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus,
.btn-check:active + .btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show > .btn-info.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info:disabled,
.btn-info.disabled {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-warning {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-warning:hover {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-warning,
.btn-check:active + .btn-warning,
.btn-warning:active,
.btn-warning.active,
.show > .btn-warning.dropdown-toggle {
color: #000;
background-color: #ffcd39;
border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus,
.btn-check:active + .btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show > .btn-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning:disabled,
.btn-warning.disabled {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-danger {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-danger:hover {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger,
.btn-check:active + .btn-danger,
.btn-danger:active,
.btn-danger.active,
.show > .btn-danger.dropdown-toggle {
color: #fff;
background-color: #b02a37;
border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus,
.btn-check:active + .btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show > .btn-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled,
.btn-danger.disabled {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-light {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-light:hover {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
}
.btn-check:focus + .btn-light,
.btn-light:focus {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light,
.btn-check:active + .btn-light,
.btn-light:active,
.btn-light.active,
.show > .btn-light.dropdown-toggle {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus,
.btn-light:active:focus,
.btn-light.active:focus,
.show > .btn-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled,
.btn-light.disabled {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-dark {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-dark:hover {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark,
.btn-dark:active,
.btn-dark.active,
.show > .btn-dark.dropdown-toggle {
color: #fff;
background-color: #1a1e21;
border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled,
.btn-dark.disabled {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-blue {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-blue:hover {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
}
.btn-check:focus + .btn-blue,
.btn-blue:focus {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-blue,
.btn-check:active + .btn-blue,
.btn-blue:active,
.btn-blue.active,
.show > .btn-blue.dropdown-toggle {
color: #fff;
background-color: #0a58ca;
border-color: #0a53be;
}
.btn-check:checked + .btn-blue:focus,
.btn-check:active + .btn-blue:focus,
.btn-blue:active:focus,
.btn-blue.active:focus,
.show > .btn-blue.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-blue:disabled,
.btn-blue.disabled {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-blue-100 {
color: #000;
background-color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-blue-100:hover {
color: #000;
background-color: #d6e6ff;
border-color: #d4e5ff;
}
.btn-check:focus + .btn-blue-100,
.btn-blue-100:focus {
color: #000;
background-color: #d6e6ff;
border-color: #d4e5ff;
box-shadow: 0 0 0 0.25rem rgba(176, 192, 217, 0.5);
}
.btn-check:checked + .btn-blue-100,
.btn-check:active + .btn-blue-100,
.btn-blue-100:active,
.btn-blue-100.active,
.show > .btn-blue-100.dropdown-toggle {
color: #000;
background-color: #d9e8ff;
border-color: #d4e5ff;
}
.btn-check:checked + .btn-blue-100:focus,
.btn-check:active + .btn-blue-100:focus,
.btn-blue-100:active:focus,
.btn-blue-100.active:focus,
.show > .btn-blue-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(176, 192, 217, 0.5);
}
.btn-blue-100:disabled,
.btn-blue-100.disabled {
color: #000;
background-color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-blue-200 {
color: #000;
background-color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-blue-200:hover {
color: #000;
background-color: #adcefe;
border-color: #a8cbfe;
}
.btn-check:focus + .btn-blue-200,
.btn-blue-200:focus {
color: #000;
background-color: #adcefe;
border-color: #a8cbfe;
box-shadow: 0 0 0 0.25rem rgba(134, 167, 216, 0.5);
}
.btn-check:checked + .btn-blue-200,
.btn-check:active + .btn-blue-200,
.btn-blue-200:active,
.btn-blue-200.active,
.show > .btn-blue-200.dropdown-toggle {
color: #000;
background-color: #b1d1fe;
border-color: #a8cbfe;
}
.btn-check:checked + .btn-blue-200:focus,
.btn-check:active + .btn-blue-200:focus,
.btn-blue-200:active:focus,
.btn-blue-200.active:focus,
.show > .btn-blue-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(134, 167, 216, 0.5);
}
.btn-blue-200:disabled,
.btn-blue-200.disabled {
color: #000;
background-color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-blue-300 {
color: #000;
background-color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-blue-300:hover {
color: #000;
background-color: #84b5fe;
border-color: #7db1fe;
}
.btn-check:focus + .btn-blue-300,
.btn-blue-300:focus {
color: #000;
background-color: #84b5fe;
border-color: #7db1fe;
box-shadow: 0 0 0 0.25rem rgba(94, 143, 216, 0.5);
}
.btn-check:checked + .btn-blue-300,
.btn-check:active + .btn-blue-300,
.btn-blue-300:active,
.btn-blue-300.active,
.show > .btn-blue-300.dropdown-toggle {
color: #000;
background-color: #8bb9fe;
border-color: #7db1fe;
}
.btn-check:checked + .btn-blue-300:focus,
.btn-check:active + .btn-blue-300:focus,
.btn-blue-300:active:focus,
.btn-blue-300.active:focus,
.show > .btn-blue-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(94, 143, 216, 0.5);
}
.btn-blue-300:disabled,
.btn-blue-300.disabled {
color: #000;
background-color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-blue-400 {
color: #000;
background-color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-blue-400:hover {
color: #000;
background-color: #5a9cfd;
border-color: #5097fd;
}
.btn-check:focus + .btn-blue-400,
.btn-blue-400:focus {
color: #000;
background-color: #5a9cfd;
border-color: #5097fd;
box-shadow: 0 0 0 0.25rem rgba(52, 118, 215, 0.5);
}
.btn-check:checked + .btn-blue-400,
.btn-check:active + .btn-blue-400,
.btn-blue-400:active,
.btn-blue-400.active,
.show > .btn-blue-400.dropdown-toggle {
color: #000;
background-color: #64a2fd;
border-color: #5097fd;
}
.btn-check:checked + .btn-blue-400:focus,
.btn-check:active + .btn-blue-400:focus,
.btn-blue-400:active:focus,
.btn-blue-400.active:focus,
.show > .btn-blue-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 118, 215, 0.5);
}
.btn-blue-400:disabled,
.btn-blue-400.disabled {
color: #000;
background-color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-blue-500 {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-blue-500:hover {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
}
.btn-check:focus + .btn-blue-500,
.btn-blue-500:focus {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-blue-500,
.btn-check:active + .btn-blue-500,
.btn-blue-500:active,
.btn-blue-500.active,
.show > .btn-blue-500.dropdown-toggle {
color: #fff;
background-color: #0a58ca;
border-color: #0a53be;
}
.btn-check:checked + .btn-blue-500:focus,
.btn-check:active + .btn-blue-500:focus,
.btn-blue-500:active:focus,
.btn-blue-500.active:focus,
.show > .btn-blue-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-blue-500:disabled,
.btn-blue-500.disabled {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-blue-600 {
color: #fff;
background-color: #0a58ca;
border-color: #0a58ca;
}
.btn-blue-600:hover {
color: #fff;
background-color: #094bac;
border-color: #0846a2;
}
.btn-check:focus + .btn-blue-600,
.btn-blue-600:focus {
color: #fff;
background-color: #094bac;
border-color: #0846a2;
box-shadow: 0 0 0 0.25rem rgba(47, 113, 210, 0.5);
}
.btn-check:checked + .btn-blue-600,
.btn-check:active + .btn-blue-600,
.btn-blue-600:active,
.btn-blue-600.active,
.show > .btn-blue-600.dropdown-toggle {
color: #fff;
background-color: #0846a2;
border-color: #084298;
}
.btn-check:checked + .btn-blue-600:focus,
.btn-check:active + .btn-blue-600:focus,
.btn-blue-600:active:focus,
.btn-blue-600.active:focus,
.show > .btn-blue-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(47, 113, 210, 0.5);
}
.btn-blue-600:disabled,
.btn-blue-600.disabled {
color: #fff;
background-color: #0a58ca;
border-color: #0a58ca;
}
.btn-blue-700 {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.btn-blue-700:hover {
color: #fff;
background-color: #073881;
border-color: #06357a;
}
.btn-check:focus + .btn-blue-700,
.btn-blue-700:focus {
color: #fff;
background-color: #073881;
border-color: #06357a;
box-shadow: 0 0 0 0.25rem rgba(45, 94, 167, 0.5);
}
.btn-check:checked + .btn-blue-700,
.btn-check:active + .btn-blue-700,
.btn-blue-700:active,
.btn-blue-700.active,
.show > .btn-blue-700.dropdown-toggle {
color: #fff;
background-color: #06357a;
border-color: #063272;
}
.btn-check:checked + .btn-blue-700:focus,
.btn-check:active + .btn-blue-700:focus,
.btn-blue-700:active:focus,
.btn-blue-700.active:focus,
.show > .btn-blue-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(45, 94, 167, 0.5);
}
.btn-blue-700:disabled,
.btn-blue-700.disabled {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.btn-blue-800 {
color: #fff;
background-color: #052c65;
border-color: #052c65;
}
.btn-blue-800:hover {
color: #fff;
background-color: #042556;
border-color: #042351;
}
.btn-check:focus + .btn-blue-800,
.btn-blue-800:focus {
color: #fff;
background-color: #042556;
border-color: #042351;
box-shadow: 0 0 0 0.25rem rgba(43, 76, 124, 0.5);
}
.btn-check:checked + .btn-blue-800,
.btn-check:active + .btn-blue-800,
.btn-blue-800:active,
.btn-blue-800.active,
.show > .btn-blue-800.dropdown-toggle {
color: #fff;
background-color: #042351;
border-color: #04214c;
}
.btn-check:checked + .btn-blue-800:focus,
.btn-check:active + .btn-blue-800:focus,
.btn-blue-800:active:focus,
.btn-blue-800.active:focus,
.show > .btn-blue-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 76, 124, 0.5);
}
.btn-blue-800:disabled,
.btn-blue-800.disabled {
color: #fff;
background-color: #052c65;
border-color: #052c65;
}
.btn-blue-900 {
color: #fff;
background-color: #031633;
border-color: #031633;
}
.btn-blue-900:hover {
color: #fff;
background-color: #03132b;
border-color: #021229;
}
.btn-check:focus + .btn-blue-900,
.btn-blue-900:focus {
color: #fff;
background-color: #03132b;
border-color: #021229;
box-shadow: 0 0 0 0.25rem rgba(41, 57, 82, 0.5);
}
.btn-check:checked + .btn-blue-900,
.btn-check:active + .btn-blue-900,
.btn-blue-900:active,
.btn-blue-900.active,
.show > .btn-blue-900.dropdown-toggle {
color: #fff;
background-color: #021229;
border-color: #021126;
}
.btn-check:checked + .btn-blue-900:focus,
.btn-check:active + .btn-blue-900:focus,
.btn-blue-900:active:focus,
.btn-blue-900.active:focus,
.show > .btn-blue-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(41, 57, 82, 0.5);
}
.btn-blue-900:disabled,
.btn-blue-900.disabled {
color: #fff;
background-color: #031633;
border-color: #031633;
}
.btn-indigo {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-indigo:hover {
color: #fff;
background-color: #570ece;
border-color: #520dc2;
}
.btn-check:focus + .btn-indigo,
.btn-indigo:focus {
color: #fff;
background-color: #570ece;
border-color: #520dc2;
box-shadow: 0 0 0 0.25rem rgba(125, 52, 244, 0.5);
}
.btn-check:checked + .btn-indigo,
.btn-check:active + .btn-indigo,
.btn-indigo:active,
.btn-indigo.active,
.show > .btn-indigo.dropdown-toggle {
color: #fff;
background-color: #520dc2;
border-color: #4d0cb6;
}
.btn-check:checked + .btn-indigo:focus,
.btn-check:active + .btn-indigo:focus,
.btn-indigo:active:focus,
.btn-indigo.active:focus,
.show > .btn-indigo.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(125, 52, 244, 0.5);
}
.btn-indigo:disabled,
.btn-indigo.disabled {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-indigo-100 {
color: #000;
background-color: #e0cffc;
border-color: #e0cffc;
}
.btn-indigo-100:hover {
color: #000;
background-color: #e5d6fc;
border-color: #e3d4fc;
}
.btn-check:focus + .btn-indigo-100,
.btn-indigo-100:focus {
color: #000;
background-color: #e5d6fc;
border-color: #e3d4fc;
box-shadow: 0 0 0 0.25rem rgba(190, 176, 214, 0.5);
}
.btn-check:checked + .btn-indigo-100,
.btn-check:active + .btn-indigo-100,
.btn-indigo-100:active,
.btn-indigo-100.active,
.show > .btn-indigo-100.dropdown-toggle {
color: #000;
background-color: #e6d9fd;
border-color: #e3d4fc;
}
.btn-check:checked + .btn-indigo-100:focus,
.btn-check:active + .btn-indigo-100:focus,
.btn-indigo-100:active:focus,
.btn-indigo-100.active:focus,
.show > .btn-indigo-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(190, 176, 214, 0.5);
}
.btn-indigo-100:disabled,
.btn-indigo-100.disabled {
color: #000;
background-color: #e0cffc;
border-color: #e0cffc;
}
.btn-indigo-200 {
color: #000;
background-color: #c29ffa;
border-color: #c29ffa;
}
.btn-indigo-200:hover {
color: #000;
background-color: #cbadfb;
border-color: #c8a9fb;
}
.btn-check:focus + .btn-indigo-200,
.btn-indigo-200:focus {
color: #000;
background-color: #cbadfb;
border-color: #c8a9fb;
box-shadow: 0 0 0 0.25rem rgba(165, 135, 213, 0.5);
}
.btn-check:checked + .btn-indigo-200,
.btn-check:active + .btn-indigo-200,
.btn-indigo-200:active,
.btn-indigo-200.active,
.show > .btn-indigo-200.dropdown-toggle {
color: #000;
background-color: #ceb2fb;
border-color: #c8a9fb;
}
.btn-check:checked + .btn-indigo-200:focus,
.btn-check:active + .btn-indigo-200:focus,
.btn-indigo-200:active:focus,
.btn-indigo-200.active:focus,
.show > .btn-indigo-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(165, 135, 213, 0.5);
}
.btn-indigo-200:disabled,
.btn-indigo-200.disabled {
color: #000;
background-color: #c29ffa;
border-color: #c29ffa;
}
.btn-indigo-300 {
color: #000;
background-color: #a370f7;
border-color: #a370f7;
}
.btn-indigo-300:hover {
color: #000;
background-color: #b185f8;
border-color: #ac7ef8;
}
.btn-check:focus + .btn-indigo-300,
.btn-indigo-300:focus {
color: #000;
background-color: #b185f8;
border-color: #ac7ef8;
box-shadow: 0 0 0 0.25rem rgba(139, 95, 210, 0.5);
}
.btn-check:checked + .btn-indigo-300,
.btn-check:active + .btn-indigo-300,
.btn-indigo-300:active,
.btn-indigo-300.active,
.show > .btn-indigo-300.dropdown-toggle {
color: #000;
background-color: #b58df9;
border-color: #ac7ef8;
}
.btn-check:checked + .btn-indigo-300:focus,
.btn-check:active + .btn-indigo-300:focus,
.btn-indigo-300:active:focus,
.btn-indigo-300.active:focus,
.show > .btn-indigo-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(139, 95, 210, 0.5);
}
.btn-indigo-300:disabled,
.btn-indigo-300.disabled {
color: #000;
background-color: #a370f7;
border-color: #a370f7;
}
.btn-indigo-400 {
color: #fff;
background-color: #8540f5;
border-color: #8540f5;
}
.btn-indigo-400:hover {
color: #fff;
background-color: #7136d0;
border-color: #6a33c4;
}
.btn-check:focus + .btn-indigo-400,
.btn-indigo-400:focus {
color: #fff;
background-color: #7136d0;
border-color: #6a33c4;
box-shadow: 0 0 0 0.25rem rgba(151, 93, 247, 0.5);
}
.btn-check:checked + .btn-indigo-400,
.btn-check:active + .btn-indigo-400,
.btn-indigo-400:active,
.btn-indigo-400.active,
.show > .btn-indigo-400.dropdown-toggle {
color: #fff;
background-color: #6a33c4;
border-color: #6430b8;
}
.btn-check:checked + .btn-indigo-400:focus,
.btn-check:active + .btn-indigo-400:focus,
.btn-indigo-400:active:focus,
.btn-indigo-400.active:focus,
.show > .btn-indigo-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(151, 93, 247, 0.5);
}
.btn-indigo-400:disabled,
.btn-indigo-400.disabled {
color: #fff;
background-color: #8540f5;
border-color: #8540f5;
}
.btn-indigo-500 {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-indigo-500:hover {
color: #fff;
background-color: #570ece;
border-color: #520dc2;
}
.btn-check:focus + .btn-indigo-500,
.btn-indigo-500:focus {
color: #fff;
background-color: #570ece;
border-color: #520dc2;
box-shadow: 0 0 0 0.25rem rgba(125, 52, 244, 0.5);
}
.btn-check:checked + .btn-indigo-500,
.btn-check:active + .btn-indigo-500,
.btn-indigo-500:active,
.btn-indigo-500.active,
.show > .btn-indigo-500.dropdown-toggle {
color: #fff;
background-color: #520dc2;
border-color: #4d0cb6;
}
.btn-check:checked + .btn-indigo-500:focus,
.btn-check:active + .btn-indigo-500:focus,
.btn-indigo-500:active:focus,
.btn-indigo-500.active:focus,
.show > .btn-indigo-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(125, 52, 244, 0.5);
}
.btn-indigo-500:disabled,
.btn-indigo-500.disabled {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-indigo-600 {
color: #fff;
background-color: #520dc2;
border-color: #520dc2;
}
.btn-indigo-600:hover {
color: #fff;
background-color: #460ba5;
border-color: #420a9b;
}
.btn-check:focus + .btn-indigo-600,
.btn-indigo-600:focus {
color: #fff;
background-color: #460ba5;
border-color: #420a9b;
box-shadow: 0 0 0 0.25rem rgba(108, 49, 203, 0.5);
}
.btn-check:checked + .btn-indigo-600,
.btn-check:active + .btn-indigo-600,
.btn-indigo-600:active,
.btn-indigo-600.active,
.show > .btn-indigo-600.dropdown-toggle {
color: #fff;
background-color: #420a9b;
border-color: #3e0a92;
}
.btn-check:checked + .btn-indigo-600:focus,
.btn-check:active + .btn-indigo-600:focus,
.btn-indigo-600:active:focus,
.btn-indigo-600.active:focus,
.show > .btn-indigo-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 49, 203, 0.5);
}
.btn-indigo-600:disabled,
.btn-indigo-600.disabled {
color: #fff;
background-color: #520dc2;
border-color: #520dc2;
}
.btn-indigo-700 {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.btn-indigo-700:hover {
color: #fff;
background-color: #34097b;
border-color: #310874;
}
.btn-check:focus + .btn-indigo-700,
.btn-indigo-700:focus {
color: #fff;
background-color: #34097b;
border-color: #310874;
box-shadow: 0 0 0 0.25rem rgba(90, 47, 162, 0.5);
}
.btn-check:checked + .btn-indigo-700,
.btn-check:active + .btn-indigo-700,
.btn-indigo-700:active,
.btn-indigo-700.active,
.show > .btn-indigo-700.dropdown-toggle {
color: #fff;
background-color: #310874;
border-color: #2e086d;
}
.btn-check:checked + .btn-indigo-700:focus,
.btn-check:active + .btn-indigo-700:focus,
.btn-indigo-700:active:focus,
.btn-indigo-700.active:focus,
.show > .btn-indigo-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(90, 47, 162, 0.5);
}
.btn-indigo-700:disabled,
.btn-indigo-700.disabled {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.btn-indigo-800 {
color: #fff;
background-color: #290661;
border-color: #290661;
}
.btn-indigo-800:hover {
color: #fff;
background-color: #230552;
border-color: #21054e;
}
.btn-check:focus + .btn-indigo-800,
.btn-indigo-800:focus {
color: #fff;
background-color: #230552;
border-color: #21054e;
box-shadow: 0 0 0 0.25rem rgba(73, 43, 121, 0.5);
}
.btn-check:checked + .btn-indigo-800,
.btn-check:active + .btn-indigo-800,
.btn-indigo-800:active,
.btn-indigo-800.active,
.show > .btn-indigo-800.dropdown-toggle {
color: #fff;
background-color: #21054e;
border-color: #1f0549;
}
.btn-check:checked + .btn-indigo-800:focus,
.btn-check:active + .btn-indigo-800:focus,
.btn-indigo-800:active:focus,
.btn-indigo-800.active:focus,
.show > .btn-indigo-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(73, 43, 121, 0.5);
}
.btn-indigo-800:disabled,
.btn-indigo-800.disabled {
color: #fff;
background-color: #290661;
border-color: #290661;
}
.btn-indigo-900 {
color: #fff;
background-color: #140330;
border-color: #140330;
}
.btn-indigo-900:hover {
color: #fff;
background-color: #110329;
border-color: #100226;
}
.btn-check:focus + .btn-indigo-900,
.btn-indigo-900:focus {
color: #fff;
background-color: #110329;
border-color: #100226;
box-shadow: 0 0 0 0.25rem rgba(55, 41, 79, 0.5);
}
.btn-check:checked + .btn-indigo-900,
.btn-check:active + .btn-indigo-900,
.btn-indigo-900:active,
.btn-indigo-900.active,
.show > .btn-indigo-900.dropdown-toggle {
color: #fff;
background-color: #100226;
border-color: #0f0224;
}
.btn-check:checked + .btn-indigo-900:focus,
.btn-check:active + .btn-indigo-900:focus,
.btn-indigo-900:active:focus,
.btn-indigo-900.active:focus,
.show > .btn-indigo-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(55, 41, 79, 0.5);
}
.btn-indigo-900:disabled,
.btn-indigo-900.disabled {
color: #fff;
background-color: #140330;
border-color: #140330;
}
.btn-purple {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-purple:hover {
color: #fff;
background-color: #5e38a4;
border-color: #59359a;
}
.btn-check:focus + .btn-purple,
.btn-purple:focus {
color: #fff;
background-color: #5e38a4;
border-color: #59359a;
box-shadow: 0 0 0 0.25rem rgba(133, 94, 202, 0.5);
}
.btn-check:checked + .btn-purple,
.btn-check:active + .btn-purple,
.btn-purple:active,
.btn-purple.active,
.show > .btn-purple.dropdown-toggle {
color: #fff;
background-color: #59359a;
border-color: #533291;
}
.btn-check:checked + .btn-purple:focus,
.btn-check:active + .btn-purple:focus,
.btn-purple:active:focus,
.btn-purple.active:focus,
.show > .btn-purple.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(133, 94, 202, 0.5);
}
.btn-purple:disabled,
.btn-purple.disabled {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-purple-100 {
color: #000;
background-color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-purple-100:hover {
color: #000;
background-color: #e6dff5;
border-color: #e5ddf4;
}
.btn-check:focus + .btn-purple-100,
.btn-purple-100:focus {
color: #000;
background-color: #e6dff5;
border-color: #e5ddf4;
box-shadow: 0 0 0 0.25rem rgba(192, 184, 207, 0.5);
}
.btn-check:checked + .btn-purple-100,
.btn-check:active + .btn-purple-100,
.btn-purple-100:active,
.btn-purple-100.active,
.show > .btn-purple-100.dropdown-toggle {
color: #000;
background-color: #e8e1f5;
border-color: #e5ddf4;
}
.btn-check:checked + .btn-purple-100:focus,
.btn-check:active + .btn-purple-100:focus,
.btn-purple-100:active:focus,
.btn-purple-100.active:focus,
.show > .btn-purple-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(192, 184, 207, 0.5);
}
.btn-purple-100:disabled,
.btn-purple-100.disabled {
color: #000;
background-color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-purple-200 {
color: #000;
background-color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-purple-200:hover {
color: #000;
background-color: #cebeea;
border-color: #cbbbe9;
}
.btn-check:focus + .btn-purple-200,
.btn-purple-200:focus {
color: #000;
background-color: #cebeea;
border-color: #cbbbe9;
box-shadow: 0 0 0 0.25rem rgba(167, 152, 196, 0.5);
}
.btn-check:checked + .btn-purple-200,
.btn-check:active + .btn-purple-200,
.btn-purple-200:active,
.btn-purple-200.active,
.show > .btn-purple-200.dropdown-toggle {
color: #000;
background-color: #d1c2eb;
border-color: #cbbbe9;
}
.btn-check:checked + .btn-purple-200:focus,
.btn-check:active + .btn-purple-200:focus,
.btn-purple-200:active:focus,
.btn-purple-200.active:focus,
.show > .btn-purple-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(167, 152, 196, 0.5);
}
.btn-purple-200:disabled,
.btn-purple-200.disabled {
color: #000;
background-color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-purple-300 {
color: #000;
background-color: #a98eda;
border-color: #a98eda;
}
.btn-purple-300:hover {
color: #000;
background-color: #b69fe0;
border-color: #b299de;
}
.btn-check:focus + .btn-purple-300,
.btn-purple-300:focus {
color: #000;
background-color: #b69fe0;
border-color: #b299de;
box-shadow: 0 0 0 0.25rem rgba(144, 121, 185, 0.5);
}
.btn-check:checked + .btn-purple-300,
.btn-check:active + .btn-purple-300,
.btn-purple-300:active,
.btn-purple-300.active,
.show > .btn-purple-300.dropdown-toggle {
color: #000;
background-color: #baa5e1;
border-color: #b299de;
}
.btn-check:checked + .btn-purple-300:focus,
.btn-check:active + .btn-purple-300:focus,
.btn-purple-300:active:focus,
.btn-purple-300.active:focus,
.show > .btn-purple-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(144, 121, 185, 0.5);
}
.btn-purple-300:disabled,
.btn-purple-300.disabled {
color: #000;
background-color: #a98eda;
border-color: #a98eda;
}
.btn-purple-400 {
color: #000;
background-color: #8c68cd;
border-color: #8c68cd;
}
.btn-purple-400:hover {
color: #000;
background-color: #9d7fd5;
border-color: #9877d2;
}
.btn-check:focus + .btn-purple-400,
.btn-purple-400:focus {
color: #000;
background-color: #9d7fd5;
border-color: #9877d2;
box-shadow: 0 0 0 0.25rem rgba(119, 88, 174, 0.5);
}
.btn-check:checked + .btn-purple-400,
.btn-check:active + .btn-purple-400,
.btn-purple-400:active,
.btn-purple-400.active,
.show > .btn-purple-400.dropdown-toggle {
color: #000;
background-color: #a386d7;
border-color: #9877d2;
}
.btn-check:checked + .btn-purple-400:focus,
.btn-check:active + .btn-purple-400:focus,
.btn-purple-400:active:focus,
.btn-purple-400.active:focus,
.show > .btn-purple-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(119, 88, 174, 0.5);
}
.btn-purple-400:disabled,
.btn-purple-400.disabled {
color: #000;
background-color: #8c68cd;
border-color: #8c68cd;
}
.btn-purple-500 {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-purple-500:hover {
color: #fff;
background-color: #5e38a4;
border-color: #59359a;
}
.btn-check:focus + .btn-purple-500,
.btn-purple-500:focus {
color: #fff;
background-color: #5e38a4;
border-color: #59359a;
box-shadow: 0 0 0 0.25rem rgba(133, 94, 202, 0.5);
}
.btn-check:checked + .btn-purple-500,
.btn-check:active + .btn-purple-500,
.btn-purple-500:active,
.btn-purple-500.active,
.show > .btn-purple-500.dropdown-toggle {
color: #fff;
background-color: #59359a;
border-color: #533291;
}
.btn-check:checked + .btn-purple-500:focus,
.btn-check:active + .btn-purple-500:focus,
.btn-purple-500:active:focus,
.btn-purple-500.active:focus,
.show > .btn-purple-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(133, 94, 202, 0.5);
}
.btn-purple-500:disabled,
.btn-purple-500.disabled {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-purple-600 {
color: #fff;
background-color: #59359a;
border-color: #59359a;
}
.btn-purple-600:hover {
color: #fff;
background-color: #4c2d83;
border-color: #472a7b;
}
.btn-check:focus + .btn-purple-600,
.btn-purple-600:focus {
color: #fff;
background-color: #4c2d83;
border-color: #472a7b;
box-shadow: 0 0 0 0.25rem rgba(114, 83, 169, 0.5);
}
.btn-check:checked + .btn-purple-600,
.btn-check:active + .btn-purple-600,
.btn-purple-600:active,
.btn-purple-600.active,
.show > .btn-purple-600.dropdown-toggle {
color: #fff;
background-color: #472a7b;
border-color: #432874;
}
.btn-check:checked + .btn-purple-600:focus,
.btn-check:active + .btn-purple-600:focus,
.btn-purple-600:active:focus,
.btn-purple-600.active:focus,
.show > .btn-purple-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(114, 83, 169, 0.5);
}
.btn-purple-600:disabled,
.btn-purple-600.disabled {
color: #fff;
background-color: #59359a;
border-color: #59359a;
}
.btn-purple-700 {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.btn-purple-700:hover {
color: #fff;
background-color: #392263;
border-color: #36205d;
}
.btn-check:focus + .btn-purple-700,
.btn-purple-700:focus {
color: #fff;
background-color: #392263;
border-color: #36205d;
box-shadow: 0 0 0 0.25rem rgba(95, 72, 137, 0.5);
}
.btn-check:checked + .btn-purple-700,
.btn-check:active + .btn-purple-700,
.btn-purple-700:active,
.btn-purple-700.active,
.show > .btn-purple-700.dropdown-toggle {
color: #fff;
background-color: #36205d;
border-color: #321e57;
}
.btn-check:checked + .btn-purple-700:focus,
.btn-check:active + .btn-purple-700:focus,
.btn-purple-700:active:focus,
.btn-purple-700.active:focus,
.show > .btn-purple-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(95, 72, 137, 0.5);
}
.btn-purple-700:disabled,
.btn-purple-700.disabled {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.btn-purple-800 {
color: #fff;
background-color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-purple-800:hover {
color: #fff;
background-color: #251641;
border-color: #23153e;
}
.btn-check:focus + .btn-purple-800,
.btn-purple-800:focus {
color: #fff;
background-color: #251641;
border-color: #23153e;
box-shadow: 0 0 0 0.25rem rgba(76, 60, 104, 0.5);
}
.btn-check:checked + .btn-purple-800,
.btn-check:active + .btn-purple-800,
.btn-purple-800:active,
.btn-purple-800.active,
.show > .btn-purple-800.dropdown-toggle {
color: #fff;
background-color: #23153e;
border-color: #21143a;
}
.btn-check:checked + .btn-purple-800:focus,
.btn-check:active + .btn-purple-800:focus,
.btn-purple-800:active:focus,
.btn-purple-800.active:focus,
.show > .btn-purple-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(76, 60, 104, 0.5);
}
.btn-purple-800:disabled,
.btn-purple-800.disabled {
color: #fff;
background-color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-purple-900 {
color: #fff;
background-color: #160d27;
border-color: #160d27;
}
.btn-purple-900:hover {
color: #fff;
background-color: #130b21;
border-color: #120a1f;
}
.btn-check:focus + .btn-purple-900,
.btn-purple-900:focus {
color: #fff;
background-color: #130b21;
border-color: #120a1f;
box-shadow: 0 0 0 0.25rem rgba(57, 49, 71, 0.5);
}
.btn-check:checked + .btn-purple-900,
.btn-check:active + .btn-purple-900,
.btn-purple-900:active,
.btn-purple-900.active,
.show > .btn-purple-900.dropdown-toggle {
color: #fff;
background-color: #120a1f;
border-color: #110a1d;
}
.btn-check:checked + .btn-purple-900:focus,
.btn-check:active + .btn-purple-900:focus,
.btn-purple-900:active:focus,
.btn-purple-900.active:focus,
.show > .btn-purple-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(57, 49, 71, 0.5);
}
.btn-purple-900:disabled,
.btn-purple-900.disabled {
color: #fff;
background-color: #160d27;
border-color: #160d27;
}
.btn-pink {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-pink:hover {
color: #fff;
background-color: #b62b70;
border-color: #ab296a;
}
.btn-check:focus + .btn-pink,
.btn-pink:focus {
color: #fff;
background-color: #b62b70;
border-color: #ab296a;
box-shadow: 0 0 0 0.25rem rgba(220, 82, 150, 0.5);
}
.btn-check:checked + .btn-pink,
.btn-check:active + .btn-pink,
.btn-pink:active,
.btn-pink.active,
.show > .btn-pink.dropdown-toggle {
color: #fff;
background-color: #ab296a;
border-color: #a12663;
}
.btn-check:checked + .btn-pink:focus,
.btn-check:active + .btn-pink:focus,
.btn-pink:active:focus,
.btn-pink.active:focus,
.show > .btn-pink.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 82, 150, 0.5);
}
.btn-pink:disabled,
.btn-pink.disabled {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-pink-100 {
color: #000;
background-color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-pink-100:hover {
color: #000;
background-color: #f8dcea;
border-color: #f8dae9;
}
.btn-check:focus + .btn-pink-100,
.btn-pink-100:focus {
color: #000;
background-color: #f8dcea;
border-color: #f8dae9;
box-shadow: 0 0 0 0.25rem rgba(210, 182, 196, 0.5);
}
.btn-check:checked + .btn-pink-100,
.btn-check:active + .btn-pink-100,
.btn-pink-100:active,
.btn-pink-100.active,
.show > .btn-pink-100.dropdown-toggle {
color: #000;
background-color: #f9deeb;
border-color: #f8dae9;
}
.btn-check:checked + .btn-pink-100:focus,
.btn-check:active + .btn-pink-100:focus,
.btn-pink-100:active:focus,
.btn-pink-100.active:focus,
.show > .btn-pink-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(210, 182, 196, 0.5);
}
.btn-pink-100:disabled,
.btn-pink-100.disabled {
color: #000;
background-color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-pink-200 {
color: #000;
background-color: #efadce;
border-color: #efadce;
}
.btn-pink-200:hover {
color: #000;
background-color: #f1b9d5;
border-color: #f1b5d3;
}
.btn-check:focus + .btn-pink-200,
.btn-pink-200:focus {
color: #000;
background-color: #f1b9d5;
border-color: #f1b5d3;
box-shadow: 0 0 0 0.25rem rgba(203, 147, 175, 0.5);
}
.btn-check:checked + .btn-pink-200,
.btn-check:active + .btn-pink-200,
.btn-pink-200:active,
.btn-pink-200.active,
.show > .btn-pink-200.dropdown-toggle {
color: #000;
background-color: #f2bdd8;
border-color: #f1b5d3;
}
.btn-check:checked + .btn-pink-200:focus,
.btn-check:active + .btn-pink-200:focus,
.btn-pink-200:active:focus,
.btn-pink-200.active:focus,
.show > .btn-pink-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(203, 147, 175, 0.5);
}
.btn-pink-200:disabled,
.btn-pink-200.disabled {
color: #000;
background-color: #efadce;
border-color: #efadce;
}
.btn-pink-300 {
color: #000;
background-color: #e685b5;
border-color: #e685b5;
}
.btn-pink-300:hover {
color: #000;
background-color: #ea97c0;
border-color: #e991bc;
}
.btn-check:focus + .btn-pink-300,
.btn-pink-300:focus {
color: #000;
background-color: #ea97c0;
border-color: #e991bc;
box-shadow: 0 0 0 0.25rem rgba(196, 113, 154, 0.5);
}
.btn-check:checked + .btn-pink-300,
.btn-check:active + .btn-pink-300,
.btn-pink-300:active,
.btn-pink-300.active,
.show > .btn-pink-300.dropdown-toggle {
color: #000;
background-color: #eb9dc4;
border-color: #e991bc;
}
.btn-check:checked + .btn-pink-300:focus,
.btn-check:active + .btn-pink-300:focus,
.btn-pink-300:active:focus,
.btn-pink-300.active:focus,
.show > .btn-pink-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(196, 113, 154, 0.5);
}
.btn-pink-300:disabled,
.btn-pink-300.disabled {
color: #000;
background-color: #e685b5;
border-color: #e685b5;
}
.btn-pink-400 {
color: #000;
background-color: #de5c9d;
border-color: #de5c9d;
}
.btn-pink-400:hover {
color: #000;
background-color: #e374ac;
border-color: #e16ca7;
}
.btn-check:focus + .btn-pink-400,
.btn-pink-400:focus {
color: #000;
background-color: #e374ac;
border-color: #e16ca7;
box-shadow: 0 0 0 0.25rem rgba(189, 78, 133, 0.5);
}
.btn-check:checked + .btn-pink-400,
.btn-check:active + .btn-pink-400,
.btn-pink-400:active,
.btn-pink-400.active,
.show > .btn-pink-400.dropdown-toggle {
color: #000;
background-color: #e57db1;
border-color: #e16ca7;
}
.btn-check:checked + .btn-pink-400:focus,
.btn-check:active + .btn-pink-400:focus,
.btn-pink-400:active:focus,
.btn-pink-400.active:focus,
.show > .btn-pink-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(189, 78, 133, 0.5);
}
.btn-pink-400:disabled,
.btn-pink-400.disabled {
color: #000;
background-color: #de5c9d;
border-color: #de5c9d;
}
.btn-pink-500 {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-pink-500:hover {
color: #fff;
background-color: #b62b70;
border-color: #ab296a;
}
.btn-check:focus + .btn-pink-500,
.btn-pink-500:focus {
color: #fff;
background-color: #b62b70;
border-color: #ab296a;
box-shadow: 0 0 0 0.25rem rgba(220, 82, 150, 0.5);
}
.btn-check:checked + .btn-pink-500,
.btn-check:active + .btn-pink-500,
.btn-pink-500:active,
.btn-pink-500.active,
.show > .btn-pink-500.dropdown-toggle {
color: #fff;
background-color: #ab296a;
border-color: #a12663;
}
.btn-check:checked + .btn-pink-500:focus,
.btn-check:active + .btn-pink-500:focus,
.btn-pink-500:active:focus,
.btn-pink-500.active:focus,
.show > .btn-pink-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 82, 150, 0.5);
}
.btn-pink-500:disabled,
.btn-pink-500.disabled {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-pink-600 {
color: #fff;
background-color: #ab296a;
border-color: #ab296a;
}
.btn-pink-600:hover {
color: #fff;
background-color: #91235a;
border-color: #892155;
}
.btn-check:focus + .btn-pink-600,
.btn-pink-600:focus {
color: #fff;
background-color: #91235a;
border-color: #892155;
box-shadow: 0 0 0 0.25rem rgba(184, 73, 128, 0.5);
}
.btn-check:checked + .btn-pink-600,
.btn-check:active + .btn-pink-600,
.btn-pink-600:active,
.btn-pink-600.active,
.show > .btn-pink-600.dropdown-toggle {
color: #fff;
background-color: #892155;
border-color: #801f50;
}
.btn-check:checked + .btn-pink-600:focus,
.btn-check:active + .btn-pink-600:focus,
.btn-pink-600:active:focus,
.btn-pink-600.active:focus,
.show > .btn-pink-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(184, 73, 128, 0.5);
}
.btn-pink-600:disabled,
.btn-pink-600.disabled {
color: #fff;
background-color: #ab296a;
border-color: #ab296a;
}
.btn-pink-700 {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.btn-pink-700:hover {
color: #fff;
background-color: #6d1a43;
border-color: #66193f;
}
.btn-check:focus + .btn-pink-700,
.btn-pink-700:focus {
color: #fff;
background-color: #6d1a43;
border-color: #66193f;
box-shadow: 0 0 0 0.25rem rgba(147, 65, 105, 0.5);
}
.btn-check:checked + .btn-pink-700,
.btn-check:active + .btn-pink-700,
.btn-pink-700:active,
.btn-pink-700.active,
.show > .btn-pink-700.dropdown-toggle {
color: #fff;
background-color: #66193f;
border-color: #60173b;
}
.btn-check:checked + .btn-pink-700:focus,
.btn-check:active + .btn-pink-700:focus,
.btn-pink-700:active:focus,
.btn-pink-700.active:focus,
.show > .btn-pink-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(147, 65, 105, 0.5);
}
.btn-pink-700:disabled,
.btn-pink-700.disabled {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.btn-pink-800 {
color: #fff;
background-color: #561435;
border-color: #561435;
}
.btn-pink-800:hover {
color: #fff;
background-color: #49112d;
border-color: #45102a;
}
.btn-check:focus + .btn-pink-800,
.btn-pink-800:focus {
color: #fff;
background-color: #49112d;
border-color: #45102a;
box-shadow: 0 0 0 0.25rem rgba(111, 55, 83, 0.5);
}
.btn-check:checked + .btn-pink-800,
.btn-check:active + .btn-pink-800,
.btn-pink-800:active,
.btn-pink-800.active,
.show > .btn-pink-800.dropdown-toggle {
color: #fff;
background-color: #45102a;
border-color: #410f28;
}
.btn-check:checked + .btn-pink-800:focus,
.btn-check:active + .btn-pink-800:focus,
.btn-pink-800:active:focus,
.btn-pink-800.active:focus,
.show > .btn-pink-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 55, 83, 0.5);
}
.btn-pink-800:disabled,
.btn-pink-800.disabled {
color: #fff;
background-color: #561435;
border-color: #561435;
}
.btn-pink-900 {
color: #fff;
background-color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-pink-900:hover {
color: #fff;
background-color: #250916;
border-color: #220815;
}
.btn-check:focus + .btn-pink-900,
.btn-pink-900:focus {
color: #fff;
background-color: #250916;
border-color: #220815;
box-shadow: 0 0 0 0.25rem rgba(75, 47, 60, 0.5);
}
.btn-check:checked + .btn-pink-900,
.btn-check:active + .btn-pink-900,
.btn-pink-900:active,
.btn-pink-900.active,
.show > .btn-pink-900.dropdown-toggle {
color: #fff;
background-color: #220815;
border-color: #200814;
}
.btn-check:checked + .btn-pink-900:focus,
.btn-check:active + .btn-pink-900:focus,
.btn-pink-900:active:focus,
.btn-pink-900.active:focus,
.show > .btn-pink-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(75, 47, 60, 0.5);
}
.btn-pink-900:disabled,
.btn-pink-900.disabled {
color: #fff;
background-color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-red {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-red:hover {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
}
.btn-check:focus + .btn-red,
.btn-red:focus {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-red,
.btn-check:active + .btn-red,
.btn-red:active,
.btn-red.active,
.show > .btn-red.dropdown-toggle {
color: #fff;
background-color: #b02a37;
border-color: #a52834;
}
.btn-check:checked + .btn-red:focus,
.btn-check:active + .btn-red:focus,
.btn-red:active:focus,
.btn-red.active:focus,
.show > .btn-red.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-red:disabled,
.btn-red.disabled {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-red-100 {
color: #000;
background-color: #f8d7da;
border-color: #f8d7da;
}
.btn-red-100:hover {
color: #000;
background-color: #f9dde0;
border-color: #f9dbde;
}
.btn-check:focus + .btn-red-100,
.btn-red-100:focus {
color: #000;
background-color: #f9dde0;
border-color: #f9dbde;
box-shadow: 0 0 0 0.25rem rgba(211, 183, 185, 0.5);
}
.btn-check:checked + .btn-red-100,
.btn-check:active + .btn-red-100,
.btn-red-100:active,
.btn-red-100.active,
.show > .btn-red-100.dropdown-toggle {
color: #000;
background-color: #f9dfe1;
border-color: #f9dbde;
}
.btn-check:checked + .btn-red-100:focus,
.btn-check:active + .btn-red-100:focus,
.btn-red-100:active:focus,
.btn-red-100.active:focus,
.show > .btn-red-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(211, 183, 185, 0.5);
}
.btn-red-100:disabled,
.btn-red-100.disabled {
color: #000;
background-color: #f8d7da;
border-color: #f8d7da;
}
.btn-red-200 {
color: #000;
background-color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-red-200:hover {
color: #000;
background-color: #f3bac0;
border-color: #f2b6bc;
}
.btn-check:focus + .btn-red-200,
.btn-red-200:focus {
color: #000;
background-color: #f3bac0;
border-color: #f2b6bc;
box-shadow: 0 0 0 0.25rem rgba(205, 148, 154, 0.5);
}
.btn-check:checked + .btn-red-200,
.btn-check:active + .btn-red-200,
.btn-red-200:active,
.btn-red-200.active,
.show > .btn-red-200.dropdown-toggle {
color: #000;
background-color: #f4bec4;
border-color: #f2b6bc;
}
.btn-check:checked + .btn-red-200:focus,
.btn-check:active + .btn-red-200:focus,
.btn-red-200:active:focus,
.btn-red-200.active:focus,
.show > .btn-red-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(205, 148, 154, 0.5);
}
.btn-red-200:disabled,
.btn-red-200.disabled {
color: #000;
background-color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-red-300 {
color: #000;
background-color: #ea868f;
border-color: #ea868f;
}
.btn-red-300:hover {
color: #000;
background-color: #ed98a0;
border-color: #ec929a;
}
.btn-check:focus + .btn-red-300,
.btn-red-300:focus {
color: #000;
background-color: #ed98a0;
border-color: #ec929a;
box-shadow: 0 0 0 0.25rem rgba(199, 114, 122, 0.5);
}
.btn-check:checked + .btn-red-300,
.btn-check:active + .btn-red-300,
.btn-red-300:active,
.btn-red-300.active,
.show > .btn-red-300.dropdown-toggle {
color: #000;
background-color: #ee9ea5;
border-color: #ec929a;
}
.btn-check:checked + .btn-red-300:focus,
.btn-check:active + .btn-red-300:focus,
.btn-red-300:active:focus,
.btn-red-300.active:focus,
.show > .btn-red-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(199, 114, 122, 0.5);
}
.btn-red-300:disabled,
.btn-red-300.disabled {
color: #000;
background-color: #ea868f;
border-color: #ea868f;
}
.btn-red-400 {
color: #000;
background-color: #e35d6a;
border-color: #e35d6a;
}
.btn-red-400:hover {
color: #000;
background-color: #e77580;
border-color: #e66d79;
}
.btn-check:focus + .btn-red-400,
.btn-red-400:focus {
color: #000;
background-color: #e77580;
border-color: #e66d79;
box-shadow: 0 0 0 0.25rem rgba(193, 79, 90, 0.5);
}
.btn-check:checked + .btn-red-400,
.btn-check:active + .btn-red-400,
.btn-red-400:active,
.btn-red-400.active,
.show > .btn-red-400.dropdown-toggle {
color: #000;
background-color: #e97d88;
border-color: #e66d79;
}
.btn-check:checked + .btn-red-400:focus,
.btn-check:active + .btn-red-400:focus,
.btn-red-400:active:focus,
.btn-red-400.active:focus,
.show > .btn-red-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(193, 79, 90, 0.5);
}
.btn-red-400:disabled,
.btn-red-400.disabled {
color: #000;
background-color: #e35d6a;
border-color: #e35d6a;
}
.btn-red-500 {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-red-500:hover {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
}
.btn-check:focus + .btn-red-500,
.btn-red-500:focus {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-red-500,
.btn-check:active + .btn-red-500,
.btn-red-500:active,
.btn-red-500.active,
.show > .btn-red-500.dropdown-toggle {
color: #fff;
background-color: #b02a37;
border-color: #a52834;
}
.btn-check:checked + .btn-red-500:focus,
.btn-check:active + .btn-red-500:focus,
.btn-red-500:active:focus,
.btn-red-500.active:focus,
.show > .btn-red-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-red-500:disabled,
.btn-red-500.disabled {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-red-600 {
color: #fff;
background-color: #b02a37;
border-color: #b02a37;
}
.btn-red-600:hover {
color: #fff;
background-color: #96242f;
border-color: #8d222c;
}
.btn-check:focus + .btn-red-600,
.btn-red-600:focus {
color: #fff;
background-color: #96242f;
border-color: #8d222c;
box-shadow: 0 0 0 0.25rem rgba(188, 74, 85, 0.5);
}
.btn-check:checked + .btn-red-600,
.btn-check:active + .btn-red-600,
.btn-red-600:active,
.btn-red-600.active,
.show > .btn-red-600.dropdown-toggle {
color: #fff;
background-color: #8d222c;
border-color: #842029;
}
.btn-check:checked + .btn-red-600:focus,
.btn-check:active + .btn-red-600:focus,
.btn-red-600:active:focus,
.btn-red-600.active:focus,
.show > .btn-red-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(188, 74, 85, 0.5);
}
.btn-red-600:disabled,
.btn-red-600.disabled {
color: #fff;
background-color: #b02a37;
border-color: #b02a37;
}
.btn-red-700 {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.btn-red-700:hover {
color: #fff;
background-color: #701b23;
border-color: #6a1a21;
}
.btn-check:focus + .btn-red-700,
.btn-red-700:focus {
color: #fff;
background-color: #701b23;
border-color: #6a1a21;
box-shadow: 0 0 0 0.25rem rgba(150, 65, 73, 0.5);
}
.btn-check:checked + .btn-red-700,
.btn-check:active + .btn-red-700,
.btn-red-700:active,
.btn-red-700.active,
.show > .btn-red-700.dropdown-toggle {
color: #fff;
background-color: #6a1a21;
border-color: #63181f;
}
.btn-check:checked + .btn-red-700:focus,
.btn-check:active + .btn-red-700:focus,
.btn-red-700:active:focus,
.btn-red-700.active:focus,
.show > .btn-red-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(150, 65, 73, 0.5);
}
.btn-red-700:disabled,
.btn-red-700.disabled {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.btn-red-800 {
color: #fff;
background-color: #58151c;
border-color: #58151c;
}
.btn-red-800:hover {
color: #fff;
background-color: #4b1218;
border-color: #461116;
}
.btn-check:focus + .btn-red-800,
.btn-red-800:focus {
color: #fff;
background-color: #4b1218;
border-color: #461116;
box-shadow: 0 0 0 0.25rem rgba(113, 56, 62, 0.5);
}
.btn-check:checked + .btn-red-800,
.btn-check:active + .btn-red-800,
.btn-red-800:active,
.btn-red-800.active,
.show > .btn-red-800.dropdown-toggle {
color: #fff;
background-color: #461116;
border-color: #421015;
}
.btn-check:checked + .btn-red-800:focus,
.btn-check:active + .btn-red-800:focus,
.btn-red-800:active:focus,
.btn-red-800.active:focus,
.show > .btn-red-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(113, 56, 62, 0.5);
}
.btn-red-800:disabled,
.btn-red-800.disabled {
color: #fff;
background-color: #58151c;
border-color: #58151c;
}
.btn-red-900 {
color: #fff;
background-color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-red-900:hover {
color: #fff;
background-color: #25090c;
border-color: #23090b;
}
.btn-check:focus + .btn-red-900,
.btn-red-900:focus {
color: #fff;
background-color: #25090c;
border-color: #23090b;
box-shadow: 0 0 0 0.25rem rgba(76, 48, 50, 0.5);
}
.btn-check:checked + .btn-red-900,
.btn-check:active + .btn-red-900,
.btn-red-900:active,
.btn-red-900.active,
.show > .btn-red-900.dropdown-toggle {
color: #fff;
background-color: #23090b;
border-color: #21080b;
}
.btn-check:checked + .btn-red-900:focus,
.btn-check:active + .btn-red-900:focus,
.btn-red-900:active:focus,
.btn-red-900.active:focus,
.show > .btn-red-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(76, 48, 50, 0.5);
}
.btn-red-900:disabled,
.btn-red-900.disabled {
color: #fff;
background-color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-orange {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-orange:hover {
color: #000;
background-color: #fd9137;
border-color: #fd8b2c;
}
.btn-check:focus + .btn-orange,
.btn-orange:focus {
color: #000;
background-color: #fd9137;
border-color: #fd8b2c;
box-shadow: 0 0 0 0.25rem rgba(215, 107, 17, 0.5);
}
.btn-check:checked + .btn-orange,
.btn-check:active + .btn-orange,
.btn-orange:active,
.btn-orange.active,
.show > .btn-orange.dropdown-toggle {
color: #000;
background-color: #fd9843;
border-color: #fd8b2c;
}
.btn-check:checked + .btn-orange:focus,
.btn-check:active + .btn-orange:focus,
.btn-orange:active:focus,
.btn-orange.active:focus,
.show > .btn-orange.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(215, 107, 17, 0.5);
}
.btn-orange:disabled,
.btn-orange.disabled {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-orange-100 {
color: #000;
background-color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-orange-100:hover {
color: #000;
background-color: #ffe9d7;
border-color: #ffe8d5;
}
.btn-check:focus + .btn-orange-100,
.btn-orange-100:focus {
color: #000;
background-color: #ffe9d7;
border-color: #ffe8d5;
box-shadow: 0 0 0 0.25rem rgba(217, 195, 177, 0.5);
}
.btn-check:checked + .btn-orange-100,
.btn-check:active + .btn-orange-100,
.btn-orange-100:active,
.btn-orange-100.active,
.show > .btn-orange-100.dropdown-toggle {
color: #000;
background-color: #ffead9;
border-color: #ffe8d5;
}
.btn-check:checked + .btn-orange-100:focus,
.btn-check:active + .btn-orange-100:focus,
.btn-orange-100:active:focus,
.btn-orange-100.active:focus,
.show > .btn-orange-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 195, 177, 0.5);
}
.btn-orange-100:disabled,
.btn-orange-100.disabled {
color: #000;
background-color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-orange-200 {
color: #000;
background-color: #fecba1;
border-color: #fecba1;
}
.btn-orange-200:hover {
color: #000;
background-color: #fed3af;
border-color: #fed0aa;
}
.btn-check:focus + .btn-orange-200,
.btn-orange-200:focus {
color: #000;
background-color: #fed3af;
border-color: #fed0aa;
box-shadow: 0 0 0 0.25rem rgba(216, 173, 137, 0.5);
}
.btn-check:checked + .btn-orange-200,
.btn-check:active + .btn-orange-200,
.btn-orange-200:active,
.btn-orange-200.active,
.show > .btn-orange-200.dropdown-toggle {
color: #000;
background-color: #fed5b4;
border-color: #fed0aa;
}
.btn-check:checked + .btn-orange-200:focus,
.btn-check:active + .btn-orange-200:focus,
.btn-orange-200:active:focus,
.btn-orange-200.active:focus,
.show > .btn-orange-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(216, 173, 137, 0.5);
}
.btn-orange-200:disabled,
.btn-orange-200.disabled {
color: #000;
background-color: #fecba1;
border-color: #fecba1;
}
.btn-orange-300 {
color: #000;
background-color: #feb272;
border-color: #feb272;
}
.btn-orange-300:hover {
color: #000;
background-color: #febe87;
border-color: #feba80;
}
.btn-check:focus + .btn-orange-300,
.btn-orange-300:focus {
color: #000;
background-color: #febe87;
border-color: #feba80;
box-shadow: 0 0 0 0.25rem rgba(216, 151, 97, 0.5);
}
.btn-check:checked + .btn-orange-300,
.btn-check:active + .btn-orange-300,
.btn-orange-300:active,
.btn-orange-300.active,
.show > .btn-orange-300.dropdown-toggle {
color: #000;
background-color: #fec18e;
border-color: #feba80;
}
.btn-check:checked + .btn-orange-300:focus,
.btn-check:active + .btn-orange-300:focus,
.btn-orange-300:active:focus,
.btn-orange-300.active:focus,
.show > .btn-orange-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(216, 151, 97, 0.5);
}
.btn-orange-300:disabled,
.btn-orange-300.disabled {
color: #000;
background-color: #feb272;
border-color: #feb272;
}
.btn-orange-400 {
color: #000;
background-color: #fd9843;
border-color: #fd9843;
}
.btn-orange-400:hover {
color: #000;
background-color: #fda75f;
border-color: #fda256;
}
.btn-check:focus + .btn-orange-400,
.btn-orange-400:focus {
color: #000;
background-color: #fda75f;
border-color: #fda256;
box-shadow: 0 0 0 0.25rem rgba(215, 129, 57, 0.5);
}
.btn-check:checked + .btn-orange-400,
.btn-check:active + .btn-orange-400,
.btn-orange-400:active,
.btn-orange-400.active,
.show > .btn-orange-400.dropdown-toggle {
color: #000;
background-color: #fdad69;
border-color: #fda256;
}
.btn-check:checked + .btn-orange-400:focus,
.btn-check:active + .btn-orange-400:focus,
.btn-orange-400:active:focus,
.btn-orange-400.active:focus,
.show > .btn-orange-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(215, 129, 57, 0.5);
}
.btn-orange-400:disabled,
.btn-orange-400.disabled {
color: #000;
background-color: #fd9843;
border-color: #fd9843;
}
.btn-orange-500 {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-orange-500:hover {
color: #000;
background-color: #fd9137;
border-color: #fd8b2c;
}
.btn-check:focus + .btn-orange-500,
.btn-orange-500:focus {
color: #000;
background-color: #fd9137;
border-color: #fd8b2c;
box-shadow: 0 0 0 0.25rem rgba(215, 107, 17, 0.5);
}
.btn-check:checked + .btn-orange-500,
.btn-check:active + .btn-orange-500,
.btn-orange-500:active,
.btn-orange-500.active,
.show > .btn-orange-500.dropdown-toggle {
color: #000;
background-color: #fd9843;
border-color: #fd8b2c;
}
.btn-check:checked + .btn-orange-500:focus,
.btn-check:active + .btn-orange-500:focus,
.btn-orange-500:active:focus,
.btn-orange-500.active:focus,
.show > .btn-orange-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(215, 107, 17, 0.5);
}
.btn-orange-500:disabled,
.btn-orange-500.disabled {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-orange-600 {
color: #000;
background-color: #ca6510;
border-color: #ca6510;
}
.btn-orange-600:hover {
color: #000;
background-color: #d27c34;
border-color: #cf7428;
}
.btn-check:focus + .btn-orange-600,
.btn-orange-600:focus {
color: #000;
background-color: #d27c34;
border-color: #cf7428;
box-shadow: 0 0 0 0.25rem rgba(172, 86, 14, 0.5);
}
.btn-check:checked + .btn-orange-600,
.btn-check:active + .btn-orange-600,
.btn-orange-600:active,
.btn-orange-600.active,
.show > .btn-orange-600.dropdown-toggle {
color: #000;
background-color: #d58440;
border-color: #cf7428;
}
.btn-check:checked + .btn-orange-600:focus,
.btn-check:active + .btn-orange-600:focus,
.btn-orange-600:active:focus,
.btn-orange-600.active:focus,
.show > .btn-orange-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(172, 86, 14, 0.5);
}
.btn-orange-600:disabled,
.btn-orange-600.disabled {
color: #000;
background-color: #ca6510;
border-color: #ca6510;
}
.btn-orange-700 {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.btn-orange-700:hover {
color: #fff;
background-color: #81410a;
border-color: #7a3d0a;
}
.btn-check:focus + .btn-orange-700,
.btn-orange-700:focus {
color: #fff;
background-color: #81410a;
border-color: #7a3d0a;
box-shadow: 0 0 0 0.25rem rgba(167, 103, 48, 0.5);
}
.btn-check:checked + .btn-orange-700,
.btn-check:active + .btn-orange-700,
.btn-orange-700:active,
.btn-orange-700.active,
.show > .btn-orange-700.dropdown-toggle {
color: #fff;
background-color: #7a3d0a;
border-color: #723909;
}
.btn-check:checked + .btn-orange-700:focus,
.btn-check:active + .btn-orange-700:focus,
.btn-orange-700:active:focus,
.btn-orange-700.active:focus,
.show > .btn-orange-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(167, 103, 48, 0.5);
}
.btn-orange-700:disabled,
.btn-orange-700.disabled {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.btn-orange-800 {
color: #fff;
background-color: #653208;
border-color: #653208;
}
.btn-orange-800:hover {
color: #fff;
background-color: #562b07;
border-color: #512806;
}
.btn-check:focus + .btn-orange-800,
.btn-orange-800:focus {
color: #fff;
background-color: #562b07;
border-color: #512806;
box-shadow: 0 0 0 0.25rem rgba(124, 81, 45, 0.5);
}
.btn-check:checked + .btn-orange-800,
.btn-check:active + .btn-orange-800,
.btn-orange-800:active,
.btn-orange-800.active,
.show > .btn-orange-800.dropdown-toggle {
color: #fff;
background-color: #512806;
border-color: #4c2606;
}
.btn-check:checked + .btn-orange-800:focus,
.btn-check:active + .btn-orange-800:focus,
.btn-orange-800:active:focus,
.btn-orange-800.active:focus,
.show > .btn-orange-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(124, 81, 45, 0.5);
}
.btn-orange-800:disabled,
.btn-orange-800.disabled {
color: #fff;
background-color: #653208;
border-color: #653208;
}
.btn-orange-900 {
color: #fff;
background-color: #331904;
border-color: #331904;
}
.btn-orange-900:hover {
color: #fff;
background-color: #2b1503;
border-color: #291403;
}
.btn-check:focus + .btn-orange-900,
.btn-orange-900:focus {
color: #fff;
background-color: #2b1503;
border-color: #291403;
box-shadow: 0 0 0 0.25rem rgba(82, 60, 42, 0.5);
}
.btn-check:checked + .btn-orange-900,
.btn-check:active + .btn-orange-900,
.btn-orange-900:active,
.btn-orange-900.active,
.show > .btn-orange-900.dropdown-toggle {
color: #fff;
background-color: #291403;
border-color: #261303;
}
.btn-check:checked + .btn-orange-900:focus,
.btn-check:active + .btn-orange-900:focus,
.btn-orange-900:active:focus,
.btn-orange-900.active:focus,
.show > .btn-orange-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 60, 42, 0.5);
}
.btn-orange-900:disabled,
.btn-orange-900.disabled {
color: #fff;
background-color: #331904;
border-color: #331904;
}
.btn-yellow {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-yellow:hover {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
}
.btn-check:focus + .btn-yellow,
.btn-yellow:focus {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-yellow,
.btn-check:active + .btn-yellow,
.btn-yellow:active,
.btn-yellow.active,
.show > .btn-yellow.dropdown-toggle {
color: #000;
background-color: #ffcd39;
border-color: #ffc720;
}
.btn-check:checked + .btn-yellow:focus,
.btn-check:active + .btn-yellow:focus,
.btn-yellow:active:focus,
.btn-yellow.active:focus,
.show > .btn-yellow.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-yellow:disabled,
.btn-yellow.disabled {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-yellow-100 {
color: #000;
background-color: #fff3cd;
border-color: #fff3cd;
}
.btn-yellow-100:hover {
color: #000;
background-color: #fff5d5;
border-color: #fff4d2;
}
.btn-check:focus + .btn-yellow-100,
.btn-yellow-100:focus {
color: #000;
background-color: #fff5d5;
border-color: #fff4d2;
box-shadow: 0 0 0 0.25rem rgba(217, 207, 174, 0.5);
}
.btn-check:checked + .btn-yellow-100,
.btn-check:active + .btn-yellow-100,
.btn-yellow-100:active,
.btn-yellow-100.active,
.show > .btn-yellow-100.dropdown-toggle {
color: #000;
background-color: #fff5d7;
border-color: #fff4d2;
}
.btn-check:checked + .btn-yellow-100:focus,
.btn-check:active + .btn-yellow-100:focus,
.btn-yellow-100:active:focus,
.btn-yellow-100.active:focus,
.show > .btn-yellow-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 207, 174, 0.5);
}
.btn-yellow-100:disabled,
.btn-yellow-100.disabled {
color: #000;
background-color: #fff3cd;
border-color: #fff3cd;
}
.btn-yellow-200 {
color: #000;
background-color: #ffe69c;
border-color: #ffe69c;
}
.btn-yellow-200:hover {
color: #000;
background-color: #ffeaab;
border-color: #ffe9a6;
}
.btn-check:focus + .btn-yellow-200,
.btn-yellow-200:focus {
color: #000;
background-color: #ffeaab;
border-color: #ffe9a6;
box-shadow: 0 0 0 0.25rem rgba(217, 196, 133, 0.5);
}
.btn-check:checked + .btn-yellow-200,
.btn-check:active + .btn-yellow-200,
.btn-yellow-200:active,
.btn-yellow-200.active,
.show > .btn-yellow-200.dropdown-toggle {
color: #000;
background-color: #ffebb0;
border-color: #ffe9a6;
}
.btn-check:checked + .btn-yellow-200:focus,
.btn-check:active + .btn-yellow-200:focus,
.btn-yellow-200:active:focus,
.btn-yellow-200.active:focus,
.show > .btn-yellow-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 196, 133, 0.5);
}
.btn-yellow-200:disabled,
.btn-yellow-200.disabled {
color: #000;
background-color: #ffe69c;
border-color: #ffe69c;
}
.btn-yellow-300 {
color: #000;
background-color: #ffda6a;
border-color: #ffda6a;
}
.btn-yellow-300:hover {
color: #000;
background-color: #ffe080;
border-color: #ffde79;
}
.btn-check:focus + .btn-yellow-300,
.btn-yellow-300:focus {
color: #000;
background-color: #ffe080;
border-color: #ffde79;
box-shadow: 0 0 0 0.25rem rgba(217, 185, 90, 0.5);
}
.btn-check:checked + .btn-yellow-300,
.btn-check:active + .btn-yellow-300,
.btn-yellow-300:active,
.btn-yellow-300.active,
.show > .btn-yellow-300.dropdown-toggle {
color: #000;
background-color: #ffe188;
border-color: #ffde79;
}
.btn-check:checked + .btn-yellow-300:focus,
.btn-check:active + .btn-yellow-300:focus,
.btn-yellow-300:active:focus,
.btn-yellow-300.active:focus,
.show > .btn-yellow-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 185, 90, 0.5);
}
.btn-yellow-300:disabled,
.btn-yellow-300.disabled {
color: #000;
background-color: #ffda6a;
border-color: #ffda6a;
}
.btn-yellow-400 {
color: #000;
background-color: #ffcd39;
border-color: #ffcd39;
}
.btn-yellow-400:hover {
color: #000;
background-color: #ffd557;
border-color: #ffd24d;
}
.btn-check:focus + .btn-yellow-400,
.btn-yellow-400:focus {
color: #000;
background-color: #ffd557;
border-color: #ffd24d;
box-shadow: 0 0 0 0.25rem rgba(217, 174, 48, 0.5);
}
.btn-check:checked + .btn-yellow-400,
.btn-check:active + .btn-yellow-400,
.btn-yellow-400:active,
.btn-yellow-400.active,
.show > .btn-yellow-400.dropdown-toggle {
color: #000;
background-color: #ffd761;
border-color: #ffd24d;
}
.btn-check:checked + .btn-yellow-400:focus,
.btn-check:active + .btn-yellow-400:focus,
.btn-yellow-400:active:focus,
.btn-yellow-400.active:focus,
.show > .btn-yellow-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 174, 48, 0.5);
}
.btn-yellow-400:disabled,
.btn-yellow-400.disabled {
color: #000;
background-color: #ffcd39;
border-color: #ffcd39;
}
.btn-yellow-500 {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-yellow-500:hover {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
}
.btn-check:focus + .btn-yellow-500,
.btn-yellow-500:focus {
color: #000;
background-color: #ffca2c;
border-color: #ffc720;
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-yellow-500,
.btn-check:active + .btn-yellow-500,
.btn-yellow-500:active,
.btn-yellow-500.active,
.show > .btn-yellow-500.dropdown-toggle {
color: #000;
background-color: #ffcd39;
border-color: #ffc720;
}
.btn-check:checked + .btn-yellow-500:focus,
.btn-check:active + .btn-yellow-500:focus,
.btn-yellow-500:active:focus,
.btn-yellow-500.active:focus,
.show > .btn-yellow-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-yellow-500:disabled,
.btn-yellow-500.disabled {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-yellow-600 {
color: #000;
background-color: #cc9a06;
border-color: #cc9a06;
}
.btn-yellow-600:hover {
color: #000;
background-color: #d4a92b;
border-color: #d1a41f;
}
.btn-check:focus + .btn-yellow-600,
.btn-yellow-600:focus {
color: #000;
background-color: #d4a92b;
border-color: #d1a41f;
box-shadow: 0 0 0 0.25rem rgba(173, 131, 5, 0.5);
}
.btn-check:checked + .btn-yellow-600,
.btn-check:active + .btn-yellow-600,
.btn-yellow-600:active,
.btn-yellow-600.active,
.show > .btn-yellow-600.dropdown-toggle {
color: #000;
background-color: #d6ae38;
border-color: #d1a41f;
}
.btn-check:checked + .btn-yellow-600:focus,
.btn-check:active + .btn-yellow-600:focus,
.btn-yellow-600:active:focus,
.btn-yellow-600.active:focus,
.show > .btn-yellow-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(173, 131, 5, 0.5);
}
.btn-yellow-600:disabled,
.btn-yellow-600.disabled {
color: #000;
background-color: #cc9a06;
border-color: #cc9a06;
}
.btn-yellow-700 {
color: #000;
background-color: #997404;
border-color: #997404;
}
.btn-yellow-700:hover {
color: #000;
background-color: #a8892a;
border-color: #a3821d;
}
.btn-check:focus + .btn-yellow-700,
.btn-yellow-700:focus {
color: #000;
background-color: #a8892a;
border-color: #a3821d;
box-shadow: 0 0 0 0.25rem rgba(130, 99, 3, 0.5);
}
.btn-check:checked + .btn-yellow-700,
.btn-check:active + .btn-yellow-700,
.btn-yellow-700:active,
.btn-yellow-700.active,
.show > .btn-yellow-700.dropdown-toggle {
color: #000;
background-color: #ad9036;
border-color: #a3821d;
}
.btn-check:checked + .btn-yellow-700:focus,
.btn-check:active + .btn-yellow-700:focus,
.btn-yellow-700:active:focus,
.btn-yellow-700.active:focus,
.show > .btn-yellow-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(130, 99, 3, 0.5);
}
.btn-yellow-700:disabled,
.btn-yellow-700.disabled {
color: #000;
background-color: #997404;
border-color: #997404;
}
.btn-yellow-800 {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.btn-yellow-800:hover {
color: #fff;
background-color: #574103;
border-color: #523e02;
}
.btn-check:focus + .btn-yellow-800,
.btn-yellow-800:focus {
color: #fff;
background-color: #574103;
border-color: #523e02;
box-shadow: 0 0 0 0.25rem rgba(125, 104, 41, 0.5);
}
.btn-check:checked + .btn-yellow-800,
.btn-check:active + .btn-yellow-800,
.btn-yellow-800:active,
.btn-yellow-800.active,
.show > .btn-yellow-800.dropdown-toggle {
color: #fff;
background-color: #523e02;
border-color: #4d3a02;
}
.btn-check:checked + .btn-yellow-800:focus,
.btn-check:active + .btn-yellow-800:focus,
.btn-yellow-800:active:focus,
.btn-yellow-800.active:focus,
.show > .btn-yellow-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(125, 104, 41, 0.5);
}
.btn-yellow-800:disabled,
.btn-yellow-800.disabled {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.btn-yellow-900 {
color: #fff;
background-color: #332701;
border-color: #332701;
}
.btn-yellow-900:hover {
color: #fff;
background-color: #2b2101;
border-color: #291f01;
}
.btn-check:focus + .btn-yellow-900,
.btn-yellow-900:focus {
color: #fff;
background-color: #2b2101;
border-color: #291f01;
box-shadow: 0 0 0 0.25rem rgba(82, 71, 39, 0.5);
}
.btn-check:checked + .btn-yellow-900,
.btn-check:active + .btn-yellow-900,
.btn-yellow-900:active,
.btn-yellow-900.active,
.show > .btn-yellow-900.dropdown-toggle {
color: #fff;
background-color: #291f01;
border-color: #261d01;
}
.btn-check:checked + .btn-yellow-900:focus,
.btn-check:active + .btn-yellow-900:focus,
.btn-yellow-900:active:focus,
.btn-yellow-900.active:focus,
.show > .btn-yellow-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 71, 39, 0.5);
}
.btn-yellow-900:disabled,
.btn-yellow-900.disabled {
color: #fff;
background-color: #332701;
border-color: #332701;
}
.btn-green {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-green:hover {
color: #fff;
background-color: #157347;
border-color: #146c43;
}
.btn-check:focus + .btn-green,
.btn-green:focus {
color: #fff;
background-color: #157347;
border-color: #146c43;
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-green,
.btn-check:active + .btn-green,
.btn-green:active,
.btn-green.active,
.show > .btn-green.dropdown-toggle {
color: #fff;
background-color: #146c43;
border-color: #13653f;
}
.btn-check:checked + .btn-green:focus,
.btn-check:active + .btn-green:focus,
.btn-green:active:focus,
.btn-green.active:focus,
.show > .btn-green.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-green:disabled,
.btn-green.disabled {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-green-100 {
color: #000;
background-color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-green-100:hover {
color: #000;
background-color: #d8ebe2;
border-color: #d6e9e0;
}
.btn-check:focus + .btn-green-100,
.btn-green-100:focus {
color: #000;
background-color: #d8ebe2;
border-color: #d6e9e0;
box-shadow: 0 0 0 0.25rem rgba(178, 196, 188, 0.5);
}
.btn-check:checked + .btn-green-100,
.btn-check:active + .btn-green-100,
.btn-green-100:active,
.btn-green-100.active,
.show > .btn-green-100.dropdown-toggle {
color: #000;
background-color: #daece4;
border-color: #d6e9e0;
}
.btn-check:checked + .btn-green-100:focus,
.btn-check:active + .btn-green-100:focus,
.btn-green-100:active:focus,
.btn-green-100.active:focus,
.show > .btn-green-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(178, 196, 188, 0.5);
}
.btn-green-100:disabled,
.btn-green-100.disabled {
color: #000;
background-color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-green-200 {
color: #000;
background-color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-green-200:hover {
color: #000;
background-color: #b1d6c5;
border-color: #acd4c2;
}
.btn-check:focus + .btn-green-200,
.btn-green-200:focus {
color: #000;
background-color: #b1d6c5;
border-color: #acd4c2;
box-shadow: 0 0 0 0.25rem rgba(139, 176, 159, 0.5);
}
.btn-check:checked + .btn-green-200,
.btn-check:active + .btn-green-200,
.btn-green-200:active,
.btn-green-200.active,
.show > .btn-green-200.dropdown-toggle {
color: #000;
background-color: #b5d9c9;
border-color: #acd4c2;
}
.btn-check:checked + .btn-green-200:focus,
.btn-check:active + .btn-green-200:focus,
.btn-green-200:active:focus,
.btn-green-200.active:focus,
.show > .btn-green-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(139, 176, 159, 0.5);
}
.btn-green-200:disabled,
.btn-green-200.disabled {
color: #000;
background-color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-green-300 {
color: #000;
background-color: #75b798;
border-color: #75b798;
}
.btn-green-300:hover {
color: #000;
background-color: #8ac2a7;
border-color: #83bea2;
}
.btn-check:focus + .btn-green-300,
.btn-green-300:focus {
color: #000;
background-color: #8ac2a7;
border-color: #83bea2;
box-shadow: 0 0 0 0.25rem rgba(99, 156, 129, 0.5);
}
.btn-check:checked + .btn-green-300,
.btn-check:active + .btn-green-300,
.btn-green-300:active,
.btn-green-300.active,
.show > .btn-green-300.dropdown-toggle {
color: #000;
background-color: #91c5ad;
border-color: #83bea2;
}
.btn-check:checked + .btn-green-300:focus,
.btn-check:active + .btn-green-300:focus,
.btn-green-300:active:focus,
.btn-green-300.active:focus,
.show > .btn-green-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(99, 156, 129, 0.5);
}
.btn-green-300:disabled,
.btn-green-300.disabled {
color: #000;
background-color: #75b798;
border-color: #75b798;
}
.btn-green-400 {
color: #000;
background-color: #479f76;
border-color: #479f76;
}
.btn-green-400:hover {
color: #000;
background-color: #63ad8b;
border-color: #59a984;
}
.btn-check:focus + .btn-green-400,
.btn-green-400:focus {
color: #000;
background-color: #63ad8b;
border-color: #59a984;
box-shadow: 0 0 0 0.25rem rgba(60, 135, 100, 0.5);
}
.btn-check:checked + .btn-green-400,
.btn-check:active + .btn-green-400,
.btn-green-400:active,
.btn-green-400.active,
.show > .btn-green-400.dropdown-toggle {
color: #000;
background-color: #6cb291;
border-color: #59a984;
}
.btn-check:checked + .btn-green-400:focus,
.btn-check:active + .btn-green-400:focus,
.btn-green-400:active:focus,
.btn-green-400.active:focus,
.show > .btn-green-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(60, 135, 100, 0.5);
}
.btn-green-400:disabled,
.btn-green-400.disabled {
color: #000;
background-color: #479f76;
border-color: #479f76;
}
.btn-green-500 {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-green-500:hover {
color: #fff;
background-color: #157347;
border-color: #146c43;
}
.btn-check:focus + .btn-green-500,
.btn-green-500:focus {
color: #fff;
background-color: #157347;
border-color: #146c43;
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-green-500,
.btn-check:active + .btn-green-500,
.btn-green-500:active,
.btn-green-500.active,
.show > .btn-green-500.dropdown-toggle {
color: #fff;
background-color: #146c43;
border-color: #13653f;
}
.btn-check:checked + .btn-green-500:focus,
.btn-check:active + .btn-green-500:focus,
.btn-green-500:active:focus,
.btn-green-500.active:focus,
.show > .btn-green-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-green-500:disabled,
.btn-green-500.disabled {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-green-600 {
color: #fff;
background-color: #146c43;
border-color: #146c43;
}
.btn-green-600:hover {
color: #fff;
background-color: #115c39;
border-color: #105636;
}
.btn-check:focus + .btn-green-600,
.btn-green-600:focus {
color: #fff;
background-color: #115c39;
border-color: #105636;
box-shadow: 0 0 0 0.25rem rgba(55, 130, 95, 0.5);
}
.btn-check:checked + .btn-green-600,
.btn-check:active + .btn-green-600,
.btn-green-600:active,
.btn-green-600.active,
.show > .btn-green-600.dropdown-toggle {
color: #fff;
background-color: #105636;
border-color: #0f5132;
}
.btn-check:checked + .btn-green-600:focus,
.btn-check:active + .btn-green-600:focus,
.btn-green-600:active:focus,
.btn-green-600.active:focus,
.show > .btn-green-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(55, 130, 95, 0.5);
}
.btn-green-600:disabled,
.btn-green-600.disabled {
color: #fff;
background-color: #146c43;
border-color: #146c43;
}
.btn-green-700 {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.btn-green-700:hover {
color: #fff;
background-color: #0d452b;
border-color: #0c4128;
}
.btn-check:focus + .btn-green-700,
.btn-green-700:focus {
color: #fff;
background-color: #0d452b;
border-color: #0c4128;
box-shadow: 0 0 0 0.25rem rgba(51, 107, 81, 0.5);
}
.btn-check:checked + .btn-green-700,
.btn-check:active + .btn-green-700,
.btn-green-700:active,
.btn-green-700.active,
.show > .btn-green-700.dropdown-toggle {
color: #fff;
background-color: #0c4128;
border-color: #0b3d26;
}
.btn-check:checked + .btn-green-700:focus,
.btn-check:active + .btn-green-700:focus,
.btn-green-700:active:focus,
.btn-green-700.active:focus,
.show > .btn-green-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 107, 81, 0.5);
}
.btn-green-700:disabled,
.btn-green-700.disabled {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.btn-green-800 {
color: #fff;
background-color: #0a3622;
border-color: #0a3622;
}
.btn-green-800:hover {
color: #fff;
background-color: #092e1d;
border-color: #082b1b;
}
.btn-check:focus + .btn-green-800,
.btn-green-800:focus {
color: #fff;
background-color: #092e1d;
border-color: #082b1b;
box-shadow: 0 0 0 0.25rem rgba(47, 84, 67, 0.5);
}
.btn-check:checked + .btn-green-800,
.btn-check:active + .btn-green-800,
.btn-green-800:active,
.btn-green-800.active,
.show > .btn-green-800.dropdown-toggle {
color: #fff;
background-color: #082b1b;
border-color: #08291a;
}
.btn-check:checked + .btn-green-800:focus,
.btn-check:active + .btn-green-800:focus,
.btn-green-800:active:focus,
.btn-green-800.active:focus,
.show > .btn-green-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(47, 84, 67, 0.5);
}
.btn-green-800:disabled,
.btn-green-800.disabled {
color: #fff;
background-color: #0a3622;
border-color: #0a3622;
}
.btn-green-900 {
color: #fff;
background-color: #051b11;
border-color: #051b11;
}
.btn-green-900:hover {
color: #fff;
background-color: #04170e;
border-color: #04160e;
}
.btn-check:focus + .btn-green-900,
.btn-green-900:focus {
color: #fff;
background-color: #04170e;
border-color: #04160e;
box-shadow: 0 0 0 0.25rem rgba(43, 61, 53, 0.5);
}
.btn-check:checked + .btn-green-900,
.btn-check:active + .btn-green-900,
.btn-green-900:active,
.btn-green-900.active,
.show > .btn-green-900.dropdown-toggle {
color: #fff;
background-color: #04160e;
border-color: #04140d;
}
.btn-check:checked + .btn-green-900:focus,
.btn-check:active + .btn-green-900:focus,
.btn-green-900:active:focus,
.btn-green-900.active:focus,
.show > .btn-green-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 61, 53, 0.5);
}
.btn-green-900:disabled,
.btn-green-900.disabled {
color: #fff;
background-color: #051b11;
border-color: #051b11;
}
.btn-teal {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-teal:hover {
color: #000;
background-color: #41d1a7;
border-color: #36cea1;
}
.btn-check:focus + .btn-teal,
.btn-teal:focus {
color: #000;
background-color: #41d1a7;
border-color: #36cea1;
box-shadow: 0 0 0 0.25rem rgba(27, 171, 128, 0.5);
}
.btn-check:checked + .btn-teal,
.btn-check:active + .btn-teal,
.btn-teal:active,
.btn-teal.active,
.show > .btn-teal.dropdown-toggle {
color: #000;
background-color: #4dd4ac;
border-color: #36cea1;
}
.btn-check:checked + .btn-teal:focus,
.btn-check:active + .btn-teal:focus,
.btn-teal:active:focus,
.btn-teal.active:focus,
.show > .btn-teal.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(27, 171, 128, 0.5);
}
.btn-teal:disabled,
.btn-teal.disabled {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-teal-100 {
color: #000;
background-color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-teal-100:hover {
color: #000;
background-color: #d9f6ed;
border-color: #d7f5ec;
}
.btn-check:focus + .btn-teal-100,
.btn-teal-100:focus {
color: #000;
background-color: #d9f6ed;
border-color: #d7f5ec;
box-shadow: 0 0 0 0.25rem rgba(179, 207, 199, 0.5);
}
.btn-check:checked + .btn-teal-100,
.btn-check:active + .btn-teal-100,
.btn-teal-100:active,
.btn-teal-100.active,
.show > .btn-teal-100.dropdown-toggle {
color: #000;
background-color: #dbf6ee;
border-color: #d7f5ec;
}
.btn-check:checked + .btn-teal-100:focus,
.btn-check:active + .btn-teal-100:focus,
.btn-teal-100:active:focus,
.btn-teal-100.active:focus,
.show > .btn-teal-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(179, 207, 199, 0.5);
}
.btn-teal-100:disabled,
.btn-teal-100.disabled {
color: #000;
background-color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-teal-200 {
color: #000;
background-color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-teal-200:hover {
color: #000;
background-color: #b3ecdb;
border-color: #afebd9;
}
.btn-check:focus + .btn-teal-200,
.btn-teal-200:focus {
color: #000;
background-color: #b3ecdb;
border-color: #afebd9;
box-shadow: 0 0 0 0.25rem rgba(141, 198, 181, 0.5);
}
.btn-check:checked + .btn-teal-200,
.btn-check:active + .btn-teal-200,
.btn-teal-200:active,
.btn-teal-200.active,
.show > .btn-teal-200.dropdown-toggle {
color: #000;
background-color: #b8eddd;
border-color: #afebd9;
}
.btn-check:checked + .btn-teal-200:focus,
.btn-check:active + .btn-teal-200:focus,
.btn-teal-200:active:focus,
.btn-teal-200.active:focus,
.show > .btn-teal-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(141, 198, 181, 0.5);
}
.btn-teal-200:disabled,
.btn-teal-200.disabled {
color: #000;
background-color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-teal-300 {
color: #000;
background-color: #79dfc1;
border-color: #79dfc1;
}
.btn-teal-300:hover {
color: #000;
background-color: #8de4ca;
border-color: #86e2c7;
}
.btn-check:focus + .btn-teal-300,
.btn-teal-300:focus {
color: #000;
background-color: #8de4ca;
border-color: #86e2c7;
box-shadow: 0 0 0 0.25rem rgba(103, 190, 164, 0.5);
}
.btn-check:checked + .btn-teal-300,
.btn-check:active + .btn-teal-300,
.btn-teal-300:active,
.btn-teal-300.active,
.show > .btn-teal-300.dropdown-toggle {
color: #000;
background-color: #94e5cd;
border-color: #86e2c7;
}
.btn-check:checked + .btn-teal-300:focus,
.btn-check:active + .btn-teal-300:focus,
.btn-teal-300:active:focus,
.btn-teal-300.active:focus,
.show > .btn-teal-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(103, 190, 164, 0.5);
}
.btn-teal-300:disabled,
.btn-teal-300.disabled {
color: #000;
background-color: #79dfc1;
border-color: #79dfc1;
}
.btn-teal-400 {
color: #000;
background-color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-teal-400:hover {
color: #000;
background-color: #68dab8;
border-color: #5fd8b4;
}
.btn-check:focus + .btn-teal-400,
.btn-teal-400:focus {
color: #000;
background-color: #68dab8;
border-color: #5fd8b4;
box-shadow: 0 0 0 0.25rem rgba(65, 180, 146, 0.5);
}
.btn-check:checked + .btn-teal-400,
.btn-check:active + .btn-teal-400,
.btn-teal-400:active,
.btn-teal-400.active,
.show > .btn-teal-400.dropdown-toggle {
color: #000;
background-color: #71ddbd;
border-color: #5fd8b4;
}
.btn-check:checked + .btn-teal-400:focus,
.btn-check:active + .btn-teal-400:focus,
.btn-teal-400:active:focus,
.btn-teal-400.active:focus,
.show > .btn-teal-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(65, 180, 146, 0.5);
}
.btn-teal-400:disabled,
.btn-teal-400.disabled {
color: #000;
background-color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-teal-500 {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-teal-500:hover {
color: #000;
background-color: #41d1a7;
border-color: #36cea1;
}
.btn-check:focus + .btn-teal-500,
.btn-teal-500:focus {
color: #000;
background-color: #41d1a7;
border-color: #36cea1;
box-shadow: 0 0 0 0.25rem rgba(27, 171, 128, 0.5);
}
.btn-check:checked + .btn-teal-500,
.btn-check:active + .btn-teal-500,
.btn-teal-500:active,
.btn-teal-500.active,
.show > .btn-teal-500.dropdown-toggle {
color: #000;
background-color: #4dd4ac;
border-color: #36cea1;
}
.btn-check:checked + .btn-teal-500:focus,
.btn-check:active + .btn-teal-500:focus,
.btn-teal-500:active:focus,
.btn-teal-500.active:focus,
.show > .btn-teal-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(27, 171, 128, 0.5);
}
.btn-teal-500:disabled,
.btn-teal-500.disabled {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-teal-600 {
color: #000;
background-color: #1aa179;
border-color: #1aa179;
}
.btn-teal-600:hover {
color: #000;
background-color: #3caf8d;
border-color: #31aa86;
}
.btn-check:focus + .btn-teal-600,
.btn-teal-600:focus {
color: #000;
background-color: #3caf8d;
border-color: #31aa86;
box-shadow: 0 0 0 0.25rem rgba(22, 137, 103, 0.5);
}
.btn-check:checked + .btn-teal-600,
.btn-check:active + .btn-teal-600,
.btn-teal-600:active,
.btn-teal-600.active,
.show > .btn-teal-600.dropdown-toggle {
color: #000;
background-color: #48b494;
border-color: #31aa86;
}
.btn-check:checked + .btn-teal-600:focus,
.btn-check:active + .btn-teal-600:focus,
.btn-teal-600:active:focus,
.btn-teal-600.active:focus,
.show > .btn-teal-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(22, 137, 103, 0.5);
}
.btn-teal-600:disabled,
.btn-teal-600.disabled {
color: #000;
background-color: #1aa179;
border-color: #1aa179;
}
.btn-teal-700 {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.btn-teal-700:hover {
color: #fff;
background-color: #10674d;
border-color: #0f6149;
}
.btn-check:focus + .btn-teal-700,
.btn-teal-700:focus {
color: #fff;
background-color: #10674d;
border-color: #0f6149;
box-shadow: 0 0 0 0.25rem rgba(54, 141, 116, 0.5);
}
.btn-check:checked + .btn-teal-700,
.btn-check:active + .btn-teal-700,
.btn-teal-700:active,
.btn-teal-700.active,
.show > .btn-teal-700.dropdown-toggle {
color: #fff;
background-color: #0f6149;
border-color: #0e5b44;
}
.btn-check:checked + .btn-teal-700:focus,
.btn-check:active + .btn-teal-700:focus,
.btn-teal-700:active:focus,
.btn-teal-700.active:focus,
.show > .btn-teal-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(54, 141, 116, 0.5);
}
.btn-teal-700:disabled,
.btn-teal-700.disabled {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.btn-teal-800 {
color: #fff;
background-color: #0d503c;
border-color: #0d503c;
}
.btn-teal-800:hover {
color: #fff;
background-color: #0b4433;
border-color: #0a4030;
}
.btn-check:focus + .btn-teal-800,
.btn-teal-800:focus {
color: #fff;
background-color: #0b4433;
border-color: #0a4030;
box-shadow: 0 0 0 0.25rem rgba(49, 106, 89, 0.5);
}
.btn-check:checked + .btn-teal-800,
.btn-check:active + .btn-teal-800,
.btn-teal-800:active,
.btn-teal-800.active,
.show > .btn-teal-800.dropdown-toggle {
color: #fff;
background-color: #0a4030;
border-color: #0a3c2d;
}
.btn-check:checked + .btn-teal-800:focus,
.btn-check:active + .btn-teal-800:focus,
.btn-teal-800:active:focus,
.btn-teal-800.active:focus,
.show > .btn-teal-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(49, 106, 89, 0.5);
}
.btn-teal-800:disabled,
.btn-teal-800.disabled {
color: #fff;
background-color: #0d503c;
border-color: #0d503c;
}
.btn-teal-900 {
color: #fff;
background-color: #06281e;
border-color: #06281e;
}
.btn-teal-900:hover {
color: #fff;
background-color: #05221a;
border-color: #052018;
}
.btn-check:focus + .btn-teal-900,
.btn-teal-900:focus {
color: #fff;
background-color: #05221a;
border-color: #052018;
box-shadow: 0 0 0 0.25rem rgba(43, 72, 64, 0.5);
}
.btn-check:checked + .btn-teal-900,
.btn-check:active + .btn-teal-900,
.btn-teal-900:active,
.btn-teal-900.active,
.show > .btn-teal-900.dropdown-toggle {
color: #fff;
background-color: #052018;
border-color: #051e17;
}
.btn-check:checked + .btn-teal-900:focus,
.btn-check:active + .btn-teal-900:focus,
.btn-teal-900:active:focus,
.btn-teal-900.active:focus,
.show > .btn-teal-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 72, 64, 0.5);
}
.btn-teal-900:disabled,
.btn-teal-900.disabled {
color: #fff;
background-color: #06281e;
border-color: #06281e;
}
.btn-cyan {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-cyan:hover {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
}
.btn-check:focus + .btn-cyan,
.btn-cyan:focus {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-cyan,
.btn-check:active + .btn-cyan,
.btn-cyan:active,
.btn-cyan.active,
.show > .btn-cyan.dropdown-toggle {
color: #000;
background-color: #3dd5f3;
border-color: #25cff2;
}
.btn-check:checked + .btn-cyan:focus,
.btn-check:active + .btn-cyan:focus,
.btn-cyan:active:focus,
.btn-cyan.active:focus,
.show > .btn-cyan.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-cyan:disabled,
.btn-cyan.disabled {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-cyan-100 {
color: #000;
background-color: #cff4fc;
border-color: #cff4fc;
}
.btn-cyan-100:hover {
color: #000;
background-color: #d6f6fc;
border-color: #d4f5fc;
}
.btn-check:focus + .btn-cyan-100,
.btn-cyan-100:focus {
color: #000;
background-color: #d6f6fc;
border-color: #d4f5fc;
box-shadow: 0 0 0 0.25rem rgba(176, 207, 214, 0.5);
}
.btn-check:checked + .btn-cyan-100,
.btn-check:active + .btn-cyan-100,
.btn-cyan-100:active,
.btn-cyan-100.active,
.show > .btn-cyan-100.dropdown-toggle {
color: #000;
background-color: #d9f6fd;
border-color: #d4f5fc;
}
.btn-check:checked + .btn-cyan-100:focus,
.btn-check:active + .btn-cyan-100:focus,
.btn-cyan-100:active:focus,
.btn-cyan-100.active:focus,
.show > .btn-cyan-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(176, 207, 214, 0.5);
}
.btn-cyan-100:disabled,
.btn-cyan-100.disabled {
color: #000;
background-color: #cff4fc;
border-color: #cff4fc;
}
.btn-cyan-200 {
color: #000;
background-color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-cyan-200:hover {
color: #000;
background-color: #adedfa;
border-color: #a8ecfa;
}
.btn-check:focus + .btn-cyan-200,
.btn-cyan-200:focus {
color: #000;
background-color: #adedfa;
border-color: #a8ecfa;
box-shadow: 0 0 0 0.25rem rgba(134, 199, 212, 0.5);
}
.btn-check:checked + .btn-cyan-200,
.btn-check:active + .btn-cyan-200,
.btn-cyan-200:active,
.btn-cyan-200.active,
.show > .btn-cyan-200.dropdown-toggle {
color: #000;
background-color: #b1eefa;
border-color: #a8ecfa;
}
.btn-check:checked + .btn-cyan-200:focus,
.btn-check:active + .btn-cyan-200:focus,
.btn-cyan-200:active:focus,
.btn-cyan-200.active:focus,
.show > .btn-cyan-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(134, 199, 212, 0.5);
}
.btn-cyan-200:disabled,
.btn-cyan-200.disabled {
color: #000;
background-color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-cyan-300 {
color: #000;
background-color: #6edff6;
border-color: #6edff6;
}
.btn-cyan-300:hover {
color: #000;
background-color: #84e4f7;
border-color: #7de2f7;
}
.btn-check:focus + .btn-cyan-300,
.btn-cyan-300:focus {
color: #000;
background-color: #84e4f7;
border-color: #7de2f7;
box-shadow: 0 0 0 0.25rem rgba(94, 190, 209, 0.5);
}
.btn-check:checked + .btn-cyan-300,
.btn-check:active + .btn-cyan-300,
.btn-cyan-300:active,
.btn-cyan-300.active,
.show > .btn-cyan-300.dropdown-toggle {
color: #000;
background-color: #8be5f8;
border-color: #7de2f7;
}
.btn-check:checked + .btn-cyan-300:focus,
.btn-check:active + .btn-cyan-300:focus,
.btn-cyan-300:active:focus,
.btn-cyan-300.active:focus,
.show > .btn-cyan-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(94, 190, 209, 0.5);
}
.btn-cyan-300:disabled,
.btn-cyan-300.disabled {
color: #000;
background-color: #6edff6;
border-color: #6edff6;
}
.btn-cyan-400 {
color: #000;
background-color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-cyan-400:hover {
color: #000;
background-color: #5adbf5;
border-color: #50d9f4;
}
.btn-check:focus + .btn-cyan-400,
.btn-cyan-400:focus {
color: #000;
background-color: #5adbf5;
border-color: #50d9f4;
box-shadow: 0 0 0 0.25rem rgba(52, 181, 207, 0.5);
}
.btn-check:checked + .btn-cyan-400,
.btn-check:active + .btn-cyan-400,
.btn-cyan-400:active,
.btn-cyan-400.active,
.show > .btn-cyan-400.dropdown-toggle {
color: #000;
background-color: #64ddf5;
border-color: #50d9f4;
}
.btn-check:checked + .btn-cyan-400:focus,
.btn-check:active + .btn-cyan-400:focus,
.btn-cyan-400:active:focus,
.btn-cyan-400.active:focus,
.show > .btn-cyan-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 181, 207, 0.5);
}
.btn-cyan-400:disabled,
.btn-cyan-400.disabled {
color: #000;
background-color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-cyan-500 {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-cyan-500:hover {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
}
.btn-check:focus + .btn-cyan-500,
.btn-cyan-500:focus {
color: #000;
background-color: #31d2f2;
border-color: #25cff2;
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-cyan-500,
.btn-check:active + .btn-cyan-500,
.btn-cyan-500:active,
.btn-cyan-500.active,
.show > .btn-cyan-500.dropdown-toggle {
color: #000;
background-color: #3dd5f3;
border-color: #25cff2;
}
.btn-check:checked + .btn-cyan-500:focus,
.btn-check:active + .btn-cyan-500:focus,
.btn-cyan-500:active:focus,
.btn-cyan-500.active:focus,
.show > .btn-cyan-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-cyan-500:disabled,
.btn-cyan-500.disabled {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-cyan-600 {
color: #000;
background-color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-cyan-600:hover {
color: #000;
background-color: #2fb0c9;
border-color: #23abc6;
}
.btn-check:focus + .btn-cyan-600,
.btn-cyan-600:focus {
color: #000;
background-color: #2fb0c9;
border-color: #23abc6;
box-shadow: 0 0 0 0.25rem rgba(9, 138, 163, 0.5);
}
.btn-check:checked + .btn-cyan-600,
.btn-check:active + .btn-cyan-600,
.btn-cyan-600:active,
.btn-cyan-600.active,
.show > .btn-cyan-600.dropdown-toggle {
color: #000;
background-color: #3bb5cd;
border-color: #23abc6;
}
.btn-check:checked + .btn-cyan-600:focus,
.btn-check:active + .btn-cyan-600:focus,
.btn-cyan-600:active:focus,
.btn-cyan-600.active:focus,
.show > .btn-cyan-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(9, 138, 163, 0.5);
}
.btn-cyan-600:disabled,
.btn-cyan-600.disabled {
color: #000;
background-color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-cyan-700 {
color: #fff;
background-color: #087990;
border-color: #087990;
}
.btn-cyan-700:hover {
color: #fff;
background-color: #07677a;
border-color: #066173;
}
.btn-check:focus + .btn-cyan-700,
.btn-cyan-700:focus {
color: #fff;
background-color: #07677a;
border-color: #066173;
box-shadow: 0 0 0 0.25rem rgba(45, 141, 161, 0.5);
}
.btn-check:checked + .btn-cyan-700,
.btn-check:active + .btn-cyan-700,
.btn-cyan-700:active,
.btn-cyan-700.active,
.show > .btn-cyan-700.dropdown-toggle {
color: #fff;
background-color: #066173;
border-color: #065b6c;
}
.btn-check:checked + .btn-cyan-700:focus,
.btn-check:active + .btn-cyan-700:focus,
.btn-cyan-700:active:focus,
.btn-cyan-700.active:focus,
.show > .btn-cyan-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(45, 141, 161, 0.5);
}
.btn-cyan-700:disabled,
.btn-cyan-700.disabled {
color: #fff;
background-color: #087990;
border-color: #087990;
}
.btn-cyan-800 {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.btn-cyan-800:hover {
color: #fff;
background-color: #044552;
border-color: #04414d;
}
.btn-check:focus + .btn-cyan-800,
.btn-cyan-800:focus {
color: #fff;
background-color: #044552;
border-color: #04414d;
box-shadow: 0 0 0 0.25rem rgba(43, 107, 120, 0.5);
}
.btn-check:checked + .btn-cyan-800,
.btn-check:active + .btn-cyan-800,
.btn-cyan-800:active,
.btn-cyan-800.active,
.show > .btn-cyan-800.dropdown-toggle {
color: #fff;
background-color: #04414d;
border-color: #043d48;
}
.btn-check:checked + .btn-cyan-800:focus,
.btn-check:active + .btn-cyan-800:focus,
.btn-cyan-800:active:focus,
.btn-cyan-800.active:focus,
.show > .btn-cyan-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 107, 120, 0.5);
}
.btn-cyan-800:disabled,
.btn-cyan-800.disabled {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.btn-cyan-900 {
color: #fff;
background-color: #032830;
border-color: #032830;
}
.btn-cyan-900:hover {
color: #fff;
background-color: #032229;
border-color: #022026;
}
.btn-check:focus + .btn-cyan-900,
.btn-cyan-900:focus {
color: #fff;
background-color: #032229;
border-color: #022026;
box-shadow: 0 0 0 0.25rem rgba(41, 72, 79, 0.5);
}
.btn-check:checked + .btn-cyan-900,
.btn-check:active + .btn-cyan-900,
.btn-cyan-900:active,
.btn-cyan-900.active,
.show > .btn-cyan-900.dropdown-toggle {
color: #fff;
background-color: #022026;
border-color: #021e24;
}
.btn-check:checked + .btn-cyan-900:focus,
.btn-check:active + .btn-cyan-900:focus,
.btn-cyan-900:active:focus,
.btn-cyan-900.active:focus,
.show > .btn-cyan-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(41, 72, 79, 0.5);
}
.btn-cyan-900:disabled,
.btn-cyan-900.disabled {
color: #fff;
background-color: #032830;
border-color: #032830;
}
.btn-gray-100 {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-gray-100:hover {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
}
.btn-check:focus + .btn-gray-100,
.btn-gray-100:focus {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-gray-100,
.btn-check:active + .btn-gray-100,
.btn-gray-100:active,
.btn-gray-100.active,
.show > .btn-gray-100.dropdown-toggle {
color: #000;
background-color: #f9fafb;
border-color: #f9fafb;
}
.btn-check:checked + .btn-gray-100:focus,
.btn-check:active + .btn-gray-100:focus,
.btn-gray-100:active:focus,
.btn-gray-100.active:focus,
.show > .btn-gray-100.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-gray-100:disabled,
.btn-gray-100.disabled {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-gray-200 {
color: #000;
background-color: #e9ecef;
border-color: #e9ecef;
}
.btn-gray-200:hover {
color: #000;
background-color: #eceff1;
border-color: #ebeef1;
}
.btn-check:focus + .btn-gray-200,
.btn-gray-200:focus {
color: #000;
background-color: #eceff1;
border-color: #ebeef1;
box-shadow: 0 0 0 0.25rem rgba(198, 201, 203, 0.5);
}
.btn-check:checked + .btn-gray-200,
.btn-check:active + .btn-gray-200,
.btn-gray-200:active,
.btn-gray-200.active,
.show > .btn-gray-200.dropdown-toggle {
color: #000;
background-color: #edf0f2;
border-color: #ebeef1;
}
.btn-check:checked + .btn-gray-200:focus,
.btn-check:active + .btn-gray-200:focus,
.btn-gray-200:active:focus,
.btn-gray-200.active:focus,
.show > .btn-gray-200.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(198, 201, 203, 0.5);
}
.btn-gray-200:disabled,
.btn-gray-200.disabled {
color: #000;
background-color: #e9ecef;
border-color: #e9ecef;
}
.btn-gray-300 {
color: #000;
background-color: #dee2e6;
border-color: #dee2e6;
}
.btn-gray-300:hover {
color: #000;
background-color: #e3e6ea;
border-color: #e1e5e9;
}
.btn-check:focus + .btn-gray-300,
.btn-gray-300:focus {
color: #000;
background-color: #e3e6ea;
border-color: #e1e5e9;
box-shadow: 0 0 0 0.25rem rgba(189, 192, 196, 0.5);
}
.btn-check:checked + .btn-gray-300,
.btn-check:active + .btn-gray-300,
.btn-gray-300:active,
.btn-gray-300.active,
.show > .btn-gray-300.dropdown-toggle {
color: #000;
background-color: #e5e8eb;
border-color: #e1e5e9;
}
.btn-check:checked + .btn-gray-300:focus,
.btn-check:active + .btn-gray-300:focus,
.btn-gray-300:active:focus,
.btn-gray-300.active:focus,
.show > .btn-gray-300.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(189, 192, 196, 0.5);
}
.btn-gray-300:disabled,
.btn-gray-300.disabled {
color: #000;
background-color: #dee2e6;
border-color: #dee2e6;
}
.btn-gray-400 {
color: #000;
background-color: #ced4da;
border-color: #ced4da;
}
.btn-gray-400:hover {
color: #000;
background-color: #d5dae0;
border-color: #d3d8de;
}
.btn-check:focus + .btn-gray-400,
.btn-gray-400:focus {
color: #000;
background-color: #d5dae0;
border-color: #d3d8de;
box-shadow: 0 0 0 0.25rem rgba(175, 180, 185, 0.5);
}
.btn-check:checked + .btn-gray-400,
.btn-check:active + .btn-gray-400,
.btn-gray-400:active,
.btn-gray-400.active,
.show > .btn-gray-400.dropdown-toggle {
color: #000;
background-color: #d8dde1;
border-color: #d3d8de;
}
.btn-check:checked + .btn-gray-400:focus,
.btn-check:active + .btn-gray-400:focus,
.btn-gray-400:active:focus,
.btn-gray-400.active:focus,
.show > .btn-gray-400.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(175, 180, 185, 0.5);
}
.btn-gray-400:disabled,
.btn-gray-400.disabled {
color: #000;
background-color: #ced4da;
border-color: #ced4da;
}
.btn-gray-500 {
color: #000;
background-color: #adb5bd;
border-color: #adb5bd;
}
.btn-gray-500:hover {
color: #000;
background-color: #b9c0c7;
border-color: #b5bcc4;
}
.btn-check:focus + .btn-gray-500,
.btn-gray-500:focus {
color: #000;
background-color: #b9c0c7;
border-color: #b5bcc4;
box-shadow: 0 0 0 0.25rem rgba(147, 154, 161, 0.5);
}
.btn-check:checked + .btn-gray-500,
.btn-check:active + .btn-gray-500,
.btn-gray-500:active,
.btn-gray-500.active,
.show > .btn-gray-500.dropdown-toggle {
color: #000;
background-color: #bdc4ca;
border-color: #b5bcc4;
}
.btn-check:checked + .btn-gray-500:focus,
.btn-check:active + .btn-gray-500:focus,
.btn-gray-500:active:focus,
.btn-gray-500.active:focus,
.show > .btn-gray-500.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(147, 154, 161, 0.5);
}
.btn-gray-500:disabled,
.btn-gray-500.disabled {
color: #000;
background-color: #adb5bd;
border-color: #adb5bd;
}
.btn-gray-600 {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-gray-600:hover {
color: #fff;
background-color: #5c636a;
border-color: #565e64;
}
.btn-check:focus + .btn-gray-600,
.btn-gray-600:focus {
color: #fff;
background-color: #5c636a;
border-color: #565e64;
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-gray-600,
.btn-check:active + .btn-gray-600,
.btn-gray-600:active,
.btn-gray-600.active,
.show > .btn-gray-600.dropdown-toggle {
color: #fff;
background-color: #565e64;
border-color: #51585e;
}
.btn-check:checked + .btn-gray-600:focus,
.btn-check:active + .btn-gray-600:focus,
.btn-gray-600:active:focus,
.btn-gray-600.active:focus,
.show > .btn-gray-600.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-gray-600:disabled,
.btn-gray-600.disabled {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-gray-700 {
color: #fff;
background-color: #495057;
border-color: #495057;
}
.btn-gray-700:hover {
color: #fff;
background-color: #3e444a;
border-color: #3a4046;
}
.btn-check:focus + .btn-gray-700,
.btn-gray-700:focus {
color: #fff;
background-color: #3e444a;
border-color: #3a4046;
box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-check:checked + .btn-gray-700,
.btn-check:active + .btn-gray-700,
.btn-gray-700:active,
.btn-gray-700.active,
.show > .btn-gray-700.dropdown-toggle {
color: #fff;
background-color: #3a4046;
border-color: #373c41;
}
.btn-check:checked + .btn-gray-700:focus,
.btn-check:active + .btn-gray-700:focus,
.btn-gray-700:active:focus,
.btn-gray-700.active:focus,
.show > .btn-gray-700.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-gray-700:disabled,
.btn-gray-700.disabled {
color: #fff;
background-color: #495057;
border-color: #495057;
}
.btn-gray-800 {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.btn-gray-800:hover {
color: #fff;
background-color: #2c3136;
border-color: #2a2e33;
}
.btn-check:focus + .btn-gray-800,
.btn-gray-800:focus {
color: #fff;
background-color: #2c3136;
border-color: #2a2e33;
box-shadow: 0 0 0 0.25rem rgba(82, 88, 93, 0.5);
}
.btn-check:checked + .btn-gray-800,
.btn-check:active + .btn-gray-800,
.btn-gray-800:active,
.btn-gray-800.active,
.show > .btn-gray-800.dropdown-toggle {
color: #fff;
background-color: #2a2e33;
border-color: #272c30;
}
.btn-check:checked + .btn-gray-800:focus,
.btn-check:active + .btn-gray-800:focus,
.btn-gray-800:active:focus,
.btn-gray-800.active:focus,
.show > .btn-gray-800.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 88, 93, 0.5);
}
.btn-gray-800:disabled,
.btn-gray-800.disabled {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.btn-gray-900 {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-gray-900:hover {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
}
.btn-check:focus + .btn-gray-900,
.btn-gray-900:focus {
color: #fff;
background-color: #1c1f23;
border-color: #1a1e21;
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-gray-900,
.btn-check:active + .btn-gray-900,
.btn-gray-900:active,
.btn-gray-900.active,
.show > .btn-gray-900.dropdown-toggle {
color: #fff;
background-color: #1a1e21;
border-color: #191c1f;
}
.btn-check:checked + .btn-gray-900:focus,
.btn-check:active + .btn-gray-900:focus,
.btn-gray-900:active:focus,
.btn-gray-900.active:focus,
.show > .btn-gray-900.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-gray-900:disabled,
.btn-gray-900.disabled {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-white {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-white:hover {
color: #000;
background-color: white;
border-color: white;
}
.btn-check:focus + .btn-white,
.btn-white:focus {
color: #000;
background-color: white;
border-color: white;
box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-check:checked + .btn-white,
.btn-check:active + .btn-white,
.btn-white:active,
.btn-white.active,
.show > .btn-white.dropdown-toggle {
color: #000;
background-color: white;
border-color: white;
}
.btn-check:checked + .btn-white:focus,
.btn-check:active + .btn-white:focus,
.btn-white:active:focus,
.btn-white.active:focus,
.show > .btn-white.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-white:disabled,
.btn-white.disabled {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-outline-primary {
color: #0d6efd;
border-color: #0d6efd;
}
.btn-outline-primary:hover {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
color: #0d6efd;
background-color: transparent;
}
.btn-outline-secondary {
color: #6c757d;
border-color: #6c757d;
}
.btn-outline-secondary:hover {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-check:checked + .btn-outline-secondary:focus,
.btn-check:active + .btn-outline-secondary:focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
color: #6c757d;
background-color: transparent;
}
.btn-outline-success {
color: #198754;
border-color: #198754;
}
.btn-outline-success:hover {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success,
.btn-check:active + .btn-outline-success,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus,
.btn-check:active + .btn-outline-success:focus,
.btn-outline-success:active:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled,
.btn-outline-success.disabled {
color: #198754;
background-color: transparent;
}
.btn-outline-info {
color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-outline-info:hover {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info,
.btn-check:active + .btn-outline-info,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus,
.btn-check:active + .btn-outline-info:focus,
.btn-outline-info:active:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled,
.btn-outline-info.disabled {
color: #0dcaf0;
background-color: transparent;
}
.btn-outline-warning {
color: #ffc107;
border-color: #ffc107;
}
.btn-outline-warning:hover {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning,
.btn-check:active + .btn-outline-warning,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus,
.btn-outline-warning:active:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled,
.btn-outline-warning.disabled {
color: #ffc107;
background-color: transparent;
}
.btn-outline-danger {
color: #dc3545;
border-color: #dc3545;
}
.btn-outline-danger:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger,
.btn-check:active + .btn-outline-danger,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus,
.btn-check:active + .btn-outline-danger:focus,
.btn-outline-danger:active:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled,
.btn-outline-danger.disabled {
color: #dc3545;
background-color: transparent;
}
.btn-outline-light {
color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-light:hover {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light,
.btn-check:active + .btn-outline-light,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus,
.btn-check:active + .btn-outline-light:focus,
.btn-outline-light:active:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled,
.btn-outline-light.disabled {
color: #f8f9fa;
background-color: transparent;
}
.btn-outline-dark {
color: #212529;
border-color: #212529;
}
.btn-outline-dark:hover {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark,
.btn-check:active + .btn-outline-dark,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus,
.btn-outline-dark:active:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled,
.btn-outline-dark.disabled {
color: #212529;
background-color: transparent;
}
.btn-outline-blue {
color: #0d6efd;
border-color: #0d6efd;
}
.btn-outline-blue:hover {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-blue,
.btn-outline-blue:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-blue,
.btn-check:active + .btn-outline-blue,
.btn-outline-blue:active,
.btn-outline-blue.active,
.btn-outline-blue.dropdown-toggle.show {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-blue:focus,
.btn-check:active + .btn-outline-blue:focus,
.btn-outline-blue:active:focus,
.btn-outline-blue.active:focus,
.btn-outline-blue.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-blue:disabled,
.btn-outline-blue.disabled {
color: #0d6efd;
background-color: transparent;
}
.btn-outline-blue-100 {
color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-outline-blue-100:hover {
color: #000;
background-color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-check:focus + .btn-outline-blue-100,
.btn-outline-blue-100:focus {
box-shadow: 0 0 0 0.25rem rgba(207, 226, 255, 0.5);
}
.btn-check:checked + .btn-outline-blue-100,
.btn-check:active + .btn-outline-blue-100,
.btn-outline-blue-100:active,
.btn-outline-blue-100.active,
.btn-outline-blue-100.dropdown-toggle.show {
color: #000;
background-color: #cfe2ff;
border-color: #cfe2ff;
}
.btn-check:checked + .btn-outline-blue-100:focus,
.btn-check:active + .btn-outline-blue-100:focus,
.btn-outline-blue-100:active:focus,
.btn-outline-blue-100.active:focus,
.btn-outline-blue-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(207, 226, 255, 0.5);
}
.btn-outline-blue-100:disabled,
.btn-outline-blue-100.disabled {
color: #cfe2ff;
background-color: transparent;
}
.btn-outline-blue-200 {
color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-outline-blue-200:hover {
color: #000;
background-color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-check:focus + .btn-outline-blue-200,
.btn-outline-blue-200:focus {
box-shadow: 0 0 0 0.25rem rgba(158, 197, 254, 0.5);
}
.btn-check:checked + .btn-outline-blue-200,
.btn-check:active + .btn-outline-blue-200,
.btn-outline-blue-200:active,
.btn-outline-blue-200.active,
.btn-outline-blue-200.dropdown-toggle.show {
color: #000;
background-color: #9ec5fe;
border-color: #9ec5fe;
}
.btn-check:checked + .btn-outline-blue-200:focus,
.btn-check:active + .btn-outline-blue-200:focus,
.btn-outline-blue-200:active:focus,
.btn-outline-blue-200.active:focus,
.btn-outline-blue-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(158, 197, 254, 0.5);
}
.btn-outline-blue-200:disabled,
.btn-outline-blue-200.disabled {
color: #9ec5fe;
background-color: transparent;
}
.btn-outline-blue-300 {
color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-outline-blue-300:hover {
color: #000;
background-color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-check:focus + .btn-outline-blue-300,
.btn-outline-blue-300:focus {
box-shadow: 0 0 0 0.25rem rgba(110, 168, 254, 0.5);
}
.btn-check:checked + .btn-outline-blue-300,
.btn-check:active + .btn-outline-blue-300,
.btn-outline-blue-300:active,
.btn-outline-blue-300.active,
.btn-outline-blue-300.dropdown-toggle.show {
color: #000;
background-color: #6ea8fe;
border-color: #6ea8fe;
}
.btn-check:checked + .btn-outline-blue-300:focus,
.btn-check:active + .btn-outline-blue-300:focus,
.btn-outline-blue-300:active:focus,
.btn-outline-blue-300.active:focus,
.btn-outline-blue-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(110, 168, 254, 0.5);
}
.btn-outline-blue-300:disabled,
.btn-outline-blue-300.disabled {
color: #6ea8fe;
background-color: transparent;
}
.btn-outline-blue-400 {
color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-outline-blue-400:hover {
color: #000;
background-color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-check:focus + .btn-outline-blue-400,
.btn-outline-blue-400:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 139, 253, 0.5);
}
.btn-check:checked + .btn-outline-blue-400,
.btn-check:active + .btn-outline-blue-400,
.btn-outline-blue-400:active,
.btn-outline-blue-400.active,
.btn-outline-blue-400.dropdown-toggle.show {
color: #000;
background-color: #3d8bfd;
border-color: #3d8bfd;
}
.btn-check:checked + .btn-outline-blue-400:focus,
.btn-check:active + .btn-outline-blue-400:focus,
.btn-outline-blue-400:active:focus,
.btn-outline-blue-400.active:focus,
.btn-outline-blue-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 139, 253, 0.5);
}
.btn-outline-blue-400:disabled,
.btn-outline-blue-400.disabled {
color: #3d8bfd;
background-color: transparent;
}
.btn-outline-blue-500 {
color: #0d6efd;
border-color: #0d6efd;
}
.btn-outline-blue-500:hover {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-blue-500,
.btn-outline-blue-500:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-blue-500,
.btn-check:active + .btn-outline-blue-500,
.btn-outline-blue-500:active,
.btn-outline-blue-500.active,
.btn-outline-blue-500.dropdown-toggle.show {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-blue-500:focus,
.btn-check:active + .btn-outline-blue-500:focus,
.btn-outline-blue-500:active:focus,
.btn-outline-blue-500.active:focus,
.btn-outline-blue-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-blue-500:disabled,
.btn-outline-blue-500.disabled {
color: #0d6efd;
background-color: transparent;
}
.btn-outline-blue-600 {
color: #0a58ca;
border-color: #0a58ca;
}
.btn-outline-blue-600:hover {
color: #fff;
background-color: #0a58ca;
border-color: #0a58ca;
}
.btn-check:focus + .btn-outline-blue-600,
.btn-outline-blue-600:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 88, 202, 0.5);
}
.btn-check:checked + .btn-outline-blue-600,
.btn-check:active + .btn-outline-blue-600,
.btn-outline-blue-600:active,
.btn-outline-blue-600.active,
.btn-outline-blue-600.dropdown-toggle.show {
color: #fff;
background-color: #0a58ca;
border-color: #0a58ca;
}
.btn-check:checked + .btn-outline-blue-600:focus,
.btn-check:active + .btn-outline-blue-600:focus,
.btn-outline-blue-600:active:focus,
.btn-outline-blue-600.active:focus,
.btn-outline-blue-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 88, 202, 0.5);
}
.btn-outline-blue-600:disabled,
.btn-outline-blue-600.disabled {
color: #0a58ca;
background-color: transparent;
}
.btn-outline-blue-700 {
color: #084298;
border-color: #084298;
}
.btn-outline-blue-700:hover {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.btn-check:focus + .btn-outline-blue-700,
.btn-outline-blue-700:focus {
box-shadow: 0 0 0 0.25rem rgba(8, 66, 152, 0.5);
}
.btn-check:checked + .btn-outline-blue-700,
.btn-check:active + .btn-outline-blue-700,
.btn-outline-blue-700:active,
.btn-outline-blue-700.active,
.btn-outline-blue-700.dropdown-toggle.show {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.btn-check:checked + .btn-outline-blue-700:focus,
.btn-check:active + .btn-outline-blue-700:focus,
.btn-outline-blue-700:active:focus,
.btn-outline-blue-700.active:focus,
.btn-outline-blue-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(8, 66, 152, 0.5);
}
.btn-outline-blue-700:disabled,
.btn-outline-blue-700.disabled {
color: #084298;
background-color: transparent;
}
.btn-outline-blue-800 {
color: #052c65;
border-color: #052c65;
}
.btn-outline-blue-800:hover {
color: #fff;
background-color: #052c65;
border-color: #052c65;
}
.btn-check:focus + .btn-outline-blue-800,
.btn-outline-blue-800:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 44, 101, 0.5);
}
.btn-check:checked + .btn-outline-blue-800,
.btn-check:active + .btn-outline-blue-800,
.btn-outline-blue-800:active,
.btn-outline-blue-800.active,
.btn-outline-blue-800.dropdown-toggle.show {
color: #fff;
background-color: #052c65;
border-color: #052c65;
}
.btn-check:checked + .btn-outline-blue-800:focus,
.btn-check:active + .btn-outline-blue-800:focus,
.btn-outline-blue-800:active:focus,
.btn-outline-blue-800.active:focus,
.btn-outline-blue-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 44, 101, 0.5);
}
.btn-outline-blue-800:disabled,
.btn-outline-blue-800.disabled {
color: #052c65;
background-color: transparent;
}
.btn-outline-blue-900 {
color: #031633;
border-color: #031633;
}
.btn-outline-blue-900:hover {
color: #fff;
background-color: #031633;
border-color: #031633;
}
.btn-check:focus + .btn-outline-blue-900,
.btn-outline-blue-900:focus {
box-shadow: 0 0 0 0.25rem rgba(3, 22, 51, 0.5);
}
.btn-check:checked + .btn-outline-blue-900,
.btn-check:active + .btn-outline-blue-900,
.btn-outline-blue-900:active,
.btn-outline-blue-900.active,
.btn-outline-blue-900.dropdown-toggle.show {
color: #fff;
background-color: #031633;
border-color: #031633;
}
.btn-check:checked + .btn-outline-blue-900:focus,
.btn-check:active + .btn-outline-blue-900:focus,
.btn-outline-blue-900:active:focus,
.btn-outline-blue-900.active:focus,
.btn-outline-blue-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(3, 22, 51, 0.5);
}
.btn-outline-blue-900:disabled,
.btn-outline-blue-900.disabled {
color: #031633;
background-color: transparent;
}
.btn-outline-indigo {
color: #6610f2;
border-color: #6610f2;
}
.btn-outline-indigo:hover {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-check:focus + .btn-outline-indigo,
.btn-outline-indigo:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}
.btn-check:checked + .btn-outline-indigo,
.btn-check:active + .btn-outline-indigo,
.btn-outline-indigo:active,
.btn-outline-indigo.active,
.btn-outline-indigo.dropdown-toggle.show {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-check:checked + .btn-outline-indigo:focus,
.btn-check:active + .btn-outline-indigo:focus,
.btn-outline-indigo:active:focus,
.btn-outline-indigo.active:focus,
.btn-outline-indigo.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}
.btn-outline-indigo:disabled,
.btn-outline-indigo.disabled {
color: #6610f2;
background-color: transparent;
}
.btn-outline-indigo-100 {
color: #e0cffc;
border-color: #e0cffc;
}
.btn-outline-indigo-100:hover {
color: #000;
background-color: #e0cffc;
border-color: #e0cffc;
}
.btn-check:focus + .btn-outline-indigo-100,
.btn-outline-indigo-100:focus {
box-shadow: 0 0 0 0.25rem rgba(224, 207, 252, 0.5);
}
.btn-check:checked + .btn-outline-indigo-100,
.btn-check:active + .btn-outline-indigo-100,
.btn-outline-indigo-100:active,
.btn-outline-indigo-100.active,
.btn-outline-indigo-100.dropdown-toggle.show {
color: #000;
background-color: #e0cffc;
border-color: #e0cffc;
}
.btn-check:checked + .btn-outline-indigo-100:focus,
.btn-check:active + .btn-outline-indigo-100:focus,
.btn-outline-indigo-100:active:focus,
.btn-outline-indigo-100.active:focus,
.btn-outline-indigo-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(224, 207, 252, 0.5);
}
.btn-outline-indigo-100:disabled,
.btn-outline-indigo-100.disabled {
color: #e0cffc;
background-color: transparent;
}
.btn-outline-indigo-200 {
color: #c29ffa;
border-color: #c29ffa;
}
.btn-outline-indigo-200:hover {
color: #000;
background-color: #c29ffa;
border-color: #c29ffa;
}
.btn-check:focus + .btn-outline-indigo-200,
.btn-outline-indigo-200:focus {
box-shadow: 0 0 0 0.25rem rgba(194, 159, 250, 0.5);
}
.btn-check:checked + .btn-outline-indigo-200,
.btn-check:active + .btn-outline-indigo-200,
.btn-outline-indigo-200:active,
.btn-outline-indigo-200.active,
.btn-outline-indigo-200.dropdown-toggle.show {
color: #000;
background-color: #c29ffa;
border-color: #c29ffa;
}
.btn-check:checked + .btn-outline-indigo-200:focus,
.btn-check:active + .btn-outline-indigo-200:focus,
.btn-outline-indigo-200:active:focus,
.btn-outline-indigo-200.active:focus,
.btn-outline-indigo-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(194, 159, 250, 0.5);
}
.btn-outline-indigo-200:disabled,
.btn-outline-indigo-200.disabled {
color: #c29ffa;
background-color: transparent;
}
.btn-outline-indigo-300 {
color: #a370f7;
border-color: #a370f7;
}
.btn-outline-indigo-300:hover {
color: #000;
background-color: #a370f7;
border-color: #a370f7;
}
.btn-check:focus + .btn-outline-indigo-300,
.btn-outline-indigo-300:focus {
box-shadow: 0 0 0 0.25rem rgba(163, 112, 247, 0.5);
}
.btn-check:checked + .btn-outline-indigo-300,
.btn-check:active + .btn-outline-indigo-300,
.btn-outline-indigo-300:active,
.btn-outline-indigo-300.active,
.btn-outline-indigo-300.dropdown-toggle.show {
color: #000;
background-color: #a370f7;
border-color: #a370f7;
}
.btn-check:checked + .btn-outline-indigo-300:focus,
.btn-check:active + .btn-outline-indigo-300:focus,
.btn-outline-indigo-300:active:focus,
.btn-outline-indigo-300.active:focus,
.btn-outline-indigo-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(163, 112, 247, 0.5);
}
.btn-outline-indigo-300:disabled,
.btn-outline-indigo-300.disabled {
color: #a370f7;
background-color: transparent;
}
.btn-outline-indigo-400 {
color: #8540f5;
border-color: #8540f5;
}
.btn-outline-indigo-400:hover {
color: #fff;
background-color: #8540f5;
border-color: #8540f5;
}
.btn-check:focus + .btn-outline-indigo-400,
.btn-outline-indigo-400:focus {
box-shadow: 0 0 0 0.25rem rgba(133, 64, 245, 0.5);
}
.btn-check:checked + .btn-outline-indigo-400,
.btn-check:active + .btn-outline-indigo-400,
.btn-outline-indigo-400:active,
.btn-outline-indigo-400.active,
.btn-outline-indigo-400.dropdown-toggle.show {
color: #fff;
background-color: #8540f5;
border-color: #8540f5;
}
.btn-check:checked + .btn-outline-indigo-400:focus,
.btn-check:active + .btn-outline-indigo-400:focus,
.btn-outline-indigo-400:active:focus,
.btn-outline-indigo-400.active:focus,
.btn-outline-indigo-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(133, 64, 245, 0.5);
}
.btn-outline-indigo-400:disabled,
.btn-outline-indigo-400.disabled {
color: #8540f5;
background-color: transparent;
}
.btn-outline-indigo-500 {
color: #6610f2;
border-color: #6610f2;
}
.btn-outline-indigo-500:hover {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-check:focus + .btn-outline-indigo-500,
.btn-outline-indigo-500:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}
.btn-check:checked + .btn-outline-indigo-500,
.btn-check:active + .btn-outline-indigo-500,
.btn-outline-indigo-500:active,
.btn-outline-indigo-500.active,
.btn-outline-indigo-500.dropdown-toggle.show {
color: #fff;
background-color: #6610f2;
border-color: #6610f2;
}
.btn-check:checked + .btn-outline-indigo-500:focus,
.btn-check:active + .btn-outline-indigo-500:focus,
.btn-outline-indigo-500:active:focus,
.btn-outline-indigo-500.active:focus,
.btn-outline-indigo-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.5);
}
.btn-outline-indigo-500:disabled,
.btn-outline-indigo-500.disabled {
color: #6610f2;
background-color: transparent;
}
.btn-outline-indigo-600 {
color: #520dc2;
border-color: #520dc2;
}
.btn-outline-indigo-600:hover {
color: #fff;
background-color: #520dc2;
border-color: #520dc2;
}
.btn-check:focus + .btn-outline-indigo-600,
.btn-outline-indigo-600:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 13, 194, 0.5);
}
.btn-check:checked + .btn-outline-indigo-600,
.btn-check:active + .btn-outline-indigo-600,
.btn-outline-indigo-600:active,
.btn-outline-indigo-600.active,
.btn-outline-indigo-600.dropdown-toggle.show {
color: #fff;
background-color: #520dc2;
border-color: #520dc2;
}
.btn-check:checked + .btn-outline-indigo-600:focus,
.btn-check:active + .btn-outline-indigo-600:focus,
.btn-outline-indigo-600:active:focus,
.btn-outline-indigo-600.active:focus,
.btn-outline-indigo-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(82, 13, 194, 0.5);
}
.btn-outline-indigo-600:disabled,
.btn-outline-indigo-600.disabled {
color: #520dc2;
background-color: transparent;
}
.btn-outline-indigo-700 {
color: #3d0a91;
border-color: #3d0a91;
}
.btn-outline-indigo-700:hover {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.btn-check:focus + .btn-outline-indigo-700,
.btn-outline-indigo-700:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 10, 145, 0.5);
}
.btn-check:checked + .btn-outline-indigo-700,
.btn-check:active + .btn-outline-indigo-700,
.btn-outline-indigo-700:active,
.btn-outline-indigo-700.active,
.btn-outline-indigo-700.dropdown-toggle.show {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.btn-check:checked + .btn-outline-indigo-700:focus,
.btn-check:active + .btn-outline-indigo-700:focus,
.btn-outline-indigo-700:active:focus,
.btn-outline-indigo-700.active:focus,
.btn-outline-indigo-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 10, 145, 0.5);
}
.btn-outline-indigo-700:disabled,
.btn-outline-indigo-700.disabled {
color: #3d0a91;
background-color: transparent;
}
.btn-outline-indigo-800 {
color: #290661;
border-color: #290661;
}
.btn-outline-indigo-800:hover {
color: #fff;
background-color: #290661;
border-color: #290661;
}
.btn-check:focus + .btn-outline-indigo-800,
.btn-outline-indigo-800:focus {
box-shadow: 0 0 0 0.25rem rgba(41, 6, 97, 0.5);
}
.btn-check:checked + .btn-outline-indigo-800,
.btn-check:active + .btn-outline-indigo-800,
.btn-outline-indigo-800:active,
.btn-outline-indigo-800.active,
.btn-outline-indigo-800.dropdown-toggle.show {
color: #fff;
background-color: #290661;
border-color: #290661;
}
.btn-check:checked + .btn-outline-indigo-800:focus,
.btn-check:active + .btn-outline-indigo-800:focus,
.btn-outline-indigo-800:active:focus,
.btn-outline-indigo-800.active:focus,
.btn-outline-indigo-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(41, 6, 97, 0.5);
}
.btn-outline-indigo-800:disabled,
.btn-outline-indigo-800.disabled {
color: #290661;
background-color: transparent;
}
.btn-outline-indigo-900 {
color: #140330;
border-color: #140330;
}
.btn-outline-indigo-900:hover {
color: #fff;
background-color: #140330;
border-color: #140330;
}
.btn-check:focus + .btn-outline-indigo-900,
.btn-outline-indigo-900:focus {
box-shadow: 0 0 0 0.25rem rgba(20, 3, 48, 0.5);
}
.btn-check:checked + .btn-outline-indigo-900,
.btn-check:active + .btn-outline-indigo-900,
.btn-outline-indigo-900:active,
.btn-outline-indigo-900.active,
.btn-outline-indigo-900.dropdown-toggle.show {
color: #fff;
background-color: #140330;
border-color: #140330;
}
.btn-check:checked + .btn-outline-indigo-900:focus,
.btn-check:active + .btn-outline-indigo-900:focus,
.btn-outline-indigo-900:active:focus,
.btn-outline-indigo-900.active:focus,
.btn-outline-indigo-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(20, 3, 48, 0.5);
}
.btn-outline-indigo-900:disabled,
.btn-outline-indigo-900.disabled {
color: #140330;
background-color: transparent;
}
.btn-outline-purple {
color: #6f42c1;
border-color: #6f42c1;
}
.btn-outline-purple:hover {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-check:focus + .btn-outline-purple,
.btn-outline-purple:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}
.btn-check:checked + .btn-outline-purple,
.btn-check:active + .btn-outline-purple,
.btn-outline-purple:active,
.btn-outline-purple.active,
.btn-outline-purple.dropdown-toggle.show {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-check:checked + .btn-outline-purple:focus,
.btn-check:active + .btn-outline-purple:focus,
.btn-outline-purple:active:focus,
.btn-outline-purple.active:focus,
.btn-outline-purple.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}
.btn-outline-purple:disabled,
.btn-outline-purple.disabled {
color: #6f42c1;
background-color: transparent;
}
.btn-outline-purple-100 {
color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-outline-purple-100:hover {
color: #000;
background-color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-check:focus + .btn-outline-purple-100,
.btn-outline-purple-100:focus {
box-shadow: 0 0 0 0.25rem rgba(226, 217, 243, 0.5);
}
.btn-check:checked + .btn-outline-purple-100,
.btn-check:active + .btn-outline-purple-100,
.btn-outline-purple-100:active,
.btn-outline-purple-100.active,
.btn-outline-purple-100.dropdown-toggle.show {
color: #000;
background-color: #e2d9f3;
border-color: #e2d9f3;
}
.btn-check:checked + .btn-outline-purple-100:focus,
.btn-check:active + .btn-outline-purple-100:focus,
.btn-outline-purple-100:active:focus,
.btn-outline-purple-100.active:focus,
.btn-outline-purple-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(226, 217, 243, 0.5);
}
.btn-outline-purple-100:disabled,
.btn-outline-purple-100.disabled {
color: #e2d9f3;
background-color: transparent;
}
.btn-outline-purple-200 {
color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-outline-purple-200:hover {
color: #000;
background-color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-check:focus + .btn-outline-purple-200,
.btn-outline-purple-200:focus {
box-shadow: 0 0 0 0.25rem rgba(197, 179, 230, 0.5);
}
.btn-check:checked + .btn-outline-purple-200,
.btn-check:active + .btn-outline-purple-200,
.btn-outline-purple-200:active,
.btn-outline-purple-200.active,
.btn-outline-purple-200.dropdown-toggle.show {
color: #000;
background-color: #c5b3e6;
border-color: #c5b3e6;
}
.btn-check:checked + .btn-outline-purple-200:focus,
.btn-check:active + .btn-outline-purple-200:focus,
.btn-outline-purple-200:active:focus,
.btn-outline-purple-200.active:focus,
.btn-outline-purple-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(197, 179, 230, 0.5);
}
.btn-outline-purple-200:disabled,
.btn-outline-purple-200.disabled {
color: #c5b3e6;
background-color: transparent;
}
.btn-outline-purple-300 {
color: #a98eda;
border-color: #a98eda;
}
.btn-outline-purple-300:hover {
color: #000;
background-color: #a98eda;
border-color: #a98eda;
}
.btn-check:focus + .btn-outline-purple-300,
.btn-outline-purple-300:focus {
box-shadow: 0 0 0 0.25rem rgba(169, 142, 218, 0.5);
}
.btn-check:checked + .btn-outline-purple-300,
.btn-check:active + .btn-outline-purple-300,
.btn-outline-purple-300:active,
.btn-outline-purple-300.active,
.btn-outline-purple-300.dropdown-toggle.show {
color: #000;
background-color: #a98eda;
border-color: #a98eda;
}
.btn-check:checked + .btn-outline-purple-300:focus,
.btn-check:active + .btn-outline-purple-300:focus,
.btn-outline-purple-300:active:focus,
.btn-outline-purple-300.active:focus,
.btn-outline-purple-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(169, 142, 218, 0.5);
}
.btn-outline-purple-300:disabled,
.btn-outline-purple-300.disabled {
color: #a98eda;
background-color: transparent;
}
.btn-outline-purple-400 {
color: #8c68cd;
border-color: #8c68cd;
}
.btn-outline-purple-400:hover {
color: #000;
background-color: #8c68cd;
border-color: #8c68cd;
}
.btn-check:focus + .btn-outline-purple-400,
.btn-outline-purple-400:focus {
box-shadow: 0 0 0 0.25rem rgba(140, 104, 205, 0.5);
}
.btn-check:checked + .btn-outline-purple-400,
.btn-check:active + .btn-outline-purple-400,
.btn-outline-purple-400:active,
.btn-outline-purple-400.active,
.btn-outline-purple-400.dropdown-toggle.show {
color: #000;
background-color: #8c68cd;
border-color: #8c68cd;
}
.btn-check:checked + .btn-outline-purple-400:focus,
.btn-check:active + .btn-outline-purple-400:focus,
.btn-outline-purple-400:active:focus,
.btn-outline-purple-400.active:focus,
.btn-outline-purple-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(140, 104, 205, 0.5);
}
.btn-outline-purple-400:disabled,
.btn-outline-purple-400.disabled {
color: #8c68cd;
background-color: transparent;
}
.btn-outline-purple-500 {
color: #6f42c1;
border-color: #6f42c1;
}
.btn-outline-purple-500:hover {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-check:focus + .btn-outline-purple-500,
.btn-outline-purple-500:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}
.btn-check:checked + .btn-outline-purple-500,
.btn-check:active + .btn-outline-purple-500,
.btn-outline-purple-500:active,
.btn-outline-purple-500.active,
.btn-outline-purple-500.dropdown-toggle.show {
color: #fff;
background-color: #6f42c1;
border-color: #6f42c1;
}
.btn-check:checked + .btn-outline-purple-500:focus,
.btn-check:active + .btn-outline-purple-500:focus,
.btn-outline-purple-500:active:focus,
.btn-outline-purple-500.active:focus,
.btn-outline-purple-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
}
.btn-outline-purple-500:disabled,
.btn-outline-purple-500.disabled {
color: #6f42c1;
background-color: transparent;
}
.btn-outline-purple-600 {
color: #59359a;
border-color: #59359a;
}
.btn-outline-purple-600:hover {
color: #fff;
background-color: #59359a;
border-color: #59359a;
}
.btn-check:focus + .btn-outline-purple-600,
.btn-outline-purple-600:focus {
box-shadow: 0 0 0 0.25rem rgba(89, 53, 154, 0.5);
}
.btn-check:checked + .btn-outline-purple-600,
.btn-check:active + .btn-outline-purple-600,
.btn-outline-purple-600:active,
.btn-outline-purple-600.active,
.btn-outline-purple-600.dropdown-toggle.show {
color: #fff;
background-color: #59359a;
border-color: #59359a;
}
.btn-check:checked + .btn-outline-purple-600:focus,
.btn-check:active + .btn-outline-purple-600:focus,
.btn-outline-purple-600:active:focus,
.btn-outline-purple-600.active:focus,
.btn-outline-purple-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(89, 53, 154, 0.5);
}
.btn-outline-purple-600:disabled,
.btn-outline-purple-600.disabled {
color: #59359a;
background-color: transparent;
}
.btn-outline-purple-700 {
color: #432874;
border-color: #432874;
}
.btn-outline-purple-700:hover {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.btn-check:focus + .btn-outline-purple-700,
.btn-outline-purple-700:focus {
box-shadow: 0 0 0 0.25rem rgba(67, 40, 116, 0.5);
}
.btn-check:checked + .btn-outline-purple-700,
.btn-check:active + .btn-outline-purple-700,
.btn-outline-purple-700:active,
.btn-outline-purple-700.active,
.btn-outline-purple-700.dropdown-toggle.show {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.btn-check:checked + .btn-outline-purple-700:focus,
.btn-check:active + .btn-outline-purple-700:focus,
.btn-outline-purple-700:active:focus,
.btn-outline-purple-700.active:focus,
.btn-outline-purple-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(67, 40, 116, 0.5);
}
.btn-outline-purple-700:disabled,
.btn-outline-purple-700.disabled {
color: #432874;
background-color: transparent;
}
.btn-outline-purple-800 {
color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-outline-purple-800:hover {
color: #fff;
background-color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-check:focus + .btn-outline-purple-800,
.btn-outline-purple-800:focus {
box-shadow: 0 0 0 0.25rem rgba(44, 26, 77, 0.5);
}
.btn-check:checked + .btn-outline-purple-800,
.btn-check:active + .btn-outline-purple-800,
.btn-outline-purple-800:active,
.btn-outline-purple-800.active,
.btn-outline-purple-800.dropdown-toggle.show {
color: #fff;
background-color: #2c1a4d;
border-color: #2c1a4d;
}
.btn-check:checked + .btn-outline-purple-800:focus,
.btn-check:active + .btn-outline-purple-800:focus,
.btn-outline-purple-800:active:focus,
.btn-outline-purple-800.active:focus,
.btn-outline-purple-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(44, 26, 77, 0.5);
}
.btn-outline-purple-800:disabled,
.btn-outline-purple-800.disabled {
color: #2c1a4d;
background-color: transparent;
}
.btn-outline-purple-900 {
color: #160d27;
border-color: #160d27;
}
.btn-outline-purple-900:hover {
color: #fff;
background-color: #160d27;
border-color: #160d27;
}
.btn-check:focus + .btn-outline-purple-900,
.btn-outline-purple-900:focus {
box-shadow: 0 0 0 0.25rem rgba(22, 13, 39, 0.5);
}
.btn-check:checked + .btn-outline-purple-900,
.btn-check:active + .btn-outline-purple-900,
.btn-outline-purple-900:active,
.btn-outline-purple-900.active,
.btn-outline-purple-900.dropdown-toggle.show {
color: #fff;
background-color: #160d27;
border-color: #160d27;
}
.btn-check:checked + .btn-outline-purple-900:focus,
.btn-check:active + .btn-outline-purple-900:focus,
.btn-outline-purple-900:active:focus,
.btn-outline-purple-900.active:focus,
.btn-outline-purple-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(22, 13, 39, 0.5);
}
.btn-outline-purple-900:disabled,
.btn-outline-purple-900.disabled {
color: #160d27;
background-color: transparent;
}
.btn-outline-pink {
color: #d63384;
border-color: #d63384;
}
.btn-outline-pink:hover {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-check:focus + .btn-outline-pink,
.btn-outline-pink:focus {
box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.5);
}
.btn-check:checked + .btn-outline-pink,
.btn-check:active + .btn-outline-pink,
.btn-outline-pink:active,
.btn-outline-pink.active,
.btn-outline-pink.dropdown-toggle.show {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-check:checked + .btn-outline-pink:focus,
.btn-check:active + .btn-outline-pink:focus,
.btn-outline-pink:active:focus,
.btn-outline-pink.active:focus,
.btn-outline-pink.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.5);
}
.btn-outline-pink:disabled,
.btn-outline-pink.disabled {
color: #d63384;
background-color: transparent;
}
.btn-outline-pink-100 {
color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-outline-pink-100:hover {
color: #000;
background-color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-check:focus + .btn-outline-pink-100,
.btn-outline-pink-100:focus {
box-shadow: 0 0 0 0.25rem rgba(247, 214, 230, 0.5);
}
.btn-check:checked + .btn-outline-pink-100,
.btn-check:active + .btn-outline-pink-100,
.btn-outline-pink-100:active,
.btn-outline-pink-100.active,
.btn-outline-pink-100.dropdown-toggle.show {
color: #000;
background-color: #f7d6e6;
border-color: #f7d6e6;
}
.btn-check:checked + .btn-outline-pink-100:focus,
.btn-check:active + .btn-outline-pink-100:focus,
.btn-outline-pink-100:active:focus,
.btn-outline-pink-100.active:focus,
.btn-outline-pink-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(247, 214, 230, 0.5);
}
.btn-outline-pink-100:disabled,
.btn-outline-pink-100.disabled {
color: #f7d6e6;
background-color: transparent;
}
.btn-outline-pink-200 {
color: #efadce;
border-color: #efadce;
}
.btn-outline-pink-200:hover {
color: #000;
background-color: #efadce;
border-color: #efadce;
}
.btn-check:focus + .btn-outline-pink-200,
.btn-outline-pink-200:focus {
box-shadow: 0 0 0 0.25rem rgba(239, 173, 206, 0.5);
}
.btn-check:checked + .btn-outline-pink-200,
.btn-check:active + .btn-outline-pink-200,
.btn-outline-pink-200:active,
.btn-outline-pink-200.active,
.btn-outline-pink-200.dropdown-toggle.show {
color: #000;
background-color: #efadce;
border-color: #efadce;
}
.btn-check:checked + .btn-outline-pink-200:focus,
.btn-check:active + .btn-outline-pink-200:focus,
.btn-outline-pink-200:active:focus,
.btn-outline-pink-200.active:focus,
.btn-outline-pink-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(239, 173, 206, 0.5);
}
.btn-outline-pink-200:disabled,
.btn-outline-pink-200.disabled {
color: #efadce;
background-color: transparent;
}
.btn-outline-pink-300 {
color: #e685b5;
border-color: #e685b5;
}
.btn-outline-pink-300:hover {
color: #000;
background-color: #e685b5;
border-color: #e685b5;
}
.btn-check:focus + .btn-outline-pink-300,
.btn-outline-pink-300:focus {
box-shadow: 0 0 0 0.25rem rgba(230, 133, 181, 0.5);
}
.btn-check:checked + .btn-outline-pink-300,
.btn-check:active + .btn-outline-pink-300,
.btn-outline-pink-300:active,
.btn-outline-pink-300.active,
.btn-outline-pink-300.dropdown-toggle.show {
color: #000;
background-color: #e685b5;
border-color: #e685b5;
}
.btn-check:checked + .btn-outline-pink-300:focus,
.btn-check:active + .btn-outline-pink-300:focus,
.btn-outline-pink-300:active:focus,
.btn-outline-pink-300.active:focus,
.btn-outline-pink-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(230, 133, 181, 0.5);
}
.btn-outline-pink-300:disabled,
.btn-outline-pink-300.disabled {
color: #e685b5;
background-color: transparent;
}
.btn-outline-pink-400 {
color: #de5c9d;
border-color: #de5c9d;
}
.btn-outline-pink-400:hover {
color: #000;
background-color: #de5c9d;
border-color: #de5c9d;
}
.btn-check:focus + .btn-outline-pink-400,
.btn-outline-pink-400:focus {
box-shadow: 0 0 0 0.25rem rgba(222, 92, 157, 0.5);
}
.btn-check:checked + .btn-outline-pink-400,
.btn-check:active + .btn-outline-pink-400,
.btn-outline-pink-400:active,
.btn-outline-pink-400.active,
.btn-outline-pink-400.dropdown-toggle.show {
color: #000;
background-color: #de5c9d;
border-color: #de5c9d;
}
.btn-check:checked + .btn-outline-pink-400:focus,
.btn-check:active + .btn-outline-pink-400:focus,
.btn-outline-pink-400:active:focus,
.btn-outline-pink-400.active:focus,
.btn-outline-pink-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(222, 92, 157, 0.5);
}
.btn-outline-pink-400:disabled,
.btn-outline-pink-400.disabled {
color: #de5c9d;
background-color: transparent;
}
.btn-outline-pink-500 {
color: #d63384;
border-color: #d63384;
}
.btn-outline-pink-500:hover {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-check:focus + .btn-outline-pink-500,
.btn-outline-pink-500:focus {
box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.5);
}
.btn-check:checked + .btn-outline-pink-500,
.btn-check:active + .btn-outline-pink-500,
.btn-outline-pink-500:active,
.btn-outline-pink-500.active,
.btn-outline-pink-500.dropdown-toggle.show {
color: #fff;
background-color: #d63384;
border-color: #d63384;
}
.btn-check:checked + .btn-outline-pink-500:focus,
.btn-check:active + .btn-outline-pink-500:focus,
.btn-outline-pink-500:active:focus,
.btn-outline-pink-500.active:focus,
.btn-outline-pink-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.5);
}
.btn-outline-pink-500:disabled,
.btn-outline-pink-500.disabled {
color: #d63384;
background-color: transparent;
}
.btn-outline-pink-600 {
color: #ab296a;
border-color: #ab296a;
}
.btn-outline-pink-600:hover {
color: #fff;
background-color: #ab296a;
border-color: #ab296a;
}
.btn-check:focus + .btn-outline-pink-600,
.btn-outline-pink-600:focus {
box-shadow: 0 0 0 0.25rem rgba(171, 41, 106, 0.5);
}
.btn-check:checked + .btn-outline-pink-600,
.btn-check:active + .btn-outline-pink-600,
.btn-outline-pink-600:active,
.btn-outline-pink-600.active,
.btn-outline-pink-600.dropdown-toggle.show {
color: #fff;
background-color: #ab296a;
border-color: #ab296a;
}
.btn-check:checked + .btn-outline-pink-600:focus,
.btn-check:active + .btn-outline-pink-600:focus,
.btn-outline-pink-600:active:focus,
.btn-outline-pink-600.active:focus,
.btn-outline-pink-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(171, 41, 106, 0.5);
}
.btn-outline-pink-600:disabled,
.btn-outline-pink-600.disabled {
color: #ab296a;
background-color: transparent;
}
.btn-outline-pink-700 {
color: #801f4f;
border-color: #801f4f;
}
.btn-outline-pink-700:hover {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.btn-check:focus + .btn-outline-pink-700,
.btn-outline-pink-700:focus {
box-shadow: 0 0 0 0.25rem rgba(128, 31, 79, 0.5);
}
.btn-check:checked + .btn-outline-pink-700,
.btn-check:active + .btn-outline-pink-700,
.btn-outline-pink-700:active,
.btn-outline-pink-700.active,
.btn-outline-pink-700.dropdown-toggle.show {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.btn-check:checked + .btn-outline-pink-700:focus,
.btn-check:active + .btn-outline-pink-700:focus,
.btn-outline-pink-700:active:focus,
.btn-outline-pink-700.active:focus,
.btn-outline-pink-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(128, 31, 79, 0.5);
}
.btn-outline-pink-700:disabled,
.btn-outline-pink-700.disabled {
color: #801f4f;
background-color: transparent;
}
.btn-outline-pink-800 {
color: #561435;
border-color: #561435;
}
.btn-outline-pink-800:hover {
color: #fff;
background-color: #561435;
border-color: #561435;
}
.btn-check:focus + .btn-outline-pink-800,
.btn-outline-pink-800:focus {
box-shadow: 0 0 0 0.25rem rgba(86, 20, 53, 0.5);
}
.btn-check:checked + .btn-outline-pink-800,
.btn-check:active + .btn-outline-pink-800,
.btn-outline-pink-800:active,
.btn-outline-pink-800.active,
.btn-outline-pink-800.dropdown-toggle.show {
color: #fff;
background-color: #561435;
border-color: #561435;
}
.btn-check:checked + .btn-outline-pink-800:focus,
.btn-check:active + .btn-outline-pink-800:focus,
.btn-outline-pink-800:active:focus,
.btn-outline-pink-800.active:focus,
.btn-outline-pink-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(86, 20, 53, 0.5);
}
.btn-outline-pink-800:disabled,
.btn-outline-pink-800.disabled {
color: #561435;
background-color: transparent;
}
.btn-outline-pink-900 {
color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-outline-pink-900:hover {
color: #fff;
background-color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-check:focus + .btn-outline-pink-900,
.btn-outline-pink-900:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 10, 26, 0.5);
}
.btn-check:checked + .btn-outline-pink-900,
.btn-check:active + .btn-outline-pink-900,
.btn-outline-pink-900:active,
.btn-outline-pink-900.active,
.btn-outline-pink-900.dropdown-toggle.show {
color: #fff;
background-color: #2b0a1a;
border-color: #2b0a1a;
}
.btn-check:checked + .btn-outline-pink-900:focus,
.btn-check:active + .btn-outline-pink-900:focus,
.btn-outline-pink-900:active:focus,
.btn-outline-pink-900.active:focus,
.btn-outline-pink-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(43, 10, 26, 0.5);
}
.btn-outline-pink-900:disabled,
.btn-outline-pink-900.disabled {
color: #2b0a1a;
background-color: transparent;
}
.btn-outline-red {
color: #dc3545;
border-color: #dc3545;
}
.btn-outline-red:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:focus + .btn-outline-red,
.btn-outline-red:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-red,
.btn-check:active + .btn-outline-red,
.btn-outline-red:active,
.btn-outline-red.active,
.btn-outline-red.dropdown-toggle.show {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:checked + .btn-outline-red:focus,
.btn-check:active + .btn-outline-red:focus,
.btn-outline-red:active:focus,
.btn-outline-red.active:focus,
.btn-outline-red.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-red:disabled,
.btn-outline-red.disabled {
color: #dc3545;
background-color: transparent;
}
.btn-outline-red-100 {
color: #f8d7da;
border-color: #f8d7da;
}
.btn-outline-red-100:hover {
color: #000;
background-color: #f8d7da;
border-color: #f8d7da;
}
.btn-check:focus + .btn-outline-red-100,
.btn-outline-red-100:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 215, 218, 0.5);
}
.btn-check:checked + .btn-outline-red-100,
.btn-check:active + .btn-outline-red-100,
.btn-outline-red-100:active,
.btn-outline-red-100.active,
.btn-outline-red-100.dropdown-toggle.show {
color: #000;
background-color: #f8d7da;
border-color: #f8d7da;
}
.btn-check:checked + .btn-outline-red-100:focus,
.btn-check:active + .btn-outline-red-100:focus,
.btn-outline-red-100:active:focus,
.btn-outline-red-100.active:focus,
.btn-outline-red-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 215, 218, 0.5);
}
.btn-outline-red-100:disabled,
.btn-outline-red-100.disabled {
color: #f8d7da;
background-color: transparent;
}
.btn-outline-red-200 {
color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-outline-red-200:hover {
color: #000;
background-color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-check:focus + .btn-outline-red-200,
.btn-outline-red-200:focus {
box-shadow: 0 0 0 0.25rem rgba(241, 174, 181, 0.5);
}
.btn-check:checked + .btn-outline-red-200,
.btn-check:active + .btn-outline-red-200,
.btn-outline-red-200:active,
.btn-outline-red-200.active,
.btn-outline-red-200.dropdown-toggle.show {
color: #000;
background-color: #f1aeb5;
border-color: #f1aeb5;
}
.btn-check:checked + .btn-outline-red-200:focus,
.btn-check:active + .btn-outline-red-200:focus,
.btn-outline-red-200:active:focus,
.btn-outline-red-200.active:focus,
.btn-outline-red-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(241, 174, 181, 0.5);
}
.btn-outline-red-200:disabled,
.btn-outline-red-200.disabled {
color: #f1aeb5;
background-color: transparent;
}
.btn-outline-red-300 {
color: #ea868f;
border-color: #ea868f;
}
.btn-outline-red-300:hover {
color: #000;
background-color: #ea868f;
border-color: #ea868f;
}
.btn-check:focus + .btn-outline-red-300,
.btn-outline-red-300:focus {
box-shadow: 0 0 0 0.25rem rgba(234, 134, 143, 0.5);
}
.btn-check:checked + .btn-outline-red-300,
.btn-check:active + .btn-outline-red-300,
.btn-outline-red-300:active,
.btn-outline-red-300.active,
.btn-outline-red-300.dropdown-toggle.show {
color: #000;
background-color: #ea868f;
border-color: #ea868f;
}
.btn-check:checked + .btn-outline-red-300:focus,
.btn-check:active + .btn-outline-red-300:focus,
.btn-outline-red-300:active:focus,
.btn-outline-red-300.active:focus,
.btn-outline-red-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(234, 134, 143, 0.5);
}
.btn-outline-red-300:disabled,
.btn-outline-red-300.disabled {
color: #ea868f;
background-color: transparent;
}
.btn-outline-red-400 {
color: #e35d6a;
border-color: #e35d6a;
}
.btn-outline-red-400:hover {
color: #000;
background-color: #e35d6a;
border-color: #e35d6a;
}
.btn-check:focus + .btn-outline-red-400,
.btn-outline-red-400:focus {
box-shadow: 0 0 0 0.25rem rgba(227, 93, 106, 0.5);
}
.btn-check:checked + .btn-outline-red-400,
.btn-check:active + .btn-outline-red-400,
.btn-outline-red-400:active,
.btn-outline-red-400.active,
.btn-outline-red-400.dropdown-toggle.show {
color: #000;
background-color: #e35d6a;
border-color: #e35d6a;
}
.btn-check:checked + .btn-outline-red-400:focus,
.btn-check:active + .btn-outline-red-400:focus,
.btn-outline-red-400:active:focus,
.btn-outline-red-400.active:focus,
.btn-outline-red-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(227, 93, 106, 0.5);
}
.btn-outline-red-400:disabled,
.btn-outline-red-400.disabled {
color: #e35d6a;
background-color: transparent;
}
.btn-outline-red-500 {
color: #dc3545;
border-color: #dc3545;
}
.btn-outline-red-500:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:focus + .btn-outline-red-500,
.btn-outline-red-500:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-red-500,
.btn-check:active + .btn-outline-red-500,
.btn-outline-red-500:active,
.btn-outline-red-500.active,
.btn-outline-red-500.dropdown-toggle.show {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-check:checked + .btn-outline-red-500:focus,
.btn-check:active + .btn-outline-red-500:focus,
.btn-outline-red-500:active:focus,
.btn-outline-red-500.active:focus,
.btn-outline-red-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-red-500:disabled,
.btn-outline-red-500.disabled {
color: #dc3545;
background-color: transparent;
}
.btn-outline-red-600 {
color: #b02a37;
border-color: #b02a37;
}
.btn-outline-red-600:hover {
color: #fff;
background-color: #b02a37;
border-color: #b02a37;
}
.btn-check:focus + .btn-outline-red-600,
.btn-outline-red-600:focus {
box-shadow: 0 0 0 0.25rem rgba(176, 42, 55, 0.5);
}
.btn-check:checked + .btn-outline-red-600,
.btn-check:active + .btn-outline-red-600,
.btn-outline-red-600:active,
.btn-outline-red-600.active,
.btn-outline-red-600.dropdown-toggle.show {
color: #fff;
background-color: #b02a37;
border-color: #b02a37;
}
.btn-check:checked + .btn-outline-red-600:focus,
.btn-check:active + .btn-outline-red-600:focus,
.btn-outline-red-600:active:focus,
.btn-outline-red-600.active:focus,
.btn-outline-red-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(176, 42, 55, 0.5);
}
.btn-outline-red-600:disabled,
.btn-outline-red-600.disabled {
color: #b02a37;
background-color: transparent;
}
.btn-outline-red-700 {
color: #842029;
border-color: #842029;
}
.btn-outline-red-700:hover {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.btn-check:focus + .btn-outline-red-700,
.btn-outline-red-700:focus {
box-shadow: 0 0 0 0.25rem rgba(132, 32, 41, 0.5);
}
.btn-check:checked + .btn-outline-red-700,
.btn-check:active + .btn-outline-red-700,
.btn-outline-red-700:active,
.btn-outline-red-700.active,
.btn-outline-red-700.dropdown-toggle.show {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.btn-check:checked + .btn-outline-red-700:focus,
.btn-check:active + .btn-outline-red-700:focus,
.btn-outline-red-700:active:focus,
.btn-outline-red-700.active:focus,
.btn-outline-red-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(132, 32, 41, 0.5);
}
.btn-outline-red-700:disabled,
.btn-outline-red-700.disabled {
color: #842029;
background-color: transparent;
}
.btn-outline-red-800 {
color: #58151c;
border-color: #58151c;
}
.btn-outline-red-800:hover {
color: #fff;
background-color: #58151c;
border-color: #58151c;
}
.btn-check:focus + .btn-outline-red-800,
.btn-outline-red-800:focus {
box-shadow: 0 0 0 0.25rem rgba(88, 21, 28, 0.5);
}
.btn-check:checked + .btn-outline-red-800,
.btn-check:active + .btn-outline-red-800,
.btn-outline-red-800:active,
.btn-outline-red-800.active,
.btn-outline-red-800.dropdown-toggle.show {
color: #fff;
background-color: #58151c;
border-color: #58151c;
}
.btn-check:checked + .btn-outline-red-800:focus,
.btn-check:active + .btn-outline-red-800:focus,
.btn-outline-red-800:active:focus,
.btn-outline-red-800.active:focus,
.btn-outline-red-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(88, 21, 28, 0.5);
}
.btn-outline-red-800:disabled,
.btn-outline-red-800.disabled {
color: #58151c;
background-color: transparent;
}
.btn-outline-red-900 {
color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-outline-red-900:hover {
color: #fff;
background-color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-check:focus + .btn-outline-red-900,
.btn-outline-red-900:focus {
box-shadow: 0 0 0 0.25rem rgba(44, 11, 14, 0.5);
}
.btn-check:checked + .btn-outline-red-900,
.btn-check:active + .btn-outline-red-900,
.btn-outline-red-900:active,
.btn-outline-red-900.active,
.btn-outline-red-900.dropdown-toggle.show {
color: #fff;
background-color: #2c0b0e;
border-color: #2c0b0e;
}
.btn-check:checked + .btn-outline-red-900:focus,
.btn-check:active + .btn-outline-red-900:focus,
.btn-outline-red-900:active:focus,
.btn-outline-red-900.active:focus,
.btn-outline-red-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(44, 11, 14, 0.5);
}
.btn-outline-red-900:disabled,
.btn-outline-red-900.disabled {
color: #2c0b0e;
background-color: transparent;
}
.btn-outline-orange {
color: #fd7e14;
border-color: #fd7e14;
}
.btn-outline-orange:hover {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-check:focus + .btn-outline-orange,
.btn-outline-orange:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}
.btn-check:checked + .btn-outline-orange,
.btn-check:active + .btn-outline-orange,
.btn-outline-orange:active,
.btn-outline-orange.active,
.btn-outline-orange.dropdown-toggle.show {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-check:checked + .btn-outline-orange:focus,
.btn-check:active + .btn-outline-orange:focus,
.btn-outline-orange:active:focus,
.btn-outline-orange.active:focus,
.btn-outline-orange.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}
.btn-outline-orange:disabled,
.btn-outline-orange.disabled {
color: #fd7e14;
background-color: transparent;
}
.btn-outline-orange-100 {
color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-outline-orange-100:hover {
color: #000;
background-color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-check:focus + .btn-outline-orange-100,
.btn-outline-orange-100:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 229, 208, 0.5);
}
.btn-check:checked + .btn-outline-orange-100,
.btn-check:active + .btn-outline-orange-100,
.btn-outline-orange-100:active,
.btn-outline-orange-100.active,
.btn-outline-orange-100.dropdown-toggle.show {
color: #000;
background-color: #ffe5d0;
border-color: #ffe5d0;
}
.btn-check:checked + .btn-outline-orange-100:focus,
.btn-check:active + .btn-outline-orange-100:focus,
.btn-outline-orange-100:active:focus,
.btn-outline-orange-100.active:focus,
.btn-outline-orange-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 229, 208, 0.5);
}
.btn-outline-orange-100:disabled,
.btn-outline-orange-100.disabled {
color: #ffe5d0;
background-color: transparent;
}
.btn-outline-orange-200 {
color: #fecba1;
border-color: #fecba1;
}
.btn-outline-orange-200:hover {
color: #000;
background-color: #fecba1;
border-color: #fecba1;
}
.btn-check:focus + .btn-outline-orange-200,
.btn-outline-orange-200:focus {
box-shadow: 0 0 0 0.25rem rgba(254, 203, 161, 0.5);
}
.btn-check:checked + .btn-outline-orange-200,
.btn-check:active + .btn-outline-orange-200,
.btn-outline-orange-200:active,
.btn-outline-orange-200.active,
.btn-outline-orange-200.dropdown-toggle.show {
color: #000;
background-color: #fecba1;
border-color: #fecba1;
}
.btn-check:checked + .btn-outline-orange-200:focus,
.btn-check:active + .btn-outline-orange-200:focus,
.btn-outline-orange-200:active:focus,
.btn-outline-orange-200.active:focus,
.btn-outline-orange-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(254, 203, 161, 0.5);
}
.btn-outline-orange-200:disabled,
.btn-outline-orange-200.disabled {
color: #fecba1;
background-color: transparent;
}
.btn-outline-orange-300 {
color: #feb272;
border-color: #feb272;
}
.btn-outline-orange-300:hover {
color: #000;
background-color: #feb272;
border-color: #feb272;
}
.btn-check:focus + .btn-outline-orange-300,
.btn-outline-orange-300:focus {
box-shadow: 0 0 0 0.25rem rgba(254, 178, 114, 0.5);
}
.btn-check:checked + .btn-outline-orange-300,
.btn-check:active + .btn-outline-orange-300,
.btn-outline-orange-300:active,
.btn-outline-orange-300.active,
.btn-outline-orange-300.dropdown-toggle.show {
color: #000;
background-color: #feb272;
border-color: #feb272;
}
.btn-check:checked + .btn-outline-orange-300:focus,
.btn-check:active + .btn-outline-orange-300:focus,
.btn-outline-orange-300:active:focus,
.btn-outline-orange-300.active:focus,
.btn-outline-orange-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(254, 178, 114, 0.5);
}
.btn-outline-orange-300:disabled,
.btn-outline-orange-300.disabled {
color: #feb272;
background-color: transparent;
}
.btn-outline-orange-400 {
color: #fd9843;
border-color: #fd9843;
}
.btn-outline-orange-400:hover {
color: #000;
background-color: #fd9843;
border-color: #fd9843;
}
.btn-check:focus + .btn-outline-orange-400,
.btn-outline-orange-400:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 152, 67, 0.5);
}
.btn-check:checked + .btn-outline-orange-400,
.btn-check:active + .btn-outline-orange-400,
.btn-outline-orange-400:active,
.btn-outline-orange-400.active,
.btn-outline-orange-400.dropdown-toggle.show {
color: #000;
background-color: #fd9843;
border-color: #fd9843;
}
.btn-check:checked + .btn-outline-orange-400:focus,
.btn-check:active + .btn-outline-orange-400:focus,
.btn-outline-orange-400:active:focus,
.btn-outline-orange-400.active:focus,
.btn-outline-orange-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 152, 67, 0.5);
}
.btn-outline-orange-400:disabled,
.btn-outline-orange-400.disabled {
color: #fd9843;
background-color: transparent;
}
.btn-outline-orange-500 {
color: #fd7e14;
border-color: #fd7e14;
}
.btn-outline-orange-500:hover {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-check:focus + .btn-outline-orange-500,
.btn-outline-orange-500:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}
.btn-check:checked + .btn-outline-orange-500,
.btn-check:active + .btn-outline-orange-500,
.btn-outline-orange-500:active,
.btn-outline-orange-500.active,
.btn-outline-orange-500.dropdown-toggle.show {
color: #000;
background-color: #fd7e14;
border-color: #fd7e14;
}
.btn-check:checked + .btn-outline-orange-500:focus,
.btn-check:active + .btn-outline-orange-500:focus,
.btn-outline-orange-500:active:focus,
.btn-outline-orange-500.active:focus,
.btn-outline-orange-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}
.btn-outline-orange-500:disabled,
.btn-outline-orange-500.disabled {
color: #fd7e14;
background-color: transparent;
}
.btn-outline-orange-600 {
color: #ca6510;
border-color: #ca6510;
}
.btn-outline-orange-600:hover {
color: #000;
background-color: #ca6510;
border-color: #ca6510;
}
.btn-check:focus + .btn-outline-orange-600,
.btn-outline-orange-600:focus {
box-shadow: 0 0 0 0.25rem rgba(202, 101, 16, 0.5);
}
.btn-check:checked + .btn-outline-orange-600,
.btn-check:active + .btn-outline-orange-600,
.btn-outline-orange-600:active,
.btn-outline-orange-600.active,
.btn-outline-orange-600.dropdown-toggle.show {
color: #000;
background-color: #ca6510;
border-color: #ca6510;
}
.btn-check:checked + .btn-outline-orange-600:focus,
.btn-check:active + .btn-outline-orange-600:focus,
.btn-outline-orange-600:active:focus,
.btn-outline-orange-600.active:focus,
.btn-outline-orange-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(202, 101, 16, 0.5);
}
.btn-outline-orange-600:disabled,
.btn-outline-orange-600.disabled {
color: #ca6510;
background-color: transparent;
}
.btn-outline-orange-700 {
color: #984c0c;
border-color: #984c0c;
}
.btn-outline-orange-700:hover {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.btn-check:focus + .btn-outline-orange-700,
.btn-outline-orange-700:focus {
box-shadow: 0 0 0 0.25rem rgba(152, 76, 12, 0.5);
}
.btn-check:checked + .btn-outline-orange-700,
.btn-check:active + .btn-outline-orange-700,
.btn-outline-orange-700:active,
.btn-outline-orange-700.active,
.btn-outline-orange-700.dropdown-toggle.show {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.btn-check:checked + .btn-outline-orange-700:focus,
.btn-check:active + .btn-outline-orange-700:focus,
.btn-outline-orange-700:active:focus,
.btn-outline-orange-700.active:focus,
.btn-outline-orange-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(152, 76, 12, 0.5);
}
.btn-outline-orange-700:disabled,
.btn-outline-orange-700.disabled {
color: #984c0c;
background-color: transparent;
}
.btn-outline-orange-800 {
color: #653208;
border-color: #653208;
}
.btn-outline-orange-800:hover {
color: #fff;
background-color: #653208;
border-color: #653208;
}
.btn-check:focus + .btn-outline-orange-800,
.btn-outline-orange-800:focus {
box-shadow: 0 0 0 0.25rem rgba(101, 50, 8, 0.5);
}
.btn-check:checked + .btn-outline-orange-800,
.btn-check:active + .btn-outline-orange-800,
.btn-outline-orange-800:active,
.btn-outline-orange-800.active,
.btn-outline-orange-800.dropdown-toggle.show {
color: #fff;
background-color: #653208;
border-color: #653208;
}
.btn-check:checked + .btn-outline-orange-800:focus,
.btn-check:active + .btn-outline-orange-800:focus,
.btn-outline-orange-800:active:focus,
.btn-outline-orange-800.active:focus,
.btn-outline-orange-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(101, 50, 8, 0.5);
}
.btn-outline-orange-800:disabled,
.btn-outline-orange-800.disabled {
color: #653208;
background-color: transparent;
}
.btn-outline-orange-900 {
color: #331904;
border-color: #331904;
}
.btn-outline-orange-900:hover {
color: #fff;
background-color: #331904;
border-color: #331904;
}
.btn-check:focus + .btn-outline-orange-900,
.btn-outline-orange-900:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 25, 4, 0.5);
}
.btn-check:checked + .btn-outline-orange-900,
.btn-check:active + .btn-outline-orange-900,
.btn-outline-orange-900:active,
.btn-outline-orange-900.active,
.btn-outline-orange-900.dropdown-toggle.show {
color: #fff;
background-color: #331904;
border-color: #331904;
}
.btn-check:checked + .btn-outline-orange-900:focus,
.btn-check:active + .btn-outline-orange-900:focus,
.btn-outline-orange-900:active:focus,
.btn-outline-orange-900.active:focus,
.btn-outline-orange-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 25, 4, 0.5);
}
.btn-outline-orange-900:disabled,
.btn-outline-orange-900.disabled {
color: #331904;
background-color: transparent;
}
.btn-outline-yellow {
color: #ffc107;
border-color: #ffc107;
}
.btn-outline-yellow:hover {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:focus + .btn-outline-yellow,
.btn-outline-yellow:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-yellow,
.btn-check:active + .btn-outline-yellow,
.btn-outline-yellow:active,
.btn-outline-yellow.active,
.btn-outline-yellow.dropdown-toggle.show {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:checked + .btn-outline-yellow:focus,
.btn-check:active + .btn-outline-yellow:focus,
.btn-outline-yellow:active:focus,
.btn-outline-yellow.active:focus,
.btn-outline-yellow.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-yellow:disabled,
.btn-outline-yellow.disabled {
color: #ffc107;
background-color: transparent;
}
.btn-outline-yellow-100 {
color: #fff3cd;
border-color: #fff3cd;
}
.btn-outline-yellow-100:hover {
color: #000;
background-color: #fff3cd;
border-color: #fff3cd;
}
.btn-check:focus + .btn-outline-yellow-100,
.btn-outline-yellow-100:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 243, 205, 0.5);
}
.btn-check:checked + .btn-outline-yellow-100,
.btn-check:active + .btn-outline-yellow-100,
.btn-outline-yellow-100:active,
.btn-outline-yellow-100.active,
.btn-outline-yellow-100.dropdown-toggle.show {
color: #000;
background-color: #fff3cd;
border-color: #fff3cd;
}
.btn-check:checked + .btn-outline-yellow-100:focus,
.btn-check:active + .btn-outline-yellow-100:focus,
.btn-outline-yellow-100:active:focus,
.btn-outline-yellow-100.active:focus,
.btn-outline-yellow-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 243, 205, 0.5);
}
.btn-outline-yellow-100:disabled,
.btn-outline-yellow-100.disabled {
color: #fff3cd;
background-color: transparent;
}
.btn-outline-yellow-200 {
color: #ffe69c;
border-color: #ffe69c;
}
.btn-outline-yellow-200:hover {
color: #000;
background-color: #ffe69c;
border-color: #ffe69c;
}
.btn-check:focus + .btn-outline-yellow-200,
.btn-outline-yellow-200:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 230, 156, 0.5);
}
.btn-check:checked + .btn-outline-yellow-200,
.btn-check:active + .btn-outline-yellow-200,
.btn-outline-yellow-200:active,
.btn-outline-yellow-200.active,
.btn-outline-yellow-200.dropdown-toggle.show {
color: #000;
background-color: #ffe69c;
border-color: #ffe69c;
}
.btn-check:checked + .btn-outline-yellow-200:focus,
.btn-check:active + .btn-outline-yellow-200:focus,
.btn-outline-yellow-200:active:focus,
.btn-outline-yellow-200.active:focus,
.btn-outline-yellow-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 230, 156, 0.5);
}
.btn-outline-yellow-200:disabled,
.btn-outline-yellow-200.disabled {
color: #ffe69c;
background-color: transparent;
}
.btn-outline-yellow-300 {
color: #ffda6a;
border-color: #ffda6a;
}
.btn-outline-yellow-300:hover {
color: #000;
background-color: #ffda6a;
border-color: #ffda6a;
}
.btn-check:focus + .btn-outline-yellow-300,
.btn-outline-yellow-300:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 218, 106, 0.5);
}
.btn-check:checked + .btn-outline-yellow-300,
.btn-check:active + .btn-outline-yellow-300,
.btn-outline-yellow-300:active,
.btn-outline-yellow-300.active,
.btn-outline-yellow-300.dropdown-toggle.show {
color: #000;
background-color: #ffda6a;
border-color: #ffda6a;
}
.btn-check:checked + .btn-outline-yellow-300:focus,
.btn-check:active + .btn-outline-yellow-300:focus,
.btn-outline-yellow-300:active:focus,
.btn-outline-yellow-300.active:focus,
.btn-outline-yellow-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 218, 106, 0.5);
}
.btn-outline-yellow-300:disabled,
.btn-outline-yellow-300.disabled {
color: #ffda6a;
background-color: transparent;
}
.btn-outline-yellow-400 {
color: #ffcd39;
border-color: #ffcd39;
}
.btn-outline-yellow-400:hover {
color: #000;
background-color: #ffcd39;
border-color: #ffcd39;
}
.btn-check:focus + .btn-outline-yellow-400,
.btn-outline-yellow-400:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 205, 57, 0.5);
}
.btn-check:checked + .btn-outline-yellow-400,
.btn-check:active + .btn-outline-yellow-400,
.btn-outline-yellow-400:active,
.btn-outline-yellow-400.active,
.btn-outline-yellow-400.dropdown-toggle.show {
color: #000;
background-color: #ffcd39;
border-color: #ffcd39;
}
.btn-check:checked + .btn-outline-yellow-400:focus,
.btn-check:active + .btn-outline-yellow-400:focus,
.btn-outline-yellow-400:active:focus,
.btn-outline-yellow-400.active:focus,
.btn-outline-yellow-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 205, 57, 0.5);
}
.btn-outline-yellow-400:disabled,
.btn-outline-yellow-400.disabled {
color: #ffcd39;
background-color: transparent;
}
.btn-outline-yellow-500 {
color: #ffc107;
border-color: #ffc107;
}
.btn-outline-yellow-500:hover {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:focus + .btn-outline-yellow-500,
.btn-outline-yellow-500:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-yellow-500,
.btn-check:active + .btn-outline-yellow-500,
.btn-outline-yellow-500:active,
.btn-outline-yellow-500.active,
.btn-outline-yellow-500.dropdown-toggle.show {
color: #000;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-check:checked + .btn-outline-yellow-500:focus,
.btn-check:active + .btn-outline-yellow-500:focus,
.btn-outline-yellow-500:active:focus,
.btn-outline-yellow-500.active:focus,
.btn-outline-yellow-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-yellow-500:disabled,
.btn-outline-yellow-500.disabled {
color: #ffc107;
background-color: transparent;
}
.btn-outline-yellow-600 {
color: #cc9a06;
border-color: #cc9a06;
}
.btn-outline-yellow-600:hover {
color: #000;
background-color: #cc9a06;
border-color: #cc9a06;
}
.btn-check:focus + .btn-outline-yellow-600,
.btn-outline-yellow-600:focus {
box-shadow: 0 0 0 0.25rem rgba(204, 154, 6, 0.5);
}
.btn-check:checked + .btn-outline-yellow-600,
.btn-check:active + .btn-outline-yellow-600,
.btn-outline-yellow-600:active,
.btn-outline-yellow-600.active,
.btn-outline-yellow-600.dropdown-toggle.show {
color: #000;
background-color: #cc9a06;
border-color: #cc9a06;
}
.btn-check:checked + .btn-outline-yellow-600:focus,
.btn-check:active + .btn-outline-yellow-600:focus,
.btn-outline-yellow-600:active:focus,
.btn-outline-yellow-600.active:focus,
.btn-outline-yellow-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(204, 154, 6, 0.5);
}
.btn-outline-yellow-600:disabled,
.btn-outline-yellow-600.disabled {
color: #cc9a06;
background-color: transparent;
}
.btn-outline-yellow-700 {
color: #997404;
border-color: #997404;
}
.btn-outline-yellow-700:hover {
color: #000;
background-color: #997404;
border-color: #997404;
}
.btn-check:focus + .btn-outline-yellow-700,
.btn-outline-yellow-700:focus {
box-shadow: 0 0 0 0.25rem rgba(153, 116, 4, 0.5);
}
.btn-check:checked + .btn-outline-yellow-700,
.btn-check:active + .btn-outline-yellow-700,
.btn-outline-yellow-700:active,
.btn-outline-yellow-700.active,
.btn-outline-yellow-700.dropdown-toggle.show {
color: #000;
background-color: #997404;
border-color: #997404;
}
.btn-check:checked + .btn-outline-yellow-700:focus,
.btn-check:active + .btn-outline-yellow-700:focus,
.btn-outline-yellow-700:active:focus,
.btn-outline-yellow-700.active:focus,
.btn-outline-yellow-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(153, 116, 4, 0.5);
}
.btn-outline-yellow-700:disabled,
.btn-outline-yellow-700.disabled {
color: #997404;
background-color: transparent;
}
.btn-outline-yellow-800 {
color: #664d03;
border-color: #664d03;
}
.btn-outline-yellow-800:hover {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.btn-check:focus + .btn-outline-yellow-800,
.btn-outline-yellow-800:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 77, 3, 0.5);
}
.btn-check:checked + .btn-outline-yellow-800,
.btn-check:active + .btn-outline-yellow-800,
.btn-outline-yellow-800:active,
.btn-outline-yellow-800.active,
.btn-outline-yellow-800.dropdown-toggle.show {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.btn-check:checked + .btn-outline-yellow-800:focus,
.btn-check:active + .btn-outline-yellow-800:focus,
.btn-outline-yellow-800:active:focus,
.btn-outline-yellow-800.active:focus,
.btn-outline-yellow-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 77, 3, 0.5);
}
.btn-outline-yellow-800:disabled,
.btn-outline-yellow-800.disabled {
color: #664d03;
background-color: transparent;
}
.btn-outline-yellow-900 {
color: #332701;
border-color: #332701;
}
.btn-outline-yellow-900:hover {
color: #fff;
background-color: #332701;
border-color: #332701;
}
.btn-check:focus + .btn-outline-yellow-900,
.btn-outline-yellow-900:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 39, 1, 0.5);
}
.btn-check:checked + .btn-outline-yellow-900,
.btn-check:active + .btn-outline-yellow-900,
.btn-outline-yellow-900:active,
.btn-outline-yellow-900.active,
.btn-outline-yellow-900.dropdown-toggle.show {
color: #fff;
background-color: #332701;
border-color: #332701;
}
.btn-check:checked + .btn-outline-yellow-900:focus,
.btn-check:active + .btn-outline-yellow-900:focus,
.btn-outline-yellow-900:active:focus,
.btn-outline-yellow-900.active:focus,
.btn-outline-yellow-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 39, 1, 0.5);
}
.btn-outline-yellow-900:disabled,
.btn-outline-yellow-900.disabled {
color: #332701;
background-color: transparent;
}
.btn-outline-green {
color: #198754;
border-color: #198754;
}
.btn-outline-green:hover {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:focus + .btn-outline-green,
.btn-outline-green:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-green,
.btn-check:active + .btn-outline-green,
.btn-outline-green:active,
.btn-outline-green.active,
.btn-outline-green.dropdown-toggle.show {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:checked + .btn-outline-green:focus,
.btn-check:active + .btn-outline-green:focus,
.btn-outline-green:active:focus,
.btn-outline-green.active:focus,
.btn-outline-green.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-green:disabled,
.btn-outline-green.disabled {
color: #198754;
background-color: transparent;
}
.btn-outline-green-100 {
color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-outline-green-100:hover {
color: #000;
background-color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-check:focus + .btn-outline-green-100,
.btn-outline-green-100:focus {
box-shadow: 0 0 0 0.25rem rgba(209, 231, 221, 0.5);
}
.btn-check:checked + .btn-outline-green-100,
.btn-check:active + .btn-outline-green-100,
.btn-outline-green-100:active,
.btn-outline-green-100.active,
.btn-outline-green-100.dropdown-toggle.show {
color: #000;
background-color: #d1e7dd;
border-color: #d1e7dd;
}
.btn-check:checked + .btn-outline-green-100:focus,
.btn-check:active + .btn-outline-green-100:focus,
.btn-outline-green-100:active:focus,
.btn-outline-green-100.active:focus,
.btn-outline-green-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(209, 231, 221, 0.5);
}
.btn-outline-green-100:disabled,
.btn-outline-green-100.disabled {
color: #d1e7dd;
background-color: transparent;
}
.btn-outline-green-200 {
color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-outline-green-200:hover {
color: #000;
background-color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-check:focus + .btn-outline-green-200,
.btn-outline-green-200:focus {
box-shadow: 0 0 0 0.25rem rgba(163, 207, 187, 0.5);
}
.btn-check:checked + .btn-outline-green-200,
.btn-check:active + .btn-outline-green-200,
.btn-outline-green-200:active,
.btn-outline-green-200.active,
.btn-outline-green-200.dropdown-toggle.show {
color: #000;
background-color: #a3cfbb;
border-color: #a3cfbb;
}
.btn-check:checked + .btn-outline-green-200:focus,
.btn-check:active + .btn-outline-green-200:focus,
.btn-outline-green-200:active:focus,
.btn-outline-green-200.active:focus,
.btn-outline-green-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(163, 207, 187, 0.5);
}
.btn-outline-green-200:disabled,
.btn-outline-green-200.disabled {
color: #a3cfbb;
background-color: transparent;
}
.btn-outline-green-300 {
color: #75b798;
border-color: #75b798;
}
.btn-outline-green-300:hover {
color: #000;
background-color: #75b798;
border-color: #75b798;
}
.btn-check:focus + .btn-outline-green-300,
.btn-outline-green-300:focus {
box-shadow: 0 0 0 0.25rem rgba(117, 183, 152, 0.5);
}
.btn-check:checked + .btn-outline-green-300,
.btn-check:active + .btn-outline-green-300,
.btn-outline-green-300:active,
.btn-outline-green-300.active,
.btn-outline-green-300.dropdown-toggle.show {
color: #000;
background-color: #75b798;
border-color: #75b798;
}
.btn-check:checked + .btn-outline-green-300:focus,
.btn-check:active + .btn-outline-green-300:focus,
.btn-outline-green-300:active:focus,
.btn-outline-green-300.active:focus,
.btn-outline-green-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(117, 183, 152, 0.5);
}
.btn-outline-green-300:disabled,
.btn-outline-green-300.disabled {
color: #75b798;
background-color: transparent;
}
.btn-outline-green-400 {
color: #479f76;
border-color: #479f76;
}
.btn-outline-green-400:hover {
color: #000;
background-color: #479f76;
border-color: #479f76;
}
.btn-check:focus + .btn-outline-green-400,
.btn-outline-green-400:focus {
box-shadow: 0 0 0 0.25rem rgba(71, 159, 118, 0.5);
}
.btn-check:checked + .btn-outline-green-400,
.btn-check:active + .btn-outline-green-400,
.btn-outline-green-400:active,
.btn-outline-green-400.active,
.btn-outline-green-400.dropdown-toggle.show {
color: #000;
background-color: #479f76;
border-color: #479f76;
}
.btn-check:checked + .btn-outline-green-400:focus,
.btn-check:active + .btn-outline-green-400:focus,
.btn-outline-green-400:active:focus,
.btn-outline-green-400.active:focus,
.btn-outline-green-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(71, 159, 118, 0.5);
}
.btn-outline-green-400:disabled,
.btn-outline-green-400.disabled {
color: #479f76;
background-color: transparent;
}
.btn-outline-green-500 {
color: #198754;
border-color: #198754;
}
.btn-outline-green-500:hover {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:focus + .btn-outline-green-500,
.btn-outline-green-500:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-green-500,
.btn-check:active + .btn-outline-green-500,
.btn-outline-green-500:active,
.btn-outline-green-500.active,
.btn-outline-green-500.dropdown-toggle.show {
color: #fff;
background-color: #198754;
border-color: #198754;
}
.btn-check:checked + .btn-outline-green-500:focus,
.btn-check:active + .btn-outline-green-500:focus,
.btn-outline-green-500:active:focus,
.btn-outline-green-500.active:focus,
.btn-outline-green-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-green-500:disabled,
.btn-outline-green-500.disabled {
color: #198754;
background-color: transparent;
}
.btn-outline-green-600 {
color: #146c43;
border-color: #146c43;
}
.btn-outline-green-600:hover {
color: #fff;
background-color: #146c43;
border-color: #146c43;
}
.btn-check:focus + .btn-outline-green-600,
.btn-outline-green-600:focus {
box-shadow: 0 0 0 0.25rem rgba(20, 108, 67, 0.5);
}
.btn-check:checked + .btn-outline-green-600,
.btn-check:active + .btn-outline-green-600,
.btn-outline-green-600:active,
.btn-outline-green-600.active,
.btn-outline-green-600.dropdown-toggle.show {
color: #fff;
background-color: #146c43;
border-color: #146c43;
}
.btn-check:checked + .btn-outline-green-600:focus,
.btn-check:active + .btn-outline-green-600:focus,
.btn-outline-green-600:active:focus,
.btn-outline-green-600.active:focus,
.btn-outline-green-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(20, 108, 67, 0.5);
}
.btn-outline-green-600:disabled,
.btn-outline-green-600.disabled {
color: #146c43;
background-color: transparent;
}
.btn-outline-green-700 {
color: #0f5132;
border-color: #0f5132;
}
.btn-outline-green-700:hover {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.btn-check:focus + .btn-outline-green-700,
.btn-outline-green-700:focus {
box-shadow: 0 0 0 0.25rem rgba(15, 81, 50, 0.5);
}
.btn-check:checked + .btn-outline-green-700,
.btn-check:active + .btn-outline-green-700,
.btn-outline-green-700:active,
.btn-outline-green-700.active,
.btn-outline-green-700.dropdown-toggle.show {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.btn-check:checked + .btn-outline-green-700:focus,
.btn-check:active + .btn-outline-green-700:focus,
.btn-outline-green-700:active:focus,
.btn-outline-green-700.active:focus,
.btn-outline-green-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(15, 81, 50, 0.5);
}
.btn-outline-green-700:disabled,
.btn-outline-green-700.disabled {
color: #0f5132;
background-color: transparent;
}
.btn-outline-green-800 {
color: #0a3622;
border-color: #0a3622;
}
.btn-outline-green-800:hover {
color: #fff;
background-color: #0a3622;
border-color: #0a3622;
}
.btn-check:focus + .btn-outline-green-800,
.btn-outline-green-800:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 54, 34, 0.5);
}
.btn-check:checked + .btn-outline-green-800,
.btn-check:active + .btn-outline-green-800,
.btn-outline-green-800:active,
.btn-outline-green-800.active,
.btn-outline-green-800.dropdown-toggle.show {
color: #fff;
background-color: #0a3622;
border-color: #0a3622;
}
.btn-check:checked + .btn-outline-green-800:focus,
.btn-check:active + .btn-outline-green-800:focus,
.btn-outline-green-800:active:focus,
.btn-outline-green-800.active:focus,
.btn-outline-green-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 54, 34, 0.5);
}
.btn-outline-green-800:disabled,
.btn-outline-green-800.disabled {
color: #0a3622;
background-color: transparent;
}
.btn-outline-green-900 {
color: #051b11;
border-color: #051b11;
}
.btn-outline-green-900:hover {
color: #fff;
background-color: #051b11;
border-color: #051b11;
}
.btn-check:focus + .btn-outline-green-900,
.btn-outline-green-900:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 27, 17, 0.5);
}
.btn-check:checked + .btn-outline-green-900,
.btn-check:active + .btn-outline-green-900,
.btn-outline-green-900:active,
.btn-outline-green-900.active,
.btn-outline-green-900.dropdown-toggle.show {
color: #fff;
background-color: #051b11;
border-color: #051b11;
}
.btn-check:checked + .btn-outline-green-900:focus,
.btn-check:active + .btn-outline-green-900:focus,
.btn-outline-green-900:active:focus,
.btn-outline-green-900.active:focus,
.btn-outline-green-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 27, 17, 0.5);
}
.btn-outline-green-900:disabled,
.btn-outline-green-900.disabled {
color: #051b11;
background-color: transparent;
}
.btn-outline-teal {
color: #20c997;
border-color: #20c997;
}
.btn-outline-teal:hover {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-check:focus + .btn-outline-teal,
.btn-outline-teal:focus {
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.5);
}
.btn-check:checked + .btn-outline-teal,
.btn-check:active + .btn-outline-teal,
.btn-outline-teal:active,
.btn-outline-teal.active,
.btn-outline-teal.dropdown-toggle.show {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-check:checked + .btn-outline-teal:focus,
.btn-check:active + .btn-outline-teal:focus,
.btn-outline-teal:active:focus,
.btn-outline-teal.active:focus,
.btn-outline-teal.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.5);
}
.btn-outline-teal:disabled,
.btn-outline-teal.disabled {
color: #20c997;
background-color: transparent;
}
.btn-outline-teal-100 {
color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-outline-teal-100:hover {
color: #000;
background-color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-check:focus + .btn-outline-teal-100,
.btn-outline-teal-100:focus {
box-shadow: 0 0 0 0.25rem rgba(210, 244, 234, 0.5);
}
.btn-check:checked + .btn-outline-teal-100,
.btn-check:active + .btn-outline-teal-100,
.btn-outline-teal-100:active,
.btn-outline-teal-100.active,
.btn-outline-teal-100.dropdown-toggle.show {
color: #000;
background-color: #d2f4ea;
border-color: #d2f4ea;
}
.btn-check:checked + .btn-outline-teal-100:focus,
.btn-check:active + .btn-outline-teal-100:focus,
.btn-outline-teal-100:active:focus,
.btn-outline-teal-100.active:focus,
.btn-outline-teal-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(210, 244, 234, 0.5);
}
.btn-outline-teal-100:disabled,
.btn-outline-teal-100.disabled {
color: #d2f4ea;
background-color: transparent;
}
.btn-outline-teal-200 {
color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-outline-teal-200:hover {
color: #000;
background-color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-check:focus + .btn-outline-teal-200,
.btn-outline-teal-200:focus {
box-shadow: 0 0 0 0.25rem rgba(166, 233, 213, 0.5);
}
.btn-check:checked + .btn-outline-teal-200,
.btn-check:active + .btn-outline-teal-200,
.btn-outline-teal-200:active,
.btn-outline-teal-200.active,
.btn-outline-teal-200.dropdown-toggle.show {
color: #000;
background-color: #a6e9d5;
border-color: #a6e9d5;
}
.btn-check:checked + .btn-outline-teal-200:focus,
.btn-check:active + .btn-outline-teal-200:focus,
.btn-outline-teal-200:active:focus,
.btn-outline-teal-200.active:focus,
.btn-outline-teal-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(166, 233, 213, 0.5);
}
.btn-outline-teal-200:disabled,
.btn-outline-teal-200.disabled {
color: #a6e9d5;
background-color: transparent;
}
.btn-outline-teal-300 {
color: #79dfc1;
border-color: #79dfc1;
}
.btn-outline-teal-300:hover {
color: #000;
background-color: #79dfc1;
border-color: #79dfc1;
}
.btn-check:focus + .btn-outline-teal-300,
.btn-outline-teal-300:focus {
box-shadow: 0 0 0 0.25rem rgba(121, 223, 193, 0.5);
}
.btn-check:checked + .btn-outline-teal-300,
.btn-check:active + .btn-outline-teal-300,
.btn-outline-teal-300:active,
.btn-outline-teal-300.active,
.btn-outline-teal-300.dropdown-toggle.show {
color: #000;
background-color: #79dfc1;
border-color: #79dfc1;
}
.btn-check:checked + .btn-outline-teal-300:focus,
.btn-check:active + .btn-outline-teal-300:focus,
.btn-outline-teal-300:active:focus,
.btn-outline-teal-300.active:focus,
.btn-outline-teal-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(121, 223, 193, 0.5);
}
.btn-outline-teal-300:disabled,
.btn-outline-teal-300.disabled {
color: #79dfc1;
background-color: transparent;
}
.btn-outline-teal-400 {
color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-outline-teal-400:hover {
color: #000;
background-color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-check:focus + .btn-outline-teal-400,
.btn-outline-teal-400:focus {
box-shadow: 0 0 0 0.25rem rgba(77, 212, 172, 0.5);
}
.btn-check:checked + .btn-outline-teal-400,
.btn-check:active + .btn-outline-teal-400,
.btn-outline-teal-400:active,
.btn-outline-teal-400.active,
.btn-outline-teal-400.dropdown-toggle.show {
color: #000;
background-color: #4dd4ac;
border-color: #4dd4ac;
}
.btn-check:checked + .btn-outline-teal-400:focus,
.btn-check:active + .btn-outline-teal-400:focus,
.btn-outline-teal-400:active:focus,
.btn-outline-teal-400.active:focus,
.btn-outline-teal-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(77, 212, 172, 0.5);
}
.btn-outline-teal-400:disabled,
.btn-outline-teal-400.disabled {
color: #4dd4ac;
background-color: transparent;
}
.btn-outline-teal-500 {
color: #20c997;
border-color: #20c997;
}
.btn-outline-teal-500:hover {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-check:focus + .btn-outline-teal-500,
.btn-outline-teal-500:focus {
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.5);
}
.btn-check:checked + .btn-outline-teal-500,
.btn-check:active + .btn-outline-teal-500,
.btn-outline-teal-500:active,
.btn-outline-teal-500.active,
.btn-outline-teal-500.dropdown-toggle.show {
color: #000;
background-color: #20c997;
border-color: #20c997;
}
.btn-check:checked + .btn-outline-teal-500:focus,
.btn-check:active + .btn-outline-teal-500:focus,
.btn-outline-teal-500:active:focus,
.btn-outline-teal-500.active:focus,
.btn-outline-teal-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.5);
}
.btn-outline-teal-500:disabled,
.btn-outline-teal-500.disabled {
color: #20c997;
background-color: transparent;
}
.btn-outline-teal-600 {
color: #1aa179;
border-color: #1aa179;
}
.btn-outline-teal-600:hover {
color: #000;
background-color: #1aa179;
border-color: #1aa179;
}
.btn-check:focus + .btn-outline-teal-600,
.btn-outline-teal-600:focus {
box-shadow: 0 0 0 0.25rem rgba(26, 161, 121, 0.5);
}
.btn-check:checked + .btn-outline-teal-600,
.btn-check:active + .btn-outline-teal-600,
.btn-outline-teal-600:active,
.btn-outline-teal-600.active,
.btn-outline-teal-600.dropdown-toggle.show {
color: #000;
background-color: #1aa179;
border-color: #1aa179;
}
.btn-check:checked + .btn-outline-teal-600:focus,
.btn-check:active + .btn-outline-teal-600:focus,
.btn-outline-teal-600:active:focus,
.btn-outline-teal-600.active:focus,
.btn-outline-teal-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(26, 161, 121, 0.5);
}
.btn-outline-teal-600:disabled,
.btn-outline-teal-600.disabled {
color: #1aa179;
background-color: transparent;
}
.btn-outline-teal-700 {
color: #13795b;
border-color: #13795b;
}
.btn-outline-teal-700:hover {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.btn-check:focus + .btn-outline-teal-700,
.btn-outline-teal-700:focus {
box-shadow: 0 0 0 0.25rem rgba(19, 121, 91, 0.5);
}
.btn-check:checked + .btn-outline-teal-700,
.btn-check:active + .btn-outline-teal-700,
.btn-outline-teal-700:active,
.btn-outline-teal-700.active,
.btn-outline-teal-700.dropdown-toggle.show {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.btn-check:checked + .btn-outline-teal-700:focus,
.btn-check:active + .btn-outline-teal-700:focus,
.btn-outline-teal-700:active:focus,
.btn-outline-teal-700.active:focus,
.btn-outline-teal-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(19, 121, 91, 0.5);
}
.btn-outline-teal-700:disabled,
.btn-outline-teal-700.disabled {
color: #13795b;
background-color: transparent;
}
.btn-outline-teal-800 {
color: #0d503c;
border-color: #0d503c;
}
.btn-outline-teal-800:hover {
color: #fff;
background-color: #0d503c;
border-color: #0d503c;
}
.btn-check:focus + .btn-outline-teal-800,
.btn-outline-teal-800:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 80, 60, 0.5);
}
.btn-check:checked + .btn-outline-teal-800,
.btn-check:active + .btn-outline-teal-800,
.btn-outline-teal-800:active,
.btn-outline-teal-800.active,
.btn-outline-teal-800.dropdown-toggle.show {
color: #fff;
background-color: #0d503c;
border-color: #0d503c;
}
.btn-check:checked + .btn-outline-teal-800:focus,
.btn-check:active + .btn-outline-teal-800:focus,
.btn-outline-teal-800:active:focus,
.btn-outline-teal-800.active:focus,
.btn-outline-teal-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 80, 60, 0.5);
}
.btn-outline-teal-800:disabled,
.btn-outline-teal-800.disabled {
color: #0d503c;
background-color: transparent;
}
.btn-outline-teal-900 {
color: #06281e;
border-color: #06281e;
}
.btn-outline-teal-900:hover {
color: #fff;
background-color: #06281e;
border-color: #06281e;
}
.btn-check:focus + .btn-outline-teal-900,
.btn-outline-teal-900:focus {
box-shadow: 0 0 0 0.25rem rgba(6, 40, 30, 0.5);
}
.btn-check:checked + .btn-outline-teal-900,
.btn-check:active + .btn-outline-teal-900,
.btn-outline-teal-900:active,
.btn-outline-teal-900.active,
.btn-outline-teal-900.dropdown-toggle.show {
color: #fff;
background-color: #06281e;
border-color: #06281e;
}
.btn-check:checked + .btn-outline-teal-900:focus,
.btn-check:active + .btn-outline-teal-900:focus,
.btn-outline-teal-900:active:focus,
.btn-outline-teal-900.active:focus,
.btn-outline-teal-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(6, 40, 30, 0.5);
}
.btn-outline-teal-900:disabled,
.btn-outline-teal-900.disabled {
color: #06281e;
background-color: transparent;
}
.btn-outline-cyan {
color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-outline-cyan:hover {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-cyan,
.btn-outline-cyan:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-cyan,
.btn-check:active + .btn-outline-cyan,
.btn-outline-cyan:active,
.btn-outline-cyan.active,
.btn-outline-cyan.dropdown-toggle.show {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-cyan:focus,
.btn-check:active + .btn-outline-cyan:focus,
.btn-outline-cyan:active:focus,
.btn-outline-cyan.active:focus,
.btn-outline-cyan.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-cyan:disabled,
.btn-outline-cyan.disabled {
color: #0dcaf0;
background-color: transparent;
}
.btn-outline-cyan-100 {
color: #cff4fc;
border-color: #cff4fc;
}
.btn-outline-cyan-100:hover {
color: #000;
background-color: #cff4fc;
border-color: #cff4fc;
}
.btn-check:focus + .btn-outline-cyan-100,
.btn-outline-cyan-100:focus {
box-shadow: 0 0 0 0.25rem rgba(207, 244, 252, 0.5);
}
.btn-check:checked + .btn-outline-cyan-100,
.btn-check:active + .btn-outline-cyan-100,
.btn-outline-cyan-100:active,
.btn-outline-cyan-100.active,
.btn-outline-cyan-100.dropdown-toggle.show {
color: #000;
background-color: #cff4fc;
border-color: #cff4fc;
}
.btn-check:checked + .btn-outline-cyan-100:focus,
.btn-check:active + .btn-outline-cyan-100:focus,
.btn-outline-cyan-100:active:focus,
.btn-outline-cyan-100.active:focus,
.btn-outline-cyan-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(207, 244, 252, 0.5);
}
.btn-outline-cyan-100:disabled,
.btn-outline-cyan-100.disabled {
color: #cff4fc;
background-color: transparent;
}
.btn-outline-cyan-200 {
color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-outline-cyan-200:hover {
color: #000;
background-color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-check:focus + .btn-outline-cyan-200,
.btn-outline-cyan-200:focus {
box-shadow: 0 0 0 0.25rem rgba(158, 234, 249, 0.5);
}
.btn-check:checked + .btn-outline-cyan-200,
.btn-check:active + .btn-outline-cyan-200,
.btn-outline-cyan-200:active,
.btn-outline-cyan-200.active,
.btn-outline-cyan-200.dropdown-toggle.show {
color: #000;
background-color: #9eeaf9;
border-color: #9eeaf9;
}
.btn-check:checked + .btn-outline-cyan-200:focus,
.btn-check:active + .btn-outline-cyan-200:focus,
.btn-outline-cyan-200:active:focus,
.btn-outline-cyan-200.active:focus,
.btn-outline-cyan-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(158, 234, 249, 0.5);
}
.btn-outline-cyan-200:disabled,
.btn-outline-cyan-200.disabled {
color: #9eeaf9;
background-color: transparent;
}
.btn-outline-cyan-300 {
color: #6edff6;
border-color: #6edff6;
}
.btn-outline-cyan-300:hover {
color: #000;
background-color: #6edff6;
border-color: #6edff6;
}
.btn-check:focus + .btn-outline-cyan-300,
.btn-outline-cyan-300:focus {
box-shadow: 0 0 0 0.25rem rgba(110, 223, 246, 0.5);
}
.btn-check:checked + .btn-outline-cyan-300,
.btn-check:active + .btn-outline-cyan-300,
.btn-outline-cyan-300:active,
.btn-outline-cyan-300.active,
.btn-outline-cyan-300.dropdown-toggle.show {
color: #000;
background-color: #6edff6;
border-color: #6edff6;
}
.btn-check:checked + .btn-outline-cyan-300:focus,
.btn-check:active + .btn-outline-cyan-300:focus,
.btn-outline-cyan-300:active:focus,
.btn-outline-cyan-300.active:focus,
.btn-outline-cyan-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(110, 223, 246, 0.5);
}
.btn-outline-cyan-300:disabled,
.btn-outline-cyan-300.disabled {
color: #6edff6;
background-color: transparent;
}
.btn-outline-cyan-400 {
color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-outline-cyan-400:hover {
color: #000;
background-color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-check:focus + .btn-outline-cyan-400,
.btn-outline-cyan-400:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 213, 243, 0.5);
}
.btn-check:checked + .btn-outline-cyan-400,
.btn-check:active + .btn-outline-cyan-400,
.btn-outline-cyan-400:active,
.btn-outline-cyan-400.active,
.btn-outline-cyan-400.dropdown-toggle.show {
color: #000;
background-color: #3dd5f3;
border-color: #3dd5f3;
}
.btn-check:checked + .btn-outline-cyan-400:focus,
.btn-check:active + .btn-outline-cyan-400:focus,
.btn-outline-cyan-400:active:focus,
.btn-outline-cyan-400.active:focus,
.btn-outline-cyan-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 213, 243, 0.5);
}
.btn-outline-cyan-400:disabled,
.btn-outline-cyan-400.disabled {
color: #3dd5f3;
background-color: transparent;
}
.btn-outline-cyan-500 {
color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-outline-cyan-500:hover {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-cyan-500,
.btn-outline-cyan-500:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-cyan-500,
.btn-check:active + .btn-outline-cyan-500,
.btn-outline-cyan-500:active,
.btn-outline-cyan-500.active,
.btn-outline-cyan-500.dropdown-toggle.show {
color: #000;
background-color: #0dcaf0;
border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-cyan-500:focus,
.btn-check:active + .btn-outline-cyan-500:focus,
.btn-outline-cyan-500:active:focus,
.btn-outline-cyan-500.active:focus,
.btn-outline-cyan-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-cyan-500:disabled,
.btn-outline-cyan-500.disabled {
color: #0dcaf0;
background-color: transparent;
}
.btn-outline-cyan-600 {
color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-outline-cyan-600:hover {
color: #000;
background-color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-check:focus + .btn-outline-cyan-600,
.btn-outline-cyan-600:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 162, 192, 0.5);
}
.btn-check:checked + .btn-outline-cyan-600,
.btn-check:active + .btn-outline-cyan-600,
.btn-outline-cyan-600:active,
.btn-outline-cyan-600.active,
.btn-outline-cyan-600.dropdown-toggle.show {
color: #000;
background-color: #0aa2c0;
border-color: #0aa2c0;
}
.btn-check:checked + .btn-outline-cyan-600:focus,
.btn-check:active + .btn-outline-cyan-600:focus,
.btn-outline-cyan-600:active:focus,
.btn-outline-cyan-600.active:focus,
.btn-outline-cyan-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(10, 162, 192, 0.5);
}
.btn-outline-cyan-600:disabled,
.btn-outline-cyan-600.disabled {
color: #0aa2c0;
background-color: transparent;
}
.btn-outline-cyan-700 {
color: #087990;
border-color: #087990;
}
.btn-outline-cyan-700:hover {
color: #fff;
background-color: #087990;
border-color: #087990;
}
.btn-check:focus + .btn-outline-cyan-700,
.btn-outline-cyan-700:focus {
box-shadow: 0 0 0 0.25rem rgba(8, 121, 144, 0.5);
}
.btn-check:checked + .btn-outline-cyan-700,
.btn-check:active + .btn-outline-cyan-700,
.btn-outline-cyan-700:active,
.btn-outline-cyan-700.active,
.btn-outline-cyan-700.dropdown-toggle.show {
color: #fff;
background-color: #087990;
border-color: #087990;
}
.btn-check:checked + .btn-outline-cyan-700:focus,
.btn-check:active + .btn-outline-cyan-700:focus,
.btn-outline-cyan-700:active:focus,
.btn-outline-cyan-700.active:focus,
.btn-outline-cyan-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(8, 121, 144, 0.5);
}
.btn-outline-cyan-700:disabled,
.btn-outline-cyan-700.disabled {
color: #087990;
background-color: transparent;
}
.btn-outline-cyan-800 {
color: #055160;
border-color: #055160;
}
.btn-outline-cyan-800:hover {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.btn-check:focus + .btn-outline-cyan-800,
.btn-outline-cyan-800:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 81, 96, 0.5);
}
.btn-check:checked + .btn-outline-cyan-800,
.btn-check:active + .btn-outline-cyan-800,
.btn-outline-cyan-800:active,
.btn-outline-cyan-800.active,
.btn-outline-cyan-800.dropdown-toggle.show {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.btn-check:checked + .btn-outline-cyan-800:focus,
.btn-check:active + .btn-outline-cyan-800:focus,
.btn-outline-cyan-800:active:focus,
.btn-outline-cyan-800.active:focus,
.btn-outline-cyan-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(5, 81, 96, 0.5);
}
.btn-outline-cyan-800:disabled,
.btn-outline-cyan-800.disabled {
color: #055160;
background-color: transparent;
}
.btn-outline-cyan-900 {
color: #032830;
border-color: #032830;
}
.btn-outline-cyan-900:hover {
color: #fff;
background-color: #032830;
border-color: #032830;
}
.btn-check:focus + .btn-outline-cyan-900,
.btn-outline-cyan-900:focus {
box-shadow: 0 0 0 0.25rem rgba(3, 40, 48, 0.5);
}
.btn-check:checked + .btn-outline-cyan-900,
.btn-check:active + .btn-outline-cyan-900,
.btn-outline-cyan-900:active,
.btn-outline-cyan-900.active,
.btn-outline-cyan-900.dropdown-toggle.show {
color: #fff;
background-color: #032830;
border-color: #032830;
}
.btn-check:checked + .btn-outline-cyan-900:focus,
.btn-check:active + .btn-outline-cyan-900:focus,
.btn-outline-cyan-900:active:focus,
.btn-outline-cyan-900.active:focus,
.btn-outline-cyan-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(3, 40, 48, 0.5);
}
.btn-outline-cyan-900:disabled,
.btn-outline-cyan-900.disabled {
color: #032830;
background-color: transparent;
}
.btn-outline-gray-100 {
color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-gray-100:hover {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-gray-100,
.btn-outline-gray-100:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-gray-100,
.btn-check:active + .btn-outline-gray-100,
.btn-outline-gray-100:active,
.btn-outline-gray-100.active,
.btn-outline-gray-100.dropdown-toggle.show {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-gray-100:focus,
.btn-check:active + .btn-outline-gray-100:focus,
.btn-outline-gray-100:active:focus,
.btn-outline-gray-100.active:focus,
.btn-outline-gray-100.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-gray-100:disabled,
.btn-outline-gray-100.disabled {
color: #f8f9fa;
background-color: transparent;
}
.btn-outline-gray-200 {
color: #e9ecef;
border-color: #e9ecef;
}
.btn-outline-gray-200:hover {
color: #000;
background-color: #e9ecef;
border-color: #e9ecef;
}
.btn-check:focus + .btn-outline-gray-200,
.btn-outline-gray-200:focus {
box-shadow: 0 0 0 0.25rem rgba(233, 236, 239, 0.5);
}
.btn-check:checked + .btn-outline-gray-200,
.btn-check:active + .btn-outline-gray-200,
.btn-outline-gray-200:active,
.btn-outline-gray-200.active,
.btn-outline-gray-200.dropdown-toggle.show {
color: #000;
background-color: #e9ecef;
border-color: #e9ecef;
}
.btn-check:checked + .btn-outline-gray-200:focus,
.btn-check:active + .btn-outline-gray-200:focus,
.btn-outline-gray-200:active:focus,
.btn-outline-gray-200.active:focus,
.btn-outline-gray-200.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(233, 236, 239, 0.5);
}
.btn-outline-gray-200:disabled,
.btn-outline-gray-200.disabled {
color: #e9ecef;
background-color: transparent;
}
.btn-outline-gray-300 {
color: #dee2e6;
border-color: #dee2e6;
}
.btn-outline-gray-300:hover {
color: #000;
background-color: #dee2e6;
border-color: #dee2e6;
}
.btn-check:focus + .btn-outline-gray-300,
.btn-outline-gray-300:focus {
box-shadow: 0 0 0 0.25rem rgba(222, 226, 230, 0.5);
}
.btn-check:checked + .btn-outline-gray-300,
.btn-check:active + .btn-outline-gray-300,
.btn-outline-gray-300:active,
.btn-outline-gray-300.active,
.btn-outline-gray-300.dropdown-toggle.show {
color: #000;
background-color: #dee2e6;
border-color: #dee2e6;
}
.btn-check:checked + .btn-outline-gray-300:focus,
.btn-check:active + .btn-outline-gray-300:focus,
.btn-outline-gray-300:active:focus,
.btn-outline-gray-300.active:focus,
.btn-outline-gray-300.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(222, 226, 230, 0.5);
}
.btn-outline-gray-300:disabled,
.btn-outline-gray-300.disabled {
color: #dee2e6;
background-color: transparent;
}
.btn-outline-gray-400 {
color: #ced4da;
border-color: #ced4da;
}
.btn-outline-gray-400:hover {
color: #000;
background-color: #ced4da;
border-color: #ced4da;
}
.btn-check:focus + .btn-outline-gray-400,
.btn-outline-gray-400:focus {
box-shadow: 0 0 0 0.25rem rgba(206, 212, 218, 0.5);
}
.btn-check:checked + .btn-outline-gray-400,
.btn-check:active + .btn-outline-gray-400,
.btn-outline-gray-400:active,
.btn-outline-gray-400.active,
.btn-outline-gray-400.dropdown-toggle.show {
color: #000;
background-color: #ced4da;
border-color: #ced4da;
}
.btn-check:checked + .btn-outline-gray-400:focus,
.btn-check:active + .btn-outline-gray-400:focus,
.btn-outline-gray-400:active:focus,
.btn-outline-gray-400.active:focus,
.btn-outline-gray-400.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(206, 212, 218, 0.5);
}
.btn-outline-gray-400:disabled,
.btn-outline-gray-400.disabled {
color: #ced4da;
background-color: transparent;
}
.btn-outline-gray-500 {
color: #adb5bd;
border-color: #adb5bd;
}
.btn-outline-gray-500:hover {
color: #000;
background-color: #adb5bd;
border-color: #adb5bd;
}
.btn-check:focus + .btn-outline-gray-500,
.btn-outline-gray-500:focus {
box-shadow: 0 0 0 0.25rem rgba(173, 181, 189, 0.5);
}
.btn-check:checked + .btn-outline-gray-500,
.btn-check:active + .btn-outline-gray-500,
.btn-outline-gray-500:active,
.btn-outline-gray-500.active,
.btn-outline-gray-500.dropdown-toggle.show {
color: #000;
background-color: #adb5bd;
border-color: #adb5bd;
}
.btn-check:checked + .btn-outline-gray-500:focus,
.btn-check:active + .btn-outline-gray-500:focus,
.btn-outline-gray-500:active:focus,
.btn-outline-gray-500.active:focus,
.btn-outline-gray-500.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(173, 181, 189, 0.5);
}
.btn-outline-gray-500:disabled,
.btn-outline-gray-500.disabled {
color: #adb5bd;
background-color: transparent;
}
.btn-outline-gray-600 {
color: #6c757d;
border-color: #6c757d;
}
.btn-outline-gray-600:hover {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-check:focus + .btn-outline-gray-600,
.btn-outline-gray-600:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-gray-600,
.btn-check:active + .btn-outline-gray-600,
.btn-outline-gray-600:active,
.btn-outline-gray-600.active,
.btn-outline-gray-600.dropdown-toggle.show {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-check:checked + .btn-outline-gray-600:focus,
.btn-check:active + .btn-outline-gray-600:focus,
.btn-outline-gray-600:active:focus,
.btn-outline-gray-600.active:focus,
.btn-outline-gray-600.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-gray-600:disabled,
.btn-outline-gray-600.disabled {
color: #6c757d;
background-color: transparent;
}
.btn-outline-gray-700 {
color: #495057;
border-color: #495057;
}
.btn-outline-gray-700:hover {
color: #fff;
background-color: #495057;
border-color: #495057;
}
.btn-check:focus + .btn-outline-gray-700,
.btn-outline-gray-700:focus {
box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-check:checked + .btn-outline-gray-700,
.btn-check:active + .btn-outline-gray-700,
.btn-outline-gray-700:active,
.btn-outline-gray-700.active,
.btn-outline-gray-700.dropdown-toggle.show {
color: #fff;
background-color: #495057;
border-color: #495057;
}
.btn-check:checked + .btn-outline-gray-700:focus,
.btn-check:active + .btn-outline-gray-700:focus,
.btn-outline-gray-700:active:focus,
.btn-outline-gray-700.active:focus,
.btn-outline-gray-700.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-outline-gray-700:disabled,
.btn-outline-gray-700.disabled {
color: #495057;
background-color: transparent;
}
.btn-outline-gray-800 {
color: #343a40;
border-color: #343a40;
}
.btn-outline-gray-800:hover {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.btn-check:focus + .btn-outline-gray-800,
.btn-outline-gray-800:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 58, 64, 0.5);
}
.btn-check:checked + .btn-outline-gray-800,
.btn-check:active + .btn-outline-gray-800,
.btn-outline-gray-800:active,
.btn-outline-gray-800.active,
.btn-outline-gray-800.dropdown-toggle.show {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.btn-check:checked + .btn-outline-gray-800:focus,
.btn-check:active + .btn-outline-gray-800:focus,
.btn-outline-gray-800:active:focus,
.btn-outline-gray-800.active:focus,
.btn-outline-gray-800.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 58, 64, 0.5);
}
.btn-outline-gray-800:disabled,
.btn-outline-gray-800.disabled {
color: #343a40;
background-color: transparent;
}
.btn-outline-gray-900 {
color: #212529;
border-color: #212529;
}
.btn-outline-gray-900:hover {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-check:focus + .btn-outline-gray-900,
.btn-outline-gray-900:focus {
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-gray-900,
.btn-check:active + .btn-outline-gray-900,
.btn-outline-gray-900:active,
.btn-outline-gray-900.active,
.btn-outline-gray-900.dropdown-toggle.show {
color: #fff;
background-color: #212529;
border-color: #212529;
}
.btn-check:checked + .btn-outline-gray-900:focus,
.btn-check:active + .btn-outline-gray-900:focus,
.btn-outline-gray-900:active:focus,
.btn-outline-gray-900.active:focus,
.btn-outline-gray-900.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-gray-900:disabled,
.btn-outline-gray-900.disabled {
color: #212529;
background-color: transparent;
}
.btn-outline-white {
color: #fff;
border-color: #fff;
}
.btn-outline-white:hover {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-check:focus + .btn-outline-white,
.btn-outline-white:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-white,
.btn-check:active + .btn-outline-white,
.btn-outline-white:active,
.btn-outline-white.active,
.btn-outline-white.dropdown-toggle.show {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-check:checked + .btn-outline-white:focus,
.btn-check:active + .btn-outline-white:focus,
.btn-outline-white:active:focus,
.btn-outline-white.active:focus,
.btn-outline-white.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-outline-white:disabled,
.btn-outline-white.disabled {
color: #fff;
background-color: transparent;
}
.btn-link {
font-weight: 400;
color: #0d6efd;
text-decoration: underline;
}
.btn-link:hover {
color: #0a58ca;
}
.btn-link:disabled,
.btn-link.disabled {
color: #6c757d;
}
.btn-lg,
.btn-group-lg > .btn {
padding: 0.5rem 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.btn-sm,
.btn-group-sm > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
border-radius: 0.2rem;
}
.fade {
transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
.fade {
transition: none;
}
}
.fade:not(.show) {
opacity: 0;
}
.collapse:not(.show) {
display: none;
}
.collapsing {
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing {
transition: none;
}
}
.dropup,
.dropend,
.dropdown,
.dropstart {
position: relative;
}
.dropdown-toggle {
white-space: nowrap;
}
.dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid;
border-right: 0.3em solid transparent;
border-bottom: 0;
border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
margin-left: 0;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
min-width: 10rem;
padding: 0.5rem 0;
margin: 0.125rem 0 0;
font-size: 1rem;
color: #212529;
text-align: left;
list-style: none;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
}
.dropdown-menu[style] {
right: auto !important;
}
.dropdown-menu-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
@media (min-width: 576px) {
.dropdown-menu-sm-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-sm-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
@media (min-width: 768px) {
.dropdown-menu-md-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-md-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
@media (min-width: 992px) {
.dropdown-menu-lg-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-lg-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
@media (min-width: 1200px) {
.dropdown-menu-xl-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-xl-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
@media (min-width: 1400px) {
.dropdown-menu-xxl-start {
--bs-position: start;
right: auto ;
left: 0 ;
}
.dropdown-menu-xxl-end {
--bs-position: end;
right: 0 ;
left: auto ;
}
}
.dropup .dropdown-menu {
top: auto;
bottom: 100%;
margin-top: 0;
margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0;
border-right: 0.3em solid transparent;
border-bottom: 0.3em solid;
border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropend .dropdown-menu {
top: 0;
right: auto;
left: 100%;
margin-top: 0;
margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid transparent;
border-right: 0;
border-bottom: 0.3em solid transparent;
border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropend .dropdown-toggle::after {
vertical-align: 0;
}
.dropstart .dropdown-menu {
top: 0;
right: 100%;
left: auto;
margin-top: 0;
margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
}
.dropstart .dropdown-toggle::after {
display: none;
}
.dropstart .dropdown-toggle::before {
display: inline-block;
margin-right: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid transparent;
border-right: 0.3em solid;
border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropstart .dropdown-toggle::before {
vertical-align: 0;
}
.dropdown-divider {
height: 0;
margin: 0.5rem 0;
overflow: hidden;
border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-item {
display: block;
width: 100%;
padding: 0.25rem 1rem;
clear: both;
font-weight: 400;
color: #212529;
text-align: inherit;
text-decoration: none;
white-space: nowrap;
background-color: transparent;
border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
color: #1e2125;
background-color: #f8f9fa;
}
.dropdown-item.active,
.dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #0d6efd;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: transparent;
}
.dropdown-menu.show {
display: block;
}
.dropdown-header {
display: block;
padding: 0.5rem 1rem;
margin-bottom: 0;
font-size: 0.875rem;
color: #6c757d;
white-space: nowrap;
}
.dropdown-item-text {
display: block;
padding: 0.25rem 1rem;
color: #212529;
}
.dropdown-menu-dark {
color: #dee2e6;
background-color: #343a40;
border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
color: #fff;
background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
color: #fff;
background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
color: #adb5bd;
}
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-flex;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
z-index: 1;
}
.btn-toolbar {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.btn-toolbar .input-group {
width: auto;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
padding-right: 0.5625rem;
padding-left: 0.5625rem;
}
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after {
margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
margin-right: 0;
}
.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
padding-right: 0.375rem;
padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
padding-right: 0.75rem;
padding-left: 0.75rem;
}
.btn-group-vertical {
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.nav {
display: flex;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
text-decoration: none;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.nav-link {
transition: none;
}
}
.nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}
.nav-tabs {
border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
margin-bottom: -1px;
border: 1px solid transparent;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
color: #6c757d;
background-color: transparent;
border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #495057;
background-color: #fff;
border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.nav-pills .nav-link {
border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
color: #fff;
background-color: #0d6efd;
}
.nav-fill > .nav-link,
.nav-fill .nav-item {
flex: 1 1 auto;
text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
flex-basis: 0;
flex-grow: 1;
text-align: center;
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.navbar {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
display: flex;
flex-wrap: inherit;
align-items: center;
justify-content: space-between;
}
.navbar-brand {
padding-top: 0.3125rem;
padding-bottom: 0.3125rem;
margin-right: 1rem;
font-size: 1.25rem;
text-decoration: none;
white-space: nowrap;
}
.navbar-nav {
display: flex;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.navbar-nav .nav-link {
padding-right: 0;
padding-left: 0;
}
.navbar-nav .dropdown-menu {
position: static;
}
.navbar-text {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.navbar-collapse {
align-items: center;
width: 100%;
}
.navbar-toggler {
padding: 0.25rem 0.75rem;
font-size: 1.25rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.navbar-toggler {
transition: none;
}
}
.navbar-toggler:hover {
text-decoration: none;
}
.navbar-toggler:focus {
text-decoration: none;
outline: 0;
box-shadow: 0 0 0 0.25rem;
}
.navbar-toggler-icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
@media (min-width: 576px) {
.navbar-expand-sm {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-sm .navbar-nav {
flex-direction: row;
}
.navbar-expand-sm .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-sm .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-sm .navbar-collapse {
display: flex !important;
}
.navbar-expand-sm .navbar-toggler {
display: none;
}
}
@media (min-width: 768px) {
.navbar-expand-md {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-md .navbar-nav {
flex-direction: row;
}
.navbar-expand-md .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-md .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-md .navbar-collapse {
display: flex !important;
}
.navbar-expand-md .navbar-toggler {
display: none;
}
}
@media (min-width: 992px) {
.navbar-expand-lg {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
flex-direction: row;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-lg .navbar-collapse {
display: flex !important;
}
.navbar-expand-lg .navbar-toggler {
display: none;
}
}
@media (min-width: 1200px) {
.navbar-expand-xl {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-xl .navbar-nav {
flex-direction: row;
}
.navbar-expand-xl .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-xl .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-xl .navbar-collapse {
display: flex !important;
}
.navbar-expand-xl .navbar-toggler {
display: none;
}
}
@media (min-width: 1400px) {
.navbar-expand-xxl {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand-xxl .navbar-nav {
flex-direction: row;
}
.navbar-expand-xxl .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-xxl .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand-xxl .navbar-collapse {
display: flex !important;
}
.navbar-expand-xxl .navbar-toggler {
display: none;
}
}
.navbar-expand {
flex-wrap: nowrap;
justify-content: flex-start;
}
.navbar-expand .navbar-nav {
flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.navbar-expand .navbar-collapse {
display: flex !important;
}
.navbar-expand .navbar-toggler {
display: none;
}
.navbar-light .navbar-brand {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
color: rgba(0, 0, 0, 0.55);
border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
color: #fff;
}
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
color: #fff;
}
.navbar-dark .navbar-toggler {
color: rgba(255, 255, 255, 0.55);
border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
color: #fff;
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem;
}
.card > hr {
margin-right: 0;
margin-left: 0;
}
.card > .list-group {
border-top: inherit;
border-bottom: inherit;
}
.card > .list-group:first-child {
border-top-width: 0;
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
border-bottom-width: 0;
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
border-top: 0;
}
.card-body {
flex: 1 1 auto;
padding: 1rem 1rem;
}
.card-title {
margin-bottom: 0.5rem;
}
.card-subtitle {
margin-top: -0.25rem;
margin-bottom: 0;
}
.card-text:last-child {
margin-bottom: 0;
}
.card-link:hover {
text-decoration: none;
}
.card-link + .card-link {
margin-left: 1rem ;
}
.card-header {
padding: 0.5rem 1rem;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
padding: 0.5rem 1rem;
background-color: rgba(0, 0, 0, 0.03);
border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
margin-right: -0.5rem;
margin-bottom: -0.5rem;
margin-left: -0.5rem;
border-bottom: 0;
}
.card-header-pills {
margin-right: -0.5rem;
margin-left: -0.5rem;
}
.card-img-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
border-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-top,
.card-img-bottom {
width: 100%;
}
.card-img,
.card-img-top {
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-group > .card {
margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
.card-group {
display: flex;
flex-flow: row wrap;
}
.card-group > .card {
flex: 1 0 0%;
margin-bottom: 0;
}
.card-group > .card + .card {
margin-left: 0;
border-left: 0;
}
.card-group > .card:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
border-top-right-radius: 0;
}
.card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
border-bottom-right-radius: 0;
}
.card-group > .card:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
border-top-left-radius: 0;
}
.card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
border-bottom-left-radius: 0;
}
}
.accordion-button {
position: relative;
display: flex;
align-items: center;
width: 100%;
padding: 1rem 1.25rem;
font-size: 1rem;
color: #212529;
background-color: transparent;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0;
overflow-anchor: none;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button {
transition: none;
}
}
.accordion-button.collapsed {
border-bottom-width: 0;
}
.accordion-button:not(.collapsed) {
color: #0c63e4;
background-color: #e7f1ff;
}
.accordion-button:not(.collapsed)::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: rotate(180deg);
}
.accordion-button::after {
flex-shrink: 0;
width: 1.25rem;
height: 1.25rem;
margin-left: auto;
content: "";
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-size: 1.25rem;
transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button::after {
transition: none;
}
}
.accordion-button:hover {
z-index: 2;
}
.accordion-button:focus {
z-index: 3;
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
margin-bottom: 0;
}
.accordion-item:first-of-type .accordion-button {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
border-bottom-width: 1px;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-collapse {
border-bottom-width: 1px;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-collapse {
border: solid rgba(0, 0, 0, 0.125);
border-width: 0 1px;
}
.accordion-body {
padding: 1rem 1.25rem;
}
.accordion-flush .accordion-button {
border-right: 0;
border-left: 0;
border-radius: 0;
}
.accordion-flush .accordion-collapse {
border-width: 0;
}
.accordion-flush .accordion-item:first-of-type .accordion-button {
border-top-width: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
border-bottom-width: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.breadcrumb {
display: flex;
flex-wrap: wrap;
padding: 0 0;
margin-bottom: 1rem;
list-style: none;
}
.breadcrumb-item + .breadcrumb-item {
padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
float: left;
padding-right: 0.5rem;
color: #6c757d;
content: var(--bs-breadcrumb-divider, "/") ;
}
.breadcrumb-item.active {
color: #6c757d;
}
.pagination {
display: flex;
padding-left: 0;
list-style: none;
}
.page-link {
position: relative;
display: block;
color: #0d6efd;
text-decoration: none;
background-color: #fff;
border: 1px solid #dee2e6;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.page-link {
transition: none;
}
}
.page-link:hover {
z-index: 2;
color: #0a58ca;
background-color: #e9ecef;
border-color: #dee2e6;
}
.page-link:focus {
z-index: 3;
color: #0a58ca;
background-color: #e9ecef;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.page-item:not(:first-child) .page-link {
margin-left: -1px;
}
.page-item.active .page-link {
z-index: 3;
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.page-item.disabled .page-link {
color: #6c757d;
pointer-events: none;
background-color: #fff;
border-color: #dee2e6;
}
.page-link {
padding: 0.375rem 0.75rem;
}
.page-item:first-child .page-link {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
.pagination-lg .page-link {
padding: 0.75rem 1.5rem;
font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
border-top-left-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
border-top-right-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
border-top-left-radius: 0.2rem;
border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
border-top-right-radius: 0.2rem;
border-bottom-right-radius: 0.2rem;
}
.badge {
display: inline-block;
padding: 0.35em 0.65em;
font-size: 0.75em;
font-weight: 700;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25rem;
}
.badge:empty {
display: none;
}
.btn .badge {
position: relative;
top: -1px;
}
.alert {
position: relative;
padding: 1rem 1rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;
}
.alert-heading {
color: inherit;
}
.alert-link {
font-weight: 700;
}
.alert-dismissible {
padding-right: 3rem;
}
.alert-dismissible .btn-close {
position: absolute;
top: 0;
right: 0;
z-index: 2;
padding: 1.25rem 1rem;
}
.alert-primary {
color: #084298;
background-color: #cfe2ff;
border-color: #b6d4fe;
}
.alert-primary .alert-link {
color: #06357a;
}
.alert-secondary {
color: #41464b;
background-color: #e2e3e5;
border-color: #d3d6d8;
}
.alert-secondary .alert-link {
color: #34383c;
}
.alert-success {
color: #0f5132;
background-color: #d1e7dd;
border-color: #badbcc;
}
.alert-success .alert-link {
color: #0c4128;
}
.alert-info {
color: #055160;
background-color: #cff4fc;
border-color: #b6effb;
}
.alert-info .alert-link {
color: #04414d;
}
.alert-warning {
color: #664d03;
background-color: #fff3cd;
border-color: #ffecb5;
}
.alert-warning .alert-link {
color: #523e02;
}
.alert-danger {
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
.alert-danger .alert-link {
color: #6a1a21;
}
.alert-light {
color: #636464;
background-color: #fefefe;
border-color: #fdfdfe;
}
.alert-light .alert-link {
color: #4f5050;
}
.alert-dark {
color: #141619;
background-color: #d3d3d4;
border-color: #bcbebf;
}
.alert-dark .alert-link {
color: #101214;
}
.alert-blue {
color: #084298;
background-color: #cfe2ff;
border-color: #b6d4fe;
}
.alert-blue .alert-link {
color: #06357a;
}
.alert-blue-100 {
color: #535a66;
background-color: #f5f9ff;
border-color: #f1f6ff;
}
.alert-blue-100 .alert-link {
color: #424852;
}
.alert-blue-200 {
color: #3f4f66;
background-color: #ecf3ff;
border-color: #e2eeff;
}
.alert-blue-200 .alert-link {
color: #323f52;
}
.alert-blue-300 {
color: #426598;
background-color: #e2eeff;
border-color: #d4e5ff;
}
.alert-blue-300 .alert-link {
color: #35517a;
}
.alert-blue-400 {
color: #255398;
background-color: #d8e8ff;
border-color: #c5dcfe;
}
.alert-blue-400 .alert-link {
color: #1e427a;
}
.alert-blue-500 {
color: #084298;
background-color: #cfe2ff;
border-color: #b6d4fe;
}
.alert-blue-500 .alert-link {
color: #06357a;
}
.alert-blue-600 {
color: #063579;
background-color: #cedef4;
border-color: #b6cdef;
}
.alert-blue-600 .alert-link {
color: #052a61;
}
.alert-blue-700 {
color: #05285b;
background-color: #ced9ea;
border-color: #b5c6e0;
}
.alert-blue-700 .alert-link {
color: #042049;
}
.alert-blue-800 {
color: #031a3d;
background-color: #cdd5e0;
border-color: #b4c0d1;
}
.alert-blue-800 .alert-link {
color: #021531;
}
.alert-blue-900 {
color: #020d1f;
background-color: #cdd0d6;
border-color: #b3b9c2;
}
.alert-blue-900 .alert-link {
color: #020a19;
}
.alert-indigo {
color: #3d0a91;
background-color: #e0cffc;
border-color: #d1b7fb;
}
.alert-indigo .alert-link {
color: #310874;
}
.alert-indigo-100 {
color: #5a5365;
background-color: #f9f5fe;
border-color: #f6f1fe;
}
.alert-indigo-100 .alert-link {
color: #484251;
}
.alert-indigo-200 {
color: #745f96;
background-color: #f3ecfe;
border-color: #ede2fe;
}
.alert-indigo-200 .alert-link {
color: #5d4c78;
}
.alert-indigo-300 {
color: #624394;
background-color: #ede2fd;
border-color: #e3d4fd;
}
.alert-indigo-300 .alert-link {
color: #4e3676;
}
.alert-indigo-400 {
color: #502693;
background-color: #e7d9fd;
border-color: #dac6fc;
}
.alert-indigo-400 .alert-link {
color: #401e76;
}
.alert-indigo-500 {
color: #3d0a91;
background-color: #e0cffc;
border-color: #d1b7fb;
}
.alert-indigo-500 .alert-link {
color: #310874;
}
.alert-indigo-600 {
color: #310874;
background-color: #dccff3;
border-color: #cbb6ed;
}
.alert-indigo-600 .alert-link {
color: #27065d;
}
.alert-indigo-700 {
color: #250657;
background-color: #d8cee9;
border-color: #c5b6de;
}
.alert-indigo-700 .alert-link {
color: #1e0546;
}
.alert-indigo-800 {
color: #19043a;
background-color: #d4cddf;
border-color: #bfb4d0;
}
.alert-indigo-800 .alert-link {
color: #14032e;
}
.alert-indigo-900 {
color: #0c021d;
background-color: #d0cdd6;
border-color: #b9b3c1;
}
.alert-indigo-900 .alert-link {
color: #0a0217;
}
.alert-purple {
color: #432874;
background-color: #e2d9f3;
border-color: #d4c6ec;
}
.alert-purple .alert-link {
color: #36205d;
}
.alert-purple-100 {
color: #5a5761;
background-color: #f9f7fd;
border-color: #f6f4fb;
}
.alert-purple-100 .alert-link {
color: #48464e;
}
.alert-purple-200 {
color: #4f485c;
background-color: #f3f0fa;
border-color: #eee8f8;
}
.alert-purple-200 .alert-link {
color: #3f3a4a;
}
.alert-purple-300 {
color: #655583;
background-color: #eee8f8;
border-color: #e5ddf4;
}
.alert-purple-300 .alert-link {
color: #514469;
}
.alert-purple-400 {
color: #543e7b;
background-color: #e8e1f5;
border-color: #ddd2f0;
}
.alert-purple-400 .alert-link {
color: #433262;
}
.alert-purple-500 {
color: #432874;
background-color: #e2d9f3;
border-color: #d4c6ec;
}
.alert-purple-500 .alert-link {
color: #36205d;
}
.alert-purple-600 {
color: #35205c;
background-color: #ded7eb;
border-color: #cdc2e1;
}
.alert-purple-600 .alert-link {
color: #2a1a4a;
}
.alert-purple-700 {
color: #281846;
background-color: #d9d4e3;
border-color: #c7bfd5;
}
.alert-purple-700 .alert-link {
color: #201338;
}
.alert-purple-800 {
color: #1a102e;
background-color: #d5d1db;
border-color: #c0baca;
}
.alert-purple-800 .alert-link {
color: #150d25;
}
.alert-purple-900 {
color: #0d0817;
background-color: #d0cfd4;
border-color: #b9b6be;
}
.alert-purple-900 .alert-link {
color: #0a0612;
}
.alert-pink {
color: #801f4f;
background-color: #f7d6e6;
border-color: #f3c2da;
}
.alert-pink .alert-link {
color: #66193f;
}
.alert-pink-100 {
color: #63565c;
background-color: #fdf7fa;
border-color: #fdf3f8;
}
.alert-pink-100 .alert-link {
color: #4f454a;
}
.alert-pink-200 {
color: #604552;
background-color: #fceff5;
border-color: #fae6f0;
}
.alert-pink-200 .alert-link {
color: #4d3742;
}
.alert-pink-300 {
color: #8a506d;
background-color: #fae7f0;
border-color: #f8dae9;
}
.alert-pink-300 .alert-link {
color: #6e4057;
}
.alert-pink-400 {
color: #85375e;
background-color: #f8deeb;
border-color: #f5cee2;
}
.alert-pink-400 .alert-link {
color: #6a2c4b;
}
.alert-pink-500 {
color: #801f4f;
background-color: #f7d6e6;
border-color: #f3c2da;
}
.alert-pink-500 .alert-link {
color: #66193f;
}
.alert-pink-600 {
color: #671940;
background-color: #eed4e1;
border-color: #e6bfd2;
}
.alert-pink-600 .alert-link {
color: #521433;
}
.alert-pink-700 {
color: #4d132f;
background-color: #e6d2dc;
border-color: #d9bcca;
}
.alert-pink-700 .alert-link {
color: #3e0f26;
}
.alert-pink-800 {
color: #340c20;
background-color: #ddd0d7;
border-color: #ccb9c2;
}
.alert-pink-800 .alert-link {
color: #2a0a1a;
}
.alert-pink-900 {
color: #1a0610;
background-color: #d5ced1;
border-color: #bfb6ba;
}
.alert-pink-900 .alert-link {
color: #15050d;
}
.alert-red {
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
.alert-red .alert-link {
color: #6a1a21;
}
.alert-red-100 {
color: #635657;
background-color: #fef7f8;
border-color: #fdf3f4;
}
.alert-red-100 .alert-link {
color: #4f4546;
}
.alert-red-200 {
color: #604648;
background-color: #fceff0;
border-color: #fbe7e9;
}
.alert-red-200 .alert-link {
color: #4d383a;
}
.alert-red-300 {
color: #8c5056;
background-color: #fbe7e9;
border-color: #f9dbdd;
}
.alert-red-300 .alert-link {
color: #704045;
}
.alert-red-400 {
color: #883840;
background-color: #f9dfe1;
border-color: #f7ced2;
}
.alert-red-400 .alert-link {
color: #6d2d33;
}
.alert-red-500 {
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
.alert-red-500 .alert-link {
color: #6a1a21;
}
.alert-red-600 {
color: #6a1921;
background-color: #efd4d7;
border-color: #e7bfc3;
}
.alert-red-600 .alert-link {
color: #55141a;
}
.alert-red-700 {
color: #4f1319;
background-color: #e6d2d4;
border-color: #dabcbf;
}
.alert-red-700 .alert-link {
color: #3f0f14;
}
.alert-red-800 {
color: #350d11;
background-color: #ded0d2;
border-color: #cdb9bb;
}
.alert-red-800 .alert-link {
color: #2a0a0e;
}
.alert-red-900 {
color: #1a0708;
background-color: #d5cecf;
border-color: #c0b6b7;
}
.alert-red-900 .alert-link {
color: #150606;
}
.alert-orange {
color: #984c0c;
background-color: #ffe5d0;
border-color: #fed8b9;
}
.alert-orange .alert-link {
color: #7a3d0a;
}
.alert-orange-100 {
color: #665c53;
background-color: #fffaf6;
border-color: #fff7f1;
}
.alert-orange-100 .alert-link {
color: #524a42;
}
.alert-orange-200 {
color: #665140;
background-color: #fff5ec;
border-color: #ffefe3;
}
.alert-orange-200 .alert-link {
color: #524133;
}
.alert-orange-300 {
color: #66472e;
background-color: #fff0e3;
border-color: #ffe8d5;
}
.alert-orange-300 .alert-link {
color: #523925;
}
.alert-orange-400 {
color: #985b28;
background-color: #ffead9;
border-color: #fee0c7;
}
.alert-orange-400 .alert-link {
color: #7a4920;
}
.alert-orange-500 {
color: #984c0c;
background-color: #ffe5d0;
border-color: #fed8b9;
}
.alert-orange-500 .alert-link {
color: #7a3d0a;
}
.alert-orange-600 {
color: #793d0a;
background-color: #f4e0cf;
border-color: #efd1b7;
}
.alert-orange-600 .alert-link {
color: #613108;
}
.alert-orange-700 {
color: #5b2e07;
background-color: #eadbce;
border-color: #e0c9b6;
}
.alert-orange-700 .alert-link {
color: #492506;
}
.alert-orange-800 {
color: #3d1e05;
background-color: #e0d6ce;
border-color: #d1c2b5;
}
.alert-orange-800 .alert-link {
color: #311804;
}
.alert-orange-900 {
color: #1f0f02;
background-color: #d6d1cd;
border-color: #c2bab4;
}
.alert-orange-900 .alert-link {
color: #190c02;
}
.alert-yellow {
color: #664d03;
background-color: #fff3cd;
border-color: #ffecb5;
}
.alert-yellow .alert-link {
color: #523e02;
}
.alert-yellow-100 {
color: #666152;
background-color: #fffdf5;
border-color: #fffbf0;
}
.alert-yellow-100 .alert-link {
color: #524e42;
}
.alert-yellow-200 {
color: #665c3e;
background-color: #fffaeb;
border-color: #fff8e1;
}
.alert-yellow-200 .alert-link {
color: #524a32;
}
.alert-yellow-300 {
color: #66572a;
background-color: #fff8e1;
border-color: #fff4d2;
}
.alert-yellow-300 .alert-link {
color: #524622;
}
.alert-yellow-400 {
color: #665217;
background-color: #fff5d7;
border-color: #fff0c4;
}
.alert-yellow-400 .alert-link {
color: #524212;
}
.alert-yellow-500 {
color: #664d03;
background-color: #fff3cd;
border-color: #ffecb5;
}
.alert-yellow-500 .alert-link {
color: #523e02;
}
.alert-yellow-600 {
color: #7a5c04;
background-color: #f5ebcd;
border-color: #f0e1b4;
}
.alert-yellow-600 .alert-link {
color: #624a03;
}
.alert-yellow-700 {
color: #5c4602;
background-color: #ebe3cd;
border-color: #e0d5b4;
}
.alert-yellow-700 .alert-link {
color: #4a3802;
}
.alert-yellow-800 {
color: #3d2e02;
background-color: #e0dbcd;
border-color: #d1cab3;
}
.alert-yellow-800 .alert-link {
color: #312502;
}
.alert-yellow-900 {
color: #1f1701;
background-color: #d6d4cc;
border-color: #c2beb3;
}
.alert-yellow-900 .alert-link {
color: #191201;
}
.alert-green {
color: #0f5132;
background-color: #d1e7dd;
border-color: #badbcc;
}
.alert-green .alert-link {
color: #0c4128;
}
.alert-green-100 {
color: #545c58;
background-color: #f6faf8;
border-color: #f1f8f5;
}
.alert-green-100 .alert-link {
color: #434a46;
}
.alert-green-200 {
color: #41534b;
background-color: #edf5f1;
border-color: #e3f1eb;
}
.alert-green-200 .alert-link {
color: #34423c;
}
.alert-green-300 {
color: #466e5b;
background-color: #e3f1ea;
border-color: #d6e9e0;
}
.alert-green-300 .alert-link {
color: #385849;
}
.alert-green-400 {
color: #2b5f47;
background-color: #daece4;
border-color: #c8e2d6;
}
.alert-green-400 .alert-link {
color: #224c39;
}
.alert-green-500 {
color: #0f5132;
background-color: #d1e7dd;
border-color: #badbcc;
}
.alert-green-500 .alert-link {
color: #0c4128;
}
.alert-green-600 {
color: #0c4128;
background-color: #d0e2d9;
border-color: #b9d3c7;
}
.alert-green-600 .alert-link {
color: #0a3420;
}
.alert-green-700 {
color: #09311e;
background-color: #cfdcd6;
border-color: #b7cbc2;
}
.alert-green-700 .alert-link {
color: #072718;
}
.alert-green-800 {
color: #062014;
background-color: #ced7d3;
border-color: #b6c3bd;
}
.alert-green-800 .alert-link {
color: #051a10;
}
.alert-green-900 {
color: #03100a;
background-color: #cdd1cf;
border-color: #b4bbb8;
}
.alert-green-900 .alert-link {
color: #020d08;
}
.alert-teal {
color: #13795b;
background-color: #d2f4ea;
border-color: #bcefe0;
}
.alert-teal .alert-link {
color: #0f6149;
}
.alert-teal-100 {
color: #54625e;
background-color: #f6fdfb;
border-color: #f2fcf9;
}
.alert-teal-100 .alert-link {
color: #434e4b;
}
.alert-teal-200 {
color: #425d55;
background-color: #edfbf7;
border-color: #e4f8f2;
}
.alert-teal-200 .alert-link {
color: #354a44;
}
.alert-teal-300 {
color: #30594d;
background-color: #e4f9f3;
border-color: #d7f5ec;
}
.alert-teal-300 .alert-link {
color: #26473e;
}
.alert-teal-400 {
color: #1f5545;
background-color: #dbf6ee;
border-color: #caf2e6;
}
.alert-teal-400 .alert-link {
color: #194437;
}
.alert-teal-500 {
color: #13795b;
background-color: #d2f4ea;
border-color: #bcefe0;
}
.alert-teal-500 .alert-link {
color: #0f6149;
}
.alert-teal-600 {
color: #106149;
background-color: #d1ece4;
border-color: #bae3d7;
}
.alert-teal-600 .alert-link {
color: #0d4e3a;
}
.alert-teal-700 {
color: #0b4937;
background-color: #d0e4de;
border-color: #b8d7ce;
}
.alert-teal-700 .alert-link {
color: #093a2c;
}
.alert-teal-800 {
color: #083024;
background-color: #cfdcd8;
border-color: #b6cbc5;
}
.alert-teal-800 .alert-link {
color: #06261d;
}
.alert-teal-900 {
color: #041812;
background-color: #cdd4d2;
border-color: #b4bfbc;
}
.alert-teal-900 .alert-link {
color: #03130e;
}
.alert-cyan {
color: #055160;
background-color: #cff4fc;
border-color: #b6effb;
}
.alert-cyan .alert-link {
color: #04414d;
}
.alert-cyan-100 {
color: #536265;
background-color: #f5fdfe;
border-color: #f1fcfe;
}
.alert-cyan-100 .alert-link {
color: #424e51;
}
.alert-cyan-200 {
color: #3f5e64;
background-color: #ecfbfe;
border-color: #e2f9fd;
}
.alert-cyan-200 .alert-link {
color: #324b50;
}
.alert-cyan-300 {
color: #2c5962;
background-color: #e2f9fd;
border-color: #d4f5fc;
}
.alert-cyan-300 .alert-link {
color: #23474e;
}
.alert-cyan-400 {
color: #185561;
background-color: #d8f7fd;
border-color: #c5f2fb;
}
.alert-cyan-400 .alert-link {
color: #13444e;
}
.alert-cyan-500 {
color: #055160;
background-color: #cff4fc;
border-color: #b6effb;
}
.alert-cyan-500 .alert-link {
color: #04414d;
}
.alert-cyan-600 {
color: #066173;
background-color: #ceecf2;
border-color: #b6e3ec;
}
.alert-cyan-600 .alert-link {
color: #054e5c;
}
.alert-cyan-700 {
color: #054956;
background-color: #cee4e9;
border-color: #b5d7de;
}
.alert-cyan-700 .alert-link {
color: #043a45;
}
.alert-cyan-800 {
color: #03313a;
background-color: #cddcdf;
border-color: #b4cbcf;
}
.alert-cyan-800 .alert-link {
color: #02272e;
}
.alert-cyan-900 {
color: #02181d;
background-color: #cdd4d6;
border-color: #b3bfc1;
}
.alert-cyan-900 .alert-link {
color: #021317;
}
.alert-gray-100 {
color: #636464;
background-color: #fefefe;
border-color: #fdfdfe;
}
.alert-gray-100 .alert-link {
color: #4f5050;
}
.alert-gray-200 {
color: #5d5e60;
background-color: #fbfbfc;
border-color: #f8f9fa;
}
.alert-gray-200 .alert-link {
color: #4a4b4d;
}
.alert-gray-300 {
color: #595a5c;
background-color: #f8f9fa;
border-color: #f5f6f8;
}
.alert-gray-300 .alert-link {
color: #47484a;
}
.alert-gray-400 {
color: #525557;
background-color: #f5f6f8;
border-color: #f0f2f4;
}
.alert-gray-400 .alert-link {
color: #424446;
}
.alert-gray-500 {
color: #686d71;
background-color: #eff0f2;
border-color: #e6e9eb;
}
.alert-gray-500 .alert-link {
color: #53575a;
}
.alert-gray-600 {
color: #41464b;
background-color: #e2e3e5;
border-color: #d3d6d8;
}
.alert-gray-600 .alert-link {
color: #34383c;
}
.alert-gray-700 {
color: #2c3034;
background-color: #dbdcdd;
border-color: #c8cbcd;
}
.alert-gray-700 .alert-link {
color: #23262a;
}
.alert-gray-800 {
color: #1f2326;
background-color: #d6d8d9;
border-color: #c2c4c6;
}
.alert-gray-800 .alert-link {
color: #191c1e;
}
.alert-gray-900 {
color: #141619;
background-color: #d3d3d4;
border-color: #bcbebf;
}
.alert-gray-900 .alert-link {
color: #101214;
}
.alert-white {
color: #666666;
background-color: white;
border-color: white;
}
.alert-white .alert-link {
color: #525252;
}
@-webkit-keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
@keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
.progress {
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #e9ecef;
border-radius: 0.25rem;
}
.progress-bar {
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #0d6efd;
transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar {
transition: none;
}
}
.progress-bar-striped {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 1rem 1rem;
}
.progress-bar-animated {
-webkit-animation: 1s linear infinite progress-bar-stripes;
animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar-animated {
-webkit-animation: none;
animation: none;
}
}
.list-group {
display: flex;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
border-radius: 0.25rem;
}
.list-group-item-action {
width: 100%;
color: #495057;
text-align: inherit;
}
.list-group-item-action:hover,
.list-group-item-action:focus {
z-index: 1;
color: #495057;
text-decoration: none;
background-color: #f8f9fa;
}
.list-group-item-action:active {
color: #212529;
background-color: #e9ecef;
}
.list-group-item {
position: relative;
display: block;
padding: 0.5rem 1rem;
text-decoration: none;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}
.list-group-item:last-child {
border-bottom-right-radius: inherit;
border-bottom-left-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: #fff;
}
.list-group-item.active {
z-index: 2;
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
}
.list-group-item + .list-group-item {
border-top-width: 0;
}
.list-group-item + .list-group-item.active {
margin-top: -1px;
border-top-width: 1px;
}
.list-group-horizontal {
flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
@media (min-width: 576px) {
.list-group-horizontal-sm {
flex-direction: row;
}
.list-group-horizontal-sm > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-sm > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-sm > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-sm > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-sm > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
@media (min-width: 768px) {
.list-group-horizontal-md {
flex-direction: row;
}
.list-group-horizontal-md > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-md > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-md > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-md > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-md > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
@media (min-width: 992px) {
.list-group-horizontal-lg {
flex-direction: row;
}
.list-group-horizontal-lg > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-lg > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-lg > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-lg > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-lg > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
@media (min-width: 1200px) {
.list-group-horizontal-xl {
flex-direction: row;
}
.list-group-horizontal-xl > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-xl > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-xl > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-xl > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-xl > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
@media (min-width: 1400px) {
.list-group-horizontal-xxl {
flex-direction: row;
}
.list-group-horizontal-xxl > .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-xxl > .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
.list-group-horizontal-xxl > .list-group-item.active {
margin-top: 0;
}
.list-group-horizontal-xxl > .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
.list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
.list-group-flush {
border-radius: 0;
}
.list-group-flush > .list-group-item {
border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
border-bottom-width: 0;
}
.list-group-item-primary {
color: #084298;
background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
color: #084298;
background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.list-group-item-secondary {
color: #41464b;
background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
color: #41464b;
background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
color: #fff;
background-color: #41464b;
border-color: #41464b;
}
.list-group-item-success {
color: #0f5132;
background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
color: #0f5132;
background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.list-group-item-info {
color: #055160;
background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
color: #055160;
background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.list-group-item-warning {
color: #664d03;
background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
color: #664d03;
background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.list-group-item-danger {
color: #842029;
background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
color: #842029;
background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.list-group-item-light {
color: #636464;
background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
color: #636464;
background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
color: #fff;
background-color: #636464;
border-color: #636464;
}
.list-group-item-dark {
color: #141619;
background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
color: #141619;
background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
color: #fff;
background-color: #141619;
border-color: #141619;
}
.list-group-item-blue {
color: #084298;
background-color: #cfe2ff;
}
.list-group-item-blue.list-group-item-action:hover,
.list-group-item-blue.list-group-item-action:focus {
color: #084298;
background-color: #bacbe6;
}
.list-group-item-blue.list-group-item-action.active {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.list-group-item-blue-100 {
color: #535a66;
background-color: #f5f9ff;
}
.list-group-item-blue-100.list-group-item-action:hover,
.list-group-item-blue-100.list-group-item-action:focus {
color: #535a66;
background-color: #dde0e6;
}
.list-group-item-blue-100.list-group-item-action.active {
color: #fff;
background-color: #535a66;
border-color: #535a66;
}
.list-group-item-blue-200 {
color: #3f4f66;
background-color: #ecf3ff;
}
.list-group-item-blue-200.list-group-item-action:hover,
.list-group-item-blue-200.list-group-item-action:focus {
color: #3f4f66;
background-color: #d4dbe6;
}
.list-group-item-blue-200.list-group-item-action.active {
color: #fff;
background-color: #3f4f66;
border-color: #3f4f66;
}
.list-group-item-blue-300 {
color: #426598;
background-color: #e2eeff;
}
.list-group-item-blue-300.list-group-item-action:hover,
.list-group-item-blue-300.list-group-item-action:focus {
color: #426598;
background-color: #cbd6e6;
}
.list-group-item-blue-300.list-group-item-action.active {
color: #fff;
background-color: #426598;
border-color: #426598;
}
.list-group-item-blue-400 {
color: #255398;
background-color: #d8e8ff;
}
.list-group-item-blue-400.list-group-item-action:hover,
.list-group-item-blue-400.list-group-item-action:focus {
color: #255398;
background-color: #c2d1e6;
}
.list-group-item-blue-400.list-group-item-action.active {
color: #fff;
background-color: #255398;
border-color: #255398;
}
.list-group-item-blue-500 {
color: #084298;
background-color: #cfe2ff;
}
.list-group-item-blue-500.list-group-item-action:hover,
.list-group-item-blue-500.list-group-item-action:focus {
color: #084298;
background-color: #bacbe6;
}
.list-group-item-blue-500.list-group-item-action.active {
color: #fff;
background-color: #084298;
border-color: #084298;
}
.list-group-item-blue-600 {
color: #063579;
background-color: #cedef4;
}
.list-group-item-blue-600.list-group-item-action:hover,
.list-group-item-blue-600.list-group-item-action:focus {
color: #063579;
background-color: #b9c8dc;
}
.list-group-item-blue-600.list-group-item-action.active {
color: #fff;
background-color: #063579;
border-color: #063579;
}
.list-group-item-blue-700 {
color: #05285b;
background-color: #ced9ea;
}
.list-group-item-blue-700.list-group-item-action:hover,
.list-group-item-blue-700.list-group-item-action:focus {
color: #05285b;
background-color: #b9c3d3;
}
.list-group-item-blue-700.list-group-item-action.active {
color: #fff;
background-color: #05285b;
border-color: #05285b;
}
.list-group-item-blue-800 {
color: #031a3d;
background-color: #cdd5e0;
}
.list-group-item-blue-800.list-group-item-action:hover,
.list-group-item-blue-800.list-group-item-action:focus {
color: #031a3d;
background-color: #b9c0ca;
}
.list-group-item-blue-800.list-group-item-action.active {
color: #fff;
background-color: #031a3d;
border-color: #031a3d;
}
.list-group-item-blue-900 {
color: #020d1f;
background-color: #cdd0d6;
}
.list-group-item-blue-900.list-group-item-action:hover,
.list-group-item-blue-900.list-group-item-action:focus {
color: #020d1f;
background-color: #b9bbc1;
}
.list-group-item-blue-900.list-group-item-action.active {
color: #fff;
background-color: #020d1f;
border-color: #020d1f;
}
.list-group-item-indigo {
color: #3d0a91;
background-color: #e0cffc;
}
.list-group-item-indigo.list-group-item-action:hover,
.list-group-item-indigo.list-group-item-action:focus {
color: #3d0a91;
background-color: #cabae3;
}
.list-group-item-indigo.list-group-item-action.active {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.list-group-item-indigo-100 {
color: #5a5365;
background-color: #f9f5fe;
}
.list-group-item-indigo-100.list-group-item-action:hover,
.list-group-item-indigo-100.list-group-item-action:focus {
color: #5a5365;
background-color: #e0dde5;
}
.list-group-item-indigo-100.list-group-item-action.active {
color: #fff;
background-color: #5a5365;
border-color: #5a5365;
}
.list-group-item-indigo-200 {
color: #745f96;
background-color: #f3ecfe;
}
.list-group-item-indigo-200.list-group-item-action:hover,
.list-group-item-indigo-200.list-group-item-action:focus {
color: #745f96;
background-color: #dbd4e5;
}
.list-group-item-indigo-200.list-group-item-action.active {
color: #fff;
background-color: #745f96;
border-color: #745f96;
}
.list-group-item-indigo-300 {
color: #624394;
background-color: #ede2fd;
}
.list-group-item-indigo-300.list-group-item-action:hover,
.list-group-item-indigo-300.list-group-item-action:focus {
color: #624394;
background-color: #d5cbe4;
}
.list-group-item-indigo-300.list-group-item-action.active {
color: #fff;
background-color: #624394;
border-color: #624394;
}
.list-group-item-indigo-400 {
color: #502693;
background-color: #e7d9fd;
}
.list-group-item-indigo-400.list-group-item-action:hover,
.list-group-item-indigo-400.list-group-item-action:focus {
color: #502693;
background-color: #d0c3e4;
}
.list-group-item-indigo-400.list-group-item-action.active {
color: #fff;
background-color: #502693;
border-color: #502693;
}
.list-group-item-indigo-500 {
color: #3d0a91;
background-color: #e0cffc;
}
.list-group-item-indigo-500.list-group-item-action:hover,
.list-group-item-indigo-500.list-group-item-action:focus {
color: #3d0a91;
background-color: #cabae3;
}
.list-group-item-indigo-500.list-group-item-action.active {
color: #fff;
background-color: #3d0a91;
border-color: #3d0a91;
}
.list-group-item-indigo-600 {
color: #310874;
background-color: #dccff3;
}
.list-group-item-indigo-600.list-group-item-action:hover,
.list-group-item-indigo-600.list-group-item-action:focus {
color: #310874;
background-color: #c6badb;
}
.list-group-item-indigo-600.list-group-item-action.active {
color: #fff;
background-color: #310874;
border-color: #310874;
}
.list-group-item-indigo-700 {
color: #250657;
background-color: #d8cee9;
}
.list-group-item-indigo-700.list-group-item-action:hover,
.list-group-item-indigo-700.list-group-item-action:focus {
color: #250657;
background-color: #c2b9d2;
}
.list-group-item-indigo-700.list-group-item-action.active {
color: #fff;
background-color: #250657;
border-color: #250657;
}
.list-group-item-indigo-800 {
color: #19043a;
background-color: #d4cddf;
}
.list-group-item-indigo-800.list-group-item-action:hover,
.list-group-item-indigo-800.list-group-item-action:focus {
color: #19043a;
background-color: #bfb9c9;
}
.list-group-item-indigo-800.list-group-item-action.active {
color: #fff;
background-color: #19043a;
border-color: #19043a;
}
.list-group-item-indigo-900 {
color: #0c021d;
background-color: #d0cdd6;
}
.list-group-item-indigo-900.list-group-item-action:hover,
.list-group-item-indigo-900.list-group-item-action:focus {
color: #0c021d;
background-color: #bbb9c1;
}
.list-group-item-indigo-900.list-group-item-action.active {
color: #fff;
background-color: #0c021d;
border-color: #0c021d;
}
.list-group-item-purple {
color: #432874;
background-color: #e2d9f3;
}
.list-group-item-purple.list-group-item-action:hover,
.list-group-item-purple.list-group-item-action:focus {
color: #432874;
background-color: #cbc3db;
}
.list-group-item-purple.list-group-item-action.active {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.list-group-item-purple-100 {
color: #5a5761;
background-color: #f9f7fd;
}
.list-group-item-purple-100.list-group-item-action:hover,
.list-group-item-purple-100.list-group-item-action:focus {
color: #5a5761;
background-color: #e0dee4;
}
.list-group-item-purple-100.list-group-item-action.active {
color: #fff;
background-color: #5a5761;
border-color: #5a5761;
}
.list-group-item-purple-200 {
color: #4f485c;
background-color: #f3f0fa;
}
.list-group-item-purple-200.list-group-item-action:hover,
.list-group-item-purple-200.list-group-item-action:focus {
color: #4f485c;
background-color: #dbd8e1;
}
.list-group-item-purple-200.list-group-item-action.active {
color: #fff;
background-color: #4f485c;
border-color: #4f485c;
}
.list-group-item-purple-300 {
color: #655583;
background-color: #eee8f8;
}
.list-group-item-purple-300.list-group-item-action:hover,
.list-group-item-purple-300.list-group-item-action:focus {
color: #655583;
background-color: #d6d1df;
}
.list-group-item-purple-300.list-group-item-action.active {
color: #fff;
background-color: #655583;
border-color: #655583;
}
.list-group-item-purple-400 {
color: #543e7b;
background-color: #e8e1f5;
}
.list-group-item-purple-400.list-group-item-action:hover,
.list-group-item-purple-400.list-group-item-action:focus {
color: #543e7b;
background-color: #d1cbdd;
}
.list-group-item-purple-400.list-group-item-action.active {
color: #fff;
background-color: #543e7b;
border-color: #543e7b;
}
.list-group-item-purple-500 {
color: #432874;
background-color: #e2d9f3;
}
.list-group-item-purple-500.list-group-item-action:hover,
.list-group-item-purple-500.list-group-item-action:focus {
color: #432874;
background-color: #cbc3db;
}
.list-group-item-purple-500.list-group-item-action.active {
color: #fff;
background-color: #432874;
border-color: #432874;
}
.list-group-item-purple-600 {
color: #35205c;
background-color: #ded7eb;
}
.list-group-item-purple-600.list-group-item-action:hover,
.list-group-item-purple-600.list-group-item-action:focus {
color: #35205c;
background-color: #c8c2d4;
}
.list-group-item-purple-600.list-group-item-action.active {
color: #fff;
background-color: #35205c;
border-color: #35205c;
}
.list-group-item-purple-700 {
color: #281846;
background-color: #d9d4e3;
}
.list-group-item-purple-700.list-group-item-action:hover,
.list-group-item-purple-700.list-group-item-action:focus {
color: #281846;
background-color: #c3bfcc;
}
.list-group-item-purple-700.list-group-item-action.active {
color: #fff;
background-color: #281846;
border-color: #281846;
}
.list-group-item-purple-800 {
color: #1a102e;
background-color: #d5d1db;
}
.list-group-item-purple-800.list-group-item-action:hover,
.list-group-item-purple-800.list-group-item-action:focus {
color: #1a102e;
background-color: #c0bcc5;
}
.list-group-item-purple-800.list-group-item-action.active {
color: #fff;
background-color: #1a102e;
border-color: #1a102e;
}
.list-group-item-purple-900 {
color: #0d0817;
background-color: #d0cfd4;
}
.list-group-item-purple-900.list-group-item-action:hover,
.list-group-item-purple-900.list-group-item-action:focus {
color: #0d0817;
background-color: #bbbabf;
}
.list-group-item-purple-900.list-group-item-action.active {
color: #fff;
background-color: #0d0817;
border-color: #0d0817;
}
.list-group-item-pink {
color: #801f4f;
background-color: #f7d6e6;
}
.list-group-item-pink.list-group-item-action:hover,
.list-group-item-pink.list-group-item-action:focus {
color: #801f4f;
background-color: #dec1cf;
}
.list-group-item-pink.list-group-item-action.active {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.list-group-item-pink-100 {
color: #63565c;
background-color: #fdf7fa;
}
.list-group-item-pink-100.list-group-item-action:hover,
.list-group-item-pink-100.list-group-item-action:focus {
color: #63565c;
background-color: #e4dee1;
}
.list-group-item-pink-100.list-group-item-action.active {
color: #fff;
background-color: #63565c;
border-color: #63565c;
}
.list-group-item-pink-200 {
color: #604552;
background-color: #fceff5;
}
.list-group-item-pink-200.list-group-item-action:hover,
.list-group-item-pink-200.list-group-item-action:focus {
color: #604552;
background-color: #e3d7dd;
}
.list-group-item-pink-200.list-group-item-action.active {
color: #fff;
background-color: #604552;
border-color: #604552;
}
.list-group-item-pink-300 {
color: #8a506d;
background-color: #fae7f0;
}
.list-group-item-pink-300.list-group-item-action:hover,
.list-group-item-pink-300.list-group-item-action:focus {
color: #8a506d;
background-color: #e1d0d8;
}
.list-group-item-pink-300.list-group-item-action.active {
color: #fff;
background-color: #8a506d;
border-color: #8a506d;
}
.list-group-item-pink-400 {
color: #85375e;
background-color: #f8deeb;
}
.list-group-item-pink-400.list-group-item-action:hover,
.list-group-item-pink-400.list-group-item-action:focus {
color: #85375e;
background-color: #dfc8d4;
}
.list-group-item-pink-400.list-group-item-action.active {
color: #fff;
background-color: #85375e;
border-color: #85375e;
}
.list-group-item-pink-500 {
color: #801f4f;
background-color: #f7d6e6;
}
.list-group-item-pink-500.list-group-item-action:hover,
.list-group-item-pink-500.list-group-item-action:focus {
color: #801f4f;
background-color: #dec1cf;
}
.list-group-item-pink-500.list-group-item-action.active {
color: #fff;
background-color: #801f4f;
border-color: #801f4f;
}
.list-group-item-pink-600 {
color: #671940;
background-color: #eed4e1;
}
.list-group-item-pink-600.list-group-item-action:hover,
.list-group-item-pink-600.list-group-item-action:focus {
color: #671940;
background-color: #d6bfcb;
}
.list-group-item-pink-600.list-group-item-action.active {
color: #fff;
background-color: #671940;
border-color: #671940;
}
.list-group-item-pink-700 {
color: #4d132f;
background-color: #e6d2dc;
}
.list-group-item-pink-700.list-group-item-action:hover,
.list-group-item-pink-700.list-group-item-action:focus {
color: #4d132f;
background-color: #cfbdc6;
}
.list-group-item-pink-700.list-group-item-action.active {
color: #fff;
background-color: #4d132f;
border-color: #4d132f;
}
.list-group-item-pink-800 {
color: #340c20;
background-color: #ddd0d7;
}
.list-group-item-pink-800.list-group-item-action:hover,
.list-group-item-pink-800.list-group-item-action:focus {
color: #340c20;
background-color: #c7bbc2;
}
.list-group-item-pink-800.list-group-item-action.active {
color: #fff;
background-color: #340c20;
border-color: #340c20;
}
.list-group-item-pink-900 {
color: #1a0610;
background-color: #d5ced1;
}
.list-group-item-pink-900.list-group-item-action:hover,
.list-group-item-pink-900.list-group-item-action:focus {
color: #1a0610;
background-color: #c0b9bc;
}
.list-group-item-pink-900.list-group-item-action.active {
color: #fff;
background-color: #1a0610;
border-color: #1a0610;
}
.list-group-item-red {
color: #842029;
background-color: #f8d7da;
}
.list-group-item-red.list-group-item-action:hover,
.list-group-item-red.list-group-item-action:focus {
color: #842029;
background-color: #dfc2c4;
}
.list-group-item-red.list-group-item-action.active {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.list-group-item-red-100 {
color: #635657;
background-color: #fef7f8;
}
.list-group-item-red-100.list-group-item-action:hover,
.list-group-item-red-100.list-group-item-action:focus {
color: #635657;
background-color: #e5dedf;
}
.list-group-item-red-100.list-group-item-action.active {
color: #fff;
background-color: #635657;
border-color: #635657;
}
.list-group-item-red-200 {
color: #604648;
background-color: #fceff0;
}
.list-group-item-red-200.list-group-item-action:hover,
.list-group-item-red-200.list-group-item-action:focus {
color: #604648;
background-color: #e3d7d8;
}
.list-group-item-red-200.list-group-item-action.active {
color: #fff;
background-color: #604648;
border-color: #604648;
}
.list-group-item-red-300 {
color: #8c5056;
background-color: #fbe7e9;
}
.list-group-item-red-300.list-group-item-action:hover,
.list-group-item-red-300.list-group-item-action:focus {
color: #8c5056;
background-color: #e2d0d2;
}
.list-group-item-red-300.list-group-item-action.active {
color: #fff;
background-color: #8c5056;
border-color: #8c5056;
}
.list-group-item-red-400 {
color: #883840;
background-color: #f9dfe1;
}
.list-group-item-red-400.list-group-item-action:hover,
.list-group-item-red-400.list-group-item-action:focus {
color: #883840;
background-color: #e0c9cb;
}
.list-group-item-red-400.list-group-item-action.active {
color: #fff;
background-color: #883840;
border-color: #883840;
}
.list-group-item-red-500 {
color: #842029;
background-color: #f8d7da;
}
.list-group-item-red-500.list-group-item-action:hover,
.list-group-item-red-500.list-group-item-action:focus {
color: #842029;
background-color: #dfc2c4;
}
.list-group-item-red-500.list-group-item-action.active {
color: #fff;
background-color: #842029;
border-color: #842029;
}
.list-group-item-red-600 {
color: #6a1921;
background-color: #efd4d7;
}
.list-group-item-red-600.list-group-item-action:hover,
.list-group-item-red-600.list-group-item-action:focus {
color: #6a1921;
background-color: #d7bfc2;
}
.list-group-item-red-600.list-group-item-action.active {
color: #fff;
background-color: #6a1921;
border-color: #6a1921;
}
.list-group-item-red-700 {
color: #4f1319;
background-color: #e6d2d4;
}
.list-group-item-red-700.list-group-item-action:hover,
.list-group-item-red-700.list-group-item-action:focus {
color: #4f1319;
background-color: #cfbdbf;
}
.list-group-item-red-700.list-group-item-action.active {
color: #fff;
background-color: #4f1319;
border-color: #4f1319;
}
.list-group-item-red-800 {
color: #350d11;
background-color: #ded0d2;
}
.list-group-item-red-800.list-group-item-action:hover,
.list-group-item-red-800.list-group-item-action:focus {
color: #350d11;
background-color: #c8bbbd;
}
.list-group-item-red-800.list-group-item-action.active {
color: #fff;
background-color: #350d11;
border-color: #350d11;
}
.list-group-item-red-900 {
color: #1a0708;
background-color: #d5cecf;
}
.list-group-item-red-900.list-group-item-action:hover,
.list-group-item-red-900.list-group-item-action:focus {
color: #1a0708;
background-color: #c0b9ba;
}
.list-group-item-red-900.list-group-item-action.active {
color: #fff;
background-color: #1a0708;
border-color: #1a0708;
}
.list-group-item-orange {
color: #984c0c;
background-color: #ffe5d0;
}
.list-group-item-orange.list-group-item-action:hover,
.list-group-item-orange.list-group-item-action:focus {
color: #984c0c;
background-color: #e6cebb;
}
.list-group-item-orange.list-group-item-action.active {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.list-group-item-orange-100 {
color: #665c53;
background-color: #fffaf6;
}
.list-group-item-orange-100.list-group-item-action:hover,
.list-group-item-orange-100.list-group-item-action:focus {
color: #665c53;
background-color: #e6e1dd;
}
.list-group-item-orange-100.list-group-item-action.active {
color: #fff;
background-color: #665c53;
border-color: #665c53;
}
.list-group-item-orange-200 {
color: #665140;
background-color: #fff5ec;
}
.list-group-item-orange-200.list-group-item-action:hover,
.list-group-item-orange-200.list-group-item-action:focus {
color: #665140;
background-color: #e6ddd4;
}
.list-group-item-orange-200.list-group-item-action.active {
color: #fff;
background-color: #665140;
border-color: #665140;
}
.list-group-item-orange-300 {
color: #66472e;
background-color: #fff0e3;
}
.list-group-item-orange-300.list-group-item-action:hover,
.list-group-item-orange-300.list-group-item-action:focus {
color: #66472e;
background-color: #e6d8cc;
}
.list-group-item-orange-300.list-group-item-action.active {
color: #fff;
background-color: #66472e;
border-color: #66472e;
}
.list-group-item-orange-400 {
color: #985b28;
background-color: #ffead9;
}
.list-group-item-orange-400.list-group-item-action:hover,
.list-group-item-orange-400.list-group-item-action:focus {
color: #985b28;
background-color: #e6d3c3;
}
.list-group-item-orange-400.list-group-item-action.active {
color: #fff;
background-color: #985b28;
border-color: #985b28;
}
.list-group-item-orange-500 {
color: #984c0c;
background-color: #ffe5d0;
}
.list-group-item-orange-500.list-group-item-action:hover,
.list-group-item-orange-500.list-group-item-action:focus {
color: #984c0c;
background-color: #e6cebb;
}
.list-group-item-orange-500.list-group-item-action.active {
color: #fff;
background-color: #984c0c;
border-color: #984c0c;
}
.list-group-item-orange-600 {
color: #793d0a;
background-color: #f4e0cf;
}
.list-group-item-orange-600.list-group-item-action:hover,
.list-group-item-orange-600.list-group-item-action:focus {
color: #793d0a;
background-color: #dccaba;
}
.list-group-item-orange-600.list-group-item-action.active {
color: #fff;
background-color: #793d0a;
border-color: #793d0a;
}
.list-group-item-orange-700 {
color: #5b2e07;
background-color: #eadbce;
}
.list-group-item-orange-700.list-group-item-action:hover,
.list-group-item-orange-700.list-group-item-action:focus {
color: #5b2e07;
background-color: #d3c5b9;
}
.list-group-item-orange-700.list-group-item-action.active {
color: #fff;
background-color: #5b2e07;
border-color: #5b2e07;
}
.list-group-item-orange-800 {
color: #3d1e05;
background-color: #e0d6ce;
}
.list-group-item-orange-800.list-group-item-action:hover,
.list-group-item-orange-800.list-group-item-action:focus {
color: #3d1e05;
background-color: #cac1b9;
}
.list-group-item-orange-800.list-group-item-action.active {
color: #fff;
background-color: #3d1e05;
border-color: #3d1e05;
}
.list-group-item-orange-900 {
color: #1f0f02;
background-color: #d6d1cd;
}
.list-group-item-orange-900.list-group-item-action:hover,
.list-group-item-orange-900.list-group-item-action:focus {
color: #1f0f02;
background-color: #c1bcb9;
}
.list-group-item-orange-900.list-group-item-action.active {
color: #fff;
background-color: #1f0f02;
border-color: #1f0f02;
}
.list-group-item-yellow {
color: #664d03;
background-color: #fff3cd;
}
.list-group-item-yellow.list-group-item-action:hover,
.list-group-item-yellow.list-group-item-action:focus {
color: #664d03;
background-color: #e6dbb9;
}
.list-group-item-yellow.list-group-item-action.active {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.list-group-item-yellow-100 {
color: #666152;
background-color: #fffdf5;
}
.list-group-item-yellow-100.list-group-item-action:hover,
.list-group-item-yellow-100.list-group-item-action:focus {
color: #666152;
background-color: #e6e4dd;
}
.list-group-item-yellow-100.list-group-item-action.active {
color: #fff;
background-color: #666152;
border-color: #666152;
}
.list-group-item-yellow-200 {
color: #665c3e;
background-color: #fffaeb;
}
.list-group-item-yellow-200.list-group-item-action:hover,
.list-group-item-yellow-200.list-group-item-action:focus {
color: #665c3e;
background-color: #e6e1d4;
}
.list-group-item-yellow-200.list-group-item-action.active {
color: #fff;
background-color: #665c3e;
border-color: #665c3e;
}
.list-group-item-yellow-300 {
color: #66572a;
background-color: #fff8e1;
}
.list-group-item-yellow-300.list-group-item-action:hover,
.list-group-item-yellow-300.list-group-item-action:focus {
color: #66572a;
background-color: #e6dfcb;
}
.list-group-item-yellow-300.list-group-item-action.active {
color: #fff;
background-color: #66572a;
border-color: #66572a;
}
.list-group-item-yellow-400 {
color: #665217;
background-color: #fff5d7;
}
.list-group-item-yellow-400.list-group-item-action:hover,
.list-group-item-yellow-400.list-group-item-action:focus {
color: #665217;
background-color: #e6ddc2;
}
.list-group-item-yellow-400.list-group-item-action.active {
color: #fff;
background-color: #665217;
border-color: #665217;
}
.list-group-item-yellow-500 {
color: #664d03;
background-color: #fff3cd;
}
.list-group-item-yellow-500.list-group-item-action:hover,
.list-group-item-yellow-500.list-group-item-action:focus {
color: #664d03;
background-color: #e6dbb9;
}
.list-group-item-yellow-500.list-group-item-action.active {
color: #fff;
background-color: #664d03;
border-color: #664d03;
}
.list-group-item-yellow-600 {
color: #7a5c04;
background-color: #f5ebcd;
}
.list-group-item-yellow-600.list-group-item-action:hover,
.list-group-item-yellow-600.list-group-item-action:focus {
color: #7a5c04;
background-color: #ddd4b9;
}
.list-group-item-yellow-600.list-group-item-action.active {
color: #fff;
background-color: #7a5c04;
border-color: #7a5c04;
}
.list-group-item-yellow-700 {
color: #5c4602;
background-color: #ebe3cd;
}
.list-group-item-yellow-700.list-group-item-action:hover,
.list-group-item-yellow-700.list-group-item-action:focus {
color: #5c4602;
background-color: #d4ccb9;
}
.list-group-item-yellow-700.list-group-item-action.active {
color: #fff;
background-color: #5c4602;
border-color: #5c4602;
}
.list-group-item-yellow-800 {
color: #3d2e02;
background-color: #e0dbcd;
}
.list-group-item-yellow-800.list-group-item-action:hover,
.list-group-item-yellow-800.list-group-item-action:focus {
color: #3d2e02;
background-color: #cac5b9;
}
.list-group-item-yellow-800.list-group-item-action.active {
color: #fff;
background-color: #3d2e02;
border-color: #3d2e02;
}
.list-group-item-yellow-900 {
color: #1f1701;
background-color: #d6d4cc;
}
.list-group-item-yellow-900.list-group-item-action:hover,
.list-group-item-yellow-900.list-group-item-action:focus {
color: #1f1701;
background-color: #c1bfb8;
}
.list-group-item-yellow-900.list-group-item-action.active {
color: #fff;
background-color: #1f1701;
border-color: #1f1701;
}
.list-group-item-green {
color: #0f5132;
background-color: #d1e7dd;
}
.list-group-item-green.list-group-item-action:hover,
.list-group-item-green.list-group-item-action:focus {
color: #0f5132;
background-color: #bcd0c7;
}
.list-group-item-green.list-group-item-action.active {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.list-group-item-green-100 {
color: #545c58;
background-color: #f6faf8;
}
.list-group-item-green-100.list-group-item-action:hover,
.list-group-item-green-100.list-group-item-action:focus {
color: #545c58;
background-color: #dde1df;
}
.list-group-item-green-100.list-group-item-action.active {
color: #fff;
background-color: #545c58;
border-color: #545c58;
}
.list-group-item-green-200 {
color: #41534b;
background-color: #edf5f1;
}
.list-group-item-green-200.list-group-item-action:hover,
.list-group-item-green-200.list-group-item-action:focus {
color: #41534b;
background-color: #d5ddd9;
}
.list-group-item-green-200.list-group-item-action.active {
color: #fff;
background-color: #41534b;
border-color: #41534b;
}
.list-group-item-green-300 {
color: #466e5b;
background-color: #e3f1ea;
}
.list-group-item-green-300.list-group-item-action:hover,
.list-group-item-green-300.list-group-item-action:focus {
color: #466e5b;
background-color: #ccd9d3;
}
.list-group-item-green-300.list-group-item-action.active {
color: #fff;
background-color: #466e5b;
border-color: #466e5b;
}
.list-group-item-green-400 {
color: #2b5f47;
background-color: #daece4;
}
.list-group-item-green-400.list-group-item-action:hover,
.list-group-item-green-400.list-group-item-action:focus {
color: #2b5f47;
background-color: #c4d4cd;
}
.list-group-item-green-400.list-group-item-action.active {
color: #fff;
background-color: #2b5f47;
border-color: #2b5f47;
}
.list-group-item-green-500 {
color: #0f5132;
background-color: #d1e7dd;
}
.list-group-item-green-500.list-group-item-action:hover,
.list-group-item-green-500.list-group-item-action:focus {
color: #0f5132;
background-color: #bcd0c7;
}
.list-group-item-green-500.list-group-item-action.active {
color: #fff;
background-color: #0f5132;
border-color: #0f5132;
}
.list-group-item-green-600 {
color: #0c4128;
background-color: #d0e2d9;
}
.list-group-item-green-600.list-group-item-action:hover,
.list-group-item-green-600.list-group-item-action:focus {
color: #0c4128;
background-color: #bbcbc3;
}
.list-group-item-green-600.list-group-item-action.active {
color: #fff;
background-color: #0c4128;
border-color: #0c4128;
}
.list-group-item-green-700 {
color: #09311e;
background-color: #cfdcd6;
}
.list-group-item-green-700.list-group-item-action:hover,
.list-group-item-green-700.list-group-item-action:focus {
color: #09311e;
background-color: #bac6c1;
}
.list-group-item-green-700.list-group-item-action.active {
color: #fff;
background-color: #09311e;
border-color: #09311e;
}
.list-group-item-green-800 {
color: #062014;
background-color: #ced7d3;
}
.list-group-item-green-800.list-group-item-action:hover,
.list-group-item-green-800.list-group-item-action:focus {
color: #062014;
background-color: #b9c2be;
}
.list-group-item-green-800.list-group-item-action.active {
color: #fff;
background-color: #062014;
border-color: #062014;
}
.list-group-item-green-900 {
color: #03100a;
background-color: #cdd1cf;
}
.list-group-item-green-900.list-group-item-action:hover,
.list-group-item-green-900.list-group-item-action:focus {
color: #03100a;
background-color: #b9bcba;
}
.list-group-item-green-900.list-group-item-action.active {
color: #fff;
background-color: #03100a;
border-color: #03100a;
}
.list-group-item-teal {
color: #13795b;
background-color: #d2f4ea;
}
.list-group-item-teal.list-group-item-action:hover,
.list-group-item-teal.list-group-item-action:focus {
color: #13795b;
background-color: #bddcd3;
}
.list-group-item-teal.list-group-item-action.active {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.list-group-item-teal-100 {
color: #54625e;
background-color: #f6fdfb;
}
.list-group-item-teal-100.list-group-item-action:hover,
.list-group-item-teal-100.list-group-item-action:focus {
color: #54625e;
background-color: #dde4e2;
}
.list-group-item-teal-100.list-group-item-action.active {
color: #fff;
background-color: #54625e;
border-color: #54625e;
}
.list-group-item-teal-200 {
color: #425d55;
background-color: #edfbf7;
}
.list-group-item-teal-200.list-group-item-action:hover,
.list-group-item-teal-200.list-group-item-action:focus {
color: #425d55;
background-color: #d5e2de;
}
.list-group-item-teal-200.list-group-item-action.active {
color: #fff;
background-color: #425d55;
border-color: #425d55;
}
.list-group-item-teal-300 {
color: #30594d;
background-color: #e4f9f3;
}
.list-group-item-teal-300.list-group-item-action:hover,
.list-group-item-teal-300.list-group-item-action:focus {
color: #30594d;
background-color: #cde0db;
}
.list-group-item-teal-300.list-group-item-action.active {
color: #fff;
background-color: #30594d;
border-color: #30594d;
}
.list-group-item-teal-400 {
color: #1f5545;
background-color: #dbf6ee;
}
.list-group-item-teal-400.list-group-item-action:hover,
.list-group-item-teal-400.list-group-item-action:focus {
color: #1f5545;
background-color: #c5ddd6;
}
.list-group-item-teal-400.list-group-item-action.active {
color: #fff;
background-color: #1f5545;
border-color: #1f5545;
}
.list-group-item-teal-500 {
color: #13795b;
background-color: #d2f4ea;
}
.list-group-item-teal-500.list-group-item-action:hover,
.list-group-item-teal-500.list-group-item-action:focus {
color: #13795b;
background-color: #bddcd3;
}
.list-group-item-teal-500.list-group-item-action.active {
color: #fff;
background-color: #13795b;
border-color: #13795b;
}
.list-group-item-teal-600 {
color: #106149;
background-color: #d1ece4;
}
.list-group-item-teal-600.list-group-item-action:hover,
.list-group-item-teal-600.list-group-item-action:focus {
color: #106149;
background-color: #bcd4cd;
}
.list-group-item-teal-600.list-group-item-action.active {
color: #fff;
background-color: #106149;
border-color: #106149;
}
.list-group-item-teal-700 {
color: #0b4937;
background-color: #d0e4de;
}
.list-group-item-teal-700.list-group-item-action:hover,
.list-group-item-teal-700.list-group-item-action:focus {
color: #0b4937;
background-color: #bbcdc8;
}
.list-group-item-teal-700.list-group-item-action.active {
color: #fff;
background-color: #0b4937;
border-color: #0b4937;
}
.list-group-item-teal-800 {
color: #083024;
background-color: #cfdcd8;
}
.list-group-item-teal-800.list-group-item-action:hover,
.list-group-item-teal-800.list-group-item-action:focus {
color: #083024;
background-color: #bac6c2;
}
.list-group-item-teal-800.list-group-item-action.active {
color: #fff;
background-color: #083024;
border-color: #083024;
}
.list-group-item-teal-900 {
color: #041812;
background-color: #cdd4d2;
}
.list-group-item-teal-900.list-group-item-action:hover,
.list-group-item-teal-900.list-group-item-action:focus {
color: #041812;
background-color: #b9bfbd;
}
.list-group-item-teal-900.list-group-item-action.active {
color: #fff;
background-color: #041812;
border-color: #041812;
}
.list-group-item-cyan {
color: #055160;
background-color: #cff4fc;
}
.list-group-item-cyan.list-group-item-action:hover,
.list-group-item-cyan.list-group-item-action:focus {
color: #055160;
background-color: #badce3;
}
.list-group-item-cyan.list-group-item-action.active {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.list-group-item-cyan-100 {
color: #536265;
background-color: #f5fdfe;
}
.list-group-item-cyan-100.list-group-item-action:hover,
.list-group-item-cyan-100.list-group-item-action:focus {
color: #536265;
background-color: #dde4e5;
}
.list-group-item-cyan-100.list-group-item-action.active {
color: #fff;
background-color: #536265;
border-color: #536265;
}
.list-group-item-cyan-200 {
color: #3f5e64;
background-color: #ecfbfe;
}
.list-group-item-cyan-200.list-group-item-action:hover,
.list-group-item-cyan-200.list-group-item-action:focus {
color: #3f5e64;
background-color: #d4e2e5;
}
.list-group-item-cyan-200.list-group-item-action.active {
color: #fff;
background-color: #3f5e64;
border-color: #3f5e64;
}
.list-group-item-cyan-300 {
color: #2c5962;
background-color: #e2f9fd;
}
.list-group-item-cyan-300.list-group-item-action:hover,
.list-group-item-cyan-300.list-group-item-action:focus {
color: #2c5962;
background-color: #cbe0e4;
}
.list-group-item-cyan-300.list-group-item-action.active {
color: #fff;
background-color: #2c5962;
border-color: #2c5962;
}
.list-group-item-cyan-400 {
color: #185561;
background-color: #d8f7fd;
}
.list-group-item-cyan-400.list-group-item-action:hover,
.list-group-item-cyan-400.list-group-item-action:focus {
color: #185561;
background-color: #c2dee4;
}
.list-group-item-cyan-400.list-group-item-action.active {
color: #fff;
background-color: #185561;
border-color: #185561;
}
.list-group-item-cyan-500 {
color: #055160;
background-color: #cff4fc;
}
.list-group-item-cyan-500.list-group-item-action:hover,
.list-group-item-cyan-500.list-group-item-action:focus {
color: #055160;
background-color: #badce3;
}
.list-group-item-cyan-500.list-group-item-action.active {
color: #fff;
background-color: #055160;
border-color: #055160;
}
.list-group-item-cyan-600 {
color: #066173;
background-color: #ceecf2;
}
.list-group-item-cyan-600.list-group-item-action:hover,
.list-group-item-cyan-600.list-group-item-action:focus {
color: #066173;
background-color: #b9d4da;
}
.list-group-item-cyan-600.list-group-item-action.active {
color: #fff;
background-color: #066173;
border-color: #066173;
}
.list-group-item-cyan-700 {
color: #054956;
background-color: #cee4e9;
}
.list-group-item-cyan-700.list-group-item-action:hover,
.list-group-item-cyan-700.list-group-item-action:focus {
color: #054956;
background-color: #b9cdd2;
}
.list-group-item-cyan-700.list-group-item-action.active {
color: #fff;
background-color: #054956;
border-color: #054956;
}
.list-group-item-cyan-800 {
color: #03313a;
background-color: #cddcdf;
}
.list-group-item-cyan-800.list-group-item-action:hover,
.list-group-item-cyan-800.list-group-item-action:focus {
color: #03313a;
background-color: #b9c6c9;
}
.list-group-item-cyan-800.list-group-item-action.active {
color: #fff;
background-color: #03313a;
border-color: #03313a;
}
.list-group-item-cyan-900 {
color: #02181d;
background-color: #cdd4d6;
}
.list-group-item-cyan-900.list-group-item-action:hover,
.list-group-item-cyan-900.list-group-item-action:focus {
color: #02181d;
background-color: #b9bfc1;
}
.list-group-item-cyan-900.list-group-item-action.active {
color: #fff;
background-color: #02181d;
border-color: #02181d;
}
.list-group-item-gray-100 {
color: #636464;
background-color: #fefefe;
}
.list-group-item-gray-100.list-group-item-action:hover,
.list-group-item-gray-100.list-group-item-action:focus {
color: #636464;
background-color: #e5e5e5;
}
.list-group-item-gray-100.list-group-item-action.active {
color: #fff;
background-color: #636464;
border-color: #636464;
}
.list-group-item-gray-200 {
color: #5d5e60;
background-color: #fbfbfc;
}
.list-group-item-gray-200.list-group-item-action:hover,
.list-group-item-gray-200.list-group-item-action:focus {
color: #5d5e60;
background-color: #e2e2e3;
}
.list-group-item-gray-200.list-group-item-action.active {
color: #fff;
background-color: #5d5e60;
border-color: #5d5e60;
}
.list-group-item-gray-300 {
color: #595a5c;
background-color: #f8f9fa;
}
.list-group-item-gray-300.list-group-item-action:hover,
.list-group-item-gray-300.list-group-item-action:focus {
color: #595a5c;
background-color: #dfe0e1;
}
.list-group-item-gray-300.list-group-item-action.active {
color: #fff;
background-color: #595a5c;
border-color: #595a5c;
}
.list-group-item-gray-400 {
color: #525557;
background-color: #f5f6f8;
}
.list-group-item-gray-400.list-group-item-action:hover,
.list-group-item-gray-400.list-group-item-action:focus {
color: #525557;
background-color: #dddddf;
}
.list-group-item-gray-400.list-group-item-action.active {
color: #fff;
background-color: #525557;
border-color: #525557;
}
.list-group-item-gray-500 {
color: #686d71;
background-color: #eff0f2;
}
.list-group-item-gray-500.list-group-item-action:hover,
.list-group-item-gray-500.list-group-item-action:focus {
color: #686d71;
background-color: #d7d8da;
}
.list-group-item-gray-500.list-group-item-action.active {
color: #fff;
background-color: #686d71;
border-color: #686d71;
}
.list-group-item-gray-600 {
color: #41464b;
background-color: #e2e3e5;
}
.list-group-item-gray-600.list-group-item-action:hover,
.list-group-item-gray-600.list-group-item-action:focus {
color: #41464b;
background-color: #cbccce;
}
.list-group-item-gray-600.list-group-item-action.active {
color: #fff;
background-color: #41464b;
border-color: #41464b;
}
.list-group-item-gray-700 {
color: #2c3034;
background-color: #dbdcdd;
}
.list-group-item-gray-700.list-group-item-action:hover,
.list-group-item-gray-700.list-group-item-action:focus {
color: #2c3034;
background-color: #c5c6c7;
}
.list-group-item-gray-700.list-group-item-action.active {
color: #fff;
background-color: #2c3034;
border-color: #2c3034;
}
.list-group-item-gray-800 {
color: #1f2326;
background-color: #d6d8d9;
}
.list-group-item-gray-800.list-group-item-action:hover,
.list-group-item-gray-800.list-group-item-action:focus {
color: #1f2326;
background-color: #c1c2c3;
}
.list-group-item-gray-800.list-group-item-action.active {
color: #fff;
background-color: #1f2326;
border-color: #1f2326;
}
.list-group-item-gray-900 {
color: #141619;
background-color: #d3d3d4;
}
.list-group-item-gray-900.list-group-item-action:hover,
.list-group-item-gray-900.list-group-item-action:focus {
color: #141619;
background-color: #bebebf;
}
.list-group-item-gray-900.list-group-item-action.active {
color: #fff;
background-color: #141619;
border-color: #141619;
}
.list-group-item-white {
color: #666666;
background-color: white;
}
.list-group-item-white.list-group-item-action:hover,
.list-group-item-white.list-group-item-action:focus {
color: #666666;
background-color: #e6e6e6;
}
.list-group-item-white.list-group-item-action.active {
color: #fff;
background-color: #666666;
border-color: #666666;
}
.btn-close {
box-sizing: content-box;
width: 1em;
height: 1em;
padding: 0.25em 0.25em;
color: #000;
background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
border: 0;
border-radius: 0.25rem;
opacity: 0.5;
}
.btn-close:hover {
color: #000;
text-decoration: none;
opacity: 0.75;
}
.btn-close:focus {
outline: none;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
opacity: 1;
}
.btn-close:disabled,
.btn-close.disabled {
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
opacity: 0.25;
}
.btn-close-white {
filter: invert(1) grayscale(100%) brightness(200%);
}
.toast {
width: 350px;
max-width: 100%;
font-size: 0.875rem;
pointer-events: auto;
background-color: rgba(255, 255, 255, 0.85);
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
opacity: 0;
}
.toast.hide {
display: none;
}
.toast-container {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
max-width: 100%;
pointer-events: none;
}
.toast-container > :not(:last-child) {
margin-bottom: 0.75rem;
}
.toast-header {
display: flex;
align-items: center;
padding: 0.5rem 0.75rem;
color: #6c757d;
background-color: rgba(255, 255, 255, 0.85);
background-clip: padding-box;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
margin-right: -0.375rem;
margin-left: 0.75rem;
}
.toast-body {
padding: 0.75rem;
}
.modal-open {
overflow: hidden;
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1050;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
transition: transform 0.3s ease-out;
transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
transition: none;
}
}
.modal.show .modal-dialog {
transform: none;
}
.modal.modal-static .modal-dialog {
transform: scale(1.02);
}
.modal-dialog-scrollable {
height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
max-height: 100%;
overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
overflow-y: auto;
}
.modal-dialog-centered {
display: flex;
align-items: center;
min-height: calc(100% - 1rem);
}
.modal-content {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
outline: 0;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.5;
}
.modal-header {
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: space-between;
padding: 1rem 1rem;
border-bottom: 1px solid #dee2e6;
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
padding: 0.5rem 0.5rem;
margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-title {
margin-bottom: 0;
line-height: 1.5;
}
.modal-body {
position: relative;
flex: 1 1 auto;
padding: 1rem;
}
.modal-footer {
display: flex;
flex-wrap: wrap;
flex-shrink: 0;
align-items: center;
justify-content: flex-end;
padding: 0.75rem;
border-top: 1px solid #dee2e6;
border-bottom-right-radius: calc(0.3rem - 1px);
border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
margin: 0.25rem;
}
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 576px) {
.modal-dialog {
max-width: 500px;
margin: 1.75rem auto;
}
.modal-dialog-scrollable {
height: calc(100% - 3.5rem);
}
.modal-dialog-centered {
min-height: calc(100% - 3.5rem);
}
.modal-sm {
max-width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg,
.modal-xl {
max-width: 800px;
}
}
@media (min-width: 1200px) {
.modal-xl {
max-width: 1140px;
}
}
.modal-fullscreen {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen .modal-header {
border-radius: 0;
}
.modal-fullscreen .modal-body {
overflow-y: auto;
}
.modal-fullscreen .modal-footer {
border-radius: 0;
}
@media (max-width: 575.98px) {
.modal-fullscreen-sm-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-sm-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-sm-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-sm-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-sm-down .modal-footer {
border-radius: 0;
}
}
@media (max-width: 767.98px) {
.modal-fullscreen-md-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-md-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-md-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-md-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-md-down .modal-footer {
border-radius: 0;
}
}
@media (max-width: 991.98px) {
.modal-fullscreen-lg-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-lg-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-lg-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-lg-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-lg-down .modal-footer {
border-radius: 0;
}
}
@media (max-width: 1199.98px) {
.modal-fullscreen-xl-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-xl-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-xl-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-xl-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-xl-down .modal-footer {
border-radius: 0;
}
}
@media (max-width: 1399.98px) {
.modal-fullscreen-xxl-down {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen-xxl-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen-xxl-down .modal-header {
border-radius: 0;
}
.modal-fullscreen-xxl-down .modal-body {
overflow-y: auto;
}
.modal-fullscreen-xxl-down .modal-footer {
border-radius: 0;
}
}
.tooltip {
position: absolute;
z-index: 1070;
display: block;
margin: 0;
font-family: var(--bs-font-sans-serif);
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
font-size: 0.875rem;
word-wrap: break-word;
opacity: 0;
}
.tooltip.show {
opacity: 0.9;
}
.tooltip .tooltip-arrow {
position: absolute;
display: block;
width: 0.8rem;
height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
position: absolute;
content: "";
border-color: transparent;
border-style: solid;
}
.bs-tooltip-top,
.bs-tooltip-auto[data-popper-placement^=top] {
padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
top: -1px;
border-width: 0.4rem 0.4rem 0;
border-top-color: #000;
}
.bs-tooltip-end,
.bs-tooltip-auto[data-popper-placement^=right] {
padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
left: 0;
width: 0.4rem;
height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
right: -1px;
border-width: 0.4rem 0.4rem 0.4rem 0;
border-right-color: #000;
}
.bs-tooltip-bottom,
.bs-tooltip-auto[data-popper-placement^=bottom] {
padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
bottom: -1px;
border-width: 0 0.4rem 0.4rem;
border-bottom-color: #000;
}
.bs-tooltip-start,
.bs-tooltip-auto[data-popper-placement^=left] {
padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
right: 0;
width: 0.4rem;
height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
left: -1px;
border-width: 0.4rem 0 0.4rem 0.4rem;
border-left-color: #000;
}
.tooltip-inner {
max-width: 200px;
padding: 0.25rem 0.5rem;
color: #fff;
text-align: center;
background-color: #000;
border-radius: 0.25rem;
}
.popover {
position: absolute;
top: 0;
left: 0 ;
z-index: 1060;
display: block;
max-width: 276px;
font-family: var(--bs-font-sans-serif);
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
font-size: 0.875rem;
word-wrap: break-word;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
}
.popover .popover-arrow {
position: absolute;
display: block;
width: 1rem;
height: 0.5rem;
margin: 0 0.3rem;
}
.popover .popover-arrow::before,
.popover .popover-arrow::after {
position: absolute;
display: block;
content: "";
border-color: transparent;
border-style: solid;
}
.bs-popover-top,
.bs-popover-auto[data-popper-placement^=top] {
margin-bottom: 0.5rem !important;
}
.bs-popover-top > .popover-arrow,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
bottom: 0;
border-width: 0.5rem 0.5rem 0;
border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
bottom: 1px;
border-width: 0.5rem 0.5rem 0;
border-top-color: #fff;
}
.bs-popover-end,
.bs-popover-auto[data-popper-placement^=right] {
margin-left: 0.5rem !important;
}
.bs-popover-end > .popover-arrow,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
left: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0;
}
.bs-popover-end > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
left: 0;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
left: 1px;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: #fff;
}
.bs-popover-bottom,
.bs-popover-auto[data-popper-placement^=bottom] {
margin-top: 0.5rem !important;
}
.bs-popover-bottom > .popover-arrow,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
top: 0;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
top: 1px;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before,
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
position: absolute;
top: 0;
left: 50%;
display: block;
width: 1rem;
margin-left: -0.5rem;
content: "";
border-bottom: 1px solid #f0f0f0;
}
.bs-popover-start,
.bs-popover-auto[data-popper-placement^=left] {
margin-right: 0.5rem !important;
}
.bs-popover-start > .popover-arrow,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
right: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0;
}
.bs-popover-start > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
right: 0;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
right: 1px;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: #fff;
}
.popover-header {
padding: 0.5rem 1rem;
margin-bottom: 0;
font-size: 1rem;
background-color: #f0f0f0;
border-bottom: 1px solid #d8d8d8;
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
display: none;
}
.popover-body {
padding: 1rem 1rem;
color: #212529;
}
.carousel {
position: relative;
}
.carousel.pointer-event {
touch-action: pan-y;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner::after {
display: block;
clear: both;
content: "";
}
.carousel-item {
position: relative;
display: none;
float: left;
width: 100%;
margin-right: -100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.carousel-item {
transition: none;
}
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block;
}
/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
transform: translateX(-100%);
}
/* rtl:end:ignore */
.carousel-fade .carousel-item {
opacity: 0;
transition-property: opacity;
transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
z-index: 1;
opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
z-index: 0;
opacity: 0;
transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
transition: none;
}
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 15%;
color: #fff;
text-align: center;
opacity: 0.5;
transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
transition: none;
}
}
.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
color: #fff;
text-decoration: none;
outline: 0;
opacity: 0.9;
}
.carousel-control-prev {
left: 0;
}
.carousel-control-next {
right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
display: inline-block;
width: 2rem;
height: 2rem;
background-repeat: no-repeat;
background-position: 50%;
background-size: 100% 100%;
}
/* rtl:options: {
"autoRename": true,
"stringMap":[ {
"name" : "prev-next",
"search" : "prev",
"replace" : "next"
} ]
} */
.carousel-control-prev-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-indicators {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 2;
display: flex;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
list-style: none;
}
.carousel-indicators li {
box-sizing: content-box;
flex: 0 1 auto;
width: 30px;
height: 3px;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #fff;
background-clip: padding-box;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: 0.5;
transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-indicators li {
transition: none;
}
}
.carousel-indicators .active {
opacity: 1;
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: 1.25rem;
left: 15%;
padding-top: 1.25rem;
padding-bottom: 1.25rem;
color: #fff;
text-align: center;
}
.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators li {
background-color: #000;
}
.carousel-dark .carousel-caption {
color: #000;
}
@-webkit-keyframes spinner-border {
to {
transform: rotate(360deg) ;
}
}
@keyframes spinner-border {
to {
transform: rotate(360deg) ;
}
}
.spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
border: 0.25em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
-webkit-animation: 0.75s linear infinite spinner-border;
animation: 0.75s linear infinite spinner-border;
}
.spinner-border-sm {
width: 1rem;
height: 1rem;
border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
0% {
transform: scale(0);
}
50% {
opacity: 1;
transform: none;
}
}
@keyframes spinner-grow {
0% {
transform: scale(0);
}
50% {
opacity: 1;
transform: none;
}
}
.spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
background-color: currentColor;
border-radius: 50%;
opacity: 0;
-webkit-animation: 0.75s linear infinite spinner-grow;
animation: 0.75s linear infinite spinner-grow;
}
.spinner-grow-sm {
width: 1rem;
height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
.spinner-border,
.spinner-grow {
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
}
}
.clearfix::after {
display: block;
clear: both;
content: "";
}
.link-primary {
color: #0d6efd;
}
.link-primary:hover,
.link-primary:focus {
color: #0a58ca;
}
.link-secondary {
color: #6c757d;
}
.link-secondary:hover,
.link-secondary:focus {
color: #565e64;
}
.link-success {
color: #198754;
}
.link-success:hover,
.link-success:focus {
color: #146c43;
}
.link-info {
color: #0dcaf0;
}
.link-info:hover,
.link-info:focus {
color: #3dd5f3;
}
.link-warning {
color: #ffc107;
}
.link-warning:hover,
.link-warning:focus {
color: #ffcd39;
}
.link-danger {
color: #dc3545;
}
.link-danger:hover,
.link-danger:focus {
color: #b02a37;
}
.link-light {
color: #f8f9fa;
}
.link-light:hover,
.link-light:focus {
color: #f9fafb;
}
.link-dark {
color: #212529;
}
.link-dark:hover,
.link-dark:focus {
color: #1a1e21;
}
.link-blue {
color: #0d6efd;
}
.link-blue:hover,
.link-blue:focus {
color: #0a58ca;
}
.link-blue-100 {
color: #cfe2ff;
}
.link-blue-100:hover,
.link-blue-100:focus {
color: #d9e8ff;
}
.link-blue-200 {
color: #9ec5fe;
}
.link-blue-200:hover,
.link-blue-200:focus {
color: #b1d1fe;
}
.link-blue-300 {
color: #6ea8fe;
}
.link-blue-300:hover,
.link-blue-300:focus {
color: #8bb9fe;
}
.link-blue-400 {
color: #3d8bfd;
}
.link-blue-400:hover,
.link-blue-400:focus {
color: #64a2fd;
}
.link-blue-500 {
color: #0d6efd;
}
.link-blue-500:hover,
.link-blue-500:focus {
color: #0a58ca;
}
.link-blue-600 {
color: #0a58ca;
}
.link-blue-600:hover,
.link-blue-600:focus {
color: #0846a2;
}
.link-blue-700 {
color: #084298;
}
.link-blue-700:hover,
.link-blue-700:focus {
color: #06357a;
}
.link-blue-800 {
color: #052c65;
}
.link-blue-800:hover,
.link-blue-800:focus {
color: #042351;
}
.link-blue-900 {
color: #031633;
}
.link-blue-900:hover,
.link-blue-900:focus {
color: #021229;
}
.link-indigo {
color: #6610f2;
}
.link-indigo:hover,
.link-indigo:focus {
color: #520dc2;
}
.link-indigo-100 {
color: #e0cffc;
}
.link-indigo-100:hover,
.link-indigo-100:focus {
color: #e6d9fd;
}
.link-indigo-200 {
color: #c29ffa;
}
.link-indigo-200:hover,
.link-indigo-200:focus {
color: #ceb2fb;
}
.link-indigo-300 {
color: #a370f7;
}
.link-indigo-300:hover,
.link-indigo-300:focus {
color: #b58df9;
}
.link-indigo-400 {
color: #8540f5;
}
.link-indigo-400:hover,
.link-indigo-400:focus {
color: #6a33c4;
}
.link-indigo-500 {
color: #6610f2;
}
.link-indigo-500:hover,
.link-indigo-500:focus {
color: #520dc2;
}
.link-indigo-600 {
color: #520dc2;
}
.link-indigo-600:hover,
.link-indigo-600:focus {
color: #420a9b;
}
.link-indigo-700 {
color: #3d0a91;
}
.link-indigo-700:hover,
.link-indigo-700:focus {
color: #310874;
}
.link-indigo-800 {
color: #290661;
}
.link-indigo-800:hover,
.link-indigo-800:focus {
color: #21054e;
}
.link-indigo-900 {
color: #140330;
}
.link-indigo-900:hover,
.link-indigo-900:focus {
color: #100226;
}
.link-purple {
color: #6f42c1;
}
.link-purple:hover,
.link-purple:focus {
color: #59359a;
}
.link-purple-100 {
color: #e2d9f3;
}
.link-purple-100:hover,
.link-purple-100:focus {
color: #e8e1f5;
}
.link-purple-200 {
color: #c5b3e6;
}
.link-purple-200:hover,
.link-purple-200:focus {
color: #d1c2eb;
}
.link-purple-300 {
color: #a98eda;
}
.link-purple-300:hover,
.link-purple-300:focus {
color: #baa5e1;
}
.link-purple-400 {
color: #8c68cd;
}
.link-purple-400:hover,
.link-purple-400:focus {
color: #a386d7;
}
.link-purple-500 {
color: #6f42c1;
}
.link-purple-500:hover,
.link-purple-500:focus {
color: #59359a;
}
.link-purple-600 {
color: #59359a;
}
.link-purple-600:hover,
.link-purple-600:focus {
color: #472a7b;
}
.link-purple-700 {
color: #432874;
}
.link-purple-700:hover,
.link-purple-700:focus {
color: #36205d;
}
.link-purple-800 {
color: #2c1a4d;
}
.link-purple-800:hover,
.link-purple-800:focus {
color: #23153e;
}
.link-purple-900 {
color: #160d27;
}
.link-purple-900:hover,
.link-purple-900:focus {
color: #120a1f;
}
.link-pink {
color: #d63384;
}
.link-pink:hover,
.link-pink:focus {
color: #ab296a;
}
.link-pink-100 {
color: #f7d6e6;
}
.link-pink-100:hover,
.link-pink-100:focus {
color: #f9deeb;
}
.link-pink-200 {
color: #efadce;
}
.link-pink-200:hover,
.link-pink-200:focus {
color: #f2bdd8;
}
.link-pink-300 {
color: #e685b5;
}
.link-pink-300:hover,
.link-pink-300:focus {
color: #eb9dc4;
}
.link-pink-400 {
color: #de5c9d;
}
.link-pink-400:hover,
.link-pink-400:focus {
color: #e57db1;
}
.link-pink-500 {
color: #d63384;
}
.link-pink-500:hover,
.link-pink-500:focus {
color: #ab296a;
}
.link-pink-600 {
color: #ab296a;
}
.link-pink-600:hover,
.link-pink-600:focus {
color: #892155;
}
.link-pink-700 {
color: #801f4f;
}
.link-pink-700:hover,
.link-pink-700:focus {
color: #66193f;
}
.link-pink-800 {
color: #561435;
}
.link-pink-800:hover,
.link-pink-800:focus {
color: #45102a;
}
.link-pink-900 {
color: #2b0a1a;
}
.link-pink-900:hover,
.link-pink-900:focus {
color: #220815;
}
.link-red {
color: #dc3545;
}
.link-red:hover,
.link-red:focus {
color: #b02a37;
}
.link-red-100 {
color: #f8d7da;
}
.link-red-100:hover,
.link-red-100:focus {
color: #f9dfe1;
}
.link-red-200 {
color: #f1aeb5;
}
.link-red-200:hover,
.link-red-200:focus {
color: #f4bec4;
}
.link-red-300 {
color: #ea868f;
}
.link-red-300:hover,
.link-red-300:focus {
color: #ee9ea5;
}
.link-red-400 {
color: #e35d6a;
}
.link-red-400:hover,
.link-red-400:focus {
color: #e97d88;
}
.link-red-500 {
color: #dc3545;
}
.link-red-500:hover,
.link-red-500:focus {
color: #b02a37;
}
.link-red-600 {
color: #b02a37;
}
.link-red-600:hover,
.link-red-600:focus {
color: #8d222c;
}
.link-red-700 {
color: #842029;
}
.link-red-700:hover,
.link-red-700:focus {
color: #6a1a21;
}
.link-red-800 {
color: #58151c;
}
.link-red-800:hover,
.link-red-800:focus {
color: #461116;
}
.link-red-900 {
color: #2c0b0e;
}
.link-red-900:hover,
.link-red-900:focus {
color: #23090b;
}
.link-orange {
color: #fd7e14;
}
.link-orange:hover,
.link-orange:focus {
color: #fd9843;
}
.link-orange-100 {
color: #ffe5d0;
}
.link-orange-100:hover,
.link-orange-100:focus {
color: #ffead9;
}
.link-orange-200 {
color: #fecba1;
}
.link-orange-200:hover,
.link-orange-200:focus {
color: #fed5b4;
}
.link-orange-300 {
color: #feb272;
}
.link-orange-300:hover,
.link-orange-300:focus {
color: #fec18e;
}
.link-orange-400 {
color: #fd9843;
}
.link-orange-400:hover,
.link-orange-400:focus {
color: #fdad69;
}
.link-orange-500 {
color: #fd7e14;
}
.link-orange-500:hover,
.link-orange-500:focus {
color: #fd9843;
}
.link-orange-600 {
color: #ca6510;
}
.link-orange-600:hover,
.link-orange-600:focus {
color: #d58440;
}
.link-orange-700 {
color: #984c0c;
}
.link-orange-700:hover,
.link-orange-700:focus {
color: #7a3d0a;
}
.link-orange-800 {
color: #653208;
}
.link-orange-800:hover,
.link-orange-800:focus {
color: #512806;
}
.link-orange-900 {
color: #331904;
}
.link-orange-900:hover,
.link-orange-900:focus {
color: #291403;
}
.link-yellow {
color: #ffc107;
}
.link-yellow:hover,
.link-yellow:focus {
color: #ffcd39;
}
.link-yellow-100 {
color: #fff3cd;
}
.link-yellow-100:hover,
.link-yellow-100:focus {
color: #fff5d7;
}
.link-yellow-200 {
color: #ffe69c;
}
.link-yellow-200:hover,
.link-yellow-200:focus {
color: #ffebb0;
}
.link-yellow-300 {
color: #ffda6a;
}
.link-yellow-300:hover,
.link-yellow-300:focus {
color: #ffe188;
}
.link-yellow-400 {
color: #ffcd39;
}
.link-yellow-400:hover,
.link-yellow-400:focus {
color: #ffd761;
}
.link-yellow-500 {
color: #ffc107;
}
.link-yellow-500:hover,
.link-yellow-500:focus {
color: #ffcd39;
}
.link-yellow-600 {
color: #cc9a06;
}
.link-yellow-600:hover,
.link-yellow-600:focus {
color: #d6ae38;
}
.link-yellow-700 {
color: #997404;
}
.link-yellow-700:hover,
.link-yellow-700:focus {
color: #ad9036;
}
.link-yellow-800 {
color: #664d03;
}
.link-yellow-800:hover,
.link-yellow-800:focus {
color: #523e02;
}
.link-yellow-900 {
color: #332701;
}
.link-yellow-900:hover,
.link-yellow-900:focus {
color: #291f01;
}
.link-green {
color: #198754;
}
.link-green:hover,
.link-green:focus {
color: #146c43;
}
.link-green-100 {
color: #d1e7dd;
}
.link-green-100:hover,
.link-green-100:focus {
color: #daece4;
}
.link-green-200 {
color: #a3cfbb;
}
.link-green-200:hover,
.link-green-200:focus {
color: #b5d9c9;
}
.link-green-300 {
color: #75b798;
}
.link-green-300:hover,
.link-green-300:focus {
color: #91c5ad;
}
.link-green-400 {
color: #479f76;
}
.link-green-400:hover,
.link-green-400:focus {
color: #6cb291;
}
.link-green-500 {
color: #198754;
}
.link-green-500:hover,
.link-green-500:focus {
color: #146c43;
}
.link-green-600 {
color: #146c43;
}
.link-green-600:hover,
.link-green-600:focus {
color: #105636;
}
.link-green-700 {
color: #0f5132;
}
.link-green-700:hover,
.link-green-700:focus {
color: #0c4128;
}
.link-green-800 {
color: #0a3622;
}
.link-green-800:hover,
.link-green-800:focus {
color: #082b1b;
}
.link-green-900 {
color: #051b11;
}
.link-green-900:hover,
.link-green-900:focus {
color: #04160e;
}
.link-teal {
color: #20c997;
}
.link-teal:hover,
.link-teal:focus {
color: #4dd4ac;
}
.link-teal-100 {
color: #d2f4ea;
}
.link-teal-100:hover,
.link-teal-100:focus {
color: #dbf6ee;
}
.link-teal-200 {
color: #a6e9d5;
}
.link-teal-200:hover,
.link-teal-200:focus {
color: #b8eddd;
}
.link-teal-300 {
color: #79dfc1;
}
.link-teal-300:hover,
.link-teal-300:focus {
color: #94e5cd;
}
.link-teal-400 {
color: #4dd4ac;
}
.link-teal-400:hover,
.link-teal-400:focus {
color: #71ddbd;
}
.link-teal-500 {
color: #20c997;
}
.link-teal-500:hover,
.link-teal-500:focus {
color: #4dd4ac;
}
.link-teal-600 {
color: #1aa179;
}
.link-teal-600:hover,
.link-teal-600:focus {
color: #48b494;
}
.link-teal-700 {
color: #13795b;
}
.link-teal-700:hover,
.link-teal-700:focus {
color: #0f6149;
}
.link-teal-800 {
color: #0d503c;
}
.link-teal-800:hover,
.link-teal-800:focus {
color: #0a4030;
}
.link-teal-900 {
color: #06281e;
}
.link-teal-900:hover,
.link-teal-900:focus {
color: #052018;
}
.link-cyan {
color: #0dcaf0;
}
.link-cyan:hover,
.link-cyan:focus {
color: #3dd5f3;
}
.link-cyan-100 {
color: #cff4fc;
}
.link-cyan-100:hover,
.link-cyan-100:focus {
color: #d9f6fd;
}
.link-cyan-200 {
color: #9eeaf9;
}
.link-cyan-200:hover,
.link-cyan-200:focus {
color: #b1eefa;
}
.link-cyan-300 {
color: #6edff6;
}
.link-cyan-300:hover,
.link-cyan-300:focus {
color: #8be5f8;
}
.link-cyan-400 {
color: #3dd5f3;
}
.link-cyan-400:hover,
.link-cyan-400:focus {
color: #64ddf5;
}
.link-cyan-500 {
color: #0dcaf0;
}
.link-cyan-500:hover,
.link-cyan-500:focus {
color: #3dd5f3;
}
.link-cyan-600 {
color: #0aa2c0;
}
.link-cyan-600:hover,
.link-cyan-600:focus {
color: #3bb5cd;
}
.link-cyan-700 {
color: #087990;
}
.link-cyan-700:hover,
.link-cyan-700:focus {
color: #066173;
}
.link-cyan-800 {
color: #055160;
}
.link-cyan-800:hover,
.link-cyan-800:focus {
color: #04414d;
}
.link-cyan-900 {
color: #032830;
}
.link-cyan-900:hover,
.link-cyan-900:focus {
color: #022026;
}
.link-gray-100 {
color: #f8f9fa;
}
.link-gray-100:hover,
.link-gray-100:focus {
color: #f9fafb;
}
.link-gray-200 {
color: #e9ecef;
}
.link-gray-200:hover,
.link-gray-200:focus {
color: #edf0f2;
}
.link-gray-300 {
color: #dee2e6;
}
.link-gray-300:hover,
.link-gray-300:focus {
color: #e5e8eb;
}
.link-gray-400 {
color: #ced4da;
}
.link-gray-400:hover,
.link-gray-400:focus {
color: #d8dde1;
}
.link-gray-500 {
color: #adb5bd;
}
.link-gray-500:hover,
.link-gray-500:focus {
color: #bdc4ca;
}
.link-gray-600 {
color: #6c757d;
}
.link-gray-600:hover,
.link-gray-600:focus {
color: #565e64;
}
.link-gray-700 {
color: #495057;
}
.link-gray-700:hover,
.link-gray-700:focus {
color: #3a4046;
}
.link-gray-800 {
color: #343a40;
}
.link-gray-800:hover,
.link-gray-800:focus {
color: #2a2e33;
}
.link-gray-900 {
color: #212529;
}
.link-gray-900:hover,
.link-gray-900:focus {
color: #1a1e21;
}
.link-white {
color: #fff;
}
.link-white:hover,
.link-white:focus {
color: white;
}
.ratio {
position: relative;
width: 100%;
}
.ratio::before {
display: block;
padding-top: var(--aspect-ratio);
content: "";
}
.ratio > * {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ratio-1x1 {
--aspect-ratio: 100%;
}
.ratio-4x3 {
--aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
--aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
--aspect-ratio: calc(9 / 21 * 100%);
}
.fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
}
.fixed-bottom {
position: fixed;
right: 0;
bottom: 0;
left: 0;
z-index: 1030;
}
.sticky-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
@media (min-width: 576px) {
.sticky-sm-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 768px) {
.sticky-md-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 992px) {
.sticky-lg-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 1200px) {
.sticky-xl-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 1400px) {
.sticky-xxl-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
.visually-hidden,
.visually-hidden-focusable:not(:focus) {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.stretched-link::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
content: "";
}
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.align-baseline {
vertical-align: baseline !important;
}
.align-top {
vertical-align: top !important;
}
.align-middle {
vertical-align: middle !important;
}
.align-bottom {
vertical-align: bottom !important;
}
.align-text-bottom {
vertical-align: text-bottom !important;
}
.align-text-top {
vertical-align: text-top !important;
}
.float-start {
float: left !important;
}
.float-end {
float: right !important;
}
.float-none {
float: none !important;
}
.overflow-auto {
overflow: auto !important;
}
.overflow-hidden {
overflow: hidden !important;
}
.overflow-visible {
overflow: visible !important;
}
.overflow-scroll {
overflow: scroll !important;
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-block {
display: block !important;
}
.d-grid {
display: grid !important;
}
.d-table {
display: table !important;
}
.d-table-row {
display: table-row !important;
}
.d-table-cell {
display: table-cell !important;
}
.d-flex {
display: flex !important;
}
.d-inline-flex {
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
box-shadow: none !important;
}
.position-static {
position: static !important;
}
.position-relative {
position: relative !important;
}
.position-absolute {
position: absolute !important;
}
.position-fixed {
position: fixed !important;
}
.position-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.top-0 {
top: 0 !important;
}
.top-50 {
top: 50% !important;
}
.top-100 {
top: 100% !important;
}
.bottom-0 {
bottom: 0 !important;
}
.bottom-50 {
bottom: 50% !important;
}
.bottom-100 {
bottom: 100% !important;
}
.start-0 {
left: 0 !important;
}
.start-50 {
left: 50% !important;
}
.start-100 {
left: 100% !important;
}
.end-0 {
right: 0 !important;
}
.end-50 {
right: 50% !important;
}
.end-100 {
right: 100% !important;
}
.translate-middle {
transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
transform: translateX(-50%) !important;
}
.translate-middle-y {
transform: translateY(-50%) !important;
}
.border {
border: 1px solid #dee2e6 !important;
}
.border-0 {
border: 0 !important;
}
.border-top {
border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
border-top: 0 !important;
}
.border-end {
border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
border-right: 0 !important;
}
.border-bottom {
border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
border-bottom: 0 !important;
}
.border-start {
border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
border-left: 0 !important;
}
.border-primary {
border-color: #0d6efd !important;
}
.border-secondary {
border-color: #6c757d !important;
}
.border-success {
border-color: #198754 !important;
}
.border-info {
border-color: #0dcaf0 !important;
}
.border-warning {
border-color: #ffc107 !important;
}
.border-danger {
border-color: #dc3545 !important;
}
.border-light {
border-color: #f8f9fa !important;
}
.border-dark {
border-color: #212529 !important;
}
.border-blue {
border-color: #0d6efd !important;
}
.border-blue-100 {
border-color: #cfe2ff !important;
}
.border-blue-200 {
border-color: #9ec5fe !important;
}
.border-blue-300 {
border-color: #6ea8fe !important;
}
.border-blue-400 {
border-color: #3d8bfd !important;
}
.border-blue-500 {
border-color: #0d6efd !important;
}
.border-blue-600 {
border-color: #0a58ca !important;
}
.border-blue-700 {
border-color: #084298 !important;
}
.border-blue-800 {
border-color: #052c65 !important;
}
.border-blue-900 {
border-color: #031633 !important;
}
.border-indigo {
border-color: #6610f2 !important;
}
.border-indigo-100 {
border-color: #e0cffc !important;
}
.border-indigo-200 {
border-color: #c29ffa !important;
}
.border-indigo-300 {
border-color: #a370f7 !important;
}
.border-indigo-400 {
border-color: #8540f5 !important;
}
.border-indigo-500 {
border-color: #6610f2 !important;
}
.border-indigo-600 {
border-color: #520dc2 !important;
}
.border-indigo-700 {
border-color: #3d0a91 !important;
}
.border-indigo-800 {
border-color: #290661 !important;
}
.border-indigo-900 {
border-color: #140330 !important;
}
.border-purple {
border-color: #6f42c1 !important;
}
.border-purple-100 {
border-color: #e2d9f3 !important;
}
.border-purple-200 {
border-color: #c5b3e6 !important;
}
.border-purple-300 {
border-color: #a98eda !important;
}
.border-purple-400 {
border-color: #8c68cd !important;
}
.border-purple-500 {
border-color: #6f42c1 !important;
}
.border-purple-600 {
border-color: #59359a !important;
}
.border-purple-700 {
border-color: #432874 !important;
}
.border-purple-800 {
border-color: #2c1a4d !important;
}
.border-purple-900 {
border-color: #160d27 !important;
}
.border-pink {
border-color: #d63384 !important;
}
.border-pink-100 {
border-color: #f7d6e6 !important;
}
.border-pink-200 {
border-color: #efadce !important;
}
.border-pink-300 {
border-color: #e685b5 !important;
}
.border-pink-400 {
border-color: #de5c9d !important;
}
.border-pink-500 {
border-color: #d63384 !important;
}
.border-pink-600 {
border-color: #ab296a !important;
}
.border-pink-700 {
border-color: #801f4f !important;
}
.border-pink-800 {
border-color: #561435 !important;
}
.border-pink-900 {
border-color: #2b0a1a !important;
}
.border-red {
border-color: #dc3545 !important;
}
.border-red-100 {
border-color: #f8d7da !important;
}
.border-red-200 {
border-color: #f1aeb5 !important;
}
.border-red-300 {
border-color: #ea868f !important;
}
.border-red-400 {
border-color: #e35d6a !important;
}
.border-red-500 {
border-color: #dc3545 !important;
}
.border-red-600 {
border-color: #b02a37 !important;
}
.border-red-700 {
border-color: #842029 !important;
}
.border-red-800 {
border-color: #58151c !important;
}
.border-red-900 {
border-color: #2c0b0e !important;
}
.border-orange {
border-color: #fd7e14 !important;
}
.border-orange-100 {
border-color: #ffe5d0 !important;
}
.border-orange-200 {
border-color: #fecba1 !important;
}
.border-orange-300 {
border-color: #feb272 !important;
}
.border-orange-400 {
border-color: #fd9843 !important;
}
.border-orange-500 {
border-color: #fd7e14 !important;
}
.border-orange-600 {
border-color: #ca6510 !important;
}
.border-orange-700 {
border-color: #984c0c !important;
}
.border-orange-800 {
border-color: #653208 !important;
}
.border-orange-900 {
border-color: #331904 !important;
}
.border-yellow {
border-color: #ffc107 !important;
}
.border-yellow-100 {
border-color: #fff3cd !important;
}
.border-yellow-200 {
border-color: #ffe69c !important;
}
.border-yellow-300 {
border-color: #ffda6a !important;
}
.border-yellow-400 {
border-color: #ffcd39 !important;
}
.border-yellow-500 {
border-color: #ffc107 !important;
}
.border-yellow-600 {
border-color: #cc9a06 !important;
}
.border-yellow-700 {
border-color: #997404 !important;
}
.border-yellow-800 {
border-color: #664d03 !important;
}
.border-yellow-900 {
border-color: #332701 !important;
}
.border-green {
border-color: #198754 !important;
}
.border-green-100 {
border-color: #d1e7dd !important;
}
.border-green-200 {
border-color: #a3cfbb !important;
}
.border-green-300 {
border-color: #75b798 !important;
}
.border-green-400 {
border-color: #479f76 !important;
}
.border-green-500 {
border-color: #198754 !important;
}
.border-green-600 {
border-color: #146c43 !important;
}
.border-green-700 {
border-color: #0f5132 !important;
}
.border-green-800 {
border-color: #0a3622 !important;
}
.border-green-900 {
border-color: #051b11 !important;
}
.border-teal {
border-color: #20c997 !important;
}
.border-teal-100 {
border-color: #d2f4ea !important;
}
.border-teal-200 {
border-color: #a6e9d5 !important;
}
.border-teal-300 {
border-color: #79dfc1 !important;
}
.border-teal-400 {
border-color: #4dd4ac !important;
}
.border-teal-500 {
border-color: #20c997 !important;
}
.border-teal-600 {
border-color: #1aa179 !important;
}
.border-teal-700 {
border-color: #13795b !important;
}
.border-teal-800 {
border-color: #0d503c !important;
}
.border-teal-900 {
border-color: #06281e !important;
}
.border-cyan {
border-color: #0dcaf0 !important;
}
.border-cyan-100 {
border-color: #cff4fc !important;
}
.border-cyan-200 {
border-color: #9eeaf9 !important;
}
.border-cyan-300 {
border-color: #6edff6 !important;
}
.border-cyan-400 {
border-color: #3dd5f3 !important;
}
.border-cyan-500 {
border-color: #0dcaf0 !important;
}
.border-cyan-600 {
border-color: #0aa2c0 !important;
}
.border-cyan-700 {
border-color: #087990 !important;
}
.border-cyan-800 {
border-color: #055160 !important;
}
.border-cyan-900 {
border-color: #032830 !important;
}
.border-gray-100 {
border-color: #f8f9fa !important;
}
.border-gray-200 {
border-color: #e9ecef !important;
}
.border-gray-300 {
border-color: #dee2e6 !important;
}
.border-gray-400 {
border-color: #ced4da !important;
}
.border-gray-500 {
border-color: #adb5bd !important;
}
.border-gray-600 {
border-color: #6c757d !important;
}
.border-gray-700 {
border-color: #495057 !important;
}
.border-gray-800 {
border-color: #343a40 !important;
}
.border-gray-900 {
border-color: #212529 !important;
}
.border-white {
border-color: #fff !important;
}
.border-0 {
border-width: 0 !important;
}
.border-1 {
border-width: 1px !important;
}
.border-2 {
border-width: 2px !important;
}
.border-3 {
border-width: 3px !important;
}
.border-4 {
border-width: 4px !important;
}
.border-5 {
border-width: 5px !important;
}
.w-25 {
width: 25% !important;
}
.w-50 {
width: 50% !important;
}
.w-75 {
width: 75% !important;
}
.w-100 {
width: 100% !important;
}
.w-auto {
width: auto !important;
}
.mw-100 {
max-width: 100% !important;
}
.vw-100 {
width: 100vw !important;
}
.min-vw-100 {
min-width: 100vw !important;
}
.h-25 {
height: 25% !important;
}
.h-50 {
height: 50% !important;
}
.h-75 {
height: 75% !important;
}
.h-100 {
height: 100% !important;
}
.h-auto {
height: auto !important;
}
.mh-100 {
max-height: 100% !important;
}
.vh-100 {
height: 100vh !important;
}
.min-vh-100 {
min-height: 100vh !important;
}
.flex-fill {
flex: 1 1 auto !important;
}
.flex-row {
flex-direction: row !important;
}
.flex-column {
flex-direction: column !important;
}
.flex-row-reverse {
flex-direction: row-reverse !important;
}
.flex-column-reverse {
flex-direction: column-reverse !important;
}
.flex-grow-0 {
flex-grow: 0 !important;
}
.flex-grow-1 {
flex-grow: 1 !important;
}
.flex-shrink-0 {
flex-shrink: 0 !important;
}
.flex-shrink-1 {
flex-shrink: 1 !important;
}
.flex-wrap {
flex-wrap: wrap !important;
}
.flex-nowrap {
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-0 {
gap: 0 !important;
}
.gap-1 {
gap: 0.25rem !important;
}
.gap-2 {
gap: 0.5rem !important;
}
.gap-3 {
gap: 1rem !important;
}
.gap-4 {
gap: 1.5rem !important;
}
.gap-5 {
gap: 3rem !important;
}
.justify-content-start {
justify-content: flex-start !important;
}
.justify-content-end {
justify-content: flex-end !important;
}
.justify-content-center {
justify-content: center !important;
}
.justify-content-between {
justify-content: space-between !important;
}
.justify-content-around {
justify-content: space-around !important;
}
.justify-content-evenly {
justify-content: space-evenly !important;
}
.align-items-start {
align-items: flex-start !important;
}
.align-items-end {
align-items: flex-end !important;
}
.align-items-center {
align-items: center !important;
}
.align-items-baseline {
align-items: baseline !important;
}
.align-items-stretch {
align-items: stretch !important;
}
.align-content-start {
align-content: flex-start !important;
}
.align-content-end {
align-content: flex-end !important;
}
.align-content-center {
align-content: center !important;
}
.align-content-between {
align-content: space-between !important;
}
.align-content-around {
align-content: space-around !important;
}
.align-content-stretch {
align-content: stretch !important;
}
.align-self-auto {
align-self: auto !important;
}
.align-self-start {
align-self: flex-start !important;
}
.align-self-end {
align-self: flex-end !important;
}
.align-self-center {
align-self: center !important;
}
.align-self-baseline {
align-self: baseline !important;
}
.align-self-stretch {
align-self: stretch !important;
}
.order-first {
order: -1 !important;
}
.order-0 {
order: 0 !important;
}
.order-1 {
order: 1 !important;
}
.order-2 {
order: 2 !important;
}
.order-3 {
order: 3 !important;
}
.order-4 {
order: 4 !important;
}
.order-5 {
order: 5 !important;
}
.order-last {
order: 6 !important;
}
.m-0 {
margin: 0 !important;
}
.m-1 {
margin: 0.25rem !important;
}
.m-2 {
margin: 0.5rem !important;
}
.m-3 {
margin: 1rem !important;
}
.m-4 {
margin: 1.5rem !important;
}
.m-5 {
margin: 3rem !important;
}
.m-auto {
margin: auto !important;
}
.mx-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-0 {
margin-top: 0 !important;
}
.mt-1 {
margin-top: 0.25rem !important;
}
.mt-2 {
margin-top: 0.5rem !important;
}
.mt-3 {
margin-top: 1rem !important;
}
.mt-4 {
margin-top: 1.5rem !important;
}
.mt-5 {
margin-top: 3rem !important;
}
.mt-auto {
margin-top: auto !important;
}
.me-0 {
margin-right: 0 !important;
}
.me-1 {
margin-right: 0.25rem !important;
}
.me-2 {
margin-right: 0.5rem !important;
}
.me-3 {
margin-right: 1rem !important;
}
.me-4 {
margin-right: 1.5rem !important;
}
.me-5 {
margin-right: 3rem !important;
}
.me-auto {
margin-right: auto !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-1 {
margin-bottom: 0.25rem !important;
}
.mb-2 {
margin-bottom: 0.5rem !important;
}
.mb-3 {
margin-bottom: 1rem !important;
}
.mb-4 {
margin-bottom: 1.5rem !important;
}
.mb-5 {
margin-bottom: 3rem !important;
}
.mb-auto {
margin-bottom: auto !important;
}
.ms-0 {
margin-left: 0 !important;
}
.ms-1 {
margin-left: 0.25rem !important;
}
.ms-2 {
margin-left: 0.5rem !important;
}
.ms-3 {
margin-left: 1rem !important;
}
.ms-4 {
margin-left: 1.5rem !important;
}
.ms-5 {
margin-left: 3rem !important;
}
.ms-auto {
margin-left: auto !important;
}
.p-0 {
padding: 0 !important;
}
.p-1 {
padding: 0.25rem !important;
}
.p-2 {
padding: 0.5rem !important;
}
.p-3 {
padding: 1rem !important;
}
.p-4 {
padding: 1.5rem !important;
}
.p-5 {
padding: 3rem !important;
}
.px-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pt-1 {
padding-top: 0.25rem !important;
}
.pt-2 {
padding-top: 0.5rem !important;
}
.pt-3 {
padding-top: 1rem !important;
}
.pt-4 {
padding-top: 1.5rem !important;
}
.pt-5 {
padding-top: 3rem !important;
}
.pe-0 {
padding-right: 0 !important;
}
.pe-1 {
padding-right: 0.25rem !important;
}
.pe-2 {
padding-right: 0.5rem !important;
}
.pe-3 {
padding-right: 1rem !important;
}
.pe-4 {
padding-right: 1.5rem !important;
}
.pe-5 {
padding-right: 3rem !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.pb-1 {
padding-bottom: 0.25rem !important;
}
.pb-2 {
padding-bottom: 0.5rem !important;
}
.pb-3 {
padding-bottom: 1rem !important;
}
.pb-4 {
padding-bottom: 1.5rem !important;
}
.pb-5 {
padding-bottom: 3rem !important;
}
.ps-0 {
padding-left: 0 !important;
}
.ps-1 {
padding-left: 0.25rem !important;
}
.ps-2 {
padding-left: 0.5rem !important;
}
.ps-3 {
padding-left: 1rem !important;
}
.ps-4 {
padding-left: 1.5rem !important;
}
.ps-5 {
padding-left: 3rem !important;
}
.fs-1 {
font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
font-size: 1.25rem !important;
}
.fs-6 {
font-size: 1rem !important;
}
.fst-italic {
font-style: italic !important;
}
.fst-normal {
font-style: normal !important;
}
.fw-light {
font-weight: 300 !important;
}
.fw-lighter {
font-weight: lighter !important;
}
.fw-normal {
font-weight: 400 !important;
}
.fw-bold {
font-weight: 700 !important;
}
.fw-bolder {
font-weight: bolder !important;
}
.text-lowercase {
text-transform: lowercase !important;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: capitalize !important;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-primary {
color: #0d6efd !important;
}
.text-secondary {
color: #6c757d !important;
}
.text-success {
color: #198754 !important;
}
.text-info {
color: #0dcaf0 !important;
}
.text-warning {
color: #ffc107 !important;
}
.text-danger {
color: #dc3545 !important;
}
.text-light {
color: #f8f9fa !important;
}
.text-dark {
color: #212529 !important;
}
.text-blue {
color: #0d6efd !important;
}
.text-blue-100 {
color: #cfe2ff !important;
}
.text-blue-200 {
color: #9ec5fe !important;
}
.text-blue-300 {
color: #6ea8fe !important;
}
.text-blue-400 {
color: #3d8bfd !important;
}
.text-blue-500 {
color: #0d6efd !important;
}
.text-blue-600 {
color: #0a58ca !important;
}
.text-blue-700 {
color: #084298 !important;
}
.text-blue-800 {
color: #052c65 !important;
}
.text-blue-900 {
color: #031633 !important;
}
.text-indigo {
color: #6610f2 !important;
}
.text-indigo-100 {
color: #e0cffc !important;
}
.text-indigo-200 {
color: #c29ffa !important;
}
.text-indigo-300 {
color: #a370f7 !important;
}
.text-indigo-400 {
color: #8540f5 !important;
}
.text-indigo-500 {
color: #6610f2 !important;
}
.text-indigo-600 {
color: #520dc2 !important;
}
.text-indigo-700 {
color: #3d0a91 !important;
}
.text-indigo-800 {
color: #290661 !important;
}
.text-indigo-900 {
color: #140330 !important;
}
.text-purple {
color: #6f42c1 !important;
}
.text-purple-100 {
color: #e2d9f3 !important;
}
.text-purple-200 {
color: #c5b3e6 !important;
}
.text-purple-300 {
color: #a98eda !important;
}
.text-purple-400 {
color: #8c68cd !important;
}
.text-purple-500 {
color: #6f42c1 !important;
}
.text-purple-600 {
color: #59359a !important;
}
.text-purple-700 {
color: #432874 !important;
}
.text-purple-800 {
color: #2c1a4d !important;
}
.text-purple-900 {
color: #160d27 !important;
}
.text-pink {
color: #d63384 !important;
}
.text-pink-100 {
color: #f7d6e6 !important;
}
.text-pink-200 {
color: #efadce !important;
}
.text-pink-300 {
color: #e685b5 !important;
}
.text-pink-400 {
color: #de5c9d !important;
}
.text-pink-500 {
color: #d63384 !important;
}
.text-pink-600 {
color: #ab296a !important;
}
.text-pink-700 {
color: #801f4f !important;
}
.text-pink-800 {
color: #561435 !important;
}
.text-pink-900 {
color: #2b0a1a !important;
}
.text-red {
color: #dc3545 !important;
}
.text-red-100 {
color: #f8d7da !important;
}
.text-red-200 {
color: #f1aeb5 !important;
}
.text-red-300 {
color: #ea868f !important;
}
.text-red-400 {
color: #e35d6a !important;
}
.text-red-500 {
color: #dc3545 !important;
}
.text-red-600 {
color: #b02a37 !important;
}
.text-red-700 {
color: #842029 !important;
}
.text-red-800 {
color: #58151c !important;
}
.text-red-900 {
color: #2c0b0e !important;
}
.text-orange {
color: #fd7e14 !important;
}
.text-orange-100 {
color: #ffe5d0 !important;
}
.text-orange-200 {
color: #fecba1 !important;
}
.text-orange-300 {
color: #feb272 !important;
}
.text-orange-400 {
color: #fd9843 !important;
}
.text-orange-500 {
color: #fd7e14 !important;
}
.text-orange-600 {
color: #ca6510 !important;
}
.text-orange-700 {
color: #984c0c !important;
}
.text-orange-800 {
color: #653208 !important;
}
.text-orange-900 {
color: #331904 !important;
}
.text-yellow {
color: #ffc107 !important;
}
.text-yellow-100 {
color: #fff3cd !important;
}
.text-yellow-200 {
color: #ffe69c !important;
}
.text-yellow-300 {
color: #ffda6a !important;
}
.text-yellow-400 {
color: #ffcd39 !important;
}
.text-yellow-500 {
color: #ffc107 !important;
}
.text-yellow-600 {
color: #cc9a06 !important;
}
.text-yellow-700 {
color: #997404 !important;
}
.text-yellow-800 {
color: #664d03 !important;
}
.text-yellow-900 {
color: #332701 !important;
}
.text-green {
color: #198754 !important;
}
.text-green-100 {
color: #d1e7dd !important;
}
.text-green-200 {
color: #a3cfbb !important;
}
.text-green-300 {
color: #75b798 !important;
}
.text-green-400 {
color: #479f76 !important;
}
.text-green-500 {
color: #198754 !important;
}
.text-green-600 {
color: #146c43 !important;
}
.text-green-700 {
color: #0f5132 !important;
}
.text-green-800 {
color: #0a3622 !important;
}
.text-green-900 {
color: #051b11 !important;
}
.text-teal {
color: #20c997 !important;
}
.text-teal-100 {
color: #d2f4ea !important;
}
.text-teal-200 {
color: #a6e9d5 !important;
}
.text-teal-300 {
color: #79dfc1 !important;
}
.text-teal-400 {
color: #4dd4ac !important;
}
.text-teal-500 {
color: #20c997 !important;
}
.text-teal-600 {
color: #1aa179 !important;
}
.text-teal-700 {
color: #13795b !important;
}
.text-teal-800 {
color: #0d503c !important;
}
.text-teal-900 {
color: #06281e !important;
}
.text-cyan {
color: #0dcaf0 !important;
}
.text-cyan-100 {
color: #cff4fc !important;
}
.text-cyan-200 {
color: #9eeaf9 !important;
}
.text-cyan-300 {
color: #6edff6 !important;
}
.text-cyan-400 {
color: #3dd5f3 !important;
}
.text-cyan-500 {
color: #0dcaf0 !important;
}
.text-cyan-600 {
color: #0aa2c0 !important;
}
.text-cyan-700 {
color: #087990 !important;
}
.text-cyan-800 {
color: #055160 !important;
}
.text-cyan-900 {
color: #032830 !important;
}
.text-gray-100 {
color: #f8f9fa !important;
}
.text-gray-200 {
color: #e9ecef !important;
}
.text-gray-300 {
color: #dee2e6 !important;
}
.text-gray-400 {
color: #ced4da !important;
}
.text-gray-500 {
color: #adb5bd !important;
}
.text-gray-600 {
color: #6c757d !important;
}
.text-gray-700 {
color: #495057 !important;
}
.text-gray-800 {
color: #343a40 !important;
}
.text-gray-900 {
color: #212529 !important;
}
.text-white {
color: #fff !important;
}
.text-body {
color: #212529 !important;
}
.text-muted {
color: #6c757d !important;
}
.text-black-50 {
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
color: inherit !important;
}
.lh-1 {
line-height: 1 !important;
}
.lh-sm {
line-height: 1.25 !important;
}
.lh-base {
line-height: 1.5 !important;
}
.lh-lg {
line-height: 2 !important;
}
.bg-primary {
background-color: #0d6efd !important;
}
.bg-secondary {
background-color: #6c757d !important;
}
.bg-success {
background-color: #198754 !important;
}
.bg-info {
background-color: #0dcaf0 !important;
}
.bg-warning {
background-color: #ffc107 !important;
}
.bg-danger {
background-color: #dc3545 !important;
}
.bg-light {
background-color: #f8f9fa !important;
}
.bg-dark {
background-color: #212529 !important;
}
.bg-blue {
background-color: #0d6efd !important;
}
.bg-blue-100 {
background-color: #cfe2ff !important;
}
.bg-blue-200 {
background-color: #9ec5fe !important;
}
.bg-blue-300 {
background-color: #6ea8fe !important;
}
.bg-blue-400 {
background-color: #3d8bfd !important;
}
.bg-blue-500 {
background-color: #0d6efd !important;
}
.bg-blue-600 {
background-color: #0a58ca !important;
}
.bg-blue-700 {
background-color: #084298 !important;
}
.bg-blue-800 {
background-color: #052c65 !important;
}
.bg-blue-900 {
background-color: #031633 !important;
}
.bg-indigo {
background-color: #6610f2 !important;
}
.bg-indigo-100 {
background-color: #e0cffc !important;
}
.bg-indigo-200 {
background-color: #c29ffa !important;
}
.bg-indigo-300 {
background-color: #a370f7 !important;
}
.bg-indigo-400 {
background-color: #8540f5 !important;
}
.bg-indigo-500 {
background-color: #6610f2 !important;
}
.bg-indigo-600 {
background-color: #520dc2 !important;
}
.bg-indigo-700 {
background-color: #3d0a91 !important;
}
.bg-indigo-800 {
background-color: #290661 !important;
}
.bg-indigo-900 {
background-color: #140330 !important;
}
.bg-purple {
background-color: #6f42c1 !important;
}
.bg-purple-100 {
background-color: #e2d9f3 !important;
}
.bg-purple-200 {
background-color: #c5b3e6 !important;
}
.bg-purple-300 {
background-color: #a98eda !important;
}
.bg-purple-400 {
background-color: #8c68cd !important;
}
.bg-purple-500 {
background-color: #6f42c1 !important;
}
.bg-purple-600 {
background-color: #59359a !important;
}
.bg-purple-700 {
background-color: #432874 !important;
}
.bg-purple-800 {
background-color: #2c1a4d !important;
}
.bg-purple-900 {
background-color: #160d27 !important;
}
.bg-pink {
background-color: #d63384 !important;
}
.bg-pink-100 {
background-color: #f7d6e6 !important;
}
.bg-pink-200 {
background-color: #efadce !important;
}
.bg-pink-300 {
background-color: #e685b5 !important;
}
.bg-pink-400 {
background-color: #de5c9d !important;
}
.bg-pink-500 {
background-color: #d63384 !important;
}
.bg-pink-600 {
background-color: #ab296a !important;
}
.bg-pink-700 {
background-color: #801f4f !important;
}
.bg-pink-800 {
background-color: #561435 !important;
}
.bg-pink-900 {
background-color: #2b0a1a !important;
}
.bg-red {
background-color: #dc3545 !important;
}
.bg-red-100 {
background-color: #f8d7da !important;
}
.bg-red-200 {
background-color: #f1aeb5 !important;
}
.bg-red-300 {
background-color: #ea868f !important;
}
.bg-red-400 {
background-color: #e35d6a !important;
}
.bg-red-500 {
background-color: #dc3545 !important;
}
.bg-red-600 {
background-color: #b02a37 !important;
}
.bg-red-700 {
background-color: #842029 !important;
}
.bg-red-800 {
background-color: #58151c !important;
}
.bg-red-900 {
background-color: #2c0b0e !important;
}
.bg-orange {
background-color: #fd7e14 !important;
}
.bg-orange-100 {
background-color: #ffe5d0 !important;
}
.bg-orange-200 {
background-color: #fecba1 !important;
}
.bg-orange-300 {
background-color: #feb272 !important;
}
.bg-orange-400 {
background-color: #fd9843 !important;
}
.bg-orange-500 {
background-color: #fd7e14 !important;
}
.bg-orange-600 {
background-color: #ca6510 !important;
}
.bg-orange-700 {
background-color: #984c0c !important;
}
.bg-orange-800 {
background-color: #653208 !important;
}
.bg-orange-900 {
background-color: #331904 !important;
}
.bg-yellow {
background-color: #ffc107 !important;
}
.bg-yellow-100 {
background-color: #fff3cd !important;
}
.bg-yellow-200 {
background-color: #ffe69c !important;
}
.bg-yellow-300 {
background-color: #ffda6a !important;
}
.bg-yellow-400 {
background-color: #ffcd39 !important;
}
.bg-yellow-500 {
background-color: #ffc107 !important;
}
.bg-yellow-600 {
background-color: #cc9a06 !important;
}
.bg-yellow-700 {
background-color: #997404 !important;
}
.bg-yellow-800 {
background-color: #664d03 !important;
}
.bg-yellow-900 {
background-color: #332701 !important;
}
.bg-green {
background-color: #198754 !important;
}
.bg-green-100 {
background-color: #d1e7dd !important;
}
.bg-green-200 {
background-color: #a3cfbb !important;
}
.bg-green-300 {
background-color: #75b798 !important;
}
.bg-green-400 {
background-color: #479f76 !important;
}
.bg-green-500 {
background-color: #198754 !important;
}
.bg-green-600 {
background-color: #146c43 !important;
}
.bg-green-700 {
background-color: #0f5132 !important;
}
.bg-green-800 {
background-color: #0a3622 !important;
}
.bg-green-900 {
background-color: #051b11 !important;
}
.bg-teal {
background-color: #20c997 !important;
}
.bg-teal-100 {
background-color: #d2f4ea !important;
}
.bg-teal-200 {
background-color: #a6e9d5 !important;
}
.bg-teal-300 {
background-color: #79dfc1 !important;
}
.bg-teal-400 {
background-color: #4dd4ac !important;
}
.bg-teal-500 {
background-color: #20c997 !important;
}
.bg-teal-600 {
background-color: #1aa179 !important;
}
.bg-teal-700 {
background-color: #13795b !important;
}
.bg-teal-800 {
background-color: #0d503c !important;
}
.bg-teal-900 {
background-color: #06281e !important;
}
.bg-cyan {
background-color: #0dcaf0 !important;
}
.bg-cyan-100 {
background-color: #cff4fc !important;
}
.bg-cyan-200 {
background-color: #9eeaf9 !important;
}
.bg-cyan-300 {
background-color: #6edff6 !important;
}
.bg-cyan-400 {
background-color: #3dd5f3 !important;
}
.bg-cyan-500 {
background-color: #0dcaf0 !important;
}
.bg-cyan-600 {
background-color: #0aa2c0 !important;
}
.bg-cyan-700 {
background-color: #087990 !important;
}
.bg-cyan-800 {
background-color: #055160 !important;
}
.bg-cyan-900 {
background-color: #032830 !important;
}
.bg-gray-100 {
background-color: #f8f9fa !important;
}
.bg-gray-200 {
background-color: #e9ecef !important;
}
.bg-gray-300 {
background-color: #dee2e6 !important;
}
.bg-gray-400 {
background-color: #ced4da !important;
}
.bg-gray-500 {
background-color: #adb5bd !important;
}
.bg-gray-600 {
background-color: #6c757d !important;
}
.bg-gray-700 {
background-color: #495057 !important;
}
.bg-gray-800 {
background-color: #343a40 !important;
}
.bg-gray-900 {
background-color: #212529 !important;
}
.bg-white {
background-color: #fff !important;
}
.bg-body {
background-color: #fff !important;
}
.bg-transparent {
background-color: transparent !important;
}
.bg-gradient {
background-image: var(--bs-gradient) !important;
}
.text-wrap {
white-space: normal !important;
}
.text-nowrap {
white-space: nowrap !important;
}
.text-decoration-none {
text-decoration: none !important;
}
.text-decoration-underline {
text-decoration: underline !important;
}
.text-decoration-line-through {
text-decoration: line-through !important;
}
/* rtl:begin:remove */
.text-break {
word-wrap: break-word !important;
word-break: break-word !important;
}
/* rtl:end:remove */
.font-monospace {
font-family: var(--bs-font-monospace) !important;
}
.user-select-all {
-webkit-user-select: all !important;
-moz-user-select: all !important;
-ms-user-select: all !important;
user-select: all !important;
}
.user-select-auto {
-webkit-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;
}
.user-select-none {
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.pe-none {
pointer-events: none !important;
}
.pe-auto {
pointer-events: auto !important;
}
.rounded {
border-radius: 0.25rem !important;
}
.rounded-0 {
border-radius: 0 !important;
}
.rounded-1 {
border-radius: 0.2rem !important;
}
.rounded-2 {
border-radius: 0.25rem !important;
}
.rounded-3 {
border-radius: 0.3rem !important;
}
.rounded-circle {
border-radius: 50% !important;
}
.rounded-pill {
border-radius: 50rem !important;
}
.rounded-top {
border-top-left-radius: 0.25rem !important;
border-top-right-radius: 0.25rem !important;
}
.rounded-end {
border-top-right-radius: 0.25rem !important;
border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
border-bottom-right-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important;
}
.rounded-start {
border-bottom-left-radius: 0.25rem !important;
border-top-left-radius: 0.25rem !important;
}
.visible {
visibility: visible !important;
}
.invisible {
visibility: hidden !important;
}
@media (min-width: 576px) {
.float-sm-start {
float: left !important;
}
.float-sm-end {
float: right !important;
}
.float-sm-none {
float: none !important;
}
.d-sm-inline {
display: inline !important;
}
.d-sm-inline-block {
display: inline-block !important;
}
.d-sm-block {
display: block !important;
}
.d-sm-grid {
display: grid !important;
}
.d-sm-table {
display: table !important;
}
.d-sm-table-row {
display: table-row !important;
}
.d-sm-table-cell {
display: table-cell !important;
}
.d-sm-flex {
display: flex !important;
}
.d-sm-inline-flex {
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
flex: 1 1 auto !important;
}
.flex-sm-row {
flex-direction: row !important;
}
.flex-sm-column {
flex-direction: column !important;
}
.flex-sm-row-reverse {
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
flex-shrink: 1 !important;
}
.flex-sm-wrap {
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-sm-0 {
gap: 0 !important;
}
.gap-sm-1 {
gap: 0.25rem !important;
}
.gap-sm-2 {
gap: 0.5rem !important;
}
.gap-sm-3 {
gap: 1rem !important;
}
.gap-sm-4 {
gap: 1.5rem !important;
}
.gap-sm-5 {
gap: 3rem !important;
}
.justify-content-sm-start {
justify-content: flex-start !important;
}
.justify-content-sm-end {
justify-content: flex-end !important;
}
.justify-content-sm-center {
justify-content: center !important;
}
.justify-content-sm-between {
justify-content: space-between !important;
}
.justify-content-sm-around {
justify-content: space-around !important;
}
.justify-content-sm-evenly {
justify-content: space-evenly !important;
}
.align-items-sm-start {
align-items: flex-start !important;
}
.align-items-sm-end {
align-items: flex-end !important;
}
.align-items-sm-center {
align-items: center !important;
}
.align-items-sm-baseline {
align-items: baseline !important;
}
.align-items-sm-stretch {
align-items: stretch !important;
}
.align-content-sm-start {
align-content: flex-start !important;
}
.align-content-sm-end {
align-content: flex-end !important;
}
.align-content-sm-center {
align-content: center !important;
}
.align-content-sm-between {
align-content: space-between !important;
}
.align-content-sm-around {
align-content: space-around !important;
}
.align-content-sm-stretch {
align-content: stretch !important;
}
.align-self-sm-auto {
align-self: auto !important;
}
.align-self-sm-start {
align-self: flex-start !important;
}
.align-self-sm-end {
align-self: flex-end !important;
}
.align-self-sm-center {
align-self: center !important;
}
.align-self-sm-baseline {
align-self: baseline !important;
}
.align-self-sm-stretch {
align-self: stretch !important;
}
.order-sm-first {
order: -1 !important;
}
.order-sm-0 {
order: 0 !important;
}
.order-sm-1 {
order: 1 !important;
}
.order-sm-2 {
order: 2 !important;
}
.order-sm-3 {
order: 3 !important;
}
.order-sm-4 {
order: 4 !important;
}
.order-sm-5 {
order: 5 !important;
}
.order-sm-last {
order: 6 !important;
}
.m-sm-0 {
margin: 0 !important;
}
.m-sm-1 {
margin: 0.25rem !important;
}
.m-sm-2 {
margin: 0.5rem !important;
}
.m-sm-3 {
margin: 1rem !important;
}
.m-sm-4 {
margin: 1.5rem !important;
}
.m-sm-5 {
margin: 3rem !important;
}
.m-sm-auto {
margin: auto !important;
}
.mx-sm-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-sm-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-sm-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-sm-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-sm-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-sm-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-sm-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-sm-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-sm-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-sm-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-sm-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-sm-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-sm-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-sm-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-sm-0 {
margin-top: 0 !important;
}
.mt-sm-1 {
margin-top: 0.25rem !important;
}
.mt-sm-2 {
margin-top: 0.5rem !important;
}
.mt-sm-3 {
margin-top: 1rem !important;
}
.mt-sm-4 {
margin-top: 1.5rem !important;
}
.mt-sm-5 {
margin-top: 3rem !important;
}
.mt-sm-auto {
margin-top: auto !important;
}
.me-sm-0 {
margin-right: 0 !important;
}
.me-sm-1 {
margin-right: 0.25rem !important;
}
.me-sm-2 {
margin-right: 0.5rem !important;
}
.me-sm-3 {
margin-right: 1rem !important;
}
.me-sm-4 {
margin-right: 1.5rem !important;
}
.me-sm-5 {
margin-right: 3rem !important;
}
.me-sm-auto {
margin-right: auto !important;
}
.mb-sm-0 {
margin-bottom: 0 !important;
}
.mb-sm-1 {
margin-bottom: 0.25rem !important;
}
.mb-sm-2 {
margin-bottom: 0.5rem !important;
}
.mb-sm-3 {
margin-bottom: 1rem !important;
}
.mb-sm-4 {
margin-bottom: 1.5rem !important;
}
.mb-sm-5 {
margin-bottom: 3rem !important;
}
.mb-sm-auto {
margin-bottom: auto !important;
}
.ms-sm-0 {
margin-left: 0 !important;
}
.ms-sm-1 {
margin-left: 0.25rem !important;
}
.ms-sm-2 {
margin-left: 0.5rem !important;
}
.ms-sm-3 {
margin-left: 1rem !important;
}
.ms-sm-4 {
margin-left: 1.5rem !important;
}
.ms-sm-5 {
margin-left: 3rem !important;
}
.ms-sm-auto {
margin-left: auto !important;
}
.p-sm-0 {
padding: 0 !important;
}
.p-sm-1 {
padding: 0.25rem !important;
}
.p-sm-2 {
padding: 0.5rem !important;
}
.p-sm-3 {
padding: 1rem !important;
}
.p-sm-4 {
padding: 1.5rem !important;
}
.p-sm-5 {
padding: 3rem !important;
}
.px-sm-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-sm-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-sm-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-sm-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-sm-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-sm-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-sm-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-sm-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-sm-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-sm-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-sm-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-sm-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-sm-0 {
padding-top: 0 !important;
}
.pt-sm-1 {
padding-top: 0.25rem !important;
}
.pt-sm-2 {
padding-top: 0.5rem !important;
}
.pt-sm-3 {
padding-top: 1rem !important;
}
.pt-sm-4 {
padding-top: 1.5rem !important;
}
.pt-sm-5 {
padding-top: 3rem !important;
}
.pe-sm-0 {
padding-right: 0 !important;
}
.pe-sm-1 {
padding-right: 0.25rem !important;
}
.pe-sm-2 {
padding-right: 0.5rem !important;
}
.pe-sm-3 {
padding-right: 1rem !important;
}
.pe-sm-4 {
padding-right: 1.5rem !important;
}
.pe-sm-5 {
padding-right: 3rem !important;
}
.pb-sm-0 {
padding-bottom: 0 !important;
}
.pb-sm-1 {
padding-bottom: 0.25rem !important;
}
.pb-sm-2 {
padding-bottom: 0.5rem !important;
}
.pb-sm-3 {
padding-bottom: 1rem !important;
}
.pb-sm-4 {
padding-bottom: 1.5rem !important;
}
.pb-sm-5 {
padding-bottom: 3rem !important;
}
.ps-sm-0 {
padding-left: 0 !important;
}
.ps-sm-1 {
padding-left: 0.25rem !important;
}
.ps-sm-2 {
padding-left: 0.5rem !important;
}
.ps-sm-3 {
padding-left: 1rem !important;
}
.ps-sm-4 {
padding-left: 1.5rem !important;
}
.ps-sm-5 {
padding-left: 3rem !important;
}
.text-sm-start {
text-align: left !important;
}
.text-sm-end {
text-align: right !important;
}
.text-sm-center {
text-align: center !important;
}
}
@media (min-width: 768px) {
.float-md-start {
float: left !important;
}
.float-md-end {
float: right !important;
}
.float-md-none {
float: none !important;
}
.d-md-inline {
display: inline !important;
}
.d-md-inline-block {
display: inline-block !important;
}
.d-md-block {
display: block !important;
}
.d-md-grid {
display: grid !important;
}
.d-md-table {
display: table !important;
}
.d-md-table-row {
display: table-row !important;
}
.d-md-table-cell {
display: table-cell !important;
}
.d-md-flex {
display: flex !important;
}
.d-md-inline-flex {
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
flex: 1 1 auto !important;
}
.flex-md-row {
flex-direction: row !important;
}
.flex-md-column {
flex-direction: column !important;
}
.flex-md-row-reverse {
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
flex-grow: 0 !important;
}
.flex-md-grow-1 {
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
flex-shrink: 1 !important;
}
.flex-md-wrap {
flex-wrap: wrap !important;
}
.flex-md-nowrap {
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-md-0 {
gap: 0 !important;
}
.gap-md-1 {
gap: 0.25rem !important;
}
.gap-md-2 {
gap: 0.5rem !important;
}
.gap-md-3 {
gap: 1rem !important;
}
.gap-md-4 {
gap: 1.5rem !important;
}
.gap-md-5 {
gap: 3rem !important;
}
.justify-content-md-start {
justify-content: flex-start !important;
}
.justify-content-md-end {
justify-content: flex-end !important;
}
.justify-content-md-center {
justify-content: center !important;
}
.justify-content-md-between {
justify-content: space-between !important;
}
.justify-content-md-around {
justify-content: space-around !important;
}
.justify-content-md-evenly {
justify-content: space-evenly !important;
}
.align-items-md-start {
align-items: flex-start !important;
}
.align-items-md-end {
align-items: flex-end !important;
}
.align-items-md-center {
align-items: center !important;
}
.align-items-md-baseline {
align-items: baseline !important;
}
.align-items-md-stretch {
align-items: stretch !important;
}
.align-content-md-start {
align-content: flex-start !important;
}
.align-content-md-end {
align-content: flex-end !important;
}
.align-content-md-center {
align-content: center !important;
}
.align-content-md-between {
align-content: space-between !important;
}
.align-content-md-around {
align-content: space-around !important;
}
.align-content-md-stretch {
align-content: stretch !important;
}
.align-self-md-auto {
align-self: auto !important;
}
.align-self-md-start {
align-self: flex-start !important;
}
.align-self-md-end {
align-self: flex-end !important;
}
.align-self-md-center {
align-self: center !important;
}
.align-self-md-baseline {
align-self: baseline !important;
}
.align-self-md-stretch {
align-self: stretch !important;
}
.order-md-first {
order: -1 !important;
}
.order-md-0 {
order: 0 !important;
}
.order-md-1 {
order: 1 !important;
}
.order-md-2 {
order: 2 !important;
}
.order-md-3 {
order: 3 !important;
}
.order-md-4 {
order: 4 !important;
}
.order-md-5 {
order: 5 !important;
}
.order-md-last {
order: 6 !important;
}
.m-md-0 {
margin: 0 !important;
}
.m-md-1 {
margin: 0.25rem !important;
}
.m-md-2 {
margin: 0.5rem !important;
}
.m-md-3 {
margin: 1rem !important;
}
.m-md-4 {
margin: 1.5rem !important;
}
.m-md-5 {
margin: 3rem !important;
}
.m-md-auto {
margin: auto !important;
}
.mx-md-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-md-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-md-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-md-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-md-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-md-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-md-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-md-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-md-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-md-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-md-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-md-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-md-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-md-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-md-0 {
margin-top: 0 !important;
}
.mt-md-1 {
margin-top: 0.25rem !important;
}
.mt-md-2 {
margin-top: 0.5rem !important;
}
.mt-md-3 {
margin-top: 1rem !important;
}
.mt-md-4 {
margin-top: 1.5rem !important;
}
.mt-md-5 {
margin-top: 3rem !important;
}
.mt-md-auto {
margin-top: auto !important;
}
.me-md-0 {
margin-right: 0 !important;
}
.me-md-1 {
margin-right: 0.25rem !important;
}
.me-md-2 {
margin-right: 0.5rem !important;
}
.me-md-3 {
margin-right: 1rem !important;
}
.me-md-4 {
margin-right: 1.5rem !important;
}
.me-md-5 {
margin-right: 3rem !important;
}
.me-md-auto {
margin-right: auto !important;
}
.mb-md-0 {
margin-bottom: 0 !important;
}
.mb-md-1 {
margin-bottom: 0.25rem !important;
}
.mb-md-2 {
margin-bottom: 0.5rem !important;
}
.mb-md-3 {
margin-bottom: 1rem !important;
}
.mb-md-4 {
margin-bottom: 1.5rem !important;
}
.mb-md-5 {
margin-bottom: 3rem !important;
}
.mb-md-auto {
margin-bottom: auto !important;
}
.ms-md-0 {
margin-left: 0 !important;
}
.ms-md-1 {
margin-left: 0.25rem !important;
}
.ms-md-2 {
margin-left: 0.5rem !important;
}
.ms-md-3 {
margin-left: 1rem !important;
}
.ms-md-4 {
margin-left: 1.5rem !important;
}
.ms-md-5 {
margin-left: 3rem !important;
}
.ms-md-auto {
margin-left: auto !important;
}
.p-md-0 {
padding: 0 !important;
}
.p-md-1 {
padding: 0.25rem !important;
}
.p-md-2 {
padding: 0.5rem !important;
}
.p-md-3 {
padding: 1rem !important;
}
.p-md-4 {
padding: 1.5rem !important;
}
.p-md-5 {
padding: 3rem !important;
}
.px-md-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-md-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-md-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-md-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-md-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-md-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-md-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-md-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-md-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-md-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-md-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-md-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-md-0 {
padding-top: 0 !important;
}
.pt-md-1 {
padding-top: 0.25rem !important;
}
.pt-md-2 {
padding-top: 0.5rem !important;
}
.pt-md-3 {
padding-top: 1rem !important;
}
.pt-md-4 {
padding-top: 1.5rem !important;
}
.pt-md-5 {
padding-top: 3rem !important;
}
.pe-md-0 {
padding-right: 0 !important;
}
.pe-md-1 {
padding-right: 0.25rem !important;
}
.pe-md-2 {
padding-right: 0.5rem !important;
}
.pe-md-3 {
padding-right: 1rem !important;
}
.pe-md-4 {
padding-right: 1.5rem !important;
}
.pe-md-5 {
padding-right: 3rem !important;
}
.pb-md-0 {
padding-bottom: 0 !important;
}
.pb-md-1 {
padding-bottom: 0.25rem !important;
}
.pb-md-2 {
padding-bottom: 0.5rem !important;
}
.pb-md-3 {
padding-bottom: 1rem !important;
}
.pb-md-4 {
padding-bottom: 1.5rem !important;
}
.pb-md-5 {
padding-bottom: 3rem !important;
}
.ps-md-0 {
padding-left: 0 !important;
}
.ps-md-1 {
padding-left: 0.25rem !important;
}
.ps-md-2 {
padding-left: 0.5rem !important;
}
.ps-md-3 {
padding-left: 1rem !important;
}
.ps-md-4 {
padding-left: 1.5rem !important;
}
.ps-md-5 {
padding-left: 3rem !important;
}
.text-md-start {
text-align: left !important;
}
.text-md-end {
text-align: right !important;
}
.text-md-center {
text-align: center !important;
}
}
@media (min-width: 992px) {
.float-lg-start {
float: left !important;
}
.float-lg-end {
float: right !important;
}
.float-lg-none {
float: none !important;
}
.d-lg-inline {
display: inline !important;
}
.d-lg-inline-block {
display: inline-block !important;
}
.d-lg-block {
display: block !important;
}
.d-lg-grid {
display: grid !important;
}
.d-lg-table {
display: table !important;
}
.d-lg-table-row {
display: table-row !important;
}
.d-lg-table-cell {
display: table-cell !important;
}
.d-lg-flex {
display: flex !important;
}
.d-lg-inline-flex {
display: inline-flex !important;
}
.d-lg-none {
display: none !important;
}
.flex-lg-fill {
flex: 1 1 auto !important;
}
.flex-lg-row {
flex-direction: row !important;
}
.flex-lg-column {
flex-direction: column !important;
}
.flex-lg-row-reverse {
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
flex-direction: column-reverse !important;
}
.flex-lg-grow-0 {
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
flex-shrink: 1 !important;
}
.flex-lg-wrap {
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-lg-0 {
gap: 0 !important;
}
.gap-lg-1 {
gap: 0.25rem !important;
}
.gap-lg-2 {
gap: 0.5rem !important;
}
.gap-lg-3 {
gap: 1rem !important;
}
.gap-lg-4 {
gap: 1.5rem !important;
}
.gap-lg-5 {
gap: 3rem !important;
}
.justify-content-lg-start {
justify-content: flex-start !important;
}
.justify-content-lg-end {
justify-content: flex-end !important;
}
.justify-content-lg-center {
justify-content: center !important;
}
.justify-content-lg-between {
justify-content: space-between !important;
}
.justify-content-lg-around {
justify-content: space-around !important;
}
.justify-content-lg-evenly {
justify-content: space-evenly !important;
}
.align-items-lg-start {
align-items: flex-start !important;
}
.align-items-lg-end {
align-items: flex-end !important;
}
.align-items-lg-center {
align-items: center !important;
}
.align-items-lg-baseline {
align-items: baseline !important;
}
.align-items-lg-stretch {
align-items: stretch !important;
}
.align-content-lg-start {
align-content: flex-start !important;
}
.align-content-lg-end {
align-content: flex-end !important;
}
.align-content-lg-center {
align-content: center !important;
}
.align-content-lg-between {
align-content: space-between !important;
}
.align-content-lg-around {
align-content: space-around !important;
}
.align-content-lg-stretch {
align-content: stretch !important;
}
.align-self-lg-auto {
align-self: auto !important;
}
.align-self-lg-start {
align-self: flex-start !important;
}
.align-self-lg-end {
align-self: flex-end !important;
}
.align-self-lg-center {
align-self: center !important;
}
.align-self-lg-baseline {
align-self: baseline !important;
}
.align-self-lg-stretch {
align-self: stretch !important;
}
.order-lg-first {
order: -1 !important;
}
.order-lg-0 {
order: 0 !important;
}
.order-lg-1 {
order: 1 !important;
}
.order-lg-2 {
order: 2 !important;
}
.order-lg-3 {
order: 3 !important;
}
.order-lg-4 {
order: 4 !important;
}
.order-lg-5 {
order: 5 !important;
}
.order-lg-last {
order: 6 !important;
}
.m-lg-0 {
margin: 0 !important;
}
.m-lg-1 {
margin: 0.25rem !important;
}
.m-lg-2 {
margin: 0.5rem !important;
}
.m-lg-3 {
margin: 1rem !important;
}
.m-lg-4 {
margin: 1.5rem !important;
}
.m-lg-5 {
margin: 3rem !important;
}
.m-lg-auto {
margin: auto !important;
}
.mx-lg-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-lg-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-lg-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-lg-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-lg-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-lg-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-lg-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-lg-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-lg-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-lg-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-lg-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-lg-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-lg-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-lg-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-lg-0 {
margin-top: 0 !important;
}
.mt-lg-1 {
margin-top: 0.25rem !important;
}
.mt-lg-2 {
margin-top: 0.5rem !important;
}
.mt-lg-3 {
margin-top: 1rem !important;
}
.mt-lg-4 {
margin-top: 1.5rem !important;
}
.mt-lg-5 {
margin-top: 3rem !important;
}
.mt-lg-auto {
margin-top: auto !important;
}
.me-lg-0 {
margin-right: 0 !important;
}
.me-lg-1 {
margin-right: 0.25rem !important;
}
.me-lg-2 {
margin-right: 0.5rem !important;
}
.me-lg-3 {
margin-right: 1rem !important;
}
.me-lg-4 {
margin-right: 1.5rem !important;
}
.me-lg-5 {
margin-right: 3rem !important;
}
.me-lg-auto {
margin-right: auto !important;
}
.mb-lg-0 {
margin-bottom: 0 !important;
}
.mb-lg-1 {
margin-bottom: 0.25rem !important;
}
.mb-lg-2 {
margin-bottom: 0.5rem !important;
}
.mb-lg-3 {
margin-bottom: 1rem !important;
}
.mb-lg-4 {
margin-bottom: 1.5rem !important;
}
.mb-lg-5 {
margin-bottom: 3rem !important;
}
.mb-lg-auto {
margin-bottom: auto !important;
}
.ms-lg-0 {
margin-left: 0 !important;
}
.ms-lg-1 {
margin-left: 0.25rem !important;
}
.ms-lg-2 {
margin-left: 0.5rem !important;
}
.ms-lg-3 {
margin-left: 1rem !important;
}
.ms-lg-4 {
margin-left: 1.5rem !important;
}
.ms-lg-5 {
margin-left: 3rem !important;
}
.ms-lg-auto {
margin-left: auto !important;
}
.p-lg-0 {
padding: 0 !important;
}
.p-lg-1 {
padding: 0.25rem !important;
}
.p-lg-2 {
padding: 0.5rem !important;
}
.p-lg-3 {
padding: 1rem !important;
}
.p-lg-4 {
padding: 1.5rem !important;
}
.p-lg-5 {
padding: 3rem !important;
}
.px-lg-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-lg-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-lg-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-lg-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-lg-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-lg-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-lg-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-lg-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-lg-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-lg-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-lg-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-lg-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-lg-0 {
padding-top: 0 !important;
}
.pt-lg-1 {
padding-top: 0.25rem !important;
}
.pt-lg-2 {
padding-top: 0.5rem !important;
}
.pt-lg-3 {
padding-top: 1rem !important;
}
.pt-lg-4 {
padding-top: 1.5rem !important;
}
.pt-lg-5 {
padding-top: 3rem !important;
}
.pe-lg-0 {
padding-right: 0 !important;
}
.pe-lg-1 {
padding-right: 0.25rem !important;
}
.pe-lg-2 {
padding-right: 0.5rem !important;
}
.pe-lg-3 {
padding-right: 1rem !important;
}
.pe-lg-4 {
padding-right: 1.5rem !important;
}
.pe-lg-5 {
padding-right: 3rem !important;
}
.pb-lg-0 {
padding-bottom: 0 !important;
}
.pb-lg-1 {
padding-bottom: 0.25rem !important;
}
.pb-lg-2 {
padding-bottom: 0.5rem !important;
}
.pb-lg-3 {
padding-bottom: 1rem !important;
}
.pb-lg-4 {
padding-bottom: 1.5rem !important;
}
.pb-lg-5 {
padding-bottom: 3rem !important;
}
.ps-lg-0 {
padding-left: 0 !important;
}
.ps-lg-1 {
padding-left: 0.25rem !important;
}
.ps-lg-2 {
padding-left: 0.5rem !important;
}
.ps-lg-3 {
padding-left: 1rem !important;
}
.ps-lg-4 {
padding-left: 1.5rem !important;
}
.ps-lg-5 {
padding-left: 3rem !important;
}
.text-lg-start {
text-align: left !important;
}
.text-lg-end {
text-align: right !important;
}
.text-lg-center {
text-align: center !important;
}
}
@media (min-width: 1200px) {
.float-xl-start {
float: left !important;
}
.float-xl-end {
float: right !important;
}
.float-xl-none {
float: none !important;
}
.d-xl-inline {
display: inline !important;
}
.d-xl-inline-block {
display: inline-block !important;
}
.d-xl-block {
display: block !important;
}
.d-xl-grid {
display: grid !important;
}
.d-xl-table {
display: table !important;
}
.d-xl-table-row {
display: table-row !important;
}
.d-xl-table-cell {
display: table-cell !important;
}
.d-xl-flex {
display: flex !important;
}
.d-xl-inline-flex {
display: inline-flex !important;
}
.d-xl-none {
display: none !important;
}
.flex-xl-fill {
flex: 1 1 auto !important;
}
.flex-xl-row {
flex-direction: row !important;
}
.flex-xl-column {
flex-direction: column !important;
}
.flex-xl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xl-grow-0 {
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
flex-shrink: 1 !important;
}
.flex-xl-wrap {
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-xl-0 {
gap: 0 !important;
}
.gap-xl-1 {
gap: 0.25rem !important;
}
.gap-xl-2 {
gap: 0.5rem !important;
}
.gap-xl-3 {
gap: 1rem !important;
}
.gap-xl-4 {
gap: 1.5rem !important;
}
.gap-xl-5 {
gap: 3rem !important;
}
.justify-content-xl-start {
justify-content: flex-start !important;
}
.justify-content-xl-end {
justify-content: flex-end !important;
}
.justify-content-xl-center {
justify-content: center !important;
}
.justify-content-xl-between {
justify-content: space-between !important;
}
.justify-content-xl-around {
justify-content: space-around !important;
}
.justify-content-xl-evenly {
justify-content: space-evenly !important;
}
.align-items-xl-start {
align-items: flex-start !important;
}
.align-items-xl-end {
align-items: flex-end !important;
}
.align-items-xl-center {
align-items: center !important;
}
.align-items-xl-baseline {
align-items: baseline !important;
}
.align-items-xl-stretch {
align-items: stretch !important;
}
.align-content-xl-start {
align-content: flex-start !important;
}
.align-content-xl-end {
align-content: flex-end !important;
}
.align-content-xl-center {
align-content: center !important;
}
.align-content-xl-between {
align-content: space-between !important;
}
.align-content-xl-around {
align-content: space-around !important;
}
.align-content-xl-stretch {
align-content: stretch !important;
}
.align-self-xl-auto {
align-self: auto !important;
}
.align-self-xl-start {
align-self: flex-start !important;
}
.align-self-xl-end {
align-self: flex-end !important;
}
.align-self-xl-center {
align-self: center !important;
}
.align-self-xl-baseline {
align-self: baseline !important;
}
.align-self-xl-stretch {
align-self: stretch !important;
}
.order-xl-first {
order: -1 !important;
}
.order-xl-0 {
order: 0 !important;
}
.order-xl-1 {
order: 1 !important;
}
.order-xl-2 {
order: 2 !important;
}
.order-xl-3 {
order: 3 !important;
}
.order-xl-4 {
order: 4 !important;
}
.order-xl-5 {
order: 5 !important;
}
.order-xl-last {
order: 6 !important;
}
.m-xl-0 {
margin: 0 !important;
}
.m-xl-1 {
margin: 0.25rem !important;
}
.m-xl-2 {
margin: 0.5rem !important;
}
.m-xl-3 {
margin: 1rem !important;
}
.m-xl-4 {
margin: 1.5rem !important;
}
.m-xl-5 {
margin: 3rem !important;
}
.m-xl-auto {
margin: auto !important;
}
.mx-xl-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-xl-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-xl-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-xl-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-xl-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-xl-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-xl-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-xl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xl-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xl-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xl-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xl-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xl-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-xl-0 {
margin-top: 0 !important;
}
.mt-xl-1 {
margin-top: 0.25rem !important;
}
.mt-xl-2 {
margin-top: 0.5rem !important;
}
.mt-xl-3 {
margin-top: 1rem !important;
}
.mt-xl-4 {
margin-top: 1.5rem !important;
}
.mt-xl-5 {
margin-top: 3rem !important;
}
.mt-xl-auto {
margin-top: auto !important;
}
.me-xl-0 {
margin-right: 0 !important;
}
.me-xl-1 {
margin-right: 0.25rem !important;
}
.me-xl-2 {
margin-right: 0.5rem !important;
}
.me-xl-3 {
margin-right: 1rem !important;
}
.me-xl-4 {
margin-right: 1.5rem !important;
}
.me-xl-5 {
margin-right: 3rem !important;
}
.me-xl-auto {
margin-right: auto !important;
}
.mb-xl-0 {
margin-bottom: 0 !important;
}
.mb-xl-1 {
margin-bottom: 0.25rem !important;
}
.mb-xl-2 {
margin-bottom: 0.5rem !important;
}
.mb-xl-3 {
margin-bottom: 1rem !important;
}
.mb-xl-4 {
margin-bottom: 1.5rem !important;
}
.mb-xl-5 {
margin-bottom: 3rem !important;
}
.mb-xl-auto {
margin-bottom: auto !important;
}
.ms-xl-0 {
margin-left: 0 !important;
}
.ms-xl-1 {
margin-left: 0.25rem !important;
}
.ms-xl-2 {
margin-left: 0.5rem !important;
}
.ms-xl-3 {
margin-left: 1rem !important;
}
.ms-xl-4 {
margin-left: 1.5rem !important;
}
.ms-xl-5 {
margin-left: 3rem !important;
}
.ms-xl-auto {
margin-left: auto !important;
}
.p-xl-0 {
padding: 0 !important;
}
.p-xl-1 {
padding: 0.25rem !important;
}
.p-xl-2 {
padding: 0.5rem !important;
}
.p-xl-3 {
padding: 1rem !important;
}
.p-xl-4 {
padding: 1.5rem !important;
}
.p-xl-5 {
padding: 3rem !important;
}
.px-xl-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-xl-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-xl-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-xl-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-xl-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-xl-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-xl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xl-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xl-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xl-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xl-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xl-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-xl-0 {
padding-top: 0 !important;
}
.pt-xl-1 {
padding-top: 0.25rem !important;
}
.pt-xl-2 {
padding-top: 0.5rem !important;
}
.pt-xl-3 {
padding-top: 1rem !important;
}
.pt-xl-4 {
padding-top: 1.5rem !important;
}
.pt-xl-5 {
padding-top: 3rem !important;
}
.pe-xl-0 {
padding-right: 0 !important;
}
.pe-xl-1 {
padding-right: 0.25rem !important;
}
.pe-xl-2 {
padding-right: 0.5rem !important;
}
.pe-xl-3 {
padding-right: 1rem !important;
}
.pe-xl-4 {
padding-right: 1.5rem !important;
}
.pe-xl-5 {
padding-right: 3rem !important;
}
.pb-xl-0 {
padding-bottom: 0 !important;
}
.pb-xl-1 {
padding-bottom: 0.25rem !important;
}
.pb-xl-2 {
padding-bottom: 0.5rem !important;
}
.pb-xl-3 {
padding-bottom: 1rem !important;
}
.pb-xl-4 {
padding-bottom: 1.5rem !important;
}
.pb-xl-5 {
padding-bottom: 3rem !important;
}
.ps-xl-0 {
padding-left: 0 !important;
}
.ps-xl-1 {
padding-left: 0.25rem !important;
}
.ps-xl-2 {
padding-left: 0.5rem !important;
}
.ps-xl-3 {
padding-left: 1rem !important;
}
.ps-xl-4 {
padding-left: 1.5rem !important;
}
.ps-xl-5 {
padding-left: 3rem !important;
}
.text-xl-start {
text-align: left !important;
}
.text-xl-end {
text-align: right !important;
}
.text-xl-center {
text-align: center !important;
}
}
@media (min-width: 1400px) {
.float-xxl-start {
float: left !important;
}
.float-xxl-end {
float: right !important;
}
.float-xxl-none {
float: none !important;
}
.d-xxl-inline {
display: inline !important;
}
.d-xxl-inline-block {
display: inline-block !important;
}
.d-xxl-block {
display: block !important;
}
.d-xxl-grid {
display: grid !important;
}
.d-xxl-table {
display: table !important;
}
.d-xxl-table-row {
display: table-row !important;
}
.d-xxl-table-cell {
display: table-cell !important;
}
.d-xxl-flex {
display: flex !important;
}
.d-xxl-inline-flex {
display: inline-flex !important;
}
.d-xxl-none {
display: none !important;
}
.flex-xxl-fill {
flex: 1 1 auto !important;
}
.flex-xxl-row {
flex-direction: row !important;
}
.flex-xxl-column {
flex-direction: column !important;
}
.flex-xxl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xxl-grow-0 {
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
flex-shrink: 1 !important;
}
.flex-xxl-wrap {
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-xxl-0 {
gap: 0 !important;
}
.gap-xxl-1 {
gap: 0.25rem !important;
}
.gap-xxl-2 {
gap: 0.5rem !important;
}
.gap-xxl-3 {
gap: 1rem !important;
}
.gap-xxl-4 {
gap: 1.5rem !important;
}
.gap-xxl-5 {
gap: 3rem !important;
}
.justify-content-xxl-start {
justify-content: flex-start !important;
}
.justify-content-xxl-end {
justify-content: flex-end !important;
}
.justify-content-xxl-center {
justify-content: center !important;
}
.justify-content-xxl-between {
justify-content: space-between !important;
}
.justify-content-xxl-around {
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
justify-content: space-evenly !important;
}
.align-items-xxl-start {
align-items: flex-start !important;
}
.align-items-xxl-end {
align-items: flex-end !important;
}
.align-items-xxl-center {
align-items: center !important;
}
.align-items-xxl-baseline {
align-items: baseline !important;
}
.align-items-xxl-stretch {
align-items: stretch !important;
}
.align-content-xxl-start {
align-content: flex-start !important;
}
.align-content-xxl-end {
align-content: flex-end !important;
}
.align-content-xxl-center {
align-content: center !important;
}
.align-content-xxl-between {
align-content: space-between !important;
}
.align-content-xxl-around {
align-content: space-around !important;
}
.align-content-xxl-stretch {
align-content: stretch !important;
}
.align-self-xxl-auto {
align-self: auto !important;
}
.align-self-xxl-start {
align-self: flex-start !important;
}
.align-self-xxl-end {
align-self: flex-end !important;
}
.align-self-xxl-center {
align-self: center !important;
}
.align-self-xxl-baseline {
align-self: baseline !important;
}
.align-self-xxl-stretch {
align-self: stretch !important;
}
.order-xxl-first {
order: -1 !important;
}
.order-xxl-0 {
order: 0 !important;
}
.order-xxl-1 {
order: 1 !important;
}
.order-xxl-2 {
order: 2 !important;
}
.order-xxl-3 {
order: 3 !important;
}
.order-xxl-4 {
order: 4 !important;
}
.order-xxl-5 {
order: 5 !important;
}
.order-xxl-last {
order: 6 !important;
}
.m-xxl-0 {
margin: 0 !important;
}
.m-xxl-1 {
margin: 0.25rem !important;
}
.m-xxl-2 {
margin: 0.5rem !important;
}
.m-xxl-3 {
margin: 1rem !important;
}
.m-xxl-4 {
margin: 1.5rem !important;
}
.m-xxl-5 {
margin: 3rem !important;
}
.m-xxl-auto {
margin: auto !important;
}
.mx-xxl-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-xxl-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-xxl-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-xxl-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-xxl-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-xxl-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-xxl-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-xxl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xxl-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xxl-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xxl-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xxl-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xxl-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xxl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-xxl-0 {
margin-top: 0 !important;
}
.mt-xxl-1 {
margin-top: 0.25rem !important;
}
.mt-xxl-2 {
margin-top: 0.5rem !important;
}
.mt-xxl-3 {
margin-top: 1rem !important;
}
.mt-xxl-4 {
margin-top: 1.5rem !important;
}
.mt-xxl-5 {
margin-top: 3rem !important;
}
.mt-xxl-auto {
margin-top: auto !important;
}
.me-xxl-0 {
margin-right: 0 !important;
}
.me-xxl-1 {
margin-right: 0.25rem !important;
}
.me-xxl-2 {
margin-right: 0.5rem !important;
}
.me-xxl-3 {
margin-right: 1rem !important;
}
.me-xxl-4 {
margin-right: 1.5rem !important;
}
.me-xxl-5 {
margin-right: 3rem !important;
}
.me-xxl-auto {
margin-right: auto !important;
}
.mb-xxl-0 {
margin-bottom: 0 !important;
}
.mb-xxl-1 {
margin-bottom: 0.25rem !important;
}
.mb-xxl-2 {
margin-bottom: 0.5rem !important;
}
.mb-xxl-3 {
margin-bottom: 1rem !important;
}
.mb-xxl-4 {
margin-bottom: 1.5rem !important;
}
.mb-xxl-5 {
margin-bottom: 3rem !important;
}
.mb-xxl-auto {
margin-bottom: auto !important;
}
.ms-xxl-0 {
margin-left: 0 !important;
}
.ms-xxl-1 {
margin-left: 0.25rem !important;
}
.ms-xxl-2 {
margin-left: 0.5rem !important;
}
.ms-xxl-3 {
margin-left: 1rem !important;
}
.ms-xxl-4 {
margin-left: 1.5rem !important;
}
.ms-xxl-5 {
margin-left: 3rem !important;
}
.ms-xxl-auto {
margin-left: auto !important;
}
.p-xxl-0 {
padding: 0 !important;
}
.p-xxl-1 {
padding: 0.25rem !important;
}
.p-xxl-2 {
padding: 0.5rem !important;
}
.p-xxl-3 {
padding: 1rem !important;
}
.p-xxl-4 {
padding: 1.5rem !important;
}
.p-xxl-5 {
padding: 3rem !important;
}
.px-xxl-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-xxl-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-xxl-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-xxl-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-xxl-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-xxl-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-xxl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xxl-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xxl-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xxl-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xxl-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xxl-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-xxl-0 {
padding-top: 0 !important;
}
.pt-xxl-1 {
padding-top: 0.25rem !important;
}
.pt-xxl-2 {
padding-top: 0.5rem !important;
}
.pt-xxl-3 {
padding-top: 1rem !important;
}
.pt-xxl-4 {
padding-top: 1.5rem !important;
}
.pt-xxl-5 {
padding-top: 3rem !important;
}
.pe-xxl-0 {
padding-right: 0 !important;
}
.pe-xxl-1 {
padding-right: 0.25rem !important;
}
.pe-xxl-2 {
padding-right: 0.5rem !important;
}
.pe-xxl-3 {
padding-right: 1rem !important;
}
.pe-xxl-4 {
padding-right: 1.5rem !important;
}
.pe-xxl-5 {
padding-right: 3rem !important;
}
.pb-xxl-0 {
padding-bottom: 0 !important;
}
.pb-xxl-1 {
padding-bottom: 0.25rem !important;
}
.pb-xxl-2 {
padding-bottom: 0.5rem !important;
}
.pb-xxl-3 {
padding-bottom: 1rem !important;
}
.pb-xxl-4 {
padding-bottom: 1.5rem !important;
}
.pb-xxl-5 {
padding-bottom: 3rem !important;
}
.ps-xxl-0 {
padding-left: 0 !important;
}
.ps-xxl-1 {
padding-left: 0.25rem !important;
}
.ps-xxl-2 {
padding-left: 0.5rem !important;
}
.ps-xxl-3 {
padding-left: 1rem !important;
}
.ps-xxl-4 {
padding-left: 1.5rem !important;
}
.ps-xxl-5 {
padding-left: 3rem !important;
}
.text-xxl-start {
text-align: left !important;
}
.text-xxl-end {
text-align: right !important;
}
.text-xxl-center {
text-align: center !important;
}
}
@media (min-width: 1200px) {
.fs-1 {
font-size: 2.5rem !important;
}
.fs-2 {
font-size: 2rem !important;
}
.fs-3 {
font-size: 1.75rem !important;
}
.fs-4 {
font-size: 1.5rem !important;
}
.fs-sm-1 {
font-size: 2.5rem !important;
}
.fs-sm-2 {
font-size: 2rem !important;
}
.fs-sm-3 {
font-size: 1.75rem !important;
}
.fs-sm-4 {
font-size: 1.5rem !important;
}
.fs-md-1 {
font-size: 2.5rem !important;
}
.fs-md-2 {
font-size: 2rem !important;
}
.fs-md-3 {
font-size: 1.75rem !important;
}
.fs-md-4 {
font-size: 1.5rem !important;
}
.fs-lg-1 {
font-size: 2.5rem !important;
}
.fs-lg-2 {
font-size: 2rem !important;
}
.fs-lg-3 {
font-size: 1.75rem !important;
}
.fs-lg-4 {
font-size: 1.5rem !important;
}
}
@media print {
.d-print-inline {
display: inline !important;
}
.d-print-inline-block {
display: inline-block !important;
}
.d-print-block {
display: block !important;
}
.d-print-grid {
display: grid !important;
}
.d-print-table {
display: table !important;
}
.d-print-table-row {
display: table-row !important;
}
.d-print-table-cell {
display: table-cell !important;
}
.d-print-flex {
display: flex !important;
}
.d-print-inline-flex {
display: inline-flex !important;
}
.d-print-none {
display: none !important;
}
}
| 0.604983 | 0.04627 |
.isbl-editor-light .hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: white;
color: black;
}
/* Base color: saturation 0; */
.isbl-editor-light .hljs,
.isbl-editor-light .hljs-subst {
color: #000000;
}
.isbl-editor-light .hljs-comment {
color: #555555;
font-style: italic;
}
.isbl-editor-light .hljs-keyword,
.isbl-editor-light .hljs-attribute,
.isbl-editor-light .hljs-selector-tag,
.isbl-editor-light .hljs-meta-keyword,
.isbl-editor-light .hljs-doctag,
.isbl-editor-light .hljs-name {
color: #000000;
font-weight: bold;
}
/* User color: hue: 0 */
.isbl-editor-light .hljs-string {
color: #000080;
}
.isbl-editor-light .hljs-type,
.isbl-editor-light .hljs-number,
.isbl-editor-light .hljs-selector-id,
.isbl-editor-light .hljs-selector-class,
.isbl-editor-light .hljs-quote,
.isbl-editor-light .hljs-template-tag,
.isbl-editor-light .hljs-deletion {
color: #000000;
}
.isbl-editor-light .hljs-title,
.isbl-editor-light .hljs-section {
color: #fb2c00;
}
.isbl-editor-light .hljs-title>.isbl-editor-light .hljs-built_in {
color: #008080;
font-weight: normal;
}
.isbl-editor-light .hljs-regexp,
.isbl-editor-light .hljs-symbol,
.isbl-editor-light .hljs-variable,
.isbl-editor-light .hljs-template-variable,
.isbl-editor-light .hljs-link,
.isbl-editor-light .hljs-selector-attr,
.isbl-editor-light .hljs-selector-pseudo {
color: #5e1700;
}
/* Language color: hue: 90; */
.isbl-editor-light .hljs-built_in,
.isbl-editor-light .hljs-literal {
color: #000080;
font-weight: bold;
}
.isbl-editor-light .hljs-bullet,
.isbl-editor-light .hljs-code,
.isbl-editor-light .hljs-addition {
color: #397300;
}
.isbl-editor-light .hljs-class {
color: #6f1C00;
font-weight: bold;
}
/* Meta color: hue: 200 */
.isbl-editor-light .hljs-meta {
color: #1f7199;
}
.isbl-editor-light .hljs-meta-string {
color: #4d99bf;
}
/* Misc effects */
.isbl-editor-light .hljs-emphasis {
font-style: italic;
}
.isbl-editor-light .hljs-strong {
font-weight: bold;
}
|
src/modified-styles/isbl-editor-light.css
|
.isbl-editor-light .hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: white;
color: black;
}
/* Base color: saturation 0; */
.isbl-editor-light .hljs,
.isbl-editor-light .hljs-subst {
color: #000000;
}
.isbl-editor-light .hljs-comment {
color: #555555;
font-style: italic;
}
.isbl-editor-light .hljs-keyword,
.isbl-editor-light .hljs-attribute,
.isbl-editor-light .hljs-selector-tag,
.isbl-editor-light .hljs-meta-keyword,
.isbl-editor-light .hljs-doctag,
.isbl-editor-light .hljs-name {
color: #000000;
font-weight: bold;
}
/* User color: hue: 0 */
.isbl-editor-light .hljs-string {
color: #000080;
}
.isbl-editor-light .hljs-type,
.isbl-editor-light .hljs-number,
.isbl-editor-light .hljs-selector-id,
.isbl-editor-light .hljs-selector-class,
.isbl-editor-light .hljs-quote,
.isbl-editor-light .hljs-template-tag,
.isbl-editor-light .hljs-deletion {
color: #000000;
}
.isbl-editor-light .hljs-title,
.isbl-editor-light .hljs-section {
color: #fb2c00;
}
.isbl-editor-light .hljs-title>.isbl-editor-light .hljs-built_in {
color: #008080;
font-weight: normal;
}
.isbl-editor-light .hljs-regexp,
.isbl-editor-light .hljs-symbol,
.isbl-editor-light .hljs-variable,
.isbl-editor-light .hljs-template-variable,
.isbl-editor-light .hljs-link,
.isbl-editor-light .hljs-selector-attr,
.isbl-editor-light .hljs-selector-pseudo {
color: #5e1700;
}
/* Language color: hue: 90; */
.isbl-editor-light .hljs-built_in,
.isbl-editor-light .hljs-literal {
color: #000080;
font-weight: bold;
}
.isbl-editor-light .hljs-bullet,
.isbl-editor-light .hljs-code,
.isbl-editor-light .hljs-addition {
color: #397300;
}
.isbl-editor-light .hljs-class {
color: #6f1C00;
font-weight: bold;
}
/* Meta color: hue: 200 */
.isbl-editor-light .hljs-meta {
color: #1f7199;
}
.isbl-editor-light .hljs-meta-string {
color: #4d99bf;
}
/* Misc effects */
.isbl-editor-light .hljs-emphasis {
font-style: italic;
}
.isbl-editor-light .hljs-strong {
font-weight: bold;
}
| 0.434461 | 0.152884 |
.validate_label_red{color:#f00;}
.dropdown-menu{padding:0 !important;}
.dropdown-menu > li > a{border-bottom:1px solid #fff;}
.navbar-default .navbar-nav .open .dropdown-menu > li > a{color:#fff;}
@media screen and (max-width: 768px) {
.navbar-header{border-bottom:1px solid #bc9844 !important;}
}
@media (max-width : 768px) {
.title-footer{font-size: 25px !important;}
}
@media (max-width : 800px) {
.title-footer{font-size: 25px !important;}
}
.fa-lg{font-size:2em !important;}
.social a{
color: #bc9844;
}
.social a:hover{
background-color: rgba(27,49,125,0.8);
}
.border-top{border-top: 1px solid #fff;width: 100%;}
.center-social-media{padding: 20px 40px;}
.backround-footer{
background-color: white;
width: 300px;
}
.title-mdeia{font-size: 30px;color: #1b317d;font-weight: 600;}
/*--footer--*/
.title-footer{font-size: 25px;color:white; font-weight: bolder;padding-bottom: 20px;}
.footer {
padding: 2em 0 2em;
/*background-color: #1b317d;*/
background-color: #000;
}
.footer ul li a {
font-size: 1.1em;
color: #fff;
}
.footer ul li a:hover{
color:#8EB021;
}
.footer p {
font-size: 14px;
color: #fff;
}
/*--//footer--*/
.padding-top-lg-extra{padding-top: 50px;}
.padding-top-lg{padding-top: 40px}
.padding-top-md{padding-top: 30px;}
.padding-top-sm{padding-top: 20px;}
.padding-top-xs{padding-top: 10px;}
.padding-bottom-lg-extra{padding-bottom: 60px;}
.padding-bottom-lg{padding-bottom: 50px;}
.padding-bottom-md{padding-bottom: 40px;}
.padding-bottom-sm{padding-bottom: 30px;}
.padding-bottom{padding-bottom: 15px;}
.font-size-lg-extra{font-size: 40px;}
.font-size-lg{font-size: 36px;}
.font-size-sm{font-size: 25px}
.font-size-sm-extra{font-size: 18px}
.font-size-sm-extra-small{font-size: 15px}
.paragraph{font-size: 16px}
.title-article{font-size: 16px}
.title-article-alt{font-size: 22px;color:#1b317d;padding-bottom:10px;}
.bold{font-weight: 900;}
.text-left{float:left;}
.text-right{float:right;}
.padding-left-lg-extra{padding-left:50px;}
.padding-left-lg{padding-left:40px;}
.padding-left-md{padding-left:30px;}
.padding-left-sm{padding-left:20px;}
.padding-right-lg-extra{padding-right:50px;}
.padding-right-lg{padding-right:40px;}
.padding-righ-md{padding-right:30px;}
.padding-right-sm{padding-right:20px;}
.padding-lg-extra{padding:50px 50px}
.padding-lg{padding:40px 40px}
.padding-md{padding:30px 30px}
.padding-sm{padding:20px 20px}
.padding{padding:10px 10px;}
.font-weight{font-weight: 700;}
.color-parent{color: #1b317d !important;}
.color-child{color: #bc9844 !important}
.color-general{color: #777 !important}
|
public/css/custome.css
|
.validate_label_red{color:#f00;}
.dropdown-menu{padding:0 !important;}
.dropdown-menu > li > a{border-bottom:1px solid #fff;}
.navbar-default .navbar-nav .open .dropdown-menu > li > a{color:#fff;}
@media screen and (max-width: 768px) {
.navbar-header{border-bottom:1px solid #bc9844 !important;}
}
@media (max-width : 768px) {
.title-footer{font-size: 25px !important;}
}
@media (max-width : 800px) {
.title-footer{font-size: 25px !important;}
}
.fa-lg{font-size:2em !important;}
.social a{
color: #bc9844;
}
.social a:hover{
background-color: rgba(27,49,125,0.8);
}
.border-top{border-top: 1px solid #fff;width: 100%;}
.center-social-media{padding: 20px 40px;}
.backround-footer{
background-color: white;
width: 300px;
}
.title-mdeia{font-size: 30px;color: #1b317d;font-weight: 600;}
/*--footer--*/
.title-footer{font-size: 25px;color:white; font-weight: bolder;padding-bottom: 20px;}
.footer {
padding: 2em 0 2em;
/*background-color: #1b317d;*/
background-color: #000;
}
.footer ul li a {
font-size: 1.1em;
color: #fff;
}
.footer ul li a:hover{
color:#8EB021;
}
.footer p {
font-size: 14px;
color: #fff;
}
/*--//footer--*/
.padding-top-lg-extra{padding-top: 50px;}
.padding-top-lg{padding-top: 40px}
.padding-top-md{padding-top: 30px;}
.padding-top-sm{padding-top: 20px;}
.padding-top-xs{padding-top: 10px;}
.padding-bottom-lg-extra{padding-bottom: 60px;}
.padding-bottom-lg{padding-bottom: 50px;}
.padding-bottom-md{padding-bottom: 40px;}
.padding-bottom-sm{padding-bottom: 30px;}
.padding-bottom{padding-bottom: 15px;}
.font-size-lg-extra{font-size: 40px;}
.font-size-lg{font-size: 36px;}
.font-size-sm{font-size: 25px}
.font-size-sm-extra{font-size: 18px}
.font-size-sm-extra-small{font-size: 15px}
.paragraph{font-size: 16px}
.title-article{font-size: 16px}
.title-article-alt{font-size: 22px;color:#1b317d;padding-bottom:10px;}
.bold{font-weight: 900;}
.text-left{float:left;}
.text-right{float:right;}
.padding-left-lg-extra{padding-left:50px;}
.padding-left-lg{padding-left:40px;}
.padding-left-md{padding-left:30px;}
.padding-left-sm{padding-left:20px;}
.padding-right-lg-extra{padding-right:50px;}
.padding-right-lg{padding-right:40px;}
.padding-righ-md{padding-right:30px;}
.padding-right-sm{padding-right:20px;}
.padding-lg-extra{padding:50px 50px}
.padding-lg{padding:40px 40px}
.padding-md{padding:30px 30px}
.padding-sm{padding:20px 20px}
.padding{padding:10px 10px;}
.font-weight{font-weight: 700;}
.color-parent{color: #1b317d !important;}
.color-child{color: #bc9844 !important}
.color-general{color: #777 !important}
| 0.215021 | 0.10316 |
@charset "UTF-8";
/* ==================================
#INUITCSS
================================== */
/**
* inuitcss, by @csswizardry
*
* github.com/inuitcss | inuitcss.com
*/
/**
* CONTENTS
*
* SETTINGS
* Config...............Project-level configuration and feature switches.
* Core.................inuitcss’ core and setup settings.
* Global...............Project-wide variables and settings.
* Colors...............Color library.
*
* TOOLS
* Font-size............A mixin which guarantees baseline-friendly line-heights.
* Clearfix.............Micro clearfix mixin.
* Hidden...............Mixin for hiding elements.
* Aliases..............Custom (and shorter) aliases for Inuit variables.
* Sass MQ..............inuitcss’ default media query manager.
*
* GENERIC
* Box-sizing...........Better default `box-sizing`.
* Normalize.css........A level playing field using @necolas’ Normalize.css.
* Reset................A tiny reset to complement Normalize.css.
* Shared...............Sensibly and tersely share some global commonalities
* (particularly useful when managing vertical rhythm).
*
* ELEMENTS
* Page.................Set up our document’s default `font-size` and
* `line-height`.
* Headings.............Very minimal (i.e. only font-size information) for
* headings 1 through 6.
* Images...............Base image styles.
* Tables...............Simple table styles.
*
* OBJECTS
* Wrapper..............Page constraint object.
* Layout...............Generic layout module.
* Media................Image- and text-like content side by side. The
* poster-child of OOCSS.
* Flag.................Table-layout-based advancement on the Media object.
* List-bare............Lists with no bullets or indents.
* List-inline..........A list whose items all site in a line.
* Box..................Simple boxing abstraction.
* Block................Image-on-top-of-text object.
* Ratio................A container for maintaining aspect ratio of content.
* Crop.................Provide a cropping context for media (images, etc.).
* Table................Classes for manipulating `table`s.
* Pack.................Pack items into available horizontal space.
*
* COMPONENTS
* Custom UI components
*
* SCOPE
* Scoped styles for plain HTML elements or selectors.
*
* DOCUMENTATION
* Components used for a pattern library or styleguide
*
* PLUGINS
* Plugin styles
*
* UTILITIES
* Widths...............Simple width helper classes.
* Headings.............Reassigning our heading styles to helper classes.
* Spacings.............Nudge bits of the DOM around with these spacing
* classes.
* Responsive-Spacings..Enhances the function of normal spacings for
* responsive usage.
* Print................Reset-like styles taken from the HTML5 Boilerplate.
* Hide.................Helper classes to hide content
*/
@import url("https://fonts.googleapis.com/css?family=Cairo:300,400,600,700|Noto+Serif:400,400i,700,700i");
/* ==========================================================================
#BOX-SIZING
========================================================================== */
/**
* More sensible default box-sizing:
* css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
*/
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in
* IE on Windows Phone and in iOS.
*/
html {
line-height: 1.15;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0;
}
/**
* Add the correct display in IE 9-.
*/
article,
aside,
footer,
header,
nav,
section {
display: block;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
/* 1 */
display: block;
}
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px;
}
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
-webkit-box-sizing: content-box;
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
background-color: transparent;
/* 1 */
-webkit-text-decoration-skip: objects;
/* 2 */
}
/**
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
/* 2 */
}
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit;
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic;
}
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000;
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
audio,
video {
display: inline-block;
}
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0;
}
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none;
}
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden;
}
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: sans-serif;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none;
}
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
/* 2 */
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */
}
/**
* 1. Add the correct display in IE 9-.
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */
}
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type="checkbox"],
[type="radio"] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */
}
/**
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */
}
/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
display: block;
}
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item;
}
/* Scripting
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
canvas {
display: inline-block;
}
/**
* Add the correct display in IE.
*/
template {
display: none;
}
/* Hidden
========================================================================== */
/**
* Add the correct display in IE 10-.
*/
[hidden] {
display: none;
}
/* ==========================================================================
#RESET
========================================================================== */
/**
* A very simple reset that sits on top of Normalize.css.
*/
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
margin: 0;
padding: 0;
}
/**
* Remove trailing margins from nested lists.
*/
li > ol,
li > ul {
margin-bottom: 0;
}
/**
* Remove default table spacing.
*/
table {
border-collapse: collapse;
border-spacing: 0;
}
/**
* 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
* on fieldsets.
*/
fieldset {
min-width: 0;
/* [1] */
border: 0;
}
/* ==========================================================================
#SHARED
========================================================================== */
/**
* Shared declarations for certain elements.
*/
/**
* Always declare margins in the same direction:
* csswizardry.com/2012/06/single-direction-margin-declarations
*/
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
margin-bottom: 24px;
}
/**
* Consistent indentation for lists.
*/
dd, ol, ul {
margin-left: 24px;
}
/* ==========================================================================
#PAGE
========================================================================== */
/**
* Simple page-level setup.
*
* 1. Set the default `font-size` and `line-height` for the entire project,
* sourced from our default variables. The `font-size` is calculated to exist
* in ems, the `line-height` is calculated to exist unitlessly.
* 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
* navigating between pages that do/do not have enough content to produce
* scrollbars naturally.
* 3. Ensure the page always fills at least the entire height of the viewport.
*/
html {
font-family: "Cairo", sans-serif;
font-size: 1em;
/* [1] */
line-height: 1.5;
/* [1] */
overflow-y: scroll;
/* [2] */
min-height: 100%;
/* [3] */
background-color: #FFFFFF;
text-rendering: optimizeLegibility;
-webkit-font-feature-settings: 'kern';
font-feature-settings: 'kern';
-webkit-font-smoothing: antialiased;
-webkit-overflow-scrolling: touch;
}
::selection {
background-color: #E4F0EF;
color: #445066;
}
/* ==========================================================================
#HEADINGS
========================================================================== */
/**
* Simple default styles for headings 1 through 6. Anything more opinionated
* than simple font-size changes should likely be applied via classes (see:
* http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
*/
h1 {
font-size: 42px;
font-size: 2.625rem;
line-height: 1.14286;
}
h2 {
font-size: 36px;
font-size: 2.25rem;
line-height: 1.16667;
}
h3 {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
h4 {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.42857;
}
h5 {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.33333;
}
h6 {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
/* ==========================================================================
#IMAGES
========================================================================== */
/**
* 1. Fluid images for responsive purposes.
* 2. Offset `alt` text from surrounding copy.
* 3. Setting `vertical-align` removes the whitespace that appears under `img`
* elements when they are dropped into a page as-is. Safer alternative to
* using `display: block;`.
*/
img {
max-width: 100%;
/* [1] */
font-style: italic;
/* [2] */
vertical-align: middle;
/* [3] */
}
/**
* If a `width` and/or `height` attribute has been explicitly defined, let’s
* not make the image fluid.
*/
img[width],
img[height] {
max-width: none;
}
/* ==========================================================================
#TABLES
========================================================================== */
/**
* 1. Ensure tables fill up as much space as possible.
*/
table {
width: 100%;
/* [1] */
}
/* ==========================================================================
#WRAPPERS
---
NOTICE: Adapted from https://github.com/inuitcss/inuitcss/blob/develop/objects/_objects.wrapper.scss
========================================================================== */
/**
* Page-level constraining and wrapping elements.
*/
/* stylelint-disable */
/* stylelint-enable */
/* Default classes.
========================================================================== */
.o-wrapper {
padding-right: 24px;
padding-left: 24px;
margin-right: auto;
margin-left: auto;
max-width: 800px;
}
@media (min-width: 56.25em) {
.o-wrapper {
padding-right: 48px;
padding-left: 48px;
}
}
/* Size variants.
========================================================================== */
.o-wrapper--tiny {
max-width: 320px;
}
.o-wrapper--small {
max-width: 720px;
}
.o-wrapper--large {
max-width: 1200px;
}
.o-wrapper--huge {
max-width: 1420px;
}
/* ==========================================================================
#ROW
========================================================================== */
/**
* Creates even spaced responsive rows using the default InuitCSS spacing variables.
*
* <div class="o-row">
* <div class="o-wrapper">
* </div>
* </div>
*
*/
/* Default classes.
========================================================================== */
.o-row {
padding-top: 24px;
padding-bottom: 24px;
}
@media (min-width: 56.25em) {
.o-row {
padding-top: 48px;
padding-bottom: 48px;
}
}
.o-row-tiny {
padding-top: 6px;
padding-bottom: 6px;
}
@media (min-width: 56.25em) {
.o-row-tiny {
padding-top: 12px;
padding-bottom: 12px;
}
}
.o-row-small {
padding-top: 12px;
padding-bottom: 12px;
}
@media (min-width: 56.25em) {
.o-row-small {
padding-top: 24px;
padding-bottom: 24px;
}
}
.o-row-large {
padding-top: 48px;
padding-bottom: 48px;
}
@media (min-width: 56.25em) {
.o-row-large {
padding-top: 96px;
padding-bottom: 96px;
}
}
.o-row-huge {
padding-top: 96px;
padding-bottom: 96px;
}
/* ==========================================================================
#FLEXBOX LAYOUT
---
NOTICE: Adapted from https://github.com/inuitcss/inuitcss/blob/develop/objects/_objects.layout.scss
========================================================================== */
/**
* Grid-like layout system.
*
* The layout object provides us with a column-style layout system. This file
* contains the basic structural elements, but classes should be complemented
* with width utilities, for example:
*
* <div class="o-layout">
* <div class="o-layout__item u-1/2">
* </div>
* <div class="o-layout__item u-1/2">
* </div>
* </div>
*
* The above will create a two-column structure in which each column will
* fluidly fill half of the width of the parent. We can have more complex
* systems:
*
* <div class="o-layout">
* <div class="o-layout__item u-1/1 u-1/3@medium">
* </div>
* <div class="o-layout__item u-1/2 u-1/3@medium">
* </div>
* <div class="o-layout__item u-1/2 u-1/3@medium">
* </div>
* </div>
*
* The above will create a system in which the first item will be 100% width
* until we enter our medium breakpoint, when it will become 33.333% width. The
* second and third items will be 50% of their parent, until they also become
* 33.333% width at the medium breakpoint.
*
* We can also manipulate entire layout systems by adding a series of modifiers
* to the `.o-layout` block. For example:
*
* <div class="o-layout o-layout--reverse">
*
* This will reverse the displayed order of the system so that it runs in the
* opposite order to our source, effectively flipping the system over.
*
* <div class="o-layout o-layout--[right|center]">
*
* This will cause the system to fill up from either the centre or the right
* hand side. Default behaviour is to fill up the layout system from the left.
*
* There are plenty more options available to us: explore them below.
*/
/* Default/mandatory classes.
========================================================================== */
/**
* 1. Allows us to use the layout object on any type of element.
* 2. We need to defensively reset any box-model properties.
* 3. Define flexbox settings to allow grid-like behaviour
* 4. Use the negative margin trick for multi-row grids:
*/
.o-layout {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
/* [3] */
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
/* [3] */
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
/* [3] */
margin: 0;
/* [2] */
padding: 0;
/* [2] */
list-style: none;
/* [1] */
margin: -24px;
/* [4] */
}
/**
* 1. By default, all layout items are full-width (mobile first).
* 2. Gutters provided by padding:
*/
.o-layout__item {
width: 100%;
/* [1] */
padding: 24px;
}
/* Gutter size modifiers.
========================================================================== */
.o-layout--tiny {
margin: -6px;
}
.o-layout--tiny > .o-layout__item {
padding: 6px;
}
.o-layout--small {
margin: -12px;
}
.o-layout--small > .o-layout__item {
padding: 12px;
}
.o-layout--large {
margin: -24px;
}
.o-layout--large > .o-layout__item {
padding: 24px;
}
@media (min-width: 56.25em) {
.o-layout--large {
margin: -48px;
}
.o-layout--large > .o-layout__item {
padding: 48px;
}
}
.o-layout--huge {
margin: -96px;
}
.o-layout--huge > .o-layout__item {
padding: 96px;
}
.o-layout--flush {
margin: 0;
}
.o-layout--flush > .o-layout__item {
padding: 0;
}
/* Vertical alignment modifiers.
========================================================================== */
/**
* Align all grid items to the middles of each other.
*/
.o-layout--middle > .o-layout__item {
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center;
}
/**
* Align all grid items to the bottoms of each other.
*/
.o-layout--bottom > .o-layout__item {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
}
/* Fill order modifiers.
========================================================================== */
/**
* Fill up the layout system from the centre.
*/
.o-layout--center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
/**
* Fill up the layout system from the right-hand side.
*/
.o-layout--right {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
/**
* Reverse the rendered order of the grid system.
*/
.o-layout--reverse {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
/* ==========================================================================
#MEDIA
========================================================================== */
/**
* Place any image- and text-like content side-by-side, as per:
* http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
*/
.o-media {
display: block;
}
.o-media:after {
content: "" !important;
display: block !important;
clear: both !important;
}
.o-media__img {
float: left;
margin-right: 24px;
}
.o-media__img > img {
display: block;
}
.o-media__body {
overflow: hidden;
display: block;
}
.o-media__body,
.o-media__body > :last-child {
margin-bottom: 0;
}
/* Size variants
========================================================================== */
/**
* Modify the amount of space between our image and our text. We also have
* reversible options for all available sizes.
*/
.o-media--flush > .o-media__img {
margin-right: 0;
margin-left: 0;
}
.o-media--tiny > .o-media__img {
margin-right: 6px;
}
.o-media--tiny.o-media--reverse > .o-media__img {
margin-right: 0;
margin-left: 6px;
}
.o-media--small > .o-media__img {
margin-right: 12px;
}
.o-media--small.o-media--reverse > .o-media__img {
margin-right: 0;
margin-left: 12px;
}
.o-media--large > .o-media__img {
margin-right: 48px;
}
.o-media--large.o-media--reverse > .o-media__img {
margin-right: 0;
margin-left: 48px;
}
.o-media--huge > .o-media__img {
margin-right: 96px;
}
.o-media--huge.o-media--reverse > .o-media__img {
margin-right: 0;
margin-left: 96px;
}
/* Reversed media objects
========================================================================== */
.o-media--reverse > .o-media__img {
float: right;
margin-right: 0;
margin-left: 24px;
}
/* ==========================================================================
#FLAG
========================================================================== */
/**
* The flag object is a design pattern similar to the media object, however it
* utilises `display: table[-cell];` to give us control over the vertical
* alignments of the text and image.
*
* http://csswizardry.com/2013/05/the-flag-object/
*
* 1. Allows us to control vertical alignments.
* 2. Force the object to be the full width of its parent. Combined with [1],
* this makes the object behave in a quasi-`display: block;` manner.
* 3. Reset inherited `border-spacing` declarations.
*/
.o-flag {
display: table;
/* [1] */
width: 100%;
/* [2] */
border-spacing: 0;
/* [3] */
}
/**
* Items within a flag object. There should only ever be one of each.
*
* 1. Default to aligning content to their middles.
*/
.o-flag__img,
.o-flag__body {
display: table-cell;
vertical-align: middle;
/* [1] */
}
/**
* Flag images have a space between them and the body of the object.
*
* 1. Force `.flag__img` to take up as little space as possible:
* https://pixelsvsbytes.com/2012/02/this-css-layout-grid-is-no-holy-grail/
*/
.o-flag__img {
width: 1px;
/* [1] */
padding-right: 24px;
/**
* 1. Fixes problem with images disappearing.
*
* The direct child selector '>' needs to remain in order for nested flag
* objects to not inherit their parent’s formatting. In case the image tag
* is wrapped into another tag, e.g. an anchor for linking reasons, it will
* disappear. In that case try wrapping the whole o-flag__img object into
* an anchor tag.
*
* E.g.:
*
* <a href="/">
* <div class="o-flag__img">
* <img src="./link/to/image.jpg" alt="image alt text">
* </div>
* </a>
*/
}
.o-flag__img > img {
max-width: none;
/* [1] */
}
/**
* The container for the main content of the flag object.
*
* 1. Forces the `.flag__body` to take up all remaining space.
*/
.o-flag__body {
width: auto;
/* [1] */
}
.o-flag__body,
.o-flag__body > :last-child {
margin-bottom: 0;
}
/* Size variants
========================================================================== */
.o-flag--flush > .o-flag__img {
padding-right: 0;
padding-left: 0;
}
.o-flag--tiny > .o-flag__img {
padding-right: 6px;
}
.o-flag--tiny.o-flag--reverse > .o-flag__img {
padding-right: 0;
padding-left: 6px;
}
.o-flag--small > .o-flag__img {
padding-right: 12px;
}
.o-flag--small.o-flag--reverse > .o-flag__img {
padding-right: 0;
padding-left: 12px;
}
.o-flag--large > .o-flag__img {
padding-right: 48px;
}
.o-flag--large.o-flag--reverse > .o-flag__img {
padding-right: 0;
padding-left: 48px;
}
.o-flag--huge > .o-flag__img {
padding-right: 96px;
}
.o-flag--huge.o-flag--reverse > .o-flag__img {
padding-right: 0;
padding-left: 96px;
}
/* Reversed flag
========================================================================== */
/**
* 1. Swap the rendered direction of the object…
* 2. …and reset it.
* 3. Reassign margins to the correct sides.
*/
.o-flag--reverse {
direction: rtl;
/* [1] */
}
.o-flag--reverse > .o-flag__img,
.o-flag--reverse > .o-flag__body {
direction: ltr;
/* [2] */
}
.o-flag--reverse > .o-flag__img {
padding-right: 0;
/* [3] */
padding-left: 24px;
/* [3] */
}
/* Alignment variants
========================================================================== */
/**
* Vertically align the image- and body-content differently. Defaults to middle.
*/
.o-flag--top > .o-flag__img,
.o-flag--top > .o-flag__body {
vertical-align: top;
}
.o-flag--bottom > .o-flag__img,
.o-flag--bottom > .o-flag__body {
vertical-align: bottom;
}
/* ==========================================================================
#LIST-BARE
========================================================================== */
/**
* Strip list-like appearance from lists by removing their bullets and any
* indentation.
*
* Note: Declaring the item class might not be necessary everywhere,
* but is for example in <dl> lists for the <dd> children.
*/
.o-list-bare {
list-style: none;
margin-left: 0;
}
.o-list-bare__item {
margin-left: 0;
}
/* ==========================================================================
#LIST-INLINE
========================================================================== */
/**
* The list-inline object simply displays a list of items in one line.
*/
.o-list-inline {
margin-left: 0;
list-style: none;
}
.o-list-inline__item {
display: inline-block;
}
/* ==========================================================================
#BOX
========================================================================== */
/**
* The box object simply boxes off content. Extend with cosmetic styles in the
* Components layer.
*
* 1. So we can apply the `.o-box` class to naturally-inline elements.
*/
.o-box {
display: block;
/* [1] */
padding: 24px;
}
.o-box:after {
content: "" !important;
display: block !important;
clear: both !important;
}
.o-box > :last-child {
margin-bottom: 0;
}
/* Size variants
========================================================================== */
.o-box--flush {
padding: 0;
}
.o-box--tiny {
padding: 6px;
}
.o-box--small {
padding: 12px;
}
.o-box--large {
padding: 48px;
}
.o-box--huge {
padding: 96px;
}
/* ==========================================================================
#BLOCK
========================================================================== */
/**
* Stacked image-with-text object. A simple abstraction to cover a very commonly
* occurring design pattern.
*/
.o-block {
display: block;
text-align: center;
}
.o-block__img {
margin-bottom: 24px;
/* Size variants
====================================================================== */
}
.o-block--flush > .o-block__img {
margin-bottom: 0;
}
.o-block--tiny > .o-block__img {
margin-bottom: 6px;
}
.o-block--small > .o-block__img {
margin-bottom: 12px;
}
.o-block--large > .o-block__img {
margin-bottom: 48px;
}
.o-block--huge > .o-block__img {
margin-bottom: 96px;
}
.o-block__body {
display: block;
}
/* Alignment variants
========================================================================== */
.o-block--right {
text-align: right;
}
.o-block--left {
text-align: left;
}
/* ==========================================================================
#RATIO
========================================================================== */
/**
* Create ratio-bound content blocks, to keep media (e.g. images, videos) in
* their correct aspect ratios.
*
* http://alistapart.com/article/creating-intrinsic-ratios-for-video
*
* 1. Default is a 1:1 ratio (i.e. a perfect square).
*/
.o-ratio {
position: relative;
display: block;
}
.o-ratio:before {
content: "";
display: block;
width: 100%;
padding-bottom: 100%;
/* [1] */
}
.o-ratio__content,
.o-ratio > iframe,
.o-ratio > embed,
.o-ratio > object {
position: absolute;
top: 0;
bottom: 0;
left: 0;
height: 100%;
width: 100%;
}
/* Ratio variants.
========================================================================== */
/**
* Generate a series of ratio classes to be used like so:
*
* <div class="o-ratio o-ratio--golden-ratio">
*
*/
.o-ratio--2\:1:before {
padding-bottom: 50%;
}
.o-ratio--4\:3:before {
padding-bottom: 75%;
}
.o-ratio--16\:9:before {
padding-bottom: 56.25%;
}
.o-ratio--21\:9:before {
padding-bottom: 42.85714%;
}
/* Contain modifier.
========================================================================== */
/**
* Only works with image content.
* Contains the image to the boundaries, without cropping or stretching it.
*/
.o-ratio--img-contain > .o-ratio__content:before {
height: auto;
margin: auto;
max-height: 100%;
max-width: 100%;
width: auto;
}
/* ==========================================================================
#CROP
========================================================================== */
/**
* Provide a cropping container in order to display media (usually images)
* cropped to certain ratios.
*
* 1. Set up a positioning context in which the image can sit.
* 2. This is the crucial part: where the cropping happens.
*/
.o-crop {
position: relative;
/* [1] */
display: block;
overflow: hidden;
/* [2] */
}
/**
* Apply this class to the content (usually `img`) that needs cropping.
*
* 1. Image’s default positioning is top-left in the cropping box.
* 2. Make sure the media doesn’t stop itself too soon.
*/
.o-crop__content {
position: absolute;
top: 0;
/* [1] */
left: 0;
/* [1] */
max-width: none;
/* [2] */
}
/**
* We can position the media in different locations within the cropping area.
*/
.o-crop__content--left-top {
left: 0;
}
.o-crop__content--left-center {
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.o-crop__content--left-bottom {
top: auto;
bottom: 0;
}
.o-crop__content--right-top {
right: 0;
left: auto;
}
.o-crop__content--right-center {
top: 50%;
right: 0;
left: auto;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.o-crop__content--right-bottom {
top: auto;
right: 0;
bottom: 0;
left: auto;
}
.o-crop__content--center-top {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.o-crop__content--center,
.o-crop__content--center-center {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.o-crop__content--center-bottom {
top: auto;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
/* Crop-ratio variants
========================================================================== */
/**
* Generate a series of crop classes to be used like so:
*
* <div class="o-crop o-crop--golden-ratio">
*
*/
.o-crop--21\:9 {
padding-bottom: 42.85714%;
}
.o-crop--16\:9 {
padding-bottom: 56.25%;
}
.o-crop--9\:16 {
padding-bottom: 115.10791%;
}
.o-crop--4\:3 {
padding-bottom: 75%;
}
.o-crop--5\:4 {
padding-bottom: 80%;
}
.o-crop--1\:1 {
padding-bottom: 100%;
}
/* Fill modifier
========================================================================== */
/**
* Content stretches to fill it's container while maintaining aspect-ratio.
*/
.o-crop--fill > .o-crop__content {
min-height: 100%;
min-width: 100%;
}
/* ==========================================================================
#TABLE
========================================================================== */
/**
* A simple object for manipulating the structure of HTML `table`s.
*/
.o-table {
width: 100%;
}
/* Equal-width table cells
========================================================================== */
/**
* `table-layout: fixed` forces all cells within a table to occupy the same
* width as each other. This also has performance benefits: because the browser
* does not need to (re)calculate cell dimensions based on content it discovers,
* the table can be rendered very quickly. Further reading:
* https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
*/
.o-table--fixed {
table-layout: fixed;
}
/* Size variants
========================================================================== */
.o-table--tiny th,
.o-table--tiny td {
padding: 6px;
}
.o-table--small th,
.o-table--small td {
padding: 12px;
}
.o-table--large th,
.o-table--large td {
padding: 48px;
}
.o-table--huge th,
.o-table--huge td {
padding: 96px;
}
/* ==========================================================================
#PACK
========================================================================== */
/**
* The pack object simply causes any number of elements pack up horizontally to
* automatically fill an equal, fluid width of their parent.
*
* 1. Fill all available space.
* 2. Remove any leftover styling from lists.
* 3. Cause children to be automatically equally sized.
*/
.o-pack {
width: 100%;
/* [1] */
margin-left: 0;
/* [2] */
display: table;
table-layout: fixed;
/* [3] */
}
/**
* 1. Cause children to adopt table-like structure.
* 2. Default item alignment is with the tops of each other.
*/
.o-pack__item {
display: table-cell;
/* [1] */
vertical-align: top;
/* [2] */
/* Vertical alignment variants
====================================================================== */
}
.o-pack--middle > .o-pack__item {
vertical-align: middle;
}
.o-pack--bottom > .o-pack__item {
vertical-align: bottom;
}
/* Unequal-width items
========================================================================== */
.o-pack--auto {
table-layout: auto;
}
/* Size variants
========================================================================== */
.o-pack--tiny {
border-spacing: 6px;
}
.o-pack--small {
border-spacing: 12px;
}
.o-pack--default {
border-spacing: 24px;
}
.o-pack--large {
border-spacing: 48px;
}
.o-pack--huge {
border-spacing: 96px;
}
/* Reversed order packs
========================================================================== */
.o-pack--reverse {
direction: rtl;
}
.o-pack--reverse > .o-pack__item {
direction: ltr;
}
/* ==================================
#BRAND
================================== */
.c-brand-mark,
.c-brand-mark > .c-brand-mark__link {
font-size: 16px;
font-size: 1rem;
line-height: 1;
white-space: nowrap;
position: relative;
color: #1a726a;
font-weight: 700;
text-decoration: none;
margin-bottom: 0;
padding-top: 1.5px;
}
.c-logo {
display: block;
width: calc(196px / 2);
height: calc(122px / 2);
margin-top: -7.2px;
}
@media (min-width: 37.5em) {
.c-logo {
width: calc(196px / 1.5);
height: calc(122px / 1.5);
margin-top: -12px;
}
}
@media (min-width: 56.25em) {
.c-logo {
margin-top: -24px;
width: calc(196px / 1.3);
height: calc(122px / 1.3);
}
}
.c-partner {
display: block;
width: 100%;
max-width: 150px;
margin-left: auto;
margin-right: auto;
}
.c-baseline {
background-color: #f0f1f3;
color: #969daa;
text-align: center;
font-size: 14px;
font-size: 0.875rem;
line-height: 1.2;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 24px;
padding-right: 24px;
}
@media (min-width: 56.25em) {
.c-baseline {
font-size: 16px;
font-size: 1rem;
line-height: 1.2;
}
}
/* ==================================
#NAVIGATION
================================== */
.has-nav {
overflow: auto;
}
.c-navigation {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.42857;
font-family: "Cairo", sans-serif;
margin-bottom: 0;
position: relative;
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;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 56.24em) {
.c-navigation {
position: fixed;
z-index: 2;
overflow: auto;
background-color: #23988D;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 96px 24px;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.c-navigation.is-visible {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
}
@media (min-width: 56.25em) {
.c-navigation {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.33333;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
}
.c-navigation__item {
white-space: nowrap;
width: 100%;
}
.c-navigation__item + .c-navigation__item {
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid #65b7af;
}
@media (min-width: 56.25em) {
.c-navigation__item {
display: block;
width: auto;
}
.c-navigation__item + .c-navigation__item {
margin-top: 0;
padding-top: 0;
border-top: 0;
margin-left: 48px;
}
}
.c-navigation-toggle {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.71429;
font-family: "Cairo", sans-serif;
font-weight: 400;
position: absolute;
top: 24px;
right: 8px;
z-index: 3;
border: 0;
color: #a5abb6;
background-color: transparent;
-webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.has-nav .c-navigation-toggle {
position: fixed;
color: white;
}
.c-navigation-toggle:focus {
outline: 0;
}
@media (min-width: 37.5em) {
.c-navigation-toggle {
top: 36px;
right: 24px;
}
}
@media (min-width: 56.25em) {
.c-navigation-toggle {
display: none;
}
}
.c-hamburger {
display: block;
stroke: currentColor;
stroke-width: 6px;
stroke-linecap: square;
width: 38px;
height: 32px;
}
.c-hamburger__line {
-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
-webkit-transform-origin: center;
-ms-transform-origin: center;
transform-origin: center;
}
.c-hamburger__line:nth-child(3) {
opacity: 0;
}
[aria-expanded='true'] .c-hamburger__line:nth-child(2) {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
[aria-expanded='true'] .c-hamburger__line:nth-child(3) {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
opacity: 1;
}
[aria-expanded='true'] .c-hamburger__line:first-child, [aria-expanded='true'] .c-hamburger__line:last-child {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
/* ==================================
#HEADER
================================== */
.c-header {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
}
/* ==================================
#FOOTER
================================== */
/* ==================================
#TYPOGRAPHY
================================== */
.c-page-title {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.3;
font-family: "Noto Serif", serif;
font-weight: 700;
max-width: 12em;
margin-bottom: 12px;
}
@media (min-width: 37.5em) {
.c-page-title {
font-size: 42px;
font-size: 2.625rem;
line-height: 1.2;
margin-bottom: 24px;
}
}
@media (min-width: 56.25em) {
.c-page-title {
font-size: 42px;
font-size: 2.625rem;
line-height: 1.2;
margin-bottom: 24px;
}
}
@media (min-width: 75em) {
.c-page-title {
font-size: 60px;
font-size: 3.75rem;
line-height: 1.2;
margin-bottom: 24px;
}
}
.c-title {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.3;
color: #23988D;
margin-bottom: 12px;
font-family: "Noto Serif", serif;
font-weight: 700;
}
.s-theme-primary-dark .c-title,
.s-theme-secondary .c-title {
color: #FFFFFF;
}
.s-theme-white .c-title {
color: #23988D;
}
@media (min-width: 56.25em) {
.c-title {
font-size: 36px;
font-size: 2.25rem;
line-height: 1.3;
}
}
.c-title--border {
margin-bottom: 24px;
padding-bottom: 24px;
border-bottom: 2px solid #d7ecea;
}
.c-subtitle {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5;
margin-bottom: 12px;
font-family: "Noto Serif", serif;
font-weight: 700;
}
.s-theme-white .c-subtitle {
color: #23988D;
}
@media (min-width: 56.25em) {
.c-subtitle {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.5;
}
}
.c-subtitle--border {
padding-bottom: 12px;
border-bottom: 1px solid #e4e5e7;
}
.c-small-title {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
margin-bottom: 12px;
font-family: "Noto Serif", serif;
font-weight: 700;
}
@media (min-width: 56.25em) {
.c-small-title {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5;
}
}
.c-lead {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5;
margin-bottom: 48px;
font-weight: 400;
}
@media (min-width: 56.25em) {
.c-lead {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.5;
}
}
.c-para {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
font-weight: 400;
max-width: 45em;
}
@media (min-width: 56.25em) {
.c-para {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.4;
}
}
.c-para-small {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.5;
font-weight: 400;
}
@media (min-width: 56.25em) {
.c-para-small {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
}
.c-small {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
display: block;
color: #1a726a;
}
@media (min-width: 56.25em) {
.c-small {
text-align: right;
}
}
.c-small--footer {
color: #697385;
}
.c-list {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
font-weight: 600;
}
.c-list strong {
font-weight: 600;
}
@media (min-width: 56.25em) {
.c-list {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.4;
}
}
.c-list--large {
font-weight: 400;
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5;
margin-top: 24px;
}
@media (min-width: 56.25em) {
.c-list--large {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.5;
}
}
.c-list__item + .c-list__item {
margin-top: 6px;
padding-top: 6px;
border-top: 1px solid #dadce0;
}
.s-theme-primary-dark .c-list__item + .c-list__item {
border-top: 1px solid #697385;
}
@media (min-width: 37.5em) {
.c-list__item + .c-list__item {
margin-top: 12px;
padding-top: 12px;
}
}
.c-list-small {
font-family: "Cairo", sans-serif;
}
.c-list-small__item > a {
font-weight: 600;
}
.c-list-small__item + .c-list-small__item {
margin-top: 6px;
padding-top: 6px;
border-top: 1px dotted #a9bbba;
}
@media (min-width: 37.5em) {
.c-list-small__item + .c-list-small__item {
margin-top: 12px;
padding-top: 12px;
}
}
.c-list-inline {
font-weight: 600;
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;
margin-bottom: 0;
}
@media (min-width: 37.5em) {
.c-list-inline {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
}
.c-list-inline__item > a {
white-space: nowrap;
}
.c-list-inline__item + .c-list-inline__item {
margin-top: 6px;
padding-top: 6px;
border-top: 1px dotted #E4F0EF;
}
@media (min-width: 37.5em) {
.c-list-inline__item + .c-list-inline__item {
display: block;
margin-top: 0;
padding-top: 0;
border-top: 0;
margin-left: 24px;
}
}
.c-list-agenda {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.71429;
font-weight: 400;
}
@media (min-width: 56.25em) {
.c-list-agenda {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
}
.c-list-agenda__item {
position: relative;
margin-left: 108px;
}
.c-list-agenda__item + .c-list-agenda__item {
margin-top: 6px;
padding-top: 6px;
border-top: 1px dotted #E4F0EF;
}
.c-list-agenda__item > strong {
display: block;
position: absolute;
left: -108px;
}
@media (min-width: 37.5em) {
.c-list-agenda__item + .c-list-agenda__item {
margin-top: 12px;
padding-top: 12px;
}
}
.c-list-big {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
font-weight: 400;
}
@media (min-width: 56.25em) {
.c-list-big {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.42857;
}
}
@media (min-width: 75em) {
.c-list-big {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
}
.c-list-big__item + .c-list-big__item {
margin-top: 6px;
}
@media (min-width: 37.5em) {
.c-list-big__item + .c-list-big__item {
margin-top: 12px;
}
}
.c-date {
font-weight: 700;
}
.c-badge {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.3;
display: inline-block;
padding: 3px 6px;
color: #697385;
background-color: #f0f1f3;
border-radius: 4px;
}
.c-form .c-badge {
margin-left: 6px;
}
.c-badge--negative {
color: #FFFFFF;
background-color: #a5abb6;
}
.c-badge--icon {
line-height: 1;
position: absolute;
display: table;
right: -6px;
top: -6px;
border-radius: 1.5em;
width: 1.5em;
height: 1.5em;
padding: .3em .5em;
border: 2px solid #FFFFFF;
vertical-align: middle;
text-align: center;
}
.c-tag {
display: inline-block;
background-color: #cfd2d8;
padding: 3px 6px;
border-radius: 4px;
font-weight: 600;
}
.c-tag--gold {
color: #a09d06;
background-color: #ecebcd;
}
.c-tag--silver {
color: #737374;
background-color: #ececed;
}
.c-tag--bronze {
color: #674d16;
background-color: #e6d9be;
}
/* ==================================
#BUTTONS
================================== */
.c-btn {
display: inline-block;
vertical-align: middle;
font: inherit;
font-weight: 600;
text-align: center;
margin: 0;
padding: 12px 24px;
-webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
border-radius: 4px;
border: 0;
}
.c-btn:focus {
outline: 0;
-webkit-box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
}
@media (min-width: 37.5em) {
.c-btn {
white-space: nowrap;
}
}
.c-btn-reset {
font: inherit;
position: relative;
color: inherit;
border: 0;
background-color: transparent;
padding: 0;
cursor: pointer;
}
.c-btn-reset:focus {
outline: 0;
-webkit-box-shadow: inset 0 0 0 2px #c3c7ce;
box-shadow: inset 0 0 0 2px #c3c7ce;
}
.c-btn-reset--large {
font-size: 36px;
font-size: 2.25rem;
line-height: 1.16667;
}
/* Size variants
================================== */
.c-btn--small {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.71429;
padding: 6px 12px;
}
.c-btn--large {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
padding: 12px 24px;
}
@media (min-width: 56.25em) {
.c-btn--large {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.33333;
padding: 18px 36px;
}
}
.c-btn--block {
display: block;
}
/* Style variants
================================== */
.c-btn--primary {
background-color: #445066;
}
.c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
text-decoration: none;
/* [4] */
color: #FFFFFF;
}
.c-btn--primary:hover, .c-btn--primary:focus {
background-color: #576275;
}
.c-btn--secondary {
background-color: #23988D;
-webkit-box-shadow: 0 10px 10px rgba(105, 115, 133, 0.1);
box-shadow: 0 10px 10px rgba(105, 115, 133, 0.1);
}
.c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
text-decoration: none;
color: #FFFFFF;
}
.c-btn--secondary:hover, .c-btn--secondary:focus {
background-color: #39a298;
}
/* Ghost buttons
================================== */
/**
* Ghost buttons have see-through backgrounds and are bordered.
*/
.c-btn--ghost {
border: 2px solid currentColor;
padding: 10px 22px;
-webkit-box-shadow: none;
box-shadow: none;
}
.c-btn--ghost, .c-btn--ghost:hover, .c-btn--ghost:active, .c-btn--ghost:focus {
background: none;
}
.c-btn--ghost.c-btn--small {
padding: 4px 10px;
}
.c-btn--ghost.c-btn--large {
padding: 22px 46px;
}
.c-btn--ghost.c-btn--primary {
color: #1a726a;
}
.c-btn--ghost.c-btn--primary:hover, .c-btn--ghost.c-btn--primary:focus {
color: #bde0dd;
}
.c-btn--ghost.c-btn--secondary {
color: #23988D;
}
.c-btn--ghost.c-btn--secondary, .c-btn--ghost.c-btn--secondary:visited {
color: #23988D;
}
.c-btn--ghost.c-btn--secondary:hover, .c-btn--ghost.c-btn--secondary:focus {
color: #4fada4;
}
.has-nav .c-btn--ghost.c-btn--secondary {
color: #FFFFFF;
}
.has-nav .c-btn--ghost.c-btn--secondary, .has-nav .c-btn--ghost.c-btn--secondary:visited {
color: #FFFFFF;
}
.has-nav .c-btn--ghost.c-btn--secondary:hover, .has-nav .c-btn--ghost.c-btn--secondary:focus {
color: #d3eae8;
}
@media (min-width: 56.25em) {
.has-nav .c-btn--ghost.c-btn--secondary {
color: #23988D;
}
.has-nav .c-btn--ghost.c-btn--secondary, .has-nav .c-btn--ghost.c-btn--secondary:visited {
color: #23988D;
}
.has-nav .c-btn--ghost.c-btn--secondary:hover, .has-nav .c-btn--ghost.c-btn--secondary:focus {
color: #4fada4;
}
}
/* Button groups
================================== */
.c-btn-group {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.c-btn-group .c-btn {
margin-right: 24px;
}
.c-btn-group .c-link {
margin: 24px 0;
}
/* ==================================
#LINKS
================================== */
.c-link,
.c-para > a {
-webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-link, .c-link:visited,
.c-para > a,
.c-para > a:visited {
color: #1a726a;
}
.c-link:hover, .c-link:focus,
.c-para > a:hover,
.c-para > a:focus {
color: #1a726a;
}
.c-link:focus,
.c-para > a:focus {
outline: 4px solid #E4F0EF;
}
.s-theme-primary-dark .c-link, .s-theme-primary-dark .c-link:visited,
.s-theme-secondary .c-link,
.s-theme-secondary .c-link:visited, .s-theme-primary-dark
.c-para > a, .s-theme-primary-dark
.c-para > a:visited,
.s-theme-secondary
.c-para > a,
.s-theme-secondary
.c-para > a:visited {
color: #FFFFFF;
}
.s-theme-primary-dark .c-link:hover, .s-theme-primary-dark .c-link:focus,
.s-theme-secondary .c-link:hover,
.s-theme-secondary .c-link:focus, .s-theme-primary-dark
.c-para > a:hover, .s-theme-primary-dark
.c-para > a:focus,
.s-theme-secondary
.c-para > a:hover,
.s-theme-secondary
.c-para > a:focus {
color: #E4F0EF;
}
.s-theme-primary-dark .c-link:focus,
.s-theme-secondary .c-link:focus, .s-theme-primary-dark
.c-para > a:focus,
.s-theme-secondary
.c-para > a:focus {
outline: 4px solid #E4F0EF;
}
.c-link--neutral, .c-link--neutral:visited {
color: #697385;
}
.c-link--neutral:hover, .c-link--neutral:focus {
color: #445066;
}
.c-link--neutral:focus {
outline: 4px solid #c3c7ce;
}
.c-link--footer {
font-weight: 400;
}
.c-link--footer, .c-link--footer:visited {
color: #a5abb6;
}
.c-link--footer:hover, .c-link--footer:focus {
color: #445066;
}
.c-link--footer:focus {
background-color: #FFFFFF;
outline: 4px solid #f0f1f3;
}
.c-link--nav {
display: block;
font-weight: 400;
}
.c-link--nav, .c-link--nav:visited {
color: #FFFFFF;
}
.c-link--nav:hover, .c-link--nav:focus {
color: #d3eae8;
}
.is-active > .c-link--nav {
color: #FFFFFF;
}
@media (min-width: 56.25em) {
.c-link--nav, .c-link--nav:visited {
color: #697385;
}
.c-link--nav:hover, .c-link--nav:focus {
color: #23988D;
}
.is-active > .c-link--nav {
color: #1a726a;
}
}
.c-link--negative, .c-link--negative:visited {
color: #FFFFFF;
}
.c-link--negative:hover, .c-link--negative:focus {
color: #FFFFFF;
}
.c-link--negative:focus {
color: #445066;
background-color: #E4F0EF;
outline: 4px solid #E4F0EF;
}
.c-link--bare, .c-link--bare:visited, .c-link--bare:hover, .c-link--bare:focus {
text-decoration: none;
}
.c-link--image {
display: block;
}
.c-link--image:focus {
background-color: #E4F0EF;
outline: 4px solid #E4F0EF;
-webkit-box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
}
.c-link--faux {
-webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
font-weight: 400;
-webkit-box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.15);
box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.15);
}
.c-link--faux, .c-link--faux:visited, .c-link--faux:hover, .c-link--faux:focus {
text-decoration: none;
}
.c-link--faux:hover, .c-link--faux:focus {
-webkit-box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.3);
box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.3);
}
.c-link--faux:focus {
background-color: #cdd8d7;
-webkit-box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.2);
box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.2);
outline: 4px solid #E4F0EF;
}
.c-link--faux.c-link--negative {
-webkit-box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.3);
box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.3);
}
.c-link--faux.c-link--negative:hover, .c-link--faux.c-link--negative:focus {
-webkit-box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.5);
box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.5);
}
.c-link--faux.c-link--negative:focus {
background-color: #cdd8d7;
-webkit-box-shadow: inset 0 -4px 0 0 rgba(68, 80, 102, 0.2);
box-shadow: inset 0 -4px 0 0 rgba(68, 80, 102, 0.2);
outline: 4px solid #cdd8d7;
}
.c-link--skip {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.71429;
position: absolute;
top: -1000px;
left: -1000px;
height: 1px;
width: 1px;
display: block;
font-weight: 400;
text-decoration: none;
-webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
display: inline-block;
padding: 0 12px 0 6px;
}
.c-link--skip:focus {
width: auto;
height: auto;
top: calc(100% + 6px);
left: 0;
outline: 0;
background-color: #E4F0EF;
outline: 4px solid #E4F0EF;
}
/* ==================================
#ICONS
================================== */
.c-icon {
display: inline-block;
width: 1em;
height: 1em;
bottom: .3ex;
position: relative;
vertical-align: middle;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
.c-list .c-icon {
bottom: .32ex;
}
.c-icon--plus {
width: .75em;
height: .75em;
bottom: 0;
margin-right: 12px;
}
.c-icon--plus__vert {
-webkit-transform: scaleY(100%);
-ms-transform: scaleY(100%);
transform: scaleY(100%);
-webkit-transform-origin: center;
-ms-transform-origin: center;
transform-origin: center;
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
[aria-expanded="true"] .c-icon--plus__vert {
-webkit-transform: scaleY(0);
-ms-transform: scaleY(0);
transform: scaleY(0);
}
/* ==================================
#INPUT
================================== */
.c-input,
.c-textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
border-radius: 4px;
font-family: inherit;
margin: 0;
width: 100%;
display: block;
outline: none;
line-height: normal;
color: #697385;
background-color: #FFFFFF;
border: 1px solid #c3c7ce;
padding: 12px;
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
.c-input:focus,
.c-textarea:focus {
background-color: #FFFFFF;
color: #445066;
-webkit-box-shadow: 0 0 2px #c3c7ce;
box-shadow: 0 0 2px #c3c7ce;
}
.c-input::-webkit-input-placeholder,
.c-textarea::-webkit-input-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-input::-moz-placeholder,
.c-textarea::-moz-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-input:-ms-input-placeholder,
.c-textarea:-ms-input-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-input:-moz-placeholder,
.c-textarea:-moz-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-checkbox,
.c-radio {
position: relative;
top: 0ex;
width: 24px;
display: block;
margin-right: 6px;
}
.c-input--sm {
max-width: 14em;
}
.c-input--md {
max-width: 20em;
}
.c-input--lg {
max-width: 40em;
}
.c-select {
position: relative;
display: inline-block;
color: #697385;
width: 100%;
max-width: 25em;
}
.c-select select {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
display: inline-block;
width: 100%;
margin: 0;
padding: 12px;
color: #445066;
background-color: #FFFFFF;
border: 1px solid #c3c7ce;
border-radius: 4px;
cursor: pointer;
outline: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
/* Undo the Firefox inner focus ring */
.c-select select:focus:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #445066;
}
/* Dropdown arrow */
.c-select:after {
position: absolute;
top: 50%;
right: 1.25rem;
display: inline-block;
content: "";
width: 0;
height: 0;
margin-top: -.2rem;
pointer-events: none;
border-top: 0.35rem solid #697385;
border-right: .35rem solid transparent;
border-bottom: .35rem solid transparent;
border-left: .35rem solid transparent;
}
/* Focus */
.c-select select:focus {
-webkit-box-shadow: 0 0 2px #a5abb6;
box-shadow: 0 0 2px #a5abb6;
}
/* Active/open */
.c-select select:active {
color: #445066;
}
/* Hide the arrow in IE10 and up */
.c-select select::-ms-expand {
display: none;
}
/* Media query to target Firefox only */
@-moz-document url-prefix() {
/* Firefox hack to hide the arrow */
.c-select select {
text-indent: .01px;
text-overflow: '';
padding-right: 1rem;
}
/* <option> elements inherit styles from <select>, so reset them. */
.c-select option {
background-color: #FFFFFF;
}
}
/* IE9 hack to hide the arrow */
@media screen and (min-width: 0\0) {
.c-select select {
z-index: 1;
padding: .5rem 1.5rem .5rem 1rem;
}
.c-select:after {
z-index: 2;
}
.c-select:before {
position: absolute;
top: 0;
right: 1rem;
bottom: 0;
z-index: 2;
content: "";
display: block;
width: 1.5rem;
background-color: #c3c7ce;
}
.c-select select:hover,
.c-select select:focus,
.c-select select:active {
color: #697385;
background-color: #c3c7ce;
}
}
/* ==================================
#FORMS
================================== */
.c-fieldset {
margin-bottom: 0;
}
.c-fieldset + .c-fieldset {
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid #dadce0;
}
.c-field {
position: relative;
}
.c-field + .c-field {
margin-top: 24px;
}
.c-field--check,
.c-field--radio {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.c-field--check + .c-field--check,
.c-field--radio + .c-field--check, .c-field--check +
.c-field--radio,
.c-field--radio +
.c-field--radio {
margin-top: 6px;
}
.c-legend {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
font-weight: 700;
margin-bottom: 12px;
}
.c-label {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
display: block;
color: #697385;
margin-bottom: 6px;
}
.c-field--check .c-label {
color: #445066;
margin-bottom: 6px;
width: calc(100% - 24px);
}
.c-mailchimp {
font-weight: 400;
}
.c-mailchimp .mc-field-group {
margin-bottom: 24px;
padding-bottom: 24px;
}
.c-mailchimp .mc-field-group > input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
border-radius: 4px;
font-family: inherit;
margin: 0;
width: 100%;
display: block;
outline: none;
line-height: normal;
font-weight: 400;
color: #697385;
background-color: #FFFFFF;
border: 1px solid #cfd2d8;
padding: 6px;
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
.c-mailchimp .mc-field-group > input:focus {
background-color: #FFFFFF;
color: #445066;
-webkit-box-shadow: 0 0 2px #c3c7ce;
box-shadow: 0 0 2px #c3c7ce;
}
.c-mailchimp .mc-field-group > input::-webkit-input-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-mailchimp .mc-field-group > input::-moz-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-mailchimp .mc-field-group > input:-ms-input-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-mailchimp .mc-field-group > input:-moz-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-mailchimp .mc-field-group > label {
display: block;
margin-bottom: 12px;
}
.c-mailchimp .input-group li {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.c-mailchimp .input-group label {
padding-left: 6px;
}
.c-mailchimp .button {
display: inline-block;
vertical-align: middle;
font: inherit;
font-weight: 600;
text-align: center;
margin: 0;
padding: 12px 24px;
-webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
border-radius: 4px;
border: 0;
background-color: #1a726a;
}
.c-mailchimp .button, .c-mailchimp .button:hover, .c-mailchimp .button:active, .c-mailchimp .button:focus {
text-decoration: none;
/* [4] */
color: #FFFFFF;
}
.c-mailchimp .button:focus {
outline: 0;
-webkit-box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
}
.c-mailchimp .button:hover, .c-mailchimp .button:focus {
background-color: #23988D;
}
@media (min-width: 37.5em) {
.c-mailchimp .button {
white-space: nowrap;
}
}
.c-mailchimp strong {
display: block;
margin-bottom: 12px;
}
.c-mailchimp ul {
list-style: none;
margin-left: 0;
margin-top: 12px;
margin-bottom: 0;
}
.c-mailchimp li + li {
margin-top: 6px;
padding-top: 6px;
}
/* ==================================
#CARDS
================================== */
.c-card {
position: relative;
border-radius: 4px;
-webkit-box-shadow: 0 0 0 2px rgba(26, 114, 106, 0.1);
box-shadow: 0 0 0 2px rgba(26, 114, 106, 0.1);
-webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
height: 100%;
}
.c-card--neutral {
background-color: rgba(240, 241, 243, 0.5);
}
.c-card--white {
background-color: white;
}
.c-card--link:hover, .c-card--link:focus, .c-card--link:focus-within {
-webkit-box-shadow: 0 10px 10px rgba(105, 115, 133, 0.1), 0 0 0 2px rgba(26, 114, 106, 0.15);
box-shadow: 0 10px 10px rgba(105, 115, 133, 0.1), 0 0 0 2px rgba(26, 114, 106, 0.15);
}
.c-card,
.c-card__body {
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;
overflow: hidden;
}
.c-card__body {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
.c-card__body > * {
margin-bottom: 0;
}
.c-card__body > * + * {
margin-top: 6px;
}
.c-card__body > *:nth-last-child(2) {
margin-bottom: 24px;
}
.c-card__link::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* ==================================
#HERO
================================== */
.c-hero {
position: relative;
color: #FFFFFF;
}
.c-hero__image {
position: relative;
display: block;
overflow: hidden;
padding-bottom: 75%;
background-color: #445066;
}
.c-hero__image > img {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
max-width: none;
min-height: 100%;
max-height: 100%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
opacity: .3;
}
@media (min-width: 30em) {
.c-hero__image {
padding-bottom: 56.25%;
}
}
@media (min-width: 37.5em) {
.c-hero__image {
padding-bottom: 56.25%;
}
}
@media (min-width: 56.25em) {
.c-hero__image {
padding-bottom: 47.61905%;
}
.c-hero__image > img {
max-height: none;
}
}
@media (min-width: 75em) {
.c-hero__image {
padding-bottom: 41.66667%;
}
}
.c-hero__image--bottom > img {
position: absolute;
left: 50%;
top: auto;
bottom: 0;
min-width: 100%;
max-width: none;
min-height: 100%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
opacity: .3;
}
.c-hero__body {
position: absolute;
top: 50%;
left: 0;
width: 100%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.c-hero__body > *:last-child,
.c-hero__body > .o-wrapper > *:last-child {
margin-bottom: 0;
}
/* ==================================
#IMAGE
================================== */
.c-image {
position: relative;
display: block;
}
.c-image::after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(68, 80, 102, 0.3);
}
.c-image--link {
text-decoration: none;
-webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-image--link:hover, .c-image--link:focus {
opacity: .8;
}
/* ==================================
#ICONS
================================== */
/* ==================================
#THEME
================================== */
.s-theme-white {
color: #445066;
background-color: #FFFFFF;
}
.s-theme-neutral-xxlight {
color: #445066;
background-color: #f0f1f3;
}
.s-theme-primary-xlight {
background-color: #E4F0EF;
}
.s-theme-primary-dark {
color: #FFFFFF;
background-color: #445066;
}
.s-theme-secondary {
color: #FFFFFF;
background-color: #23988D;
}
.s-theme-secondary-light {
color: #545e5d;
background-color: #d3eae8;
}
/* ==================================
#EDITOR
================================== */
.s-editor h1,
.s-editor h2,
.s-editor h3,
.s-editor h4,
.s-editor h5,
.s-editor h6 {
font-family: "Cairo", sans-serif;
margin-bottom: 0;
color: #FFFFFF;
}
.s-editor h1 + *,
.s-editor h2 + *,
.s-editor h3 + *,
.s-editor h4 + *,
.s-editor h5 + *,
.s-editor h6 + * {
margin-top: 12px;
}
.s-editor * + h1,
.s-editor * + h2,
.s-editor * + h3,
.s-editor * + h4,
.s-editor * + h5,
.s-editor * + h6 {
margin-top: 24px;
}
.s-editor p {
margin-bottom: 0;
font-weight: 400;
}
.s-editor p + p {
margin-top: 12px;
}
.s-editor h1 {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
.s-editor h2 {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.33333;
}
.s-editor h3,
.s-editor h4,
.s-editor h5,
.s-editor h6 {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
.s-editor p {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.5;
}
.s-editor a {
-webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-editor a, .s-editor a:visited {
color: #23988D;
}
.s-editor a:hover, .s-editor a:focus {
color: #1c7a71;
}
.s-editor a:focus {
background-color: #E4F0EF;
outline: 4px solid #E4F0EF;
}
.s-theme-primary-dark .s-editor a,
.s-theme-primary-dark .s-editor a:visited {
color: #f0f1f3;
}
.s-theme-primary-dark .s-editor a:focus,
.s-theme-primary-dark .s-editor a:hover {
color: #FFFFFF;
}
.s-theme-primary-xlight .s-editor a:focus {
background-color: #f2f8f7;
outline: 4px solid #f2f8f7;
}
@media (min-width: 56.25em) {
.s-editor * + h1,
.s-editor * + h2,
.s-editor * + h3,
.s-editor * + h4,
.s-editor * + h5,
.s-editor * + h6 {
margin-top: 48px;
}
.s-editor h1 {
font-size: 36px;
font-size: 2.25rem;
line-height: 1.16667;
}
.s-editor h2 {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
.s-editor h3,
.s-editor h4,
.s-editor h5,
.s-editor h6 {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.42857;
}
.s-editor p {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
}
/* ==================================
#SYNTAX
================================== */
/* ==========================================================================
#WIDTHS
========================================================================== */
/**
* inuitcss generates a series of utility classes that give a fluid width to
* whichever element they’re applied, e.g.:
*
* <img src="" alt="" class="u-1/2" />
*
* These classes are most commonly used in conjunction with our layout system,
* e.g.:
*
* <div class="o-layout__item u-1/2">
*
* By default, inuitcss will also generate responsive variants of each of these
* classes by using your Sass MQ configuration, e.g.:
*
* <div class="o-layout__item u-1/1 u-1/2@tablet u-1/3@desktop">
*
* Optionally, inuitcss can generate offset classes which can push and pull
* elements left and right by a specified amount, e.g.:
*
* <div class="o-layout__item u-2/3 u-pull-1/3">
*
* This is useful for making very granular changes to the rendered order of
* items in a layout.
*
* N.B. This option is turned off by default.
*/
/**
* A series of width helper classes that you can use to size things like grid
* systems. Classes take a fraction-like format (e.g. `.u-2/3`). Use these in
* your markup:
*
* <div class="u-7/12">
*
* The following will generate widths helper classes based on the fractions
* defined in the `$inuit-fractions` list.
*/
.u-1\/1 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2 {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2 {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2 {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3 {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3 {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3 {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3 {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3 {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3 {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4 {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4 {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4 {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4 {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4 {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4 {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4 {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4 {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4 {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5 {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5 {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5 {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5 {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5 {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5 {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5 {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5 {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6 {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6 {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6 {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6 {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6 {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6 {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6 {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6 {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6 {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6 {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7 {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7 {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7 {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7 {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7 {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7 {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7 {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7 {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7 {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7 {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7 {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7 {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
/**
* If we’re using Sass-MQ, automatically generate grid system(s) for each of our
* defined breakpoints, and give them a Responsive Suffix, e.g.:
*
* <div class="u-3/12@mobile">
*/
@media (min-width: 37.5em) {
.u-1\/1\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@small {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@small {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@small {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@small {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@small {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@small {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@small {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@small {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@small {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@small {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@small {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@small {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@small {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@small {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@small {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@small {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@small {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@small {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@small {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@small {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@small {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@small {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@small {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@small {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@small {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@small {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@small {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@small {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@small {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@small {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@small {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@small {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@small {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@small {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@small {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@small {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@small {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@small {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@small {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@small {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@small {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@small {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@small {
left: auto !important;
}
.u-pull-none\@small {
right: auto !important;
}
}
@media (min-width: 56.25em) {
.u-1\/1\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@medium {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@medium {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@medium {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@medium {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@medium {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@medium {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@medium {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@medium {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@medium {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@medium {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@medium {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@medium {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@medium {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@medium {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@medium {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@medium {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@medium {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@medium {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@medium {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@medium {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@medium {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@medium {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@medium {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@medium {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@medium {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@medium {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@medium {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@medium {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@medium {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@medium {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@medium {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@medium {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@medium {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@medium {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@medium {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@medium {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@medium {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@medium {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@medium {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@medium {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@medium {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@medium {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@medium {
left: auto !important;
}
.u-pull-none\@medium {
right: auto !important;
}
}
@media (min-width: 75em) {
.u-1\/1\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@large {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@large {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@large {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@large {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@large {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@large {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@large {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@large {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@large {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@large {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@large {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@large {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@large {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@large {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@large {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@large {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@large {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@large {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@large {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@large {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@large {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@large {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@large {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@large {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@large {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@large {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@large {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@large {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@large {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@large {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@large {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@large {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@large {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@large {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@large {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@large {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@large {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@large {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@large {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@large {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@large {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@large {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@large {
left: auto !important;
}
.u-pull-none\@large {
right: auto !important;
}
}
@media (min-width: 88.75em) {
.u-1\/1\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@huge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@huge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@huge {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@huge {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@huge {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@huge {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@huge {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@huge {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@huge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@huge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@huge {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@huge {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@huge {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@huge {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@huge {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@huge {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@huge {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@huge {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@huge {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@huge {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@huge {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@huge {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@huge {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@huge {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@huge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@huge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@huge {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@huge {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@huge {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@huge {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@huge {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@huge {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@huge {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@huge {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@huge {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@huge {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@huge {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@huge {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@huge {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@huge {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@huge {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@huge {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@huge {
left: auto !important;
}
.u-pull-none\@huge {
right: auto !important;
}
}
@media (min-width: 93.75em) {
.u-1\/1\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@xhuge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@xhuge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@xhuge {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@xhuge {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@xhuge {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@xhuge {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@xhuge {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@xhuge {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@xhuge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@xhuge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@xhuge {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@xhuge {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@xhuge {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@xhuge {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@xhuge {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@xhuge {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@xhuge {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@xhuge {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@xhuge {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@xhuge {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@xhuge {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@xhuge {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@xhuge {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@xhuge {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@xhuge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@xhuge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@xhuge {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@xhuge {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@xhuge {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@xhuge {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@xhuge {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@xhuge {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@xhuge {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@xhuge {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@xhuge {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@xhuge {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@xhuge {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@xhuge {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@xhuge {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@xhuge {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@xhuge {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@xhuge {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@xhuge {
left: auto !important;
}
.u-pull-none\@xhuge {
right: auto !important;
}
}
/* ==========================================================================
#HEADINGS
========================================================================== */
/**
* Redefine all of our basic heading styles against utility classes so as to
* allow for double stranded heading hierarchy, e.g. we semantically need an H2,
* but we want it to be sized like an H1:
*
* <h2 class="u-h1"></h2>
*
*/
.u-h1 {
font-size: 42px !important;
font-size: 2.625rem !important;
line-height: 1.14286 !important;
}
.u-h2 {
font-size: 36px !important;
font-size: 2.25rem !important;
line-height: 1.16667 !important;
}
.u-h3 {
font-size: 24px !important;
font-size: 1.5rem !important;
line-height: 1.25 !important;
}
.u-h4 {
font-size: 21px !important;
font-size: 1.3125rem !important;
line-height: 1.42857 !important;
}
.u-h5 {
font-size: 18px !important;
font-size: 1.125rem !important;
line-height: 1.33333 !important;
}
.u-h6 {
font-size: 16px !important;
font-size: 1rem !important;
line-height: 1.5 !important;
}
/* ==========================================================================
#SPACINGS
========================================================================== */
/**
* Utility classes to put specific spacing values onto elements. The below loop
* will generate us a suite of classes like:
*
* .u-margin-top {}
* .u-padding-left-large {}
* .u-margin-right-small {}
* .u-padding {}
* .u-padding-right-none {}
* .u-padding-horizontal {}
* .u-padding-vertical-small {}
*/
.u-padding {
padding: 24px !important;
}
.u-padding-tiny {
padding: 6px !important;
}
.u-padding-small {
padding: 12px !important;
}
.u-padding-large {
padding: 48px !important;
}
.u-padding-huge {
padding: 96px !important;
}
.u-padding-none {
padding: 0 !important;
}
.u-padding-top {
padding-top: 24px !important;
}
.u-padding-top-tiny {
padding-top: 6px !important;
}
.u-padding-top-small {
padding-top: 12px !important;
}
.u-padding-top-large {
padding-top: 48px !important;
}
.u-padding-top-huge {
padding-top: 96px !important;
}
.u-padding-top-none {
padding-top: 0 !important;
}
.u-padding-right {
padding-right: 24px !important;
}
.u-padding-right-tiny {
padding-right: 6px !important;
}
.u-padding-right-small {
padding-right: 12px !important;
}
.u-padding-right-large {
padding-right: 48px !important;
}
.u-padding-right-huge {
padding-right: 96px !important;
}
.u-padding-right-none {
padding-right: 0 !important;
}
.u-padding-bottom {
padding-bottom: 24px !important;
}
.u-padding-bottom-tiny {
padding-bottom: 6px !important;
}
.u-padding-bottom-small {
padding-bottom: 12px !important;
}
.u-padding-bottom-large {
padding-bottom: 48px !important;
}
.u-padding-bottom-huge {
padding-bottom: 96px !important;
}
.u-padding-bottom-none {
padding-bottom: 0 !important;
}
.u-padding-left {
padding-left: 24px !important;
}
.u-padding-left-tiny {
padding-left: 6px !important;
}
.u-padding-left-small {
padding-left: 12px !important;
}
.u-padding-left-large {
padding-left: 48px !important;
}
.u-padding-left-huge {
padding-left: 96px !important;
}
.u-padding-left-none {
padding-left: 0 !important;
}
.u-margin {
margin: 24px !important;
}
.u-margin-tiny {
margin: 6px !important;
}
.u-margin-small {
margin: 12px !important;
}
.u-margin-large {
margin: 48px !important;
}
.u-margin-huge {
margin: 96px !important;
}
.u-margin-none {
margin: 0 !important;
}
.u-margin-top {
margin-top: 24px !important;
}
.u-margin-top-tiny {
margin-top: 6px !important;
}
.u-margin-top-small {
margin-top: 12px !important;
}
.u-margin-top-large {
margin-top: 48px !important;
}
.u-margin-top-huge {
margin-top: 96px !important;
}
.u-margin-top-none {
margin-top: 0 !important;
}
.u-margin-right {
margin-right: 24px !important;
}
.u-margin-right-tiny {
margin-right: 6px !important;
}
.u-margin-right-small {
margin-right: 12px !important;
}
.u-margin-right-large {
margin-right: 48px !important;
}
.u-margin-right-huge {
margin-right: 96px !important;
}
.u-margin-right-none {
margin-right: 0 !important;
}
.u-margin-bottom {
margin-bottom: 24px !important;
}
.u-margin-bottom-tiny {
margin-bottom: 6px !important;
}
.u-margin-bottom-small {
margin-bottom: 12px !important;
}
.u-margin-bottom-large {
margin-bottom: 48px !important;
}
.u-margin-bottom-huge {
margin-bottom: 96px !important;
}
.u-margin-bottom-none {
margin-bottom: 0 !important;
}
.u-margin-left {
margin-left: 24px !important;
}
.u-margin-left-tiny {
margin-left: 6px !important;
}
.u-margin-left-small {
margin-left: 12px !important;
}
.u-margin-left-large {
margin-left: 48px !important;
}
.u-margin-left-huge {
margin-left: 96px !important;
}
.u-margin-left-none {
margin-left: 0 !important;
}
/* ==========================================================================
#RESPONSIVE-SPACINGS
========================================================================== */
/**
* Utility classes enhancing the normal spacing classes by adding responsiveness
* to them. By default, there are not responsive spacings defined. You can
* generate responsive spacings by adding entries to the following three Sass
* maps, e.g.:
*
* $inuit-responsive-spacing-directions: (
* null: null,
* bottom: bottom,
* );
*
* $inuit-responsive-spacing-properties: (
* "margin": "margin",
* );
*
* $inuit-responsive-spacing-sizes: (
* "-small": $inuit-global-spacing-unit-small,
* );
*
* This would bring us the following classes:
*
* .u-margin-small@mobile {}
* .u-margin-small@tablet {}
* .u-margin-small@desktop {}
* .u-margin-small@wide {}
* .u-margin-bottom-small@mobile {}
* .u-margin-bottom-small@tablet {}
* .u-margin-bottom-small@desktop {}
* .u-margin-bottom-small@wide {}
*
* You can change the generated CSS classes by further extending the Sass maps.
* If you want every ‘normal’ spacing (those from `utilities.spacings`) also as
* a responsive version, you can just mirror the ‘normal’ spacings:
*
* $inuit-responsive-spacing-directions: $inuit-spacing-directions !default;
*
* $inuit-responsive-spacing-properties: $inuit-spacing-properties !default;
*
* $inuit-responsive-spacing-sizes: $inuit-spacing-sizes !default;
*
* BUT BE AWARE: This can generate a huge chunk of extra CSS, depending on the
* amount of breakpoints you defined. So please check your CSS’ output and
* filesize!
*/
/* stylelint-disable max-nesting-depth */
@media (min-width: 37.5em) {
.u-padding\@small {
padding: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding\@medium {
padding: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding\@large {
padding: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding\@huge {
padding: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding\@xhuge {
padding: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-tiny\@small {
padding: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-tiny\@medium {
padding: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-tiny\@large {
padding: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-tiny\@huge {
padding: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-tiny\@xhuge {
padding: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-small\@small {
padding: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-small\@medium {
padding: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-small\@large {
padding: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-small\@huge {
padding: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-small\@xhuge {
padding: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-large\@small {
padding: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-large\@medium {
padding: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-large\@large {
padding: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-large\@huge {
padding: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-large\@xhuge {
padding: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-huge\@small {
padding: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-huge\@medium {
padding: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-huge\@large {
padding: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-huge\@huge {
padding: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-huge\@xhuge {
padding: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-none\@small {
padding: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-none\@medium {
padding: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-none\@large {
padding: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-none\@huge {
padding: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-none\@xhuge {
padding: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top\@small {
padding-top: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top\@medium {
padding-top: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding-top\@large {
padding-top: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top\@huge {
padding-top: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top\@xhuge {
padding-top: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-tiny\@small {
padding-top: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-tiny\@medium {
padding-top: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-top-tiny\@large {
padding-top: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-tiny\@huge {
padding-top: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-tiny\@xhuge {
padding-top: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-small\@small {
padding-top: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-small\@medium {
padding-top: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-top-small\@large {
padding-top: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-small\@huge {
padding-top: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-small\@xhuge {
padding-top: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-large\@small {
padding-top: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-large\@medium {
padding-top: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-top-large\@large {
padding-top: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-large\@huge {
padding-top: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-large\@xhuge {
padding-top: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-huge\@small {
padding-top: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-huge\@medium {
padding-top: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-top-huge\@large {
padding-top: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-huge\@huge {
padding-top: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-huge\@xhuge {
padding-top: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-none\@small {
padding-top: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-none\@medium {
padding-top: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-top-none\@large {
padding-top: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-none\@huge {
padding-top: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-none\@xhuge {
padding-top: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right\@small {
padding-right: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right\@medium {
padding-right: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding-right\@large {
padding-right: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right\@huge {
padding-right: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right\@xhuge {
padding-right: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-tiny\@small {
padding-right: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-tiny\@medium {
padding-right: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-right-tiny\@large {
padding-right: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-tiny\@huge {
padding-right: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-tiny\@xhuge {
padding-right: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-small\@small {
padding-right: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-small\@medium {
padding-right: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-right-small\@large {
padding-right: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-small\@huge {
padding-right: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-small\@xhuge {
padding-right: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-large\@small {
padding-right: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-large\@medium {
padding-right: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-right-large\@large {
padding-right: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-large\@huge {
padding-right: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-large\@xhuge {
padding-right: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-huge\@small {
padding-right: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-huge\@medium {
padding-right: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-right-huge\@large {
padding-right: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-huge\@huge {
padding-right: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-huge\@xhuge {
padding-right: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-none\@small {
padding-right: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-none\@medium {
padding-right: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-right-none\@large {
padding-right: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-none\@huge {
padding-right: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-none\@xhuge {
padding-right: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom\@small {
padding-bottom: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom\@medium {
padding-bottom: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom\@large {
padding-bottom: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom\@huge {
padding-bottom: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom\@xhuge {
padding-bottom: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-tiny\@small {
padding-bottom: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-tiny\@medium {
padding-bottom: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-tiny\@large {
padding-bottom: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-tiny\@huge {
padding-bottom: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-tiny\@xhuge {
padding-bottom: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-small\@small {
padding-bottom: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-small\@medium {
padding-bottom: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-small\@large {
padding-bottom: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-small\@huge {
padding-bottom: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-small\@xhuge {
padding-bottom: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-large\@small {
padding-bottom: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-large\@medium {
padding-bottom: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-large\@large {
padding-bottom: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-large\@huge {
padding-bottom: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-large\@xhuge {
padding-bottom: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-huge\@small {
padding-bottom: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-huge\@medium {
padding-bottom: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-huge\@large {
padding-bottom: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-huge\@huge {
padding-bottom: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-huge\@xhuge {
padding-bottom: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-none\@small {
padding-bottom: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-none\@medium {
padding-bottom: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-none\@large {
padding-bottom: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-none\@huge {
padding-bottom: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-none\@xhuge {
padding-bottom: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left\@small {
padding-left: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left\@medium {
padding-left: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding-left\@large {
padding-left: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left\@huge {
padding-left: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left\@xhuge {
padding-left: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-tiny\@small {
padding-left: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-tiny\@medium {
padding-left: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-left-tiny\@large {
padding-left: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-tiny\@huge {
padding-left: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-tiny\@xhuge {
padding-left: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-small\@small {
padding-left: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-small\@medium {
padding-left: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-left-small\@large {
padding-left: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-small\@huge {
padding-left: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-small\@xhuge {
padding-left: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-large\@small {
padding-left: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-large\@medium {
padding-left: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-left-large\@large {
padding-left: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-large\@huge {
padding-left: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-large\@xhuge {
padding-left: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-huge\@small {
padding-left: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-huge\@medium {
padding-left: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-left-huge\@large {
padding-left: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-huge\@huge {
padding-left: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-huge\@xhuge {
padding-left: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-none\@small {
padding-left: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-none\@medium {
padding-left: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-left-none\@large {
padding-left: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-none\@huge {
padding-left: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-none\@xhuge {
padding-left: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin\@small {
margin: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin\@medium {
margin: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin\@large {
margin: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin\@huge {
margin: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin\@xhuge {
margin: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-tiny\@small {
margin: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-tiny\@medium {
margin: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-tiny\@large {
margin: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-tiny\@huge {
margin: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-tiny\@xhuge {
margin: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-small\@small {
margin: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-small\@medium {
margin: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-small\@large {
margin: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-small\@huge {
margin: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-small\@xhuge {
margin: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-large\@small {
margin: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-large\@medium {
margin: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-large\@large {
margin: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-large\@huge {
margin: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-large\@xhuge {
margin: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-huge\@small {
margin: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-huge\@medium {
margin: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-huge\@large {
margin: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-huge\@huge {
margin: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-huge\@xhuge {
margin: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-none\@small {
margin: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-none\@medium {
margin: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-none\@large {
margin: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-none\@huge {
margin: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-none\@xhuge {
margin: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top\@small {
margin-top: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top\@medium {
margin-top: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin-top\@large {
margin-top: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top\@huge {
margin-top: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top\@xhuge {
margin-top: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-tiny\@small {
margin-top: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-tiny\@medium {
margin-top: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-top-tiny\@large {
margin-top: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-tiny\@huge {
margin-top: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-tiny\@xhuge {
margin-top: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-small\@small {
margin-top: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-small\@medium {
margin-top: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-top-small\@large {
margin-top: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-small\@huge {
margin-top: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-small\@xhuge {
margin-top: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-large\@small {
margin-top: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-large\@medium {
margin-top: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-top-large\@large {
margin-top: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-large\@huge {
margin-top: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-large\@xhuge {
margin-top: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-huge\@small {
margin-top: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-huge\@medium {
margin-top: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-top-huge\@large {
margin-top: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-huge\@huge {
margin-top: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-huge\@xhuge {
margin-top: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-none\@small {
margin-top: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-none\@medium {
margin-top: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-top-none\@large {
margin-top: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-none\@huge {
margin-top: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-none\@xhuge {
margin-top: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right\@small {
margin-right: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right\@medium {
margin-right: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin-right\@large {
margin-right: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right\@huge {
margin-right: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right\@xhuge {
margin-right: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-tiny\@small {
margin-right: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-tiny\@medium {
margin-right: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-right-tiny\@large {
margin-right: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-tiny\@huge {
margin-right: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-tiny\@xhuge {
margin-right: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-small\@small {
margin-right: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-small\@medium {
margin-right: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-right-small\@large {
margin-right: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-small\@huge {
margin-right: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-small\@xhuge {
margin-right: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-large\@small {
margin-right: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-large\@medium {
margin-right: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-right-large\@large {
margin-right: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-large\@huge {
margin-right: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-large\@xhuge {
margin-right: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-huge\@small {
margin-right: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-huge\@medium {
margin-right: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-right-huge\@large {
margin-right: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-huge\@huge {
margin-right: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-huge\@xhuge {
margin-right: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-none\@small {
margin-right: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-none\@medium {
margin-right: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-right-none\@large {
margin-right: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-none\@huge {
margin-right: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-none\@xhuge {
margin-right: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom\@small {
margin-bottom: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom\@medium {
margin-bottom: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom\@large {
margin-bottom: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom\@huge {
margin-bottom: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom\@xhuge {
margin-bottom: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-tiny\@small {
margin-bottom: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-tiny\@medium {
margin-bottom: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-tiny\@large {
margin-bottom: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-tiny\@huge {
margin-bottom: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-tiny\@xhuge {
margin-bottom: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-small\@small {
margin-bottom: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-small\@medium {
margin-bottom: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-small\@large {
margin-bottom: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-small\@huge {
margin-bottom: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-small\@xhuge {
margin-bottom: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-large\@small {
margin-bottom: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-large\@medium {
margin-bottom: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-large\@large {
margin-bottom: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-large\@huge {
margin-bottom: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-large\@xhuge {
margin-bottom: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-huge\@small {
margin-bottom: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-huge\@medium {
margin-bottom: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-huge\@large {
margin-bottom: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-huge\@huge {
margin-bottom: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-huge\@xhuge {
margin-bottom: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-none\@small {
margin-bottom: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-none\@medium {
margin-bottom: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-none\@large {
margin-bottom: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-none\@huge {
margin-bottom: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-none\@xhuge {
margin-bottom: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left\@small {
margin-left: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left\@medium {
margin-left: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin-left\@large {
margin-left: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left\@huge {
margin-left: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left\@xhuge {
margin-left: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-tiny\@small {
margin-left: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-tiny\@medium {
margin-left: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-left-tiny\@large {
margin-left: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-tiny\@huge {
margin-left: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-tiny\@xhuge {
margin-left: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-small\@small {
margin-left: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-small\@medium {
margin-left: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-left-small\@large {
margin-left: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-small\@huge {
margin-left: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-small\@xhuge {
margin-left: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-large\@small {
margin-left: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-large\@medium {
margin-left: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-left-large\@large {
margin-left: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-large\@huge {
margin-left: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-large\@xhuge {
margin-left: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-huge\@small {
margin-left: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-huge\@medium {
margin-left: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-left-huge\@large {
margin-left: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-huge\@huge {
margin-left: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-huge\@xhuge {
margin-left: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-none\@small {
margin-left: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-none\@medium {
margin-left: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-left-none\@large {
margin-left: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-none\@huge {
margin-left: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-none\@xhuge {
margin-left: 0 !important;
}
}
/* stylelint-enable max-nesting-depth */
/* ==========================================================================
#PRINT
========================================================================== */
/**
* Very crude, reset-like styles taken from the HTML5 Boilerplate:
* https://github.com/h5bp/html5-boilerplate/blob/5.3.0/dist/doc/css.md#print-styles
* https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css#L205-L282
*/
@media print {
/**
* 1. Black prints faster: http://www.sanbeiji.com/archives/953
*/
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
/* [1] */
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/**
* Don’t show links that are fragment identifiers, or use the `javascript:`
* pseudo protocol.
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/**
* Printing Tables: http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
/* ==========================================================================
#HIDE
========================================================================== */
/**
* Hide only visually, but have it available for screen readers:
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.u-hidden-visually {
border: 0 !important;
clip: rect(0 0 0 0) !important;
-webkit-clip-path: inset(50%) !important;
clip-path: inset(50%) !important;
height: 1px !important;
margin: -1px !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
white-space: nowrap !important;
width: 1px !important;
}
/**
* Hide visually and from screen readers.
*/
.u-hidden {
display: none !important;
}
.u-divider + .u-divider {
border-top: 2px solid #f0f1f3;
}
.u-text-center {
text-align: center;
}
@media (min-width: 56.25em) {
.u-text-center\@medium {
text-align: center;
}
}
/* ==================================
#SHAME
================================== */
.o-crop--fit > .o-crop__content {
max-width: 100%;
}
|
assets/css/screen.css
|
@charset "UTF-8";
/* ==================================
#INUITCSS
================================== */
/**
* inuitcss, by @csswizardry
*
* github.com/inuitcss | inuitcss.com
*/
/**
* CONTENTS
*
* SETTINGS
* Config...............Project-level configuration and feature switches.
* Core.................inuitcss’ core and setup settings.
* Global...............Project-wide variables and settings.
* Colors...............Color library.
*
* TOOLS
* Font-size............A mixin which guarantees baseline-friendly line-heights.
* Clearfix.............Micro clearfix mixin.
* Hidden...............Mixin for hiding elements.
* Aliases..............Custom (and shorter) aliases for Inuit variables.
* Sass MQ..............inuitcss’ default media query manager.
*
* GENERIC
* Box-sizing...........Better default `box-sizing`.
* Normalize.css........A level playing field using @necolas’ Normalize.css.
* Reset................A tiny reset to complement Normalize.css.
* Shared...............Sensibly and tersely share some global commonalities
* (particularly useful when managing vertical rhythm).
*
* ELEMENTS
* Page.................Set up our document’s default `font-size` and
* `line-height`.
* Headings.............Very minimal (i.e. only font-size information) for
* headings 1 through 6.
* Images...............Base image styles.
* Tables...............Simple table styles.
*
* OBJECTS
* Wrapper..............Page constraint object.
* Layout...............Generic layout module.
* Media................Image- and text-like content side by side. The
* poster-child of OOCSS.
* Flag.................Table-layout-based advancement on the Media object.
* List-bare............Lists with no bullets or indents.
* List-inline..........A list whose items all site in a line.
* Box..................Simple boxing abstraction.
* Block................Image-on-top-of-text object.
* Ratio................A container for maintaining aspect ratio of content.
* Crop.................Provide a cropping context for media (images, etc.).
* Table................Classes for manipulating `table`s.
* Pack.................Pack items into available horizontal space.
*
* COMPONENTS
* Custom UI components
*
* SCOPE
* Scoped styles for plain HTML elements or selectors.
*
* DOCUMENTATION
* Components used for a pattern library or styleguide
*
* PLUGINS
* Plugin styles
*
* UTILITIES
* Widths...............Simple width helper classes.
* Headings.............Reassigning our heading styles to helper classes.
* Spacings.............Nudge bits of the DOM around with these spacing
* classes.
* Responsive-Spacings..Enhances the function of normal spacings for
* responsive usage.
* Print................Reset-like styles taken from the HTML5 Boilerplate.
* Hide.................Helper classes to hide content
*/
@import url("https://fonts.googleapis.com/css?family=Cairo:300,400,600,700|Noto+Serif:400,400i,700,700i");
/* ==========================================================================
#BOX-SIZING
========================================================================== */
/**
* More sensible default box-sizing:
* css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
*/
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in
* IE on Windows Phone and in iOS.
*/
html {
line-height: 1.15;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0;
}
/**
* Add the correct display in IE 9-.
*/
article,
aside,
footer,
header,
nav,
section {
display: block;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
/* 1 */
display: block;
}
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px;
}
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
-webkit-box-sizing: content-box;
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
background-color: transparent;
/* 1 */
-webkit-text-decoration-skip: objects;
/* 2 */
}
/**
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
/* 2 */
}
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit;
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic;
}
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000;
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
audio,
video {
display: inline-block;
}
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0;
}
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none;
}
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden;
}
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: sans-serif;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none;
}
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
/* 2 */
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */
}
/**
* 1. Add the correct display in IE 9-.
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */
}
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type="checkbox"],
[type="radio"] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */
}
/**
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */
}
/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
display: block;
}
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item;
}
/* Scripting
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
canvas {
display: inline-block;
}
/**
* Add the correct display in IE.
*/
template {
display: none;
}
/* Hidden
========================================================================== */
/**
* Add the correct display in IE 10-.
*/
[hidden] {
display: none;
}
/* ==========================================================================
#RESET
========================================================================== */
/**
* A very simple reset that sits on top of Normalize.css.
*/
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
margin: 0;
padding: 0;
}
/**
* Remove trailing margins from nested lists.
*/
li > ol,
li > ul {
margin-bottom: 0;
}
/**
* Remove default table spacing.
*/
table {
border-collapse: collapse;
border-spacing: 0;
}
/**
* 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
* on fieldsets.
*/
fieldset {
min-width: 0;
/* [1] */
border: 0;
}
/* ==========================================================================
#SHARED
========================================================================== */
/**
* Shared declarations for certain elements.
*/
/**
* Always declare margins in the same direction:
* csswizardry.com/2012/06/single-direction-margin-declarations
*/
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
margin-bottom: 24px;
}
/**
* Consistent indentation for lists.
*/
dd, ol, ul {
margin-left: 24px;
}
/* ==========================================================================
#PAGE
========================================================================== */
/**
* Simple page-level setup.
*
* 1. Set the default `font-size` and `line-height` for the entire project,
* sourced from our default variables. The `font-size` is calculated to exist
* in ems, the `line-height` is calculated to exist unitlessly.
* 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
* navigating between pages that do/do not have enough content to produce
* scrollbars naturally.
* 3. Ensure the page always fills at least the entire height of the viewport.
*/
html {
font-family: "Cairo", sans-serif;
font-size: 1em;
/* [1] */
line-height: 1.5;
/* [1] */
overflow-y: scroll;
/* [2] */
min-height: 100%;
/* [3] */
background-color: #FFFFFF;
text-rendering: optimizeLegibility;
-webkit-font-feature-settings: 'kern';
font-feature-settings: 'kern';
-webkit-font-smoothing: antialiased;
-webkit-overflow-scrolling: touch;
}
::selection {
background-color: #E4F0EF;
color: #445066;
}
/* ==========================================================================
#HEADINGS
========================================================================== */
/**
* Simple default styles for headings 1 through 6. Anything more opinionated
* than simple font-size changes should likely be applied via classes (see:
* http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
*/
h1 {
font-size: 42px;
font-size: 2.625rem;
line-height: 1.14286;
}
h2 {
font-size: 36px;
font-size: 2.25rem;
line-height: 1.16667;
}
h3 {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
h4 {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.42857;
}
h5 {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.33333;
}
h6 {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
/* ==========================================================================
#IMAGES
========================================================================== */
/**
* 1. Fluid images for responsive purposes.
* 2. Offset `alt` text from surrounding copy.
* 3. Setting `vertical-align` removes the whitespace that appears under `img`
* elements when they are dropped into a page as-is. Safer alternative to
* using `display: block;`.
*/
img {
max-width: 100%;
/* [1] */
font-style: italic;
/* [2] */
vertical-align: middle;
/* [3] */
}
/**
* If a `width` and/or `height` attribute has been explicitly defined, let’s
* not make the image fluid.
*/
img[width],
img[height] {
max-width: none;
}
/* ==========================================================================
#TABLES
========================================================================== */
/**
* 1. Ensure tables fill up as much space as possible.
*/
table {
width: 100%;
/* [1] */
}
/* ==========================================================================
#WRAPPERS
---
NOTICE: Adapted from https://github.com/inuitcss/inuitcss/blob/develop/objects/_objects.wrapper.scss
========================================================================== */
/**
* Page-level constraining and wrapping elements.
*/
/* stylelint-disable */
/* stylelint-enable */
/* Default classes.
========================================================================== */
.o-wrapper {
padding-right: 24px;
padding-left: 24px;
margin-right: auto;
margin-left: auto;
max-width: 800px;
}
@media (min-width: 56.25em) {
.o-wrapper {
padding-right: 48px;
padding-left: 48px;
}
}
/* Size variants.
========================================================================== */
.o-wrapper--tiny {
max-width: 320px;
}
.o-wrapper--small {
max-width: 720px;
}
.o-wrapper--large {
max-width: 1200px;
}
.o-wrapper--huge {
max-width: 1420px;
}
/* ==========================================================================
#ROW
========================================================================== */
/**
* Creates even spaced responsive rows using the default InuitCSS spacing variables.
*
* <div class="o-row">
* <div class="o-wrapper">
* </div>
* </div>
*
*/
/* Default classes.
========================================================================== */
.o-row {
padding-top: 24px;
padding-bottom: 24px;
}
@media (min-width: 56.25em) {
.o-row {
padding-top: 48px;
padding-bottom: 48px;
}
}
.o-row-tiny {
padding-top: 6px;
padding-bottom: 6px;
}
@media (min-width: 56.25em) {
.o-row-tiny {
padding-top: 12px;
padding-bottom: 12px;
}
}
.o-row-small {
padding-top: 12px;
padding-bottom: 12px;
}
@media (min-width: 56.25em) {
.o-row-small {
padding-top: 24px;
padding-bottom: 24px;
}
}
.o-row-large {
padding-top: 48px;
padding-bottom: 48px;
}
@media (min-width: 56.25em) {
.o-row-large {
padding-top: 96px;
padding-bottom: 96px;
}
}
.o-row-huge {
padding-top: 96px;
padding-bottom: 96px;
}
/* ==========================================================================
#FLEXBOX LAYOUT
---
NOTICE: Adapted from https://github.com/inuitcss/inuitcss/blob/develop/objects/_objects.layout.scss
========================================================================== */
/**
* Grid-like layout system.
*
* The layout object provides us with a column-style layout system. This file
* contains the basic structural elements, but classes should be complemented
* with width utilities, for example:
*
* <div class="o-layout">
* <div class="o-layout__item u-1/2">
* </div>
* <div class="o-layout__item u-1/2">
* </div>
* </div>
*
* The above will create a two-column structure in which each column will
* fluidly fill half of the width of the parent. We can have more complex
* systems:
*
* <div class="o-layout">
* <div class="o-layout__item u-1/1 u-1/3@medium">
* </div>
* <div class="o-layout__item u-1/2 u-1/3@medium">
* </div>
* <div class="o-layout__item u-1/2 u-1/3@medium">
* </div>
* </div>
*
* The above will create a system in which the first item will be 100% width
* until we enter our medium breakpoint, when it will become 33.333% width. The
* second and third items will be 50% of their parent, until they also become
* 33.333% width at the medium breakpoint.
*
* We can also manipulate entire layout systems by adding a series of modifiers
* to the `.o-layout` block. For example:
*
* <div class="o-layout o-layout--reverse">
*
* This will reverse the displayed order of the system so that it runs in the
* opposite order to our source, effectively flipping the system over.
*
* <div class="o-layout o-layout--[right|center]">
*
* This will cause the system to fill up from either the centre or the right
* hand side. Default behaviour is to fill up the layout system from the left.
*
* There are plenty more options available to us: explore them below.
*/
/* Default/mandatory classes.
========================================================================== */
/**
* 1. Allows us to use the layout object on any type of element.
* 2. We need to defensively reset any box-model properties.
* 3. Define flexbox settings to allow grid-like behaviour
* 4. Use the negative margin trick for multi-row grids:
*/
.o-layout {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
/* [3] */
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
/* [3] */
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
/* [3] */
margin: 0;
/* [2] */
padding: 0;
/* [2] */
list-style: none;
/* [1] */
margin: -24px;
/* [4] */
}
/**
* 1. By default, all layout items are full-width (mobile first).
* 2. Gutters provided by padding:
*/
.o-layout__item {
width: 100%;
/* [1] */
padding: 24px;
}
/* Gutter size modifiers.
========================================================================== */
.o-layout--tiny {
margin: -6px;
}
.o-layout--tiny > .o-layout__item {
padding: 6px;
}
.o-layout--small {
margin: -12px;
}
.o-layout--small > .o-layout__item {
padding: 12px;
}
.o-layout--large {
margin: -24px;
}
.o-layout--large > .o-layout__item {
padding: 24px;
}
@media (min-width: 56.25em) {
.o-layout--large {
margin: -48px;
}
.o-layout--large > .o-layout__item {
padding: 48px;
}
}
.o-layout--huge {
margin: -96px;
}
.o-layout--huge > .o-layout__item {
padding: 96px;
}
.o-layout--flush {
margin: 0;
}
.o-layout--flush > .o-layout__item {
padding: 0;
}
/* Vertical alignment modifiers.
========================================================================== */
/**
* Align all grid items to the middles of each other.
*/
.o-layout--middle > .o-layout__item {
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center;
}
/**
* Align all grid items to the bottoms of each other.
*/
.o-layout--bottom > .o-layout__item {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
}
/* Fill order modifiers.
========================================================================== */
/**
* Fill up the layout system from the centre.
*/
.o-layout--center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
/**
* Fill up the layout system from the right-hand side.
*/
.o-layout--right {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
/**
* Reverse the rendered order of the grid system.
*/
.o-layout--reverse {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
/* ==========================================================================
#MEDIA
========================================================================== */
/**
* Place any image- and text-like content side-by-side, as per:
* http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
*/
.o-media {
display: block;
}
.o-media:after {
content: "" !important;
display: block !important;
clear: both !important;
}
.o-media__img {
float: left;
margin-right: 24px;
}
.o-media__img > img {
display: block;
}
.o-media__body {
overflow: hidden;
display: block;
}
.o-media__body,
.o-media__body > :last-child {
margin-bottom: 0;
}
/* Size variants
========================================================================== */
/**
* Modify the amount of space between our image and our text. We also have
* reversible options for all available sizes.
*/
.o-media--flush > .o-media__img {
margin-right: 0;
margin-left: 0;
}
.o-media--tiny > .o-media__img {
margin-right: 6px;
}
.o-media--tiny.o-media--reverse > .o-media__img {
margin-right: 0;
margin-left: 6px;
}
.o-media--small > .o-media__img {
margin-right: 12px;
}
.o-media--small.o-media--reverse > .o-media__img {
margin-right: 0;
margin-left: 12px;
}
.o-media--large > .o-media__img {
margin-right: 48px;
}
.o-media--large.o-media--reverse > .o-media__img {
margin-right: 0;
margin-left: 48px;
}
.o-media--huge > .o-media__img {
margin-right: 96px;
}
.o-media--huge.o-media--reverse > .o-media__img {
margin-right: 0;
margin-left: 96px;
}
/* Reversed media objects
========================================================================== */
.o-media--reverse > .o-media__img {
float: right;
margin-right: 0;
margin-left: 24px;
}
/* ==========================================================================
#FLAG
========================================================================== */
/**
* The flag object is a design pattern similar to the media object, however it
* utilises `display: table[-cell];` to give us control over the vertical
* alignments of the text and image.
*
* http://csswizardry.com/2013/05/the-flag-object/
*
* 1. Allows us to control vertical alignments.
* 2. Force the object to be the full width of its parent. Combined with [1],
* this makes the object behave in a quasi-`display: block;` manner.
* 3. Reset inherited `border-spacing` declarations.
*/
.o-flag {
display: table;
/* [1] */
width: 100%;
/* [2] */
border-spacing: 0;
/* [3] */
}
/**
* Items within a flag object. There should only ever be one of each.
*
* 1. Default to aligning content to their middles.
*/
.o-flag__img,
.o-flag__body {
display: table-cell;
vertical-align: middle;
/* [1] */
}
/**
* Flag images have a space between them and the body of the object.
*
* 1. Force `.flag__img` to take up as little space as possible:
* https://pixelsvsbytes.com/2012/02/this-css-layout-grid-is-no-holy-grail/
*/
.o-flag__img {
width: 1px;
/* [1] */
padding-right: 24px;
/**
* 1. Fixes problem with images disappearing.
*
* The direct child selector '>' needs to remain in order for nested flag
* objects to not inherit their parent’s formatting. In case the image tag
* is wrapped into another tag, e.g. an anchor for linking reasons, it will
* disappear. In that case try wrapping the whole o-flag__img object into
* an anchor tag.
*
* E.g.:
*
* <a href="/">
* <div class="o-flag__img">
* <img src="./link/to/image.jpg" alt="image alt text">
* </div>
* </a>
*/
}
.o-flag__img > img {
max-width: none;
/* [1] */
}
/**
* The container for the main content of the flag object.
*
* 1. Forces the `.flag__body` to take up all remaining space.
*/
.o-flag__body {
width: auto;
/* [1] */
}
.o-flag__body,
.o-flag__body > :last-child {
margin-bottom: 0;
}
/* Size variants
========================================================================== */
.o-flag--flush > .o-flag__img {
padding-right: 0;
padding-left: 0;
}
.o-flag--tiny > .o-flag__img {
padding-right: 6px;
}
.o-flag--tiny.o-flag--reverse > .o-flag__img {
padding-right: 0;
padding-left: 6px;
}
.o-flag--small > .o-flag__img {
padding-right: 12px;
}
.o-flag--small.o-flag--reverse > .o-flag__img {
padding-right: 0;
padding-left: 12px;
}
.o-flag--large > .o-flag__img {
padding-right: 48px;
}
.o-flag--large.o-flag--reverse > .o-flag__img {
padding-right: 0;
padding-left: 48px;
}
.o-flag--huge > .o-flag__img {
padding-right: 96px;
}
.o-flag--huge.o-flag--reverse > .o-flag__img {
padding-right: 0;
padding-left: 96px;
}
/* Reversed flag
========================================================================== */
/**
* 1. Swap the rendered direction of the object…
* 2. …and reset it.
* 3. Reassign margins to the correct sides.
*/
.o-flag--reverse {
direction: rtl;
/* [1] */
}
.o-flag--reverse > .o-flag__img,
.o-flag--reverse > .o-flag__body {
direction: ltr;
/* [2] */
}
.o-flag--reverse > .o-flag__img {
padding-right: 0;
/* [3] */
padding-left: 24px;
/* [3] */
}
/* Alignment variants
========================================================================== */
/**
* Vertically align the image- and body-content differently. Defaults to middle.
*/
.o-flag--top > .o-flag__img,
.o-flag--top > .o-flag__body {
vertical-align: top;
}
.o-flag--bottom > .o-flag__img,
.o-flag--bottom > .o-flag__body {
vertical-align: bottom;
}
/* ==========================================================================
#LIST-BARE
========================================================================== */
/**
* Strip list-like appearance from lists by removing their bullets and any
* indentation.
*
* Note: Declaring the item class might not be necessary everywhere,
* but is for example in <dl> lists for the <dd> children.
*/
.o-list-bare {
list-style: none;
margin-left: 0;
}
.o-list-bare__item {
margin-left: 0;
}
/* ==========================================================================
#LIST-INLINE
========================================================================== */
/**
* The list-inline object simply displays a list of items in one line.
*/
.o-list-inline {
margin-left: 0;
list-style: none;
}
.o-list-inline__item {
display: inline-block;
}
/* ==========================================================================
#BOX
========================================================================== */
/**
* The box object simply boxes off content. Extend with cosmetic styles in the
* Components layer.
*
* 1. So we can apply the `.o-box` class to naturally-inline elements.
*/
.o-box {
display: block;
/* [1] */
padding: 24px;
}
.o-box:after {
content: "" !important;
display: block !important;
clear: both !important;
}
.o-box > :last-child {
margin-bottom: 0;
}
/* Size variants
========================================================================== */
.o-box--flush {
padding: 0;
}
.o-box--tiny {
padding: 6px;
}
.o-box--small {
padding: 12px;
}
.o-box--large {
padding: 48px;
}
.o-box--huge {
padding: 96px;
}
/* ==========================================================================
#BLOCK
========================================================================== */
/**
* Stacked image-with-text object. A simple abstraction to cover a very commonly
* occurring design pattern.
*/
.o-block {
display: block;
text-align: center;
}
.o-block__img {
margin-bottom: 24px;
/* Size variants
====================================================================== */
}
.o-block--flush > .o-block__img {
margin-bottom: 0;
}
.o-block--tiny > .o-block__img {
margin-bottom: 6px;
}
.o-block--small > .o-block__img {
margin-bottom: 12px;
}
.o-block--large > .o-block__img {
margin-bottom: 48px;
}
.o-block--huge > .o-block__img {
margin-bottom: 96px;
}
.o-block__body {
display: block;
}
/* Alignment variants
========================================================================== */
.o-block--right {
text-align: right;
}
.o-block--left {
text-align: left;
}
/* ==========================================================================
#RATIO
========================================================================== */
/**
* Create ratio-bound content blocks, to keep media (e.g. images, videos) in
* their correct aspect ratios.
*
* http://alistapart.com/article/creating-intrinsic-ratios-for-video
*
* 1. Default is a 1:1 ratio (i.e. a perfect square).
*/
.o-ratio {
position: relative;
display: block;
}
.o-ratio:before {
content: "";
display: block;
width: 100%;
padding-bottom: 100%;
/* [1] */
}
.o-ratio__content,
.o-ratio > iframe,
.o-ratio > embed,
.o-ratio > object {
position: absolute;
top: 0;
bottom: 0;
left: 0;
height: 100%;
width: 100%;
}
/* Ratio variants.
========================================================================== */
/**
* Generate a series of ratio classes to be used like so:
*
* <div class="o-ratio o-ratio--golden-ratio">
*
*/
.o-ratio--2\:1:before {
padding-bottom: 50%;
}
.o-ratio--4\:3:before {
padding-bottom: 75%;
}
.o-ratio--16\:9:before {
padding-bottom: 56.25%;
}
.o-ratio--21\:9:before {
padding-bottom: 42.85714%;
}
/* Contain modifier.
========================================================================== */
/**
* Only works with image content.
* Contains the image to the boundaries, without cropping or stretching it.
*/
.o-ratio--img-contain > .o-ratio__content:before {
height: auto;
margin: auto;
max-height: 100%;
max-width: 100%;
width: auto;
}
/* ==========================================================================
#CROP
========================================================================== */
/**
* Provide a cropping container in order to display media (usually images)
* cropped to certain ratios.
*
* 1. Set up a positioning context in which the image can sit.
* 2. This is the crucial part: where the cropping happens.
*/
.o-crop {
position: relative;
/* [1] */
display: block;
overflow: hidden;
/* [2] */
}
/**
* Apply this class to the content (usually `img`) that needs cropping.
*
* 1. Image’s default positioning is top-left in the cropping box.
* 2. Make sure the media doesn’t stop itself too soon.
*/
.o-crop__content {
position: absolute;
top: 0;
/* [1] */
left: 0;
/* [1] */
max-width: none;
/* [2] */
}
/**
* We can position the media in different locations within the cropping area.
*/
.o-crop__content--left-top {
left: 0;
}
.o-crop__content--left-center {
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.o-crop__content--left-bottom {
top: auto;
bottom: 0;
}
.o-crop__content--right-top {
right: 0;
left: auto;
}
.o-crop__content--right-center {
top: 50%;
right: 0;
left: auto;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.o-crop__content--right-bottom {
top: auto;
right: 0;
bottom: 0;
left: auto;
}
.o-crop__content--center-top {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.o-crop__content--center,
.o-crop__content--center-center {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.o-crop__content--center-bottom {
top: auto;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
/* Crop-ratio variants
========================================================================== */
/**
* Generate a series of crop classes to be used like so:
*
* <div class="o-crop o-crop--golden-ratio">
*
*/
.o-crop--21\:9 {
padding-bottom: 42.85714%;
}
.o-crop--16\:9 {
padding-bottom: 56.25%;
}
.o-crop--9\:16 {
padding-bottom: 115.10791%;
}
.o-crop--4\:3 {
padding-bottom: 75%;
}
.o-crop--5\:4 {
padding-bottom: 80%;
}
.o-crop--1\:1 {
padding-bottom: 100%;
}
/* Fill modifier
========================================================================== */
/**
* Content stretches to fill it's container while maintaining aspect-ratio.
*/
.o-crop--fill > .o-crop__content {
min-height: 100%;
min-width: 100%;
}
/* ==========================================================================
#TABLE
========================================================================== */
/**
* A simple object for manipulating the structure of HTML `table`s.
*/
.o-table {
width: 100%;
}
/* Equal-width table cells
========================================================================== */
/**
* `table-layout: fixed` forces all cells within a table to occupy the same
* width as each other. This also has performance benefits: because the browser
* does not need to (re)calculate cell dimensions based on content it discovers,
* the table can be rendered very quickly. Further reading:
* https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
*/
.o-table--fixed {
table-layout: fixed;
}
/* Size variants
========================================================================== */
.o-table--tiny th,
.o-table--tiny td {
padding: 6px;
}
.o-table--small th,
.o-table--small td {
padding: 12px;
}
.o-table--large th,
.o-table--large td {
padding: 48px;
}
.o-table--huge th,
.o-table--huge td {
padding: 96px;
}
/* ==========================================================================
#PACK
========================================================================== */
/**
* The pack object simply causes any number of elements pack up horizontally to
* automatically fill an equal, fluid width of their parent.
*
* 1. Fill all available space.
* 2. Remove any leftover styling from lists.
* 3. Cause children to be automatically equally sized.
*/
.o-pack {
width: 100%;
/* [1] */
margin-left: 0;
/* [2] */
display: table;
table-layout: fixed;
/* [3] */
}
/**
* 1. Cause children to adopt table-like structure.
* 2. Default item alignment is with the tops of each other.
*/
.o-pack__item {
display: table-cell;
/* [1] */
vertical-align: top;
/* [2] */
/* Vertical alignment variants
====================================================================== */
}
.o-pack--middle > .o-pack__item {
vertical-align: middle;
}
.o-pack--bottom > .o-pack__item {
vertical-align: bottom;
}
/* Unequal-width items
========================================================================== */
.o-pack--auto {
table-layout: auto;
}
/* Size variants
========================================================================== */
.o-pack--tiny {
border-spacing: 6px;
}
.o-pack--small {
border-spacing: 12px;
}
.o-pack--default {
border-spacing: 24px;
}
.o-pack--large {
border-spacing: 48px;
}
.o-pack--huge {
border-spacing: 96px;
}
/* Reversed order packs
========================================================================== */
.o-pack--reverse {
direction: rtl;
}
.o-pack--reverse > .o-pack__item {
direction: ltr;
}
/* ==================================
#BRAND
================================== */
.c-brand-mark,
.c-brand-mark > .c-brand-mark__link {
font-size: 16px;
font-size: 1rem;
line-height: 1;
white-space: nowrap;
position: relative;
color: #1a726a;
font-weight: 700;
text-decoration: none;
margin-bottom: 0;
padding-top: 1.5px;
}
.c-logo {
display: block;
width: calc(196px / 2);
height: calc(122px / 2);
margin-top: -7.2px;
}
@media (min-width: 37.5em) {
.c-logo {
width: calc(196px / 1.5);
height: calc(122px / 1.5);
margin-top: -12px;
}
}
@media (min-width: 56.25em) {
.c-logo {
margin-top: -24px;
width: calc(196px / 1.3);
height: calc(122px / 1.3);
}
}
.c-partner {
display: block;
width: 100%;
max-width: 150px;
margin-left: auto;
margin-right: auto;
}
.c-baseline {
background-color: #f0f1f3;
color: #969daa;
text-align: center;
font-size: 14px;
font-size: 0.875rem;
line-height: 1.2;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 24px;
padding-right: 24px;
}
@media (min-width: 56.25em) {
.c-baseline {
font-size: 16px;
font-size: 1rem;
line-height: 1.2;
}
}
/* ==================================
#NAVIGATION
================================== */
.has-nav {
overflow: auto;
}
.c-navigation {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.42857;
font-family: "Cairo", sans-serif;
margin-bottom: 0;
position: relative;
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;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 56.24em) {
.c-navigation {
position: fixed;
z-index: 2;
overflow: auto;
background-color: #23988D;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 96px 24px;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.c-navigation.is-visible {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
}
@media (min-width: 56.25em) {
.c-navigation {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.33333;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
}
.c-navigation__item {
white-space: nowrap;
width: 100%;
}
.c-navigation__item + .c-navigation__item {
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid #65b7af;
}
@media (min-width: 56.25em) {
.c-navigation__item {
display: block;
width: auto;
}
.c-navigation__item + .c-navigation__item {
margin-top: 0;
padding-top: 0;
border-top: 0;
margin-left: 48px;
}
}
.c-navigation-toggle {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.71429;
font-family: "Cairo", sans-serif;
font-weight: 400;
position: absolute;
top: 24px;
right: 8px;
z-index: 3;
border: 0;
color: #a5abb6;
background-color: transparent;
-webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.has-nav .c-navigation-toggle {
position: fixed;
color: white;
}
.c-navigation-toggle:focus {
outline: 0;
}
@media (min-width: 37.5em) {
.c-navigation-toggle {
top: 36px;
right: 24px;
}
}
@media (min-width: 56.25em) {
.c-navigation-toggle {
display: none;
}
}
.c-hamburger {
display: block;
stroke: currentColor;
stroke-width: 6px;
stroke-linecap: square;
width: 38px;
height: 32px;
}
.c-hamburger__line {
-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
-webkit-transform-origin: center;
-ms-transform-origin: center;
transform-origin: center;
}
.c-hamburger__line:nth-child(3) {
opacity: 0;
}
[aria-expanded='true'] .c-hamburger__line:nth-child(2) {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
[aria-expanded='true'] .c-hamburger__line:nth-child(3) {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
opacity: 1;
}
[aria-expanded='true'] .c-hamburger__line:first-child, [aria-expanded='true'] .c-hamburger__line:last-child {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
/* ==================================
#HEADER
================================== */
.c-header {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
}
/* ==================================
#FOOTER
================================== */
/* ==================================
#TYPOGRAPHY
================================== */
.c-page-title {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.3;
font-family: "Noto Serif", serif;
font-weight: 700;
max-width: 12em;
margin-bottom: 12px;
}
@media (min-width: 37.5em) {
.c-page-title {
font-size: 42px;
font-size: 2.625rem;
line-height: 1.2;
margin-bottom: 24px;
}
}
@media (min-width: 56.25em) {
.c-page-title {
font-size: 42px;
font-size: 2.625rem;
line-height: 1.2;
margin-bottom: 24px;
}
}
@media (min-width: 75em) {
.c-page-title {
font-size: 60px;
font-size: 3.75rem;
line-height: 1.2;
margin-bottom: 24px;
}
}
.c-title {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.3;
color: #23988D;
margin-bottom: 12px;
font-family: "Noto Serif", serif;
font-weight: 700;
}
.s-theme-primary-dark .c-title,
.s-theme-secondary .c-title {
color: #FFFFFF;
}
.s-theme-white .c-title {
color: #23988D;
}
@media (min-width: 56.25em) {
.c-title {
font-size: 36px;
font-size: 2.25rem;
line-height: 1.3;
}
}
.c-title--border {
margin-bottom: 24px;
padding-bottom: 24px;
border-bottom: 2px solid #d7ecea;
}
.c-subtitle {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5;
margin-bottom: 12px;
font-family: "Noto Serif", serif;
font-weight: 700;
}
.s-theme-white .c-subtitle {
color: #23988D;
}
@media (min-width: 56.25em) {
.c-subtitle {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.5;
}
}
.c-subtitle--border {
padding-bottom: 12px;
border-bottom: 1px solid #e4e5e7;
}
.c-small-title {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
margin-bottom: 12px;
font-family: "Noto Serif", serif;
font-weight: 700;
}
@media (min-width: 56.25em) {
.c-small-title {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5;
}
}
.c-lead {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5;
margin-bottom: 48px;
font-weight: 400;
}
@media (min-width: 56.25em) {
.c-lead {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.5;
}
}
.c-para {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
font-weight: 400;
max-width: 45em;
}
@media (min-width: 56.25em) {
.c-para {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.4;
}
}
.c-para-small {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.5;
font-weight: 400;
}
@media (min-width: 56.25em) {
.c-para-small {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
}
.c-small {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
display: block;
color: #1a726a;
}
@media (min-width: 56.25em) {
.c-small {
text-align: right;
}
}
.c-small--footer {
color: #697385;
}
.c-list {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
font-weight: 600;
}
.c-list strong {
font-weight: 600;
}
@media (min-width: 56.25em) {
.c-list {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.4;
}
}
.c-list--large {
font-weight: 400;
font-size: 18px;
font-size: 1.125rem;
line-height: 1.5;
margin-top: 24px;
}
@media (min-width: 56.25em) {
.c-list--large {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.5;
}
}
.c-list__item + .c-list__item {
margin-top: 6px;
padding-top: 6px;
border-top: 1px solid #dadce0;
}
.s-theme-primary-dark .c-list__item + .c-list__item {
border-top: 1px solid #697385;
}
@media (min-width: 37.5em) {
.c-list__item + .c-list__item {
margin-top: 12px;
padding-top: 12px;
}
}
.c-list-small {
font-family: "Cairo", sans-serif;
}
.c-list-small__item > a {
font-weight: 600;
}
.c-list-small__item + .c-list-small__item {
margin-top: 6px;
padding-top: 6px;
border-top: 1px dotted #a9bbba;
}
@media (min-width: 37.5em) {
.c-list-small__item + .c-list-small__item {
margin-top: 12px;
padding-top: 12px;
}
}
.c-list-inline {
font-weight: 600;
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;
margin-bottom: 0;
}
@media (min-width: 37.5em) {
.c-list-inline {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
}
.c-list-inline__item > a {
white-space: nowrap;
}
.c-list-inline__item + .c-list-inline__item {
margin-top: 6px;
padding-top: 6px;
border-top: 1px dotted #E4F0EF;
}
@media (min-width: 37.5em) {
.c-list-inline__item + .c-list-inline__item {
display: block;
margin-top: 0;
padding-top: 0;
border-top: 0;
margin-left: 24px;
}
}
.c-list-agenda {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.71429;
font-weight: 400;
}
@media (min-width: 56.25em) {
.c-list-agenda {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
}
.c-list-agenda__item {
position: relative;
margin-left: 108px;
}
.c-list-agenda__item + .c-list-agenda__item {
margin-top: 6px;
padding-top: 6px;
border-top: 1px dotted #E4F0EF;
}
.c-list-agenda__item > strong {
display: block;
position: absolute;
left: -108px;
}
@media (min-width: 37.5em) {
.c-list-agenda__item + .c-list-agenda__item {
margin-top: 12px;
padding-top: 12px;
}
}
.c-list-big {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
font-weight: 400;
}
@media (min-width: 56.25em) {
.c-list-big {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.42857;
}
}
@media (min-width: 75em) {
.c-list-big {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
}
.c-list-big__item + .c-list-big__item {
margin-top: 6px;
}
@media (min-width: 37.5em) {
.c-list-big__item + .c-list-big__item {
margin-top: 12px;
}
}
.c-date {
font-weight: 700;
}
.c-badge {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.3;
display: inline-block;
padding: 3px 6px;
color: #697385;
background-color: #f0f1f3;
border-radius: 4px;
}
.c-form .c-badge {
margin-left: 6px;
}
.c-badge--negative {
color: #FFFFFF;
background-color: #a5abb6;
}
.c-badge--icon {
line-height: 1;
position: absolute;
display: table;
right: -6px;
top: -6px;
border-radius: 1.5em;
width: 1.5em;
height: 1.5em;
padding: .3em .5em;
border: 2px solid #FFFFFF;
vertical-align: middle;
text-align: center;
}
.c-tag {
display: inline-block;
background-color: #cfd2d8;
padding: 3px 6px;
border-radius: 4px;
font-weight: 600;
}
.c-tag--gold {
color: #a09d06;
background-color: #ecebcd;
}
.c-tag--silver {
color: #737374;
background-color: #ececed;
}
.c-tag--bronze {
color: #674d16;
background-color: #e6d9be;
}
/* ==================================
#BUTTONS
================================== */
.c-btn {
display: inline-block;
vertical-align: middle;
font: inherit;
font-weight: 600;
text-align: center;
margin: 0;
padding: 12px 24px;
-webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
border-radius: 4px;
border: 0;
}
.c-btn:focus {
outline: 0;
-webkit-box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
}
@media (min-width: 37.5em) {
.c-btn {
white-space: nowrap;
}
}
.c-btn-reset {
font: inherit;
position: relative;
color: inherit;
border: 0;
background-color: transparent;
padding: 0;
cursor: pointer;
}
.c-btn-reset:focus {
outline: 0;
-webkit-box-shadow: inset 0 0 0 2px #c3c7ce;
box-shadow: inset 0 0 0 2px #c3c7ce;
}
.c-btn-reset--large {
font-size: 36px;
font-size: 2.25rem;
line-height: 1.16667;
}
/* Size variants
================================== */
.c-btn--small {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.71429;
padding: 6px 12px;
}
.c-btn--large {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
padding: 12px 24px;
}
@media (min-width: 56.25em) {
.c-btn--large {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.33333;
padding: 18px 36px;
}
}
.c-btn--block {
display: block;
}
/* Style variants
================================== */
.c-btn--primary {
background-color: #445066;
}
.c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
text-decoration: none;
/* [4] */
color: #FFFFFF;
}
.c-btn--primary:hover, .c-btn--primary:focus {
background-color: #576275;
}
.c-btn--secondary {
background-color: #23988D;
-webkit-box-shadow: 0 10px 10px rgba(105, 115, 133, 0.1);
box-shadow: 0 10px 10px rgba(105, 115, 133, 0.1);
}
.c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
text-decoration: none;
color: #FFFFFF;
}
.c-btn--secondary:hover, .c-btn--secondary:focus {
background-color: #39a298;
}
/* Ghost buttons
================================== */
/**
* Ghost buttons have see-through backgrounds and are bordered.
*/
.c-btn--ghost {
border: 2px solid currentColor;
padding: 10px 22px;
-webkit-box-shadow: none;
box-shadow: none;
}
.c-btn--ghost, .c-btn--ghost:hover, .c-btn--ghost:active, .c-btn--ghost:focus {
background: none;
}
.c-btn--ghost.c-btn--small {
padding: 4px 10px;
}
.c-btn--ghost.c-btn--large {
padding: 22px 46px;
}
.c-btn--ghost.c-btn--primary {
color: #1a726a;
}
.c-btn--ghost.c-btn--primary:hover, .c-btn--ghost.c-btn--primary:focus {
color: #bde0dd;
}
.c-btn--ghost.c-btn--secondary {
color: #23988D;
}
.c-btn--ghost.c-btn--secondary, .c-btn--ghost.c-btn--secondary:visited {
color: #23988D;
}
.c-btn--ghost.c-btn--secondary:hover, .c-btn--ghost.c-btn--secondary:focus {
color: #4fada4;
}
.has-nav .c-btn--ghost.c-btn--secondary {
color: #FFFFFF;
}
.has-nav .c-btn--ghost.c-btn--secondary, .has-nav .c-btn--ghost.c-btn--secondary:visited {
color: #FFFFFF;
}
.has-nav .c-btn--ghost.c-btn--secondary:hover, .has-nav .c-btn--ghost.c-btn--secondary:focus {
color: #d3eae8;
}
@media (min-width: 56.25em) {
.has-nav .c-btn--ghost.c-btn--secondary {
color: #23988D;
}
.has-nav .c-btn--ghost.c-btn--secondary, .has-nav .c-btn--ghost.c-btn--secondary:visited {
color: #23988D;
}
.has-nav .c-btn--ghost.c-btn--secondary:hover, .has-nav .c-btn--ghost.c-btn--secondary:focus {
color: #4fada4;
}
}
/* Button groups
================================== */
.c-btn-group {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.c-btn-group .c-btn {
margin-right: 24px;
}
.c-btn-group .c-link {
margin: 24px 0;
}
/* ==================================
#LINKS
================================== */
.c-link,
.c-para > a {
-webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-link, .c-link:visited,
.c-para > a,
.c-para > a:visited {
color: #1a726a;
}
.c-link:hover, .c-link:focus,
.c-para > a:hover,
.c-para > a:focus {
color: #1a726a;
}
.c-link:focus,
.c-para > a:focus {
outline: 4px solid #E4F0EF;
}
.s-theme-primary-dark .c-link, .s-theme-primary-dark .c-link:visited,
.s-theme-secondary .c-link,
.s-theme-secondary .c-link:visited, .s-theme-primary-dark
.c-para > a, .s-theme-primary-dark
.c-para > a:visited,
.s-theme-secondary
.c-para > a,
.s-theme-secondary
.c-para > a:visited {
color: #FFFFFF;
}
.s-theme-primary-dark .c-link:hover, .s-theme-primary-dark .c-link:focus,
.s-theme-secondary .c-link:hover,
.s-theme-secondary .c-link:focus, .s-theme-primary-dark
.c-para > a:hover, .s-theme-primary-dark
.c-para > a:focus,
.s-theme-secondary
.c-para > a:hover,
.s-theme-secondary
.c-para > a:focus {
color: #E4F0EF;
}
.s-theme-primary-dark .c-link:focus,
.s-theme-secondary .c-link:focus, .s-theme-primary-dark
.c-para > a:focus,
.s-theme-secondary
.c-para > a:focus {
outline: 4px solid #E4F0EF;
}
.c-link--neutral, .c-link--neutral:visited {
color: #697385;
}
.c-link--neutral:hover, .c-link--neutral:focus {
color: #445066;
}
.c-link--neutral:focus {
outline: 4px solid #c3c7ce;
}
.c-link--footer {
font-weight: 400;
}
.c-link--footer, .c-link--footer:visited {
color: #a5abb6;
}
.c-link--footer:hover, .c-link--footer:focus {
color: #445066;
}
.c-link--footer:focus {
background-color: #FFFFFF;
outline: 4px solid #f0f1f3;
}
.c-link--nav {
display: block;
font-weight: 400;
}
.c-link--nav, .c-link--nav:visited {
color: #FFFFFF;
}
.c-link--nav:hover, .c-link--nav:focus {
color: #d3eae8;
}
.is-active > .c-link--nav {
color: #FFFFFF;
}
@media (min-width: 56.25em) {
.c-link--nav, .c-link--nav:visited {
color: #697385;
}
.c-link--nav:hover, .c-link--nav:focus {
color: #23988D;
}
.is-active > .c-link--nav {
color: #1a726a;
}
}
.c-link--negative, .c-link--negative:visited {
color: #FFFFFF;
}
.c-link--negative:hover, .c-link--negative:focus {
color: #FFFFFF;
}
.c-link--negative:focus {
color: #445066;
background-color: #E4F0EF;
outline: 4px solid #E4F0EF;
}
.c-link--bare, .c-link--bare:visited, .c-link--bare:hover, .c-link--bare:focus {
text-decoration: none;
}
.c-link--image {
display: block;
}
.c-link--image:focus {
background-color: #E4F0EF;
outline: 4px solid #E4F0EF;
-webkit-box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
}
.c-link--faux {
-webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
font-weight: 400;
-webkit-box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.15);
box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.15);
}
.c-link--faux, .c-link--faux:visited, .c-link--faux:hover, .c-link--faux:focus {
text-decoration: none;
}
.c-link--faux:hover, .c-link--faux:focus {
-webkit-box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.3);
box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.3);
}
.c-link--faux:focus {
background-color: #cdd8d7;
-webkit-box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.2);
box-shadow: inset 0 -4px 0 0 rgba(26, 114, 106, 0.2);
outline: 4px solid #E4F0EF;
}
.c-link--faux.c-link--negative {
-webkit-box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.3);
box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.3);
}
.c-link--faux.c-link--negative:hover, .c-link--faux.c-link--negative:focus {
-webkit-box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.5);
box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.5);
}
.c-link--faux.c-link--negative:focus {
background-color: #cdd8d7;
-webkit-box-shadow: inset 0 -4px 0 0 rgba(68, 80, 102, 0.2);
box-shadow: inset 0 -4px 0 0 rgba(68, 80, 102, 0.2);
outline: 4px solid #cdd8d7;
}
.c-link--skip {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.71429;
position: absolute;
top: -1000px;
left: -1000px;
height: 1px;
width: 1px;
display: block;
font-weight: 400;
text-decoration: none;
-webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
display: inline-block;
padding: 0 12px 0 6px;
}
.c-link--skip:focus {
width: auto;
height: auto;
top: calc(100% + 6px);
left: 0;
outline: 0;
background-color: #E4F0EF;
outline: 4px solid #E4F0EF;
}
/* ==================================
#ICONS
================================== */
.c-icon {
display: inline-block;
width: 1em;
height: 1em;
bottom: .3ex;
position: relative;
vertical-align: middle;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
.c-list .c-icon {
bottom: .32ex;
}
.c-icon--plus {
width: .75em;
height: .75em;
bottom: 0;
margin-right: 12px;
}
.c-icon--plus__vert {
-webkit-transform: scaleY(100%);
-ms-transform: scaleY(100%);
transform: scaleY(100%);
-webkit-transform-origin: center;
-ms-transform-origin: center;
transform-origin: center;
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
[aria-expanded="true"] .c-icon--plus__vert {
-webkit-transform: scaleY(0);
-ms-transform: scaleY(0);
transform: scaleY(0);
}
/* ==================================
#INPUT
================================== */
.c-input,
.c-textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
border-radius: 4px;
font-family: inherit;
margin: 0;
width: 100%;
display: block;
outline: none;
line-height: normal;
color: #697385;
background-color: #FFFFFF;
border: 1px solid #c3c7ce;
padding: 12px;
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
.c-input:focus,
.c-textarea:focus {
background-color: #FFFFFF;
color: #445066;
-webkit-box-shadow: 0 0 2px #c3c7ce;
box-shadow: 0 0 2px #c3c7ce;
}
.c-input::-webkit-input-placeholder,
.c-textarea::-webkit-input-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-input::-moz-placeholder,
.c-textarea::-moz-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-input:-ms-input-placeholder,
.c-textarea:-ms-input-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-input:-moz-placeholder,
.c-textarea:-moz-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-checkbox,
.c-radio {
position: relative;
top: 0ex;
width: 24px;
display: block;
margin-right: 6px;
}
.c-input--sm {
max-width: 14em;
}
.c-input--md {
max-width: 20em;
}
.c-input--lg {
max-width: 40em;
}
.c-select {
position: relative;
display: inline-block;
color: #697385;
width: 100%;
max-width: 25em;
}
.c-select select {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
display: inline-block;
width: 100%;
margin: 0;
padding: 12px;
color: #445066;
background-color: #FFFFFF;
border: 1px solid #c3c7ce;
border-radius: 4px;
cursor: pointer;
outline: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
/* Undo the Firefox inner focus ring */
.c-select select:focus:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #445066;
}
/* Dropdown arrow */
.c-select:after {
position: absolute;
top: 50%;
right: 1.25rem;
display: inline-block;
content: "";
width: 0;
height: 0;
margin-top: -.2rem;
pointer-events: none;
border-top: 0.35rem solid #697385;
border-right: .35rem solid transparent;
border-bottom: .35rem solid transparent;
border-left: .35rem solid transparent;
}
/* Focus */
.c-select select:focus {
-webkit-box-shadow: 0 0 2px #a5abb6;
box-shadow: 0 0 2px #a5abb6;
}
/* Active/open */
.c-select select:active {
color: #445066;
}
/* Hide the arrow in IE10 and up */
.c-select select::-ms-expand {
display: none;
}
/* Media query to target Firefox only */
@-moz-document url-prefix() {
/* Firefox hack to hide the arrow */
.c-select select {
text-indent: .01px;
text-overflow: '';
padding-right: 1rem;
}
/* <option> elements inherit styles from <select>, so reset them. */
.c-select option {
background-color: #FFFFFF;
}
}
/* IE9 hack to hide the arrow */
@media screen and (min-width: 0\0) {
.c-select select {
z-index: 1;
padding: .5rem 1.5rem .5rem 1rem;
}
.c-select:after {
z-index: 2;
}
.c-select:before {
position: absolute;
top: 0;
right: 1rem;
bottom: 0;
z-index: 2;
content: "";
display: block;
width: 1.5rem;
background-color: #c3c7ce;
}
.c-select select:hover,
.c-select select:focus,
.c-select select:active {
color: #697385;
background-color: #c3c7ce;
}
}
/* ==================================
#FORMS
================================== */
.c-fieldset {
margin-bottom: 0;
}
.c-fieldset + .c-fieldset {
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid #dadce0;
}
.c-field {
position: relative;
}
.c-field + .c-field {
margin-top: 24px;
}
.c-field--check,
.c-field--radio {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.c-field--check + .c-field--check,
.c-field--radio + .c-field--check, .c-field--check +
.c-field--radio,
.c-field--radio +
.c-field--radio {
margin-top: 6px;
}
.c-legend {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
font-weight: 700;
margin-bottom: 12px;
}
.c-label {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
display: block;
color: #697385;
margin-bottom: 6px;
}
.c-field--check .c-label {
color: #445066;
margin-bottom: 6px;
width: calc(100% - 24px);
}
.c-mailchimp {
font-weight: 400;
}
.c-mailchimp .mc-field-group {
margin-bottom: 24px;
padding-bottom: 24px;
}
.c-mailchimp .mc-field-group > input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
border-radius: 4px;
font-family: inherit;
margin: 0;
width: 100%;
display: block;
outline: none;
line-height: normal;
font-weight: 400;
color: #697385;
background-color: #FFFFFF;
border: 1px solid #cfd2d8;
padding: 6px;
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
.c-mailchimp .mc-field-group > input:focus {
background-color: #FFFFFF;
color: #445066;
-webkit-box-shadow: 0 0 2px #c3c7ce;
box-shadow: 0 0 2px #c3c7ce;
}
.c-mailchimp .mc-field-group > input::-webkit-input-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-mailchimp .mc-field-group > input::-moz-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-mailchimp .mc-field-group > input:-ms-input-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-mailchimp .mc-field-group > input:-moz-placeholder {
color: #a5abb6;
font-style: italic;
}
.c-mailchimp .mc-field-group > label {
display: block;
margin-bottom: 12px;
}
.c-mailchimp .input-group li {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.c-mailchimp .input-group label {
padding-left: 6px;
}
.c-mailchimp .button {
display: inline-block;
vertical-align: middle;
font: inherit;
font-weight: 600;
text-align: center;
margin: 0;
padding: 12px 24px;
-webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
border-radius: 4px;
border: 0;
background-color: #1a726a;
}
.c-mailchimp .button, .c-mailchimp .button:hover, .c-mailchimp .button:active, .c-mailchimp .button:focus {
text-decoration: none;
/* [4] */
color: #FFFFFF;
}
.c-mailchimp .button:focus {
outline: 0;
-webkit-box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
box-shadow: 0 0 0 6px rgba(182, 192, 191, 0.3);
}
.c-mailchimp .button:hover, .c-mailchimp .button:focus {
background-color: #23988D;
}
@media (min-width: 37.5em) {
.c-mailchimp .button {
white-space: nowrap;
}
}
.c-mailchimp strong {
display: block;
margin-bottom: 12px;
}
.c-mailchimp ul {
list-style: none;
margin-left: 0;
margin-top: 12px;
margin-bottom: 0;
}
.c-mailchimp li + li {
margin-top: 6px;
padding-top: 6px;
}
/* ==================================
#CARDS
================================== */
.c-card {
position: relative;
border-radius: 4px;
-webkit-box-shadow: 0 0 0 2px rgba(26, 114, 106, 0.1);
box-shadow: 0 0 0 2px rgba(26, 114, 106, 0.1);
-webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
height: 100%;
}
.c-card--neutral {
background-color: rgba(240, 241, 243, 0.5);
}
.c-card--white {
background-color: white;
}
.c-card--link:hover, .c-card--link:focus, .c-card--link:focus-within {
-webkit-box-shadow: 0 10px 10px rgba(105, 115, 133, 0.1), 0 0 0 2px rgba(26, 114, 106, 0.15);
box-shadow: 0 10px 10px rgba(105, 115, 133, 0.1), 0 0 0 2px rgba(26, 114, 106, 0.15);
}
.c-card,
.c-card__body {
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;
overflow: hidden;
}
.c-card__body {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
.c-card__body > * {
margin-bottom: 0;
}
.c-card__body > * + * {
margin-top: 6px;
}
.c-card__body > *:nth-last-child(2) {
margin-bottom: 24px;
}
.c-card__link::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* ==================================
#HERO
================================== */
.c-hero {
position: relative;
color: #FFFFFF;
}
.c-hero__image {
position: relative;
display: block;
overflow: hidden;
padding-bottom: 75%;
background-color: #445066;
}
.c-hero__image > img {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
max-width: none;
min-height: 100%;
max-height: 100%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
opacity: .3;
}
@media (min-width: 30em) {
.c-hero__image {
padding-bottom: 56.25%;
}
}
@media (min-width: 37.5em) {
.c-hero__image {
padding-bottom: 56.25%;
}
}
@media (min-width: 56.25em) {
.c-hero__image {
padding-bottom: 47.61905%;
}
.c-hero__image > img {
max-height: none;
}
}
@media (min-width: 75em) {
.c-hero__image {
padding-bottom: 41.66667%;
}
}
.c-hero__image--bottom > img {
position: absolute;
left: 50%;
top: auto;
bottom: 0;
min-width: 100%;
max-width: none;
min-height: 100%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
opacity: .3;
}
.c-hero__body {
position: absolute;
top: 50%;
left: 0;
width: 100%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.c-hero__body > *:last-child,
.c-hero__body > .o-wrapper > *:last-child {
margin-bottom: 0;
}
/* ==================================
#IMAGE
================================== */
.c-image {
position: relative;
display: block;
}
.c-image::after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(68, 80, 102, 0.3);
}
.c-image--link {
text-decoration: none;
-webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-image--link:hover, .c-image--link:focus {
opacity: .8;
}
/* ==================================
#ICONS
================================== */
/* ==================================
#THEME
================================== */
.s-theme-white {
color: #445066;
background-color: #FFFFFF;
}
.s-theme-neutral-xxlight {
color: #445066;
background-color: #f0f1f3;
}
.s-theme-primary-xlight {
background-color: #E4F0EF;
}
.s-theme-primary-dark {
color: #FFFFFF;
background-color: #445066;
}
.s-theme-secondary {
color: #FFFFFF;
background-color: #23988D;
}
.s-theme-secondary-light {
color: #545e5d;
background-color: #d3eae8;
}
/* ==================================
#EDITOR
================================== */
.s-editor h1,
.s-editor h2,
.s-editor h3,
.s-editor h4,
.s-editor h5,
.s-editor h6 {
font-family: "Cairo", sans-serif;
margin-bottom: 0;
color: #FFFFFF;
}
.s-editor h1 + *,
.s-editor h2 + *,
.s-editor h3 + *,
.s-editor h4 + *,
.s-editor h5 + *,
.s-editor h6 + * {
margin-top: 12px;
}
.s-editor * + h1,
.s-editor * + h2,
.s-editor * + h3,
.s-editor * + h4,
.s-editor * + h5,
.s-editor * + h6 {
margin-top: 24px;
}
.s-editor p {
margin-bottom: 0;
font-weight: 400;
}
.s-editor p + p {
margin-top: 12px;
}
.s-editor h1 {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
.s-editor h2 {
font-size: 18px;
font-size: 1.125rem;
line-height: 1.33333;
}
.s-editor h3,
.s-editor h4,
.s-editor h5,
.s-editor h6 {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
.s-editor p {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.5;
}
.s-editor a {
-webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-editor a, .s-editor a:visited {
color: #23988D;
}
.s-editor a:hover, .s-editor a:focus {
color: #1c7a71;
}
.s-editor a:focus {
background-color: #E4F0EF;
outline: 4px solid #E4F0EF;
}
.s-theme-primary-dark .s-editor a,
.s-theme-primary-dark .s-editor a:visited {
color: #f0f1f3;
}
.s-theme-primary-dark .s-editor a:focus,
.s-theme-primary-dark .s-editor a:hover {
color: #FFFFFF;
}
.s-theme-primary-xlight .s-editor a:focus {
background-color: #f2f8f7;
outline: 4px solid #f2f8f7;
}
@media (min-width: 56.25em) {
.s-editor * + h1,
.s-editor * + h2,
.s-editor * + h3,
.s-editor * + h4,
.s-editor * + h5,
.s-editor * + h6 {
margin-top: 48px;
}
.s-editor h1 {
font-size: 36px;
font-size: 2.25rem;
line-height: 1.16667;
}
.s-editor h2 {
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
.s-editor h3,
.s-editor h4,
.s-editor h5,
.s-editor h6 {
font-size: 21px;
font-size: 1.3125rem;
line-height: 1.42857;
}
.s-editor p {
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
}
/* ==================================
#SYNTAX
================================== */
/* ==========================================================================
#WIDTHS
========================================================================== */
/**
* inuitcss generates a series of utility classes that give a fluid width to
* whichever element they’re applied, e.g.:
*
* <img src="" alt="" class="u-1/2" />
*
* These classes are most commonly used in conjunction with our layout system,
* e.g.:
*
* <div class="o-layout__item u-1/2">
*
* By default, inuitcss will also generate responsive variants of each of these
* classes by using your Sass MQ configuration, e.g.:
*
* <div class="o-layout__item u-1/1 u-1/2@tablet u-1/3@desktop">
*
* Optionally, inuitcss can generate offset classes which can push and pull
* elements left and right by a specified amount, e.g.:
*
* <div class="o-layout__item u-2/3 u-pull-1/3">
*
* This is useful for making very granular changes to the rendered order of
* items in a layout.
*
* N.B. This option is turned off by default.
*/
/**
* A series of width helper classes that you can use to size things like grid
* systems. Classes take a fraction-like format (e.g. `.u-2/3`). Use these in
* your markup:
*
* <div class="u-7/12">
*
* The following will generate widths helper classes based on the fractions
* defined in the `$inuit-fractions` list.
*/
.u-1\/1 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2 {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2 {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2 {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3 {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3 {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3 {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3 {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3 {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3 {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4 {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4 {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4 {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4 {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4 {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4 {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4 {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4 {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4 {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5 {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5 {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5 {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5 {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5 {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5 {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5 {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5 {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6 {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6 {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6 {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6 {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6 {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6 {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6 {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6 {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6 {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6 {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7 {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7 {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7 {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7 {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7 {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7 {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7 {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7 {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7 {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7 {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7 {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7 {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7 {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7 {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7 {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
/**
* If we’re using Sass-MQ, automatically generate grid system(s) for each of our
* defined breakpoints, and give them a Responsive Suffix, e.g.:
*
* <div class="u-3/12@mobile">
*/
@media (min-width: 37.5em) {
.u-1\/1\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@small {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@small {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@small {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@small {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@small {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@small {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@small {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@small {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@small {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@small {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@small {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@small {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@small {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@small {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@small {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@small {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@small {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@small {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@small {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@small {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@small {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@small {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@small {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@small {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@small {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@small {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@small {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@small {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@small {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@small {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@small {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@small {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@small {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@small {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@small {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@small {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@small {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@small {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@small {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@small {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@small {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@small {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@small {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@small {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@small {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@small {
left: auto !important;
}
.u-pull-none\@small {
right: auto !important;
}
}
@media (min-width: 56.25em) {
.u-1\/1\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@medium {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@medium {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@medium {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@medium {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@medium {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@medium {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@medium {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@medium {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@medium {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@medium {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@medium {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@medium {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@medium {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@medium {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@medium {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@medium {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@medium {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@medium {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@medium {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@medium {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@medium {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@medium {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@medium {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@medium {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@medium {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@medium {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@medium {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@medium {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@medium {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@medium {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@medium {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@medium {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@medium {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@medium {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@medium {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@medium {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@medium {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@medium {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@medium {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@medium {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@medium {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@medium {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@medium {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@medium {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@medium {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@medium {
left: auto !important;
}
.u-pull-none\@medium {
right: auto !important;
}
}
@media (min-width: 75em) {
.u-1\/1\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@large {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@large {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@large {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@large {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@large {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@large {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@large {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@large {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@large {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@large {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@large {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@large {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@large {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@large {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@large {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@large {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@large {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@large {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@large {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@large {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@large {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@large {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@large {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@large {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@large {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@large {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@large {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@large {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@large {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@large {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@large {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@large {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@large {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@large {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@large {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@large {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@large {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@large {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@large {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@large {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@large {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@large {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@large {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@large {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@large {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@large {
left: auto !important;
}
.u-pull-none\@large {
right: auto !important;
}
}
@media (min-width: 88.75em) {
.u-1\/1\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@huge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@huge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@huge {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@huge {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@huge {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@huge {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@huge {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@huge {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@huge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@huge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@huge {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@huge {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@huge {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@huge {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@huge {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@huge {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@huge {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@huge {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@huge {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@huge {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@huge {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@huge {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@huge {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@huge {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@huge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@huge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@huge {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@huge {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@huge {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@huge {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@huge {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@huge {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@huge {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@huge {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@huge {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@huge {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@huge {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@huge {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@huge {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@huge {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@huge {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@huge {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@huge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@huge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@huge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@huge {
left: auto !important;
}
.u-pull-none\@huge {
right: auto !important;
}
}
@media (min-width: 93.75em) {
.u-1\/1\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-1\/1\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/2\@xhuge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-1\/2\@xhuge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-2\/2\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-2\/2\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/3\@xhuge {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-1\/3\@xhuge {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-2\/3\@xhuge {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-2\/3\@xhuge {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-3\/3\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-3\/3\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/4\@xhuge {
width: 25% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 25% !important;
}
.u-pull-1\/4\@xhuge {
position: relative !important;
right: 25% !important;
left: auto !important;
/* [1] */
}
.u-2\/4\@xhuge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-2\/4\@xhuge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-3\/4\@xhuge {
width: 75% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 75% !important;
}
.u-pull-3\/4\@xhuge {
position: relative !important;
right: 75% !important;
left: auto !important;
/* [1] */
}
.u-4\/4\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-4\/4\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/5\@xhuge {
width: 20% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 20% !important;
}
.u-pull-1\/5\@xhuge {
position: relative !important;
right: 20% !important;
left: auto !important;
/* [1] */
}
.u-2\/5\@xhuge {
width: 40% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 40% !important;
}
.u-pull-2\/5\@xhuge {
position: relative !important;
right: 40% !important;
left: auto !important;
/* [1] */
}
.u-3\/5\@xhuge {
width: 60% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 60% !important;
}
.u-pull-3\/5\@xhuge {
position: relative !important;
right: 60% !important;
left: auto !important;
/* [1] */
}
.u-4\/5\@xhuge {
width: 80% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 80% !important;
}
.u-pull-4\/5\@xhuge {
position: relative !important;
right: 80% !important;
left: auto !important;
/* [1] */
}
.u-5\/5\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-5\/5\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/6\@xhuge {
width: 16.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 16.66667% !important;
}
.u-pull-1\/6\@xhuge {
position: relative !important;
right: 16.66667% !important;
left: auto !important;
/* [1] */
}
.u-2\/6\@xhuge {
width: 33.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 33.33333% !important;
}
.u-pull-2\/6\@xhuge {
position: relative !important;
right: 33.33333% !important;
left: auto !important;
/* [1] */
}
.u-3\/6\@xhuge {
width: 50% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 50% !important;
}
.u-pull-3\/6\@xhuge {
position: relative !important;
right: 50% !important;
left: auto !important;
/* [1] */
}
.u-4\/6\@xhuge {
width: 66.66667% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 66.66667% !important;
}
.u-pull-4\/6\@xhuge {
position: relative !important;
right: 66.66667% !important;
left: auto !important;
/* [1] */
}
.u-5\/6\@xhuge {
width: 83.33333% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 83.33333% !important;
}
.u-pull-5\/6\@xhuge {
position: relative !important;
right: 83.33333% !important;
left: auto !important;
/* [1] */
}
.u-6\/6\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/6\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-6\/6\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-1\/7\@xhuge {
width: 14.28571% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 14.28571% !important;
}
.u-pull-1\/7\@xhuge {
position: relative !important;
right: 14.28571% !important;
left: auto !important;
/* [1] */
}
.u-2\/7\@xhuge {
width: 28.57143% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 28.57143% !important;
}
.u-pull-2\/7\@xhuge {
position: relative !important;
right: 28.57143% !important;
left: auto !important;
/* [1] */
}
.u-3\/7\@xhuge {
width: 42.85714% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 42.85714% !important;
}
.u-pull-3\/7\@xhuge {
position: relative !important;
right: 42.85714% !important;
left: auto !important;
/* [1] */
}
.u-4\/7\@xhuge {
width: 57.14286% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 57.14286% !important;
}
.u-pull-4\/7\@xhuge {
position: relative !important;
right: 57.14286% !important;
left: auto !important;
/* [1] */
}
.u-5\/7\@xhuge {
width: 71.42857% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 71.42857% !important;
}
.u-pull-5\/7\@xhuge {
position: relative !important;
right: 71.42857% !important;
left: auto !important;
/* [1] */
}
.u-6\/7\@xhuge {
width: 85.71429% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-6\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 85.71429% !important;
}
.u-pull-6\/7\@xhuge {
position: relative !important;
right: 85.71429% !important;
left: auto !important;
/* [1] */
}
.u-7\/7\@xhuge {
width: 100% !important;
}
/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-7\/7\@xhuge {
position: relative !important;
right: auto !important;
/* [1] */
left: 100% !important;
}
.u-pull-7\/7\@xhuge {
position: relative !important;
right: 100% !important;
left: auto !important;
/* [1] */
}
.u-push-none\@xhuge {
left: auto !important;
}
.u-pull-none\@xhuge {
right: auto !important;
}
}
/* ==========================================================================
#HEADINGS
========================================================================== */
/**
* Redefine all of our basic heading styles against utility classes so as to
* allow for double stranded heading hierarchy, e.g. we semantically need an H2,
* but we want it to be sized like an H1:
*
* <h2 class="u-h1"></h2>
*
*/
.u-h1 {
font-size: 42px !important;
font-size: 2.625rem !important;
line-height: 1.14286 !important;
}
.u-h2 {
font-size: 36px !important;
font-size: 2.25rem !important;
line-height: 1.16667 !important;
}
.u-h3 {
font-size: 24px !important;
font-size: 1.5rem !important;
line-height: 1.25 !important;
}
.u-h4 {
font-size: 21px !important;
font-size: 1.3125rem !important;
line-height: 1.42857 !important;
}
.u-h5 {
font-size: 18px !important;
font-size: 1.125rem !important;
line-height: 1.33333 !important;
}
.u-h6 {
font-size: 16px !important;
font-size: 1rem !important;
line-height: 1.5 !important;
}
/* ==========================================================================
#SPACINGS
========================================================================== */
/**
* Utility classes to put specific spacing values onto elements. The below loop
* will generate us a suite of classes like:
*
* .u-margin-top {}
* .u-padding-left-large {}
* .u-margin-right-small {}
* .u-padding {}
* .u-padding-right-none {}
* .u-padding-horizontal {}
* .u-padding-vertical-small {}
*/
.u-padding {
padding: 24px !important;
}
.u-padding-tiny {
padding: 6px !important;
}
.u-padding-small {
padding: 12px !important;
}
.u-padding-large {
padding: 48px !important;
}
.u-padding-huge {
padding: 96px !important;
}
.u-padding-none {
padding: 0 !important;
}
.u-padding-top {
padding-top: 24px !important;
}
.u-padding-top-tiny {
padding-top: 6px !important;
}
.u-padding-top-small {
padding-top: 12px !important;
}
.u-padding-top-large {
padding-top: 48px !important;
}
.u-padding-top-huge {
padding-top: 96px !important;
}
.u-padding-top-none {
padding-top: 0 !important;
}
.u-padding-right {
padding-right: 24px !important;
}
.u-padding-right-tiny {
padding-right: 6px !important;
}
.u-padding-right-small {
padding-right: 12px !important;
}
.u-padding-right-large {
padding-right: 48px !important;
}
.u-padding-right-huge {
padding-right: 96px !important;
}
.u-padding-right-none {
padding-right: 0 !important;
}
.u-padding-bottom {
padding-bottom: 24px !important;
}
.u-padding-bottom-tiny {
padding-bottom: 6px !important;
}
.u-padding-bottom-small {
padding-bottom: 12px !important;
}
.u-padding-bottom-large {
padding-bottom: 48px !important;
}
.u-padding-bottom-huge {
padding-bottom: 96px !important;
}
.u-padding-bottom-none {
padding-bottom: 0 !important;
}
.u-padding-left {
padding-left: 24px !important;
}
.u-padding-left-tiny {
padding-left: 6px !important;
}
.u-padding-left-small {
padding-left: 12px !important;
}
.u-padding-left-large {
padding-left: 48px !important;
}
.u-padding-left-huge {
padding-left: 96px !important;
}
.u-padding-left-none {
padding-left: 0 !important;
}
.u-margin {
margin: 24px !important;
}
.u-margin-tiny {
margin: 6px !important;
}
.u-margin-small {
margin: 12px !important;
}
.u-margin-large {
margin: 48px !important;
}
.u-margin-huge {
margin: 96px !important;
}
.u-margin-none {
margin: 0 !important;
}
.u-margin-top {
margin-top: 24px !important;
}
.u-margin-top-tiny {
margin-top: 6px !important;
}
.u-margin-top-small {
margin-top: 12px !important;
}
.u-margin-top-large {
margin-top: 48px !important;
}
.u-margin-top-huge {
margin-top: 96px !important;
}
.u-margin-top-none {
margin-top: 0 !important;
}
.u-margin-right {
margin-right: 24px !important;
}
.u-margin-right-tiny {
margin-right: 6px !important;
}
.u-margin-right-small {
margin-right: 12px !important;
}
.u-margin-right-large {
margin-right: 48px !important;
}
.u-margin-right-huge {
margin-right: 96px !important;
}
.u-margin-right-none {
margin-right: 0 !important;
}
.u-margin-bottom {
margin-bottom: 24px !important;
}
.u-margin-bottom-tiny {
margin-bottom: 6px !important;
}
.u-margin-bottom-small {
margin-bottom: 12px !important;
}
.u-margin-bottom-large {
margin-bottom: 48px !important;
}
.u-margin-bottom-huge {
margin-bottom: 96px !important;
}
.u-margin-bottom-none {
margin-bottom: 0 !important;
}
.u-margin-left {
margin-left: 24px !important;
}
.u-margin-left-tiny {
margin-left: 6px !important;
}
.u-margin-left-small {
margin-left: 12px !important;
}
.u-margin-left-large {
margin-left: 48px !important;
}
.u-margin-left-huge {
margin-left: 96px !important;
}
.u-margin-left-none {
margin-left: 0 !important;
}
/* ==========================================================================
#RESPONSIVE-SPACINGS
========================================================================== */
/**
* Utility classes enhancing the normal spacing classes by adding responsiveness
* to them. By default, there are not responsive spacings defined. You can
* generate responsive spacings by adding entries to the following three Sass
* maps, e.g.:
*
* $inuit-responsive-spacing-directions: (
* null: null,
* bottom: bottom,
* );
*
* $inuit-responsive-spacing-properties: (
* "margin": "margin",
* );
*
* $inuit-responsive-spacing-sizes: (
* "-small": $inuit-global-spacing-unit-small,
* );
*
* This would bring us the following classes:
*
* .u-margin-small@mobile {}
* .u-margin-small@tablet {}
* .u-margin-small@desktop {}
* .u-margin-small@wide {}
* .u-margin-bottom-small@mobile {}
* .u-margin-bottom-small@tablet {}
* .u-margin-bottom-small@desktop {}
* .u-margin-bottom-small@wide {}
*
* You can change the generated CSS classes by further extending the Sass maps.
* If you want every ‘normal’ spacing (those from `utilities.spacings`) also as
* a responsive version, you can just mirror the ‘normal’ spacings:
*
* $inuit-responsive-spacing-directions: $inuit-spacing-directions !default;
*
* $inuit-responsive-spacing-properties: $inuit-spacing-properties !default;
*
* $inuit-responsive-spacing-sizes: $inuit-spacing-sizes !default;
*
* BUT BE AWARE: This can generate a huge chunk of extra CSS, depending on the
* amount of breakpoints you defined. So please check your CSS’ output and
* filesize!
*/
/* stylelint-disable max-nesting-depth */
@media (min-width: 37.5em) {
.u-padding\@small {
padding: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding\@medium {
padding: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding\@large {
padding: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding\@huge {
padding: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding\@xhuge {
padding: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-tiny\@small {
padding: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-tiny\@medium {
padding: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-tiny\@large {
padding: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-tiny\@huge {
padding: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-tiny\@xhuge {
padding: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-small\@small {
padding: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-small\@medium {
padding: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-small\@large {
padding: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-small\@huge {
padding: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-small\@xhuge {
padding: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-large\@small {
padding: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-large\@medium {
padding: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-large\@large {
padding: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-large\@huge {
padding: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-large\@xhuge {
padding: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-huge\@small {
padding: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-huge\@medium {
padding: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-huge\@large {
padding: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-huge\@huge {
padding: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-huge\@xhuge {
padding: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-none\@small {
padding: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-none\@medium {
padding: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-none\@large {
padding: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-none\@huge {
padding: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-none\@xhuge {
padding: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top\@small {
padding-top: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top\@medium {
padding-top: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding-top\@large {
padding-top: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top\@huge {
padding-top: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top\@xhuge {
padding-top: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-tiny\@small {
padding-top: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-tiny\@medium {
padding-top: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-top-tiny\@large {
padding-top: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-tiny\@huge {
padding-top: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-tiny\@xhuge {
padding-top: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-small\@small {
padding-top: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-small\@medium {
padding-top: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-top-small\@large {
padding-top: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-small\@huge {
padding-top: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-small\@xhuge {
padding-top: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-large\@small {
padding-top: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-large\@medium {
padding-top: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-top-large\@large {
padding-top: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-large\@huge {
padding-top: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-large\@xhuge {
padding-top: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-huge\@small {
padding-top: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-huge\@medium {
padding-top: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-top-huge\@large {
padding-top: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-huge\@huge {
padding-top: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-huge\@xhuge {
padding-top: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-top-none\@small {
padding-top: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-top-none\@medium {
padding-top: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-top-none\@large {
padding-top: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-top-none\@huge {
padding-top: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-top-none\@xhuge {
padding-top: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right\@small {
padding-right: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right\@medium {
padding-right: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding-right\@large {
padding-right: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right\@huge {
padding-right: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right\@xhuge {
padding-right: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-tiny\@small {
padding-right: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-tiny\@medium {
padding-right: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-right-tiny\@large {
padding-right: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-tiny\@huge {
padding-right: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-tiny\@xhuge {
padding-right: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-small\@small {
padding-right: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-small\@medium {
padding-right: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-right-small\@large {
padding-right: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-small\@huge {
padding-right: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-small\@xhuge {
padding-right: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-large\@small {
padding-right: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-large\@medium {
padding-right: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-right-large\@large {
padding-right: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-large\@huge {
padding-right: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-large\@xhuge {
padding-right: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-huge\@small {
padding-right: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-huge\@medium {
padding-right: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-right-huge\@large {
padding-right: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-huge\@huge {
padding-right: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-huge\@xhuge {
padding-right: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-right-none\@small {
padding-right: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-right-none\@medium {
padding-right: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-right-none\@large {
padding-right: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-right-none\@huge {
padding-right: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-right-none\@xhuge {
padding-right: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom\@small {
padding-bottom: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom\@medium {
padding-bottom: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom\@large {
padding-bottom: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom\@huge {
padding-bottom: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom\@xhuge {
padding-bottom: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-tiny\@small {
padding-bottom: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-tiny\@medium {
padding-bottom: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-tiny\@large {
padding-bottom: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-tiny\@huge {
padding-bottom: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-tiny\@xhuge {
padding-bottom: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-small\@small {
padding-bottom: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-small\@medium {
padding-bottom: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-small\@large {
padding-bottom: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-small\@huge {
padding-bottom: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-small\@xhuge {
padding-bottom: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-large\@small {
padding-bottom: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-large\@medium {
padding-bottom: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-large\@large {
padding-bottom: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-large\@huge {
padding-bottom: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-large\@xhuge {
padding-bottom: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-huge\@small {
padding-bottom: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-huge\@medium {
padding-bottom: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-huge\@large {
padding-bottom: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-huge\@huge {
padding-bottom: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-huge\@xhuge {
padding-bottom: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-bottom-none\@small {
padding-bottom: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-bottom-none\@medium {
padding-bottom: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-bottom-none\@large {
padding-bottom: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-bottom-none\@huge {
padding-bottom: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-bottom-none\@xhuge {
padding-bottom: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left\@small {
padding-left: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left\@medium {
padding-left: 24px !important;
}
}
@media (min-width: 75em) {
.u-padding-left\@large {
padding-left: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left\@huge {
padding-left: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left\@xhuge {
padding-left: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-tiny\@small {
padding-left: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-tiny\@medium {
padding-left: 6px !important;
}
}
@media (min-width: 75em) {
.u-padding-left-tiny\@large {
padding-left: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-tiny\@huge {
padding-left: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-tiny\@xhuge {
padding-left: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-small\@small {
padding-left: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-small\@medium {
padding-left: 12px !important;
}
}
@media (min-width: 75em) {
.u-padding-left-small\@large {
padding-left: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-small\@huge {
padding-left: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-small\@xhuge {
padding-left: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-large\@small {
padding-left: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-large\@medium {
padding-left: 48px !important;
}
}
@media (min-width: 75em) {
.u-padding-left-large\@large {
padding-left: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-large\@huge {
padding-left: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-large\@xhuge {
padding-left: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-huge\@small {
padding-left: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-huge\@medium {
padding-left: 96px !important;
}
}
@media (min-width: 75em) {
.u-padding-left-huge\@large {
padding-left: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-huge\@huge {
padding-left: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-huge\@xhuge {
padding-left: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-padding-left-none\@small {
padding-left: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-padding-left-none\@medium {
padding-left: 0 !important;
}
}
@media (min-width: 75em) {
.u-padding-left-none\@large {
padding-left: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-padding-left-none\@huge {
padding-left: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-padding-left-none\@xhuge {
padding-left: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin\@small {
margin: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin\@medium {
margin: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin\@large {
margin: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin\@huge {
margin: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin\@xhuge {
margin: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-tiny\@small {
margin: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-tiny\@medium {
margin: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-tiny\@large {
margin: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-tiny\@huge {
margin: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-tiny\@xhuge {
margin: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-small\@small {
margin: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-small\@medium {
margin: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-small\@large {
margin: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-small\@huge {
margin: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-small\@xhuge {
margin: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-large\@small {
margin: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-large\@medium {
margin: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-large\@large {
margin: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-large\@huge {
margin: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-large\@xhuge {
margin: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-huge\@small {
margin: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-huge\@medium {
margin: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-huge\@large {
margin: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-huge\@huge {
margin: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-huge\@xhuge {
margin: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-none\@small {
margin: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-none\@medium {
margin: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-none\@large {
margin: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-none\@huge {
margin: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-none\@xhuge {
margin: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top\@small {
margin-top: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top\@medium {
margin-top: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin-top\@large {
margin-top: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top\@huge {
margin-top: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top\@xhuge {
margin-top: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-tiny\@small {
margin-top: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-tiny\@medium {
margin-top: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-top-tiny\@large {
margin-top: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-tiny\@huge {
margin-top: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-tiny\@xhuge {
margin-top: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-small\@small {
margin-top: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-small\@medium {
margin-top: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-top-small\@large {
margin-top: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-small\@huge {
margin-top: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-small\@xhuge {
margin-top: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-large\@small {
margin-top: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-large\@medium {
margin-top: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-top-large\@large {
margin-top: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-large\@huge {
margin-top: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-large\@xhuge {
margin-top: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-huge\@small {
margin-top: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-huge\@medium {
margin-top: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-top-huge\@large {
margin-top: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-huge\@huge {
margin-top: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-huge\@xhuge {
margin-top: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-top-none\@small {
margin-top: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-top-none\@medium {
margin-top: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-top-none\@large {
margin-top: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-top-none\@huge {
margin-top: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-top-none\@xhuge {
margin-top: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right\@small {
margin-right: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right\@medium {
margin-right: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin-right\@large {
margin-right: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right\@huge {
margin-right: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right\@xhuge {
margin-right: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-tiny\@small {
margin-right: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-tiny\@medium {
margin-right: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-right-tiny\@large {
margin-right: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-tiny\@huge {
margin-right: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-tiny\@xhuge {
margin-right: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-small\@small {
margin-right: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-small\@medium {
margin-right: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-right-small\@large {
margin-right: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-small\@huge {
margin-right: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-small\@xhuge {
margin-right: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-large\@small {
margin-right: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-large\@medium {
margin-right: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-right-large\@large {
margin-right: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-large\@huge {
margin-right: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-large\@xhuge {
margin-right: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-huge\@small {
margin-right: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-huge\@medium {
margin-right: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-right-huge\@large {
margin-right: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-huge\@huge {
margin-right: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-huge\@xhuge {
margin-right: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-right-none\@small {
margin-right: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-right-none\@medium {
margin-right: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-right-none\@large {
margin-right: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-right-none\@huge {
margin-right: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-right-none\@xhuge {
margin-right: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom\@small {
margin-bottom: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom\@medium {
margin-bottom: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom\@large {
margin-bottom: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom\@huge {
margin-bottom: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom\@xhuge {
margin-bottom: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-tiny\@small {
margin-bottom: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-tiny\@medium {
margin-bottom: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-tiny\@large {
margin-bottom: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-tiny\@huge {
margin-bottom: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-tiny\@xhuge {
margin-bottom: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-small\@small {
margin-bottom: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-small\@medium {
margin-bottom: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-small\@large {
margin-bottom: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-small\@huge {
margin-bottom: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-small\@xhuge {
margin-bottom: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-large\@small {
margin-bottom: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-large\@medium {
margin-bottom: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-large\@large {
margin-bottom: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-large\@huge {
margin-bottom: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-large\@xhuge {
margin-bottom: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-huge\@small {
margin-bottom: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-huge\@medium {
margin-bottom: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-huge\@large {
margin-bottom: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-huge\@huge {
margin-bottom: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-huge\@xhuge {
margin-bottom: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-bottom-none\@small {
margin-bottom: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-bottom-none\@medium {
margin-bottom: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-bottom-none\@large {
margin-bottom: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-bottom-none\@huge {
margin-bottom: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-bottom-none\@xhuge {
margin-bottom: 0 !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left\@small {
margin-left: 24px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left\@medium {
margin-left: 24px !important;
}
}
@media (min-width: 75em) {
.u-margin-left\@large {
margin-left: 24px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left\@huge {
margin-left: 24px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left\@xhuge {
margin-left: 24px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-tiny\@small {
margin-left: 6px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-tiny\@medium {
margin-left: 6px !important;
}
}
@media (min-width: 75em) {
.u-margin-left-tiny\@large {
margin-left: 6px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-tiny\@huge {
margin-left: 6px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-tiny\@xhuge {
margin-left: 6px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-small\@small {
margin-left: 12px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-small\@medium {
margin-left: 12px !important;
}
}
@media (min-width: 75em) {
.u-margin-left-small\@large {
margin-left: 12px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-small\@huge {
margin-left: 12px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-small\@xhuge {
margin-left: 12px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-large\@small {
margin-left: 48px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-large\@medium {
margin-left: 48px !important;
}
}
@media (min-width: 75em) {
.u-margin-left-large\@large {
margin-left: 48px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-large\@huge {
margin-left: 48px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-large\@xhuge {
margin-left: 48px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-huge\@small {
margin-left: 96px !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-huge\@medium {
margin-left: 96px !important;
}
}
@media (min-width: 75em) {
.u-margin-left-huge\@large {
margin-left: 96px !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-huge\@huge {
margin-left: 96px !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-huge\@xhuge {
margin-left: 96px !important;
}
}
@media (min-width: 37.5em) {
.u-margin-left-none\@small {
margin-left: 0 !important;
}
}
@media (min-width: 56.25em) {
.u-margin-left-none\@medium {
margin-left: 0 !important;
}
}
@media (min-width: 75em) {
.u-margin-left-none\@large {
margin-left: 0 !important;
}
}
@media (min-width: 88.75em) {
.u-margin-left-none\@huge {
margin-left: 0 !important;
}
}
@media (min-width: 93.75em) {
.u-margin-left-none\@xhuge {
margin-left: 0 !important;
}
}
/* stylelint-enable max-nesting-depth */
/* ==========================================================================
#PRINT
========================================================================== */
/**
* Very crude, reset-like styles taken from the HTML5 Boilerplate:
* https://github.com/h5bp/html5-boilerplate/blob/5.3.0/dist/doc/css.md#print-styles
* https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css#L205-L282
*/
@media print {
/**
* 1. Black prints faster: http://www.sanbeiji.com/archives/953
*/
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
/* [1] */
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/**
* Don’t show links that are fragment identifiers, or use the `javascript:`
* pseudo protocol.
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/**
* Printing Tables: http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
/* ==========================================================================
#HIDE
========================================================================== */
/**
* Hide only visually, but have it available for screen readers:
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.u-hidden-visually {
border: 0 !important;
clip: rect(0 0 0 0) !important;
-webkit-clip-path: inset(50%) !important;
clip-path: inset(50%) !important;
height: 1px !important;
margin: -1px !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
white-space: nowrap !important;
width: 1px !important;
}
/**
* Hide visually and from screen readers.
*/
.u-hidden {
display: none !important;
}
.u-divider + .u-divider {
border-top: 2px solid #f0f1f3;
}
.u-text-center {
text-align: center;
}
@media (min-width: 56.25em) {
.u-text-center\@medium {
text-align: center;
}
}
/* ==================================
#SHAME
================================== */
.o-crop--fit > .o-crop__content {
max-width: 100%;
}
| 0.616474 | 0.076511 |
a:visited {
color: blue;
}
a:active {
color: blue;
}
.container {
/* defaults for resposive height container */
position: relative;
width: 900px;
height: 300px;
margin: 0 auto;
overflow: visible;
}
.iosSlider {
width: 100% !important;
height: 100% !important;
}
.iosSlider .slider {
width: 100% !important;
height: 100% !important;
cursor: default !important;
}
.iosSlider .slider .item {
float: left;
width: 100% !important;
height: 100% !important;
top: 0 !important;
}
.container .prev {
position: absolute;
top: 65px;
left: -60px;
width: 40px;
height: 40px;
background: #000;
z-index: 10;
}
.container .next {
position: absolute;
top: 65px;
right: -60px;
width: 40px;
height: 40px;
background: #000;
z-index: 10;
}
.container .unselectable {
opacity: 0.2;
}
.clickIntOverlay {
display: block;
width: 100%;
height: 100%;
/* background:rgba(0, 0, 0, 0.3); */
position: absolute;
top: 0;
left: 0;
margin: 59px 0 0;
z-index: 1;
/*background:url("../../assets/images/cnl_overlay.png") repeat;*/
}
/*submit / Next button*/
.showAnswerBtn input[type="button"],
.submitBtn input[type="button"],
.nextBtn input[type="button"],
.resetBtn input[type="button"],
.resetBtn button,
.submitBtn button,
.showAnswerBtn button,
.nextBtn button {
min-width: 82px;
height: 28px;
border: none;
color: #FFF;
margin: 0 0 0 2px;
padding: 0 0 4px;
font: 15px/24px arial;
cursor: pointer;
background: #470a68;
z-index: 9;
font-weight: bold;
}
.showAnswerBtn input[type="button"]:hover,
.submitBtn input[type="button"]:hover,
.showAnswerBtn input[type="button"]:hover,
.nextBtn input[type="button"]:hover,
.resetBtn input[type="button"]:hover,
.resetBtn button:hover,
.submitBtn button:hover,
.showAnswerBtn button:hover,
.showAnswerBtn button:hover,
.nextBtn button:hover {
background: #00338c;
}
.showAnswerBtn input.disabled[type="button"],
.submitBtn input.disabled[type="button"],
.submitBtn input.disabled:hover,
.nextBtn input.disabled[type="button"],
.nextBtn input.disabled:hover .resetBtn input.disabled:hover,
.resetBtn button.disabled,
.resetBtn button.disabled:hover,
.submitBtn button.disabled,
.submitBtn button.disabled:hover,
.showAnswerBtn button.disabled:hover,
.nextBtn button.disabled,
.nextBtn button.disabled:hover {
background: #838383;
color: #d3d3d3;
cursor: default;
}
/*Feedback box*/
.feedBackPopup {
clear: both;
display: none;
z-index: 555;
}
.feedBackContent {
width: 325px;
min-height: 150px;
margin: 0 auto;
/* position: relative; */
z-index: 101;
border: 2px solid #004e96;
background: #FFF;
}
.feedBackContent .titleTxt {
color: #FFF;
/* position: relative; */
cursor: move;
background: #004e96;
}
.feedBackContent .titleTxt span {
display: block;
height: 36px;
line-height: 36px;
padding: 0 12px 1px;
}
.popupClose {
color: #FFF;
width: 35px;
height: 36px;
position: absolute;
right: 4px;
top: 3px;
cursor: pointer;
background: url(../images/popup_buttons.png) no-repeat 10px 10px;
}
.feebackText {
height: 115px;
margin: 10px 0 0 0;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
font-size: 14px;
}
/* Fill Blanks - with image */
.fillBlanksWrap.withImage {
max-width: 85%;
}
.fillBlanksWrap.withImage .contentSec {
max-width: 70.5%;
float: left;
padding: 0;
}
.fillBlanksWrap.withImage .contentSec .contentWrap {
height: 284px;
margin: 28px 18px;
padding: 0 18px 0 0;
overflow: auto;
}
.fillBlanksWrap.withImage .contentSec .contentWrap ul li {
padding: 0 0 10px 20px;
/*color:#000;*/
background: url(../images/bulletIco.jpg) no-repeat 0 8px;
}
.fillBlanksWrap.withImage .imgSection {
float: left;
width: 28.7%;
max-width: 315px;
text-align: right;
}
.fillBlanksWrap.withImage .imgSection img {
height: auto;
width: 100%;
}
/* Fill Blanks */
.fillBlanksWrap {
/*max-width:766px;*/
max-width: 85%;
margin: 0 auto;
/*padding: 82px 45px 0;*/
}
.infoSec,
.instructionTxt p {
float: left;
margin: 0 0 1px;
padding: 0 13px;
font: normal 15px/50px Arial;
color: #004e96;
border-left: solid 5px #e4801b;
background: #dad9d9;
}
.instructionTxt p {
float: none;
padding: 0;
margin: 0;
border: none;
background: none;
}
.fillBlanksContent {
padding: 0 0 30px;
overflow: hidden;
}
.fillBlanksContent .contentSec {
margin: 0 0 1px;
padding: 28px 18px;
font: normal 14px/20px Arial;
color: #FFF;
clear: both;
position: relative;
background: #00a1b9;
}
.fillBlanksContent .contentWrap input,
.fillBlanksContent .contentWrap select {
color: #FFF;
border: solid 1px #003037;
background: #00616f;
}
.fillBlanksContent .contentWrap input {
padding-left: 5px;
padding-right: 5px;
}
.fillBlanksContent .contentWrap p {
margin: 0 0 18px;
}
.fillBlanksContent .contentWrap p a {
text-decoration: underline;
}
.fillBlanksContent .contentWrap p a:hover {
text-decoration: none;
}
.fillBlanksContent .submitBtn {
position: absolute;
right: 0;
bottom: -31px;
}
.fillBlanksContent .showAnswerBtn {
position: absolute;
right: -100px;
bottom: -31px;
}
/*Note8 Potrait Orientation Start*/
@media only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (device-aspect-ratio: 5/8) and (-webkit-min-device-pixel-ratio: 1.33) and (orientation: portrait) {
.fillBlanksWrap.withImage .imgSection {
background: #00A1B9;
width: 100% !important;
text-align: center;
max-width: inherit;
}
.fillBlanksWrap.withImage .imgSection img {
width: 50%;
margin: 2px auto -1px;
}
.fillBlanksWrap.withImage .contentSec {
max-width: 100% !important;
}
}
/*Note8 Landscape Orientation Start*/
@media only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (device-aspect-ratio: 8/5) and (-webkit-min-device-pixel-ratio: 1.33) and (orientation: landscape) {
.fillBlanksWrap.withImage .contentSec {
max-width: 65.5%;
height: 292px;
}
.fillBlanksWrap.withImage .imgSection {
width: 33.7%;
max-width: inherit;
}
}
.detail_popup_link {
cursor: pointer;
color: #f68d2e;
font-weight: bold;
}
.tlLine {
display: none;
}
.showAnswerBtn input[type="button"],
.submitBtn input[type="button"],
.nextBtn input[type="button"],
.resetBtn input[type="button"],
.resetBtn button,
.submitBtn button,
.showAnswerBtn button,
.nextBtn button {
padding: 4px 10px;
}
|
lalit/assets/css/common.css
|
a:visited {
color: blue;
}
a:active {
color: blue;
}
.container {
/* defaults for resposive height container */
position: relative;
width: 900px;
height: 300px;
margin: 0 auto;
overflow: visible;
}
.iosSlider {
width: 100% !important;
height: 100% !important;
}
.iosSlider .slider {
width: 100% !important;
height: 100% !important;
cursor: default !important;
}
.iosSlider .slider .item {
float: left;
width: 100% !important;
height: 100% !important;
top: 0 !important;
}
.container .prev {
position: absolute;
top: 65px;
left: -60px;
width: 40px;
height: 40px;
background: #000;
z-index: 10;
}
.container .next {
position: absolute;
top: 65px;
right: -60px;
width: 40px;
height: 40px;
background: #000;
z-index: 10;
}
.container .unselectable {
opacity: 0.2;
}
.clickIntOverlay {
display: block;
width: 100%;
height: 100%;
/* background:rgba(0, 0, 0, 0.3); */
position: absolute;
top: 0;
left: 0;
margin: 59px 0 0;
z-index: 1;
/*background:url("../../assets/images/cnl_overlay.png") repeat;*/
}
/*submit / Next button*/
.showAnswerBtn input[type="button"],
.submitBtn input[type="button"],
.nextBtn input[type="button"],
.resetBtn input[type="button"],
.resetBtn button,
.submitBtn button,
.showAnswerBtn button,
.nextBtn button {
min-width: 82px;
height: 28px;
border: none;
color: #FFF;
margin: 0 0 0 2px;
padding: 0 0 4px;
font: 15px/24px arial;
cursor: pointer;
background: #470a68;
z-index: 9;
font-weight: bold;
}
.showAnswerBtn input[type="button"]:hover,
.submitBtn input[type="button"]:hover,
.showAnswerBtn input[type="button"]:hover,
.nextBtn input[type="button"]:hover,
.resetBtn input[type="button"]:hover,
.resetBtn button:hover,
.submitBtn button:hover,
.showAnswerBtn button:hover,
.showAnswerBtn button:hover,
.nextBtn button:hover {
background: #00338c;
}
.showAnswerBtn input.disabled[type="button"],
.submitBtn input.disabled[type="button"],
.submitBtn input.disabled:hover,
.nextBtn input.disabled[type="button"],
.nextBtn input.disabled:hover .resetBtn input.disabled:hover,
.resetBtn button.disabled,
.resetBtn button.disabled:hover,
.submitBtn button.disabled,
.submitBtn button.disabled:hover,
.showAnswerBtn button.disabled:hover,
.nextBtn button.disabled,
.nextBtn button.disabled:hover {
background: #838383;
color: #d3d3d3;
cursor: default;
}
/*Feedback box*/
.feedBackPopup {
clear: both;
display: none;
z-index: 555;
}
.feedBackContent {
width: 325px;
min-height: 150px;
margin: 0 auto;
/* position: relative; */
z-index: 101;
border: 2px solid #004e96;
background: #FFF;
}
.feedBackContent .titleTxt {
color: #FFF;
/* position: relative; */
cursor: move;
background: #004e96;
}
.feedBackContent .titleTxt span {
display: block;
height: 36px;
line-height: 36px;
padding: 0 12px 1px;
}
.popupClose {
color: #FFF;
width: 35px;
height: 36px;
position: absolute;
right: 4px;
top: 3px;
cursor: pointer;
background: url(../images/popup_buttons.png) no-repeat 10px 10px;
}
.feebackText {
height: 115px;
margin: 10px 0 0 0;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
font-size: 14px;
}
/* Fill Blanks - with image */
.fillBlanksWrap.withImage {
max-width: 85%;
}
.fillBlanksWrap.withImage .contentSec {
max-width: 70.5%;
float: left;
padding: 0;
}
.fillBlanksWrap.withImage .contentSec .contentWrap {
height: 284px;
margin: 28px 18px;
padding: 0 18px 0 0;
overflow: auto;
}
.fillBlanksWrap.withImage .contentSec .contentWrap ul li {
padding: 0 0 10px 20px;
/*color:#000;*/
background: url(../images/bulletIco.jpg) no-repeat 0 8px;
}
.fillBlanksWrap.withImage .imgSection {
float: left;
width: 28.7%;
max-width: 315px;
text-align: right;
}
.fillBlanksWrap.withImage .imgSection img {
height: auto;
width: 100%;
}
/* Fill Blanks */
.fillBlanksWrap {
/*max-width:766px;*/
max-width: 85%;
margin: 0 auto;
/*padding: 82px 45px 0;*/
}
.infoSec,
.instructionTxt p {
float: left;
margin: 0 0 1px;
padding: 0 13px;
font: normal 15px/50px Arial;
color: #004e96;
border-left: solid 5px #e4801b;
background: #dad9d9;
}
.instructionTxt p {
float: none;
padding: 0;
margin: 0;
border: none;
background: none;
}
.fillBlanksContent {
padding: 0 0 30px;
overflow: hidden;
}
.fillBlanksContent .contentSec {
margin: 0 0 1px;
padding: 28px 18px;
font: normal 14px/20px Arial;
color: #FFF;
clear: both;
position: relative;
background: #00a1b9;
}
.fillBlanksContent .contentWrap input,
.fillBlanksContent .contentWrap select {
color: #FFF;
border: solid 1px #003037;
background: #00616f;
}
.fillBlanksContent .contentWrap input {
padding-left: 5px;
padding-right: 5px;
}
.fillBlanksContent .contentWrap p {
margin: 0 0 18px;
}
.fillBlanksContent .contentWrap p a {
text-decoration: underline;
}
.fillBlanksContent .contentWrap p a:hover {
text-decoration: none;
}
.fillBlanksContent .submitBtn {
position: absolute;
right: 0;
bottom: -31px;
}
.fillBlanksContent .showAnswerBtn {
position: absolute;
right: -100px;
bottom: -31px;
}
/*Note8 Potrait Orientation Start*/
@media only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (device-aspect-ratio: 5/8) and (-webkit-min-device-pixel-ratio: 1.33) and (orientation: portrait) {
.fillBlanksWrap.withImage .imgSection {
background: #00A1B9;
width: 100% !important;
text-align: center;
max-width: inherit;
}
.fillBlanksWrap.withImage .imgSection img {
width: 50%;
margin: 2px auto -1px;
}
.fillBlanksWrap.withImage .contentSec {
max-width: 100% !important;
}
}
/*Note8 Landscape Orientation Start*/
@media only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (device-aspect-ratio: 8/5) and (-webkit-min-device-pixel-ratio: 1.33) and (orientation: landscape) {
.fillBlanksWrap.withImage .contentSec {
max-width: 65.5%;
height: 292px;
}
.fillBlanksWrap.withImage .imgSection {
width: 33.7%;
max-width: inherit;
}
}
.detail_popup_link {
cursor: pointer;
color: #f68d2e;
font-weight: bold;
}
.tlLine {
display: none;
}
.showAnswerBtn input[type="button"],
.submitBtn input[type="button"],
.nextBtn input[type="button"],
.resetBtn input[type="button"],
.resetBtn button,
.submitBtn button,
.showAnswerBtn button,
.nextBtn button {
padding: 4px 10px;
}
| 0.445288 | 0.175185 |
a{
color: #005694;
}
.form-control, input[type='text'], input[type='email'], input[type='password'], textarea, select {
height: 38px;
}
#footer .sub-footer {
padding: 2rem 0;
background: #202020;
border-top: solid 1px rgba(243, 243, 243, 0.15);
}
#footer, #footer a {
color: #f2f2f2;
font-size: 13px;
}
.widgettitle {
color: #fff;
font-size: 15px;
text-transform: uppercase;
padding-bottom: 0px;
margin-bottom: 18px;
font-weight: normal;
}
#footer .top-footer {
background-color: #202020;
}
.menusecord {
padding: 0px;
}
.menusecord li {
list-style: none;
width: 100%;
float: left;
height: 30px;
border-bottom: 1px dotted #404040;
line-height: 30px;
margin-right: 5%;
}
.item-content {
margin: 10px 0px 10px -10px;
padding-bottom: 10px;
padding-top: 10px;
}
.item-content .col-md-3 {
margin-right: 0px;
padding: 0px;
}
.img-border {
float: left;
margin-right: 30px;
overflow: hidden;
border: 1px solid #f2f2f2;
margin-top: 3px;
padding: 5px;
-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.04);
-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.04);
box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.04);
}
.title-content {
margin: 5px 0px 5px 0px;
font-weight: normal;
font-size: 20px;
}
.div-book a{
color: #ffffff;
}
.div-book a:hover {
text-decoration: none;
}
.from {
margin: 20px 0px 0px 0px;
color: #121212;
font-size: 17px;
}
.div_price {
color: red;
font-size: 25px;
margin-bottom: 10px;
}
.h1-title-d {
font-size: 25px;
margin: 16px 0px;
}
.title-h3 {
color: #003580;
font-size: 24px;
border-bottom: 1px solid #ddd;
padding: 0px 0px 2px 0px;
margin-top:23px
}
.wrap-category-left h3 {
font-weight: normal;
padding: 5px 5px 5px 0px;
font-size: 16px;
border-bottom: 1px dotted #B7B7B7;
}
.wrap-category-left h3 i {
font-size: 15px;
padding-right: 5px;
}
.wrap-category-left h3.sub-menu-left {
background: none;
font-size: 15px;
margin-right: 18px;
}
.wrap-category-left .sub-menu-left span {
padding-right: 3px;
}
.wrap-category-left h3:last-child {
border: none;
}
.wrap-category-left h3 a {
color: #000;
}
.title-h1 {
font-weight: bold;
color: #363636;
font-size: 22px;
margin-bottom: 10px;
border-bottom: 1px solid #ddd;
padding-bottom: 5px;
}
.other-objects {
margin-left: 6px;
padding: 0px;
}
ul.gallery li img {
width: 100%;
height: 190px;
border: 1px solid #ccc;
}
ul.gallery li {
width: 278px;
float: left;
margin: 0px 10px 8px 1px;
}
#w-check-date {
width: 100%;
height: 70px;
float: left;
font-size: 1.1em;
font-weight: bold;
color: #3385D6;
}
#w-check-date div.check-in-out {
width: 32%;
float: left;
}
#w-check-date div.check-in-out input[type="text"] {
width: 90%;
height: 28px;
border: 1px solid #bbb;
margin-left: 5px;
border-radius: 3px;
background: #fff;
}
#w-check-date input#checkprice {
margin-left: 10px;
padding: 6px 10px;
margin-top: 12px;
}
table.b-list-room {
width: 100%;
float: left;
border-right: 1px solid #ededed;
border-bottom: 1px solid #ededed;
}
table.b-list-room tr.head-table {
height: 30px;
background: #eee;
color: #2C4C82;
}
table.b-list-room td {
padding: 10px;
border-left: 1px solid #ededed;
border-top: 1px solid #ededed;
}
table.b-list-room td img.b-img-room {
width: 90px;
height: 60px;
float: left;
margin-right: 8px;
}
table.b-list-room td h3.b-name-room a {
text-decoration: underline;
}
table.b-list-room td h3.b-name-room a:hover {
cursor: pointer;
}
#tt-book-room {
float: right;
margin-top: 16px;
}
table.b-list-room td select.number-room {
width: 80px;
height: 35px;
border-radius: 3px;
}
.b-name-room {
font-size: 16px;
margin: 5px 0px;
padding: 0px;
}
.ui-dialog {
z-index: 100;
}
.b-price-room h3 {
font-size: 16px;
}
ul.other-objects li {
list-style: none;
}
#wraploadding {
background-color: #fff;
opacity: 0.8;
z-index: 5000;
position: fixed;
top: 0px;
left: 0px;
display: none;
}
#wraploadding div#imgloadding {
width: 100px;
height: 100px;
margin: auto;
position: relative;
}
.p-child {
width: 40%;
float: left;
margin-right: 20px;
}
.p-child select {
float: left;
margin-right: 5px;
width: 80px;
}
.form-group .col-sm-9 {
line-height: 42px;
}
.required {
color: red;
}
.tour-relates {
width: 100%;
float: left;
margin-bottom: 8px;
border-bottom: 1px dotted #ccc;
padding-bottom: 8px;
}
.tour-relates img {
width: 80px;
float: left;
margin-right: 10px;
}
.tour-relates h3 {
font-size: 16px;
margin-top: 8px;
}
.pad-1 {
margin-left: 15px;
}
.pad-2 {
margin-left: 30px;
padding: 3px 0px;
margin-bottom: 6px
}
.pad-3 {
margin-left: 45px;
}
h2.pad-1 {
font-size: 20px;
}
.content-article h1 {
font-size: 16px;
}
.content-article h2 {
font-size: 14px;
}
.content-article h3 {
font-weight: normal;
}
.wrap-time-line {
display: block;
padding-right: 1px;
border-radius: 2px 2px 0px 0px;
-moz-border-radius: 2px 2px 0px 0px;
-webkit-border-radius: 2px 2px 0px 0px;
height: 48px;
position: absolute;
overflow: hidden;
background: rgba(37, 37, 37, 0.62);
}
.wrap-time-line div.time-line{ margin-top: -8px;}
.list-deals .wrap-time-line {
width: 270px;
}
.list-deals h4.card-title {
font-size: 1.9rem;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.list-deals .card a.featured-image img {
width: 100%;
height: 184px;
}
.list-deals .card .flip-clock-wrapper {
margin: 2em 1.6em !important;
}
.w-deal div.l-deal {
width: 678px;
float: left;
position: relative;
}
.w-deal div.r-deal {
width: 30%;
float: right;
background: #333;
}
#w-body {
width: 992px;
margin: 74px auto 0px;
background-color: #fff;
padding: 0px 8px;
}
.r-deal .title-h2 {
color: #fff;
height: 50px;
line-height: 50px;
font-size: 32px;
margin: 2px 0px 22px;
border-bottom: 3px solid #fff;
}
.r-deal #time-countdown {
border-bottom: 3px solid #fff;
}
.r-deal #w-price-deal {
width: 100%;
height: 80px;
margin: 6px 0px;
border-bottom: 3px solid #fff;
}
#w-price-deal #price-deal {
height: 50px;
line-height: 50px;
text-align: center;
font-size: 30px;
color: #68B4FE;
margin: 0px;
padding: 0px;
}
.r-deal .h3-deal {
color: #fff;
text-align: center;
font-size: 17px;
font-weight: normal;
margin: 0px;
padding: 0px;
}
.r-deal #datepature {
padding: 7px 0px 7px;
}
.r-deal #deal-datepicker {
width: 270px;
margin: 0px auto;
}
#datepature #date-select {
display: block;
margin: 3px auto;
width: 120px;
border: 1px solid #222;
height: 33px;
line-height: 17px;
padding: 8px 12px;
}
#w-body .btn:hover {
text-decoration: none;
box-shadow: 1px 1px 20px #fff;
}
#w-body .btn {
display: inline-block;
padding: 4px 8px;
margin-bottom: 0;
font-size: 14px;
font-weight: bold;
line-height: 1.428571429;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
#w-body .btn-blue {
background-color: #4dcafe;
color: #ffffff;
border: none;
text-shadow: rgba(0,0,0,0.6) 0px 1px 2px;
font-weight: bold;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
#w-body .tieude-detail {
font-size: 30px;
margin-top: 40px;
display: block;
float: left;
}
.content-container-anchor h3, .content-container-anchor h2 {
display: block;
padding: 4px 6px 4px 30px;
background: url(/Content/images/bg-arrow.png) -55px 50% no-repeat #ebebeb;
border: 1px solid #fff;
color: #5c5b5b;
font-size: 13px;
font-family: Arial;
text-transform: none;
font-weight: bold;
clear: both;
margin-top: 10px;
line-height: normal;
}
.f-width {
width: 100%;
float: left;
}
.content-2 div.l-content {
width: 48%;
float: left;
}
ul.ul-hightlight {
margin: 0px;
padding: 0px;
}
ul.ul-hightlight li {
margin-bottom: 6px;
padding: 4px 2px 12px;
border-bottom: 1px solid #ddd;
list-style: none;
}
ul.ul-hightlight li h4 {
margin: 5px 0px;
padding: 0px;
}
ul.ul-hightlight li a {
font-weight: bold;
text-decoration: none;
color: #3385D6;
font-weight: normal;
font-size: 18px;
}
ul.ul-hightlight li a img {
width: 100%;
margin-bottom: 20px;
}
.right {
float: right;
}
.content-2 div.r-content {
width: 50%;
float: right;
}
table td, table th {
border: 1px solid #BBB;
padding: 6px;
}
.z-tabs.silver > ul > li.z-active > a {
font-weight: bold;
}
/* media */
@media (max-width: 768px) and (min-width: 320px) {
.title-h1 {
font-size: 26px;
}
#slider-video {
margin: 30px 0px 0px;
padding-left: 20px;
padding-right: 20px;
}
#info-hotel {
margin-bottom: 20px;
}
.hl-info-right {
margin: 5px -20px 0px -20px;
}
.ul-hightlight li a img {
margin-top: 20px;
}
iframe {
width: 100%;
}
.ul-hightlight {
margin: 0px;
padding: 0px;
margin-left: -20px!important;
margin-right: -20px!important;
list-style: none;
}
.hl-info-right {
margin-left: -20px;
margin-right: -20px;
}
.hl-info-right h4 {
font-size: 18px;
}
ul.ul-hightlight li a {
font-size: 16px!important;
}
}
.logo-footer {
margin-top: 18px;
}
.name-company {
margin: 10px 0px!important;
line-height: 24px;
text-align: center;
font-size: 22px;
color: #fff;
font-weight: normal;
}
#CDSWIDEXC {
margin: 0px!important;
width: 100%!important;
margin-bottom: 10px!important;
}
#vietiso_sitebadgecontainer{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:none repeat scroll 0 0 #172863;font-size: 13px; border-bottom:2px solid #4780cf;border-bottom-right-radius:10px;border-image:none;border-left:medium none!important;border-right:2px solid #4780cf;border-top:2px solid #4780cf;border-top-right-radius:10px;display:inline-block;left:-140px;position:fixed;bottom:30px;width:180px;z-index:9999999999!important;padding:5px;}
.sitebadge{border-right:1px solid #E7E7E7;float:left;height:auto;width:130px;padding:5px 8px;}
.sitebadge a.skype{background:url(/Content/images/skype-icon.png) no-repeat scroll left center transparent;color:#fff;display:block;height:21px;line-height:21px;text-align:left;text-decoration:none;width:115px;margin: 8px 0 0px;padding:0 0 0 25px;}
.sitebadge p{background: url(/Content//images/hotline.png) no-repeat scroll left center transparent;color:#fff;display:block;height: 40px;line-height:21px;text-align:left;margin: 8px 0 9px;padding:0 0 0 25px;}
.sitebadge h2{color:#F58220;display:block;font-size:15px;height:24px;line-height:24px;text-align:center;width:100%;margin:12px 0 0;padding:0;}
.sitebadgeButton{display:block;float:right;width:30px;}
.sitebadgeButton span{background:url(/Content/images/badge_livehelp_en_white.png) no-repeat scroll center center transparent;display:block;height:100%;width:30px;}
.sitebadge p a {
color: #fff;
}
.pull-right ul li {
list-style: none;
float: left;
}
#social {
text-align: center;
}
#social a {
margin-right: 10px;
}
#social i.fa {
font-size: 16px;
color: #d91b21;
}
.navbar-form {
margin-top: 25px!important;
}
|
public/site/css/Custom.css
|
a{
color: #005694;
}
.form-control, input[type='text'], input[type='email'], input[type='password'], textarea, select {
height: 38px;
}
#footer .sub-footer {
padding: 2rem 0;
background: #202020;
border-top: solid 1px rgba(243, 243, 243, 0.15);
}
#footer, #footer a {
color: #f2f2f2;
font-size: 13px;
}
.widgettitle {
color: #fff;
font-size: 15px;
text-transform: uppercase;
padding-bottom: 0px;
margin-bottom: 18px;
font-weight: normal;
}
#footer .top-footer {
background-color: #202020;
}
.menusecord {
padding: 0px;
}
.menusecord li {
list-style: none;
width: 100%;
float: left;
height: 30px;
border-bottom: 1px dotted #404040;
line-height: 30px;
margin-right: 5%;
}
.item-content {
margin: 10px 0px 10px -10px;
padding-bottom: 10px;
padding-top: 10px;
}
.item-content .col-md-3 {
margin-right: 0px;
padding: 0px;
}
.img-border {
float: left;
margin-right: 30px;
overflow: hidden;
border: 1px solid #f2f2f2;
margin-top: 3px;
padding: 5px;
-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.04);
-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.04);
box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.04);
}
.title-content {
margin: 5px 0px 5px 0px;
font-weight: normal;
font-size: 20px;
}
.div-book a{
color: #ffffff;
}
.div-book a:hover {
text-decoration: none;
}
.from {
margin: 20px 0px 0px 0px;
color: #121212;
font-size: 17px;
}
.div_price {
color: red;
font-size: 25px;
margin-bottom: 10px;
}
.h1-title-d {
font-size: 25px;
margin: 16px 0px;
}
.title-h3 {
color: #003580;
font-size: 24px;
border-bottom: 1px solid #ddd;
padding: 0px 0px 2px 0px;
margin-top:23px
}
.wrap-category-left h3 {
font-weight: normal;
padding: 5px 5px 5px 0px;
font-size: 16px;
border-bottom: 1px dotted #B7B7B7;
}
.wrap-category-left h3 i {
font-size: 15px;
padding-right: 5px;
}
.wrap-category-left h3.sub-menu-left {
background: none;
font-size: 15px;
margin-right: 18px;
}
.wrap-category-left .sub-menu-left span {
padding-right: 3px;
}
.wrap-category-left h3:last-child {
border: none;
}
.wrap-category-left h3 a {
color: #000;
}
.title-h1 {
font-weight: bold;
color: #363636;
font-size: 22px;
margin-bottom: 10px;
border-bottom: 1px solid #ddd;
padding-bottom: 5px;
}
.other-objects {
margin-left: 6px;
padding: 0px;
}
ul.gallery li img {
width: 100%;
height: 190px;
border: 1px solid #ccc;
}
ul.gallery li {
width: 278px;
float: left;
margin: 0px 10px 8px 1px;
}
#w-check-date {
width: 100%;
height: 70px;
float: left;
font-size: 1.1em;
font-weight: bold;
color: #3385D6;
}
#w-check-date div.check-in-out {
width: 32%;
float: left;
}
#w-check-date div.check-in-out input[type="text"] {
width: 90%;
height: 28px;
border: 1px solid #bbb;
margin-left: 5px;
border-radius: 3px;
background: #fff;
}
#w-check-date input#checkprice {
margin-left: 10px;
padding: 6px 10px;
margin-top: 12px;
}
table.b-list-room {
width: 100%;
float: left;
border-right: 1px solid #ededed;
border-bottom: 1px solid #ededed;
}
table.b-list-room tr.head-table {
height: 30px;
background: #eee;
color: #2C4C82;
}
table.b-list-room td {
padding: 10px;
border-left: 1px solid #ededed;
border-top: 1px solid #ededed;
}
table.b-list-room td img.b-img-room {
width: 90px;
height: 60px;
float: left;
margin-right: 8px;
}
table.b-list-room td h3.b-name-room a {
text-decoration: underline;
}
table.b-list-room td h3.b-name-room a:hover {
cursor: pointer;
}
#tt-book-room {
float: right;
margin-top: 16px;
}
table.b-list-room td select.number-room {
width: 80px;
height: 35px;
border-radius: 3px;
}
.b-name-room {
font-size: 16px;
margin: 5px 0px;
padding: 0px;
}
.ui-dialog {
z-index: 100;
}
.b-price-room h3 {
font-size: 16px;
}
ul.other-objects li {
list-style: none;
}
#wraploadding {
background-color: #fff;
opacity: 0.8;
z-index: 5000;
position: fixed;
top: 0px;
left: 0px;
display: none;
}
#wraploadding div#imgloadding {
width: 100px;
height: 100px;
margin: auto;
position: relative;
}
.p-child {
width: 40%;
float: left;
margin-right: 20px;
}
.p-child select {
float: left;
margin-right: 5px;
width: 80px;
}
.form-group .col-sm-9 {
line-height: 42px;
}
.required {
color: red;
}
.tour-relates {
width: 100%;
float: left;
margin-bottom: 8px;
border-bottom: 1px dotted #ccc;
padding-bottom: 8px;
}
.tour-relates img {
width: 80px;
float: left;
margin-right: 10px;
}
.tour-relates h3 {
font-size: 16px;
margin-top: 8px;
}
.pad-1 {
margin-left: 15px;
}
.pad-2 {
margin-left: 30px;
padding: 3px 0px;
margin-bottom: 6px
}
.pad-3 {
margin-left: 45px;
}
h2.pad-1 {
font-size: 20px;
}
.content-article h1 {
font-size: 16px;
}
.content-article h2 {
font-size: 14px;
}
.content-article h3 {
font-weight: normal;
}
.wrap-time-line {
display: block;
padding-right: 1px;
border-radius: 2px 2px 0px 0px;
-moz-border-radius: 2px 2px 0px 0px;
-webkit-border-radius: 2px 2px 0px 0px;
height: 48px;
position: absolute;
overflow: hidden;
background: rgba(37, 37, 37, 0.62);
}
.wrap-time-line div.time-line{ margin-top: -8px;}
.list-deals .wrap-time-line {
width: 270px;
}
.list-deals h4.card-title {
font-size: 1.9rem;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.list-deals .card a.featured-image img {
width: 100%;
height: 184px;
}
.list-deals .card .flip-clock-wrapper {
margin: 2em 1.6em !important;
}
.w-deal div.l-deal {
width: 678px;
float: left;
position: relative;
}
.w-deal div.r-deal {
width: 30%;
float: right;
background: #333;
}
#w-body {
width: 992px;
margin: 74px auto 0px;
background-color: #fff;
padding: 0px 8px;
}
.r-deal .title-h2 {
color: #fff;
height: 50px;
line-height: 50px;
font-size: 32px;
margin: 2px 0px 22px;
border-bottom: 3px solid #fff;
}
.r-deal #time-countdown {
border-bottom: 3px solid #fff;
}
.r-deal #w-price-deal {
width: 100%;
height: 80px;
margin: 6px 0px;
border-bottom: 3px solid #fff;
}
#w-price-deal #price-deal {
height: 50px;
line-height: 50px;
text-align: center;
font-size: 30px;
color: #68B4FE;
margin: 0px;
padding: 0px;
}
.r-deal .h3-deal {
color: #fff;
text-align: center;
font-size: 17px;
font-weight: normal;
margin: 0px;
padding: 0px;
}
.r-deal #datepature {
padding: 7px 0px 7px;
}
.r-deal #deal-datepicker {
width: 270px;
margin: 0px auto;
}
#datepature #date-select {
display: block;
margin: 3px auto;
width: 120px;
border: 1px solid #222;
height: 33px;
line-height: 17px;
padding: 8px 12px;
}
#w-body .btn:hover {
text-decoration: none;
box-shadow: 1px 1px 20px #fff;
}
#w-body .btn {
display: inline-block;
padding: 4px 8px;
margin-bottom: 0;
font-size: 14px;
font-weight: bold;
line-height: 1.428571429;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
#w-body .btn-blue {
background-color: #4dcafe;
color: #ffffff;
border: none;
text-shadow: rgba(0,0,0,0.6) 0px 1px 2px;
font-weight: bold;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
#w-body .tieude-detail {
font-size: 30px;
margin-top: 40px;
display: block;
float: left;
}
.content-container-anchor h3, .content-container-anchor h2 {
display: block;
padding: 4px 6px 4px 30px;
background: url(/Content/images/bg-arrow.png) -55px 50% no-repeat #ebebeb;
border: 1px solid #fff;
color: #5c5b5b;
font-size: 13px;
font-family: Arial;
text-transform: none;
font-weight: bold;
clear: both;
margin-top: 10px;
line-height: normal;
}
.f-width {
width: 100%;
float: left;
}
.content-2 div.l-content {
width: 48%;
float: left;
}
ul.ul-hightlight {
margin: 0px;
padding: 0px;
}
ul.ul-hightlight li {
margin-bottom: 6px;
padding: 4px 2px 12px;
border-bottom: 1px solid #ddd;
list-style: none;
}
ul.ul-hightlight li h4 {
margin: 5px 0px;
padding: 0px;
}
ul.ul-hightlight li a {
font-weight: bold;
text-decoration: none;
color: #3385D6;
font-weight: normal;
font-size: 18px;
}
ul.ul-hightlight li a img {
width: 100%;
margin-bottom: 20px;
}
.right {
float: right;
}
.content-2 div.r-content {
width: 50%;
float: right;
}
table td, table th {
border: 1px solid #BBB;
padding: 6px;
}
.z-tabs.silver > ul > li.z-active > a {
font-weight: bold;
}
/* media */
@media (max-width: 768px) and (min-width: 320px) {
.title-h1 {
font-size: 26px;
}
#slider-video {
margin: 30px 0px 0px;
padding-left: 20px;
padding-right: 20px;
}
#info-hotel {
margin-bottom: 20px;
}
.hl-info-right {
margin: 5px -20px 0px -20px;
}
.ul-hightlight li a img {
margin-top: 20px;
}
iframe {
width: 100%;
}
.ul-hightlight {
margin: 0px;
padding: 0px;
margin-left: -20px!important;
margin-right: -20px!important;
list-style: none;
}
.hl-info-right {
margin-left: -20px;
margin-right: -20px;
}
.hl-info-right h4 {
font-size: 18px;
}
ul.ul-hightlight li a {
font-size: 16px!important;
}
}
.logo-footer {
margin-top: 18px;
}
.name-company {
margin: 10px 0px!important;
line-height: 24px;
text-align: center;
font-size: 22px;
color: #fff;
font-weight: normal;
}
#CDSWIDEXC {
margin: 0px!important;
width: 100%!important;
margin-bottom: 10px!important;
}
#vietiso_sitebadgecontainer{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:none repeat scroll 0 0 #172863;font-size: 13px; border-bottom:2px solid #4780cf;border-bottom-right-radius:10px;border-image:none;border-left:medium none!important;border-right:2px solid #4780cf;border-top:2px solid #4780cf;border-top-right-radius:10px;display:inline-block;left:-140px;position:fixed;bottom:30px;width:180px;z-index:9999999999!important;padding:5px;}
.sitebadge{border-right:1px solid #E7E7E7;float:left;height:auto;width:130px;padding:5px 8px;}
.sitebadge a.skype{background:url(/Content/images/skype-icon.png) no-repeat scroll left center transparent;color:#fff;display:block;height:21px;line-height:21px;text-align:left;text-decoration:none;width:115px;margin: 8px 0 0px;padding:0 0 0 25px;}
.sitebadge p{background: url(/Content//images/hotline.png) no-repeat scroll left center transparent;color:#fff;display:block;height: 40px;line-height:21px;text-align:left;margin: 8px 0 9px;padding:0 0 0 25px;}
.sitebadge h2{color:#F58220;display:block;font-size:15px;height:24px;line-height:24px;text-align:center;width:100%;margin:12px 0 0;padding:0;}
.sitebadgeButton{display:block;float:right;width:30px;}
.sitebadgeButton span{background:url(/Content/images/badge_livehelp_en_white.png) no-repeat scroll center center transparent;display:block;height:100%;width:30px;}
.sitebadge p a {
color: #fff;
}
.pull-right ul li {
list-style: none;
float: left;
}
#social {
text-align: center;
}
#social a {
margin-right: 10px;
}
#social i.fa {
font-size: 16px;
color: #d91b21;
}
.navbar-form {
margin-top: 25px!important;
}
| 0.382949 | 0.137648 |
@charset "utf-8";
/*Autor: skorki */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain(filmweb.pl) {
/*logo*/
#logo {
opacity: 0.7 !important;
}
/*tło*/
body, #body, #body.oldPage, #footer, .footerCont, #header, .mask, .statisticsContent, .active .Ntpc, .screening .bodyWrapper {
background-image: none !important;
background: #1C1B1B !important;
background-color: #1C1B1B !important;
}
/*czcionki*/
.reset, th, tr, thead, tfoot, tbody, caption, table, legend, label, form, fieldset, li, ul, ol, dd, dt, dl, i, u, b, var, tt, sup, sub, strong, strike, small, samp, s, q, kbd, ins, font, em, dfn, del, code, cite, big, address, acronym, abbr, pre, blockquote, p, h6, h5, h4, h3, h2, h1, iframe, object, applet, span, div, body, html, .btn, .dropdownBtn, .stdButton, .link-btn {
color: #b0b0b0 !important;
text-shadow : none !important;
}
a {
color: #d2d2d2 !important;
text-shadow : none !important;
font-weight : bold !important;
}
/*obrazki w kontrybucjach, awatary*/
.fNoImg0, .uNoImg140 {
opacity: 0.8 !important;
}
img {
opacity: 0.8 !important;
}
/*główna żółte wstawki, żółte przyciski*/
.checkRecommendations, .welcomeScreenButton, .homePage .slideshowDescription, .productionsTypesList li.active, .promoVideoDescrContent, .first .newsInfo,
.homePremieresCarousel, .filmBox .trailerLink, .filmBox .trailerLink:hover
{
background: #6f6600 !important;
}
/*żółte przyciski*/
#pk-popup #cityChangeForm .stdButton.sbtn-primary, .sbtn.sbtn-primary, .sbtn-switcher > li > button.on, .sbtn-switcher > li > button:hover,
.sbtn.seeAll.seeAllCast:hover {
background: #6f6600 !important;
background-color: #6f6600 !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.sbtn-switcher > li > button {
border: none !important;
color: #d2d2d2 !important;
}
.sbtn {
background: #3d3b3b !important;
background-color: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
color: #d2d2d2 !important;
font-weight: bold !important;
border: none !important;
}
.sbtn.lite {
border: none !important;
}
/*żółte okna informacyjne*/
#castInfoPlace, #filmograpyInfoPlace, .infoPlace {
background: #6f6600 !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
/*pasek*/
.headerContainer, .menuContainer {
background: transparent !important;
}
/*Przyciski*/
.btn, .dropdownBtn, .stdButton, .typeNameLabel, .hotBar, .selectList > li.on, .nav-tabs > li > a,
.comTabMenu.dark li > a , #main .gwt-Button, .gwt-PopupPanel .gwt-Button, .contribRoles .personEdit, .badge-white, .showCont span, .slideshowBtn,
.personVoteInfo .communityRateSwitcher .tab.on, .personVoteInfo .communityRateSwitcher .tab, .sbtn.dropdown-toggle, .sbtn-switcher > li > button,
.sbtn.seeAll.seeAllCast {
background: #3d3b3b !important;
background-color: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
color: #d2d2d2 !important;
}
.personVoteInfo .communityRateSwitcher .tab.on {
text-decoration: underline !important;
}
.typeNameLabel:hover, .typeNameLabel.on {
color: #d2d2d2 !important;
text-shadow : none !important;
font-weight : bold !important;
}
.btn:hover .dropdownBtn:hover, .stdButton:hover, .nav-tabs > li > a:hover {
background: #505050 !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
li.mLvl.linkOver .topMenu, li.mLvl.on.linkOver .topMenu, li.mLvl .menu_red, li.mLvl.menuOn .topMenu, li.mLvl.on.menuOn .topMenu, .submenu, .channelProgs .singleProg.playing {
background : #8c1414 !important;
}
.nav-tabs > li.active a, .nav-tabs > li.active, .comTabMenu.dark li.on > a, .comTabMenu.dark li.on > span, .comTabMenu.dark li:hover > a, .comTabMenu.dark li:hover > span{
text-decoration: underline !important;
}
.comTabMenu.dark ul, .comTabMenu.dark li a {
border-color: #3d3d3d !important;
}
.fbtn-action /*zobacz zwiastun*/{
background: #4E0000 !important;
}
/*badge użytkownik, powiadomienia itp.*/
.badge-primary, .fbtn-primary, .flat-dropdown-menu {
background: #4b4b4b !important;
color: #ffffff !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.profileLinks .flat-dropdown-menu a {
background: transparent !important;
}
.flat-dropdown-menu .divider {
background-color: #000000 !important;
}
.profileLinks.open::after {
border-color: transparent transparent #3d3b3b !important;
}
.profileLinks a:hover, .profileLinks button:hover {
background: rgba(0,0,0,0.1) !important;
box-shadow: inset 0 -15px 30px rgba(92,92,92,0.4),
0 5px 10px rgba(92,92,92,0.5) !important;
}
.notificationsContainer, .notifyParent {
background: #4b4b4b !important;
}
.notificationsContainer .notify.notifyUnread, .notificationsContainer .notificationsHdr {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.notificationsContainer .moreNotifications {
background: padding-box #1E1E1E !important;
}
.notifyParent:hover .notify {
background: #856600 !important;
}
.userLinks > li a.on {
opacity: 0.8 !important;
}
/*profil uż*/
.userViewPage .userAvatar {
opacity: 0.7 !important;
}
/*kokpit - widżety, główna itp.*/
.gadgetRoundedGrayTopWrap, .black .gadgetRoundedGrayTR, .topNews ,.gadgetRoundedGrayTR, .gadgetRoundedGrayTL, .whiteLabelShadow, .gradMenu li, .moreCont, .filmography-table th {
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
color: #ffffff !important;
background: #3d3b3b !important;
}
.topNews div.active {
background: #484848 !important;
}
.gadgetContent {
background: #1C1B1B !important;
}
.topicsList .forumButtons, .premieresPage .singleFilmBox, .dashboard .elemList .lb, .singleTopicShort, .optionsBox, .gadgetNeighbourhoodList .singleFr, .submenu .sectionPrev, .recommBox:hover, .sideBox, .sideBox.contrast, .stdBar, .noDataToShow {
background-image: none !important;
background: #2a2929 !important;
border : none !important;
}
.elemList ul li, .tvElemList .seeAll, .allInGroups, .AllWithoutGroups {
border-color : #3c3a3a !important;
}
.secondOptionBox .shadebg2, .tvProgram .gadgetRoundedWhiteTopWrap .shadebg2, .userConnections .gadgetRoundedDarkContent .shadebg2,
.userConnections .gadgetRoundedWhiteTopWrap .shadebg2, .secondOptionBox .shadebg1, .secondOptionBox, .userConnections .gadgetRoundedDarkContent .shadebg1,
.userConnections .gadgetRoundedWhiteTopWrap, .userConnections .gadgetRoundedDarkContent, .gadgetZnajomi .gadgetRoundedDarkContent,
.gadgetRoundedWhiteContent, .gadgetPreview,.tvProgram .gadgetRoundedWhiteTR, .tvProgram .gadgetRoundedWhiteTL, .userConnections .gadgetRoundedWhiteTL,
.black .gadgetRoundedWhiteTL, .userConnections .gadgetRoundedWhiteTR, .gadgetRoundedWhiteBotWrap, .gadgetRoundedGrayBotWrap, .black .gadgetRoundedWhiteBL,
.black .gadgetRoundedWhiteBR, .gadgetRoundedGrayBR, .gadgetRoundedWhiteBL, .gadgetRoundedWhiteTopWrap, .gadgetRoundedWhiteTL, .gadgetRoundedWhiteTR,
.gadgetRoundedGrayBL, .gadgetRoundedWhiteBR,.black .gadgetRoundedGrayBL, .well.lighten, .sidebar .boxFooter, .repertuar .gadgetRoundedWhiteTopWrap .shadebg2, .repertuar .gadgetRoundedGrayContent,
.repertuar .gadgetRoundedGrayContent .setCont .s2, .repertuar .gadgetRoundedGrayContent .setCont, .channelProgs .singleProg, .singleChannelProg,
.programmeTVBox .channelChooser {
background-image : none !important;
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
}
.tvTabs .active, .tvTabs .active span {
background: #7d7e7d !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.tvTabs button span, .tvTabs button, .bL5, .bL4, .sideUL.zebra /*przyciski w widżetach*/ {
background: #3c3a3a !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.daySelect .jsNewSelect, .daySelect select {
color: #FFFFFF !important;
}
.sideUL.zebra li:nth-child(2n) {
background: #161616 !important;
}
/*glosowanie*/
.filmVotePanel, .personVoteInfo .communityRate{
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.personVoteInfo .yourAverage {
background: transparent !important;
}
.filmVotePanel .gwt-watchingButton.on:hover, .filmVotePanel .voteBox.voted:hover,
.filmVotePanel .gwt-wtsBox.doesNotWant .doNotWtsBox, .filmVotePanel .gwt-watchingButton.on,
.filmVotePanel .gwt-wtsBox.wants .wtsBox, .filmVotePanel .voteBox.voted {
background: transparent !important;
}
.uniVotePanel, .rateBtns .fbtn, .rateBL, .rateLL, .rateLLW {
background: #2a2929 !important;
border : none !important;
}
.uniVotePanel .watchingButton.on, .uniVotePanel .wantToSeeButton.on, .uniVotePanel .dontWantToSeeButton.on, .uniVotePanel .voteGroup.on, .uniVotePanel .watchingButton.voted, .uniVotePanel .wantToSeeButton.voted, .uniVotePanel .dontWantToSeeButton.voted, .uniVotePanel .voteGroup.voted {
background: #3c3a3a !important;
border : none !important;
}
.uniVotePane {
box-shadow: 1px 1px 2px #7F7F80 !important;
}
.uniVotePanel .watchingButton:hover, .rateBtns .fbtn:hover, .uniVotePanel .wantToSeeButton:hover, .uniVotePanel .dontWantToSeeButton:hover, .uniVotePanel .voteGroup:hover, .filmCast > li:hover, .filmography-table tr:hover td, .filmography-table tr.seen:hover td {
background: #8C1414 !important;
}
.wantToSeeVoting .gwt-highlighted {
color: #FFC404 !important;
}
.s-42.vertical-align.light {
font-weight: bolder !important;
}
/*podstrona dolne menu*/
.convexBox .convexBoxWrapper, #convexBoxParent, .convexBoxWrapper place, .mainCol .common-contextual-bar .local-box, .profileBox, .tpc, .userComment,
.oldPage .mask, .oldPage .bgColor, .oldPage .popup.gwtPopup {
background: #2a2929 !important;
background-image : none !important;
}
div, tr, td, tl {
border-color: #3d3d3d !important;
}
/*podstrona menu*/
.submenuBottom, .table-well thead th, .userViewPage .gradMenu, .userSubPage .gradMenu {
background: #2a2929 !important;
}
li.mLvl.on .topMenu {
background: #8C1414 !important;
}
.filmCastBox .sep {
background: #000000 !important;
border-color: #3d3d3d !important;
}
.sep-hr > *, .newHr, .hr, .filmCast > li > *, .singleMovieW, .table-list td {
border-bottom: 1px solid #3d3d3d !important;
border-top : none !important;
}
.table-well tbody td::before {
background: none !important;
border: none !important;
}
.well.light, .well.concave {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.boxContainer.separated > .box {
border-left: 1px solid #3d3d3d !important;
border-right: none !important;
}
.convexBox .convexBoxWrapper {
position : static !important;
}
.repertuar .gadgetContent {
border : none !important;
}
.singleSimilarity, .singleNews, .singleReview {
border-top: 1px solid #3d3d3d !important;
}
/*lista filmów z aktorem*/
.filmography-table tr.seen td{
background: #616161 !important;
}
.filmography-table tr.seen td:last-child {
border : none !important;
}
.filmography-table th {
border-top: none !important;
box-shadow: none !important;
}
.well {
border: 1px solid #000000 !important;
}
.rba, .channelProgs .singleProg, .singleChannelProg , .filmographyTable tr td, .filmographyTable tr th{
border-color: #3d3d3d !important;
}
.nae {
background-color: #1A1A1A !important;
}
.graphite {
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
background: #3d3b3b !important;
}
.pImg49 > span {
border-color: #3d3d3d !important;
}
/*żółte oceny na zdjęciach filmów*/
.personKnownFor .ribbonParent {
z-index: 2 !important;
opacity: 0.7 !important;
}
/*filmweb poleca film*/
.well.red {
background: #940000 !important;
}
/*menu*/
#menu > li > div > ul a {
color : #D2D2D2 !important;
}
#menu a, .votesSortingPanel > div, #userFilmVotesContainer .barWrapper{
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
}
.flat-dropdown-menu, .flat-btn-group.open .dropdown-toggle {
background: #373636 !important;
}
.awTNS th, .awTN th {
background : none !important;
}
.comTabMenu.dark li > a, .bL3 {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
}
.verified, .accept, .reject, .efficiency, .points, .sub_summary td {
background: #000000 !important;
}
#contrib_stat tr:hover td {
background: #555555 !important;
}
.slideshowDescription .hdrSlider a, .slideshowCategory a, .slideshowDescriptionText, .first .newsInfo a, .first .caption,
.contribElementLabel.contribElementNew {
color: #ffffff !important;
}
#fwtw-slb {
background: #535353 !important;
}
#main .gwt-Button, .gwt-PopupPanel .gwt-Button{
background: #373636 !important;
}
/*menu hovers*/
#menu>li:hover>div.has:after, #menu>li div.open.has:after {
background: transparent !important;
}
#menu > li:hover > div a:hover, #menu > li div.open a:hover {
background: rgba(0,0,0,0.1) !important;
box-shadow: inset 0 -15px 30px rgba(92,92,92,0.4),
0 5px 10px rgba(92,92,92,0.5) !important;
}
#menu > li:hover > div > ul, #menu > li div.open > ul {
background: #222222 !important;
border:none !important;
}
/*wyszukiwarka, input*/
.input-text, .select, #mainSearchInput, #mainSearchCont, .searchInput, .dayProgram , textarea, select, input,
.inputGray, .votesFiltersPanel input[type="text"], .contribName .gwt-TextBox input[type="text"], .contribName .gwt-TextBox,
.forumSearch .input, .forumSearch, #addComment .textarea, .txtBg, #mainSearchCont .resultsList:before {
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
color: #ffffff !important;
background: #3d3b3b !important;
-webkit-border-radius: 10px !important;
-moz-border-radius: 10px !important;
border-radius: 10px !important;
}
.gwt-RichTextArea {
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
color: #ffffff !important;
background: #888888 !important;
-webkit-border-radius: 10px !important;
-moz-border-radius: 10px !important;
border-radius: 10px !important;
}
#mainSearchCont .moreResultsInfo {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
#mainSearchCont li + li {
border-top: 1px solid #000000 !important;
}
#mainSearchCont li.cur {
background: #6f6600 !important;
color: #d2d2d2 !important;
}
.inputGray input, textarea.messageContent{
color: #ffffff !important;
}
.gwt-TextArea-source-creatorComment {
background: #2e2d2d !important;
border: none !important;
color: #d2d2d2 !important;
}
.gwt-RichTextToolbar .gwt-PushButton-up-hovering {
background: #2e2d2d !important;
}
.gwt-RichTextToolbar .gwt-PushButton-up {
background: #413f3f !important;
}
#submitSearch {
background: transparent !important;
}
.badge-concave, /*pasek pod plakatami filmów*/
.paginator_p, /*paginator*/
.moreCont .poinerButton,
.fbtn,
.paginator_cont,
.paginator_cont ul{
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.fbtn:hover {
background: #6f6600 !important;
}
#mainSearchCont .resultsList {
background: #4b4b4b !important;
border: none !important;
}
.naviBtnType01, .menu-badge-new, .meshOff, .listOn, a.carousel-button-next, a.carousel-button-prev {
opacity: 0.3 !important;
}
/*program TV*/
.nav-bar, .channelInfo, .seance, .dayInfo {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.nav-bar > li.off, .tvGrids .element.off .channel {
background: #2B2B2B !important;
}
.nav-bar > li + li {
border: none !important;
}
.nav-bar > li.active, .nav-bar > li.off.active {
background: #6f6600 !important;
}
.guide-carousel .pkc-viewport, .multi .guide-carousel .element, .single .channel-carousel .element, .channelViewPre, .alert, .tvGrids, .guideGrid {
background: #1C1B1B !important;
}
#guideClock {
border: none !important;
}
.channelViewPre::before {
background-color: rgba(0, 0, 0, 0.7) !important;
}
.table-well tbody td, /*komentarze*/
.bCommentArea,
.well.contrast, /*logowanie*/
.sticker, /*rekomendacje*/
.contribRoles .gwt-elementPanel, /*kontrybucje*/
.styleList .votePanel:hover, /*lista filmów hover*/
.votesPagingPanel, /*doł na liście filmów*/
.votesHeader, /*magłówek na liście filmów*/
.sortable th,
.sortable tr:hover td,
#selectedTrailerParent > div,
.userViewPage .common-contextual-bar .darkPlace, /*tło pod zdjęciem profilowym i opisem*/
.filmsTogglePanelParent, /*gustopodobni*/
.gRatingOuter, /*gustomierz*/
.cloud, /*pasek ładowania*/
.smallGrayPopup, /*popup ilość wspólnych filmów, aktorzy */
.nominationsList > li, .awdBox, /*nominacje */
.gwt-PopupPanel .popupContent, /*kontrybucje*/
.personVoteInfo .communityRateSwitcher .options .communityRateDrop, /*popup sortowania zawodów */
.awardOrganizationsList li, /*nagrody*/
.revBox {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
/*popup po najechaniu na uż na forum*/
.userPreviewInner {
background: transparent !important;
}
.userPreview {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.userPreviewInner::before {
border: none !important;
}
/*obserwuj*/
.observ {
opacity: 0.5 !important;
}
/*bilety*/
.otherCinemasList li.cityName {
background: #3d3b3b !important;
}
.cinemasSort, .dropdown-menu {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.ticket::before, .ticket::after {
background: #6f6600 !important;
}
.dropdown-toggle.sbtn {
border-color: #1C1B1B !important;
}
#pk-popup #cityChangeForm .stdButton:hover, .sbtn:hover, .dropdown-menu a:hover, .dropdown-menu button:hover {
background: #6f6600 !important;
}
.started .ticket {
background: #000000 !important;
}
.ticket {
background: #8B6B00 !important;
}
.ticketSmall {
background: #AC7500 !important;
}
/*kontrybucje*/
.contribElementLabel.contribElementNew {
background: #315C00 !important;
}
.contribElementLabel.contribElementUpdate {
background: #6f6600 !important;
}
.gwt-commonWidgetPanel, .contribStudios .gwt-SuggestBox, .gwt-SuggestBoxPopup .item,
.contribRoles .personBox, .contribRoles .imdbNumberBox, .contribRoles .roleBox, .localeWidget , .gwt-TextBox, .contribReleasedates .gwt-elementPanel,
.contribCuriosities .textInPanel .content .filmCuriosities-categoryName, .textInPanel .shortDesc:hover {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
color: #d2d2d2 !important;
}
.gwt-RichTextToolbar .gwt-ToggleButton-up, .gwt-RichTextToolbar .gwt-PushButton-down {
background: #3d3b3b !important;
}
.gwt-RichTextToolbar .gwt-ToggleButton-down-hovering {
background-color: #6A6A6A !important;
}
.contribName .elementPanel,
.contribCountries .panel,
.contribGenres .panel,
.contribCuriosities .gwt-elementPanel {
background: #1C1B1B !important;
border: none !important;
}
.gwt-SuggestBoxPopup .item-selected {
background-color: #7A7A7A !important;
}
.contribStudios .newElementPanel {
border: none !important;
}
/*znajomi*/
.friendsActivityTable:hover, .friendsActivityTable tr:hover td {
background: transparent !important;
}
/*forum, ankiety*/
.forumMain .topics-list > li + li {
border: none !important;
}
.questsList ul li:first-child, .questsList ul li {
border-color: #3d3d3d !important;
}
/*inne obramowania*/
.awTNS th {
border-color : #3d3d3d !important;
}
/*ranking*/
.filterBox {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.awTN th {
border-color: #1C1B1B !important;
}
.awTN th span {
background: transparent !important;
}
.ribbonParent .ribbonButton .label > strong {
color: #000000 !important;
}
.rolesCarousel .roleDesc {
background: #1C1B1B !important;
}
/*gry*/
.niceTable tfoot td, .niceTable tbody td, .dateSelect, .dateSelect > li a, .contentContainer table th {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
#filters {
background: #1C1B1B !important;
}
.dateSelect > li.on a.on span {
background: #6f6600 !important;
}
/*skrzynka odbiorcza*/
#messagesList tbody tr:hover td {
background: #303030 !important;
}
#popup .popupContent { /*popup wiadomosci*/
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
margin-top:0 !important;
margin-bottom: 20px !important;
padding: 10px 15px !important;
}
#popup .popupCorn3, #popup .popupCorn4, #popup .popupCorn1, #popup .popupCorn2 {
background : none !important;
}
#popup .popupCloseButton {
top: 20px !important;
}
/*regulamin*/
#body .regulationsPage, #publisher-pl_PL, #editorial-pl_PL {
background-color: #1C1B1B !important;
background: #1C1B1B !important;
color: #b0b0b0 !important;
}
/*filmweb poleca*/
.recommBox:hover, .dvdTopPremieresW, .filmBox, .rate {
background: #2a2929 !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.comTabMenu li.on > a, .comTabMenu li.on > span, .comTabMenu li:hover > a, .comTabMenu li:hover > span {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-decoration: underline !important;
}
.comTabMenu li > a, .comTabMenu li > span {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
}
.newHr, .hr {
background: #535353 !important;
}
.comTabMenu ul, .comTabMenu li > a, .comTabMenu li > span {
border-color: #535353 !important;
}
/*dvd*/
.sortCont, .sortNaviLeft a.prev, .sortNaviLeft a.next, .sortNaviLeft, .sortNaviLeft span.sp {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.editionList li {
border-color: #535353 !important;
}
/*lista twórców, kontrybucje*/
ul.horizontal-buttons-list > li:hover, .list-equal.hoverable > li:hover {
background: #303030 !important;
}
/*galeria zdjęć */
.galleryOn .galleryWrapper, html.galleryOn .galleryWrapper, .bodyWrapper.galleryWrapper.gallery_g_1 {
background: transparent!important;
background-color: #3d3b3b!important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.galleryControlPanel .galleryBtn:hover, .slideshowBtn:hover, .slideshowProgressBar {
background: #6f6600 !important;
border: none !important;
}
.galleryControlPanel .galleryBtn {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
color: #d2d2d2 !important;
}
.galleryTitlePanel {
text-align: center !important;
padding-top: 4px !important;
}
.galleryControlPanel {
padding: 10px !important;
}
.gallerySidebarPanel {
margin-top: 10px !important;
}
/*strzaleczka: nad komentarzem, lista zawodów*/
.userComment::after, .userComment::before, .personVoteInfo .communityRateSwitcher .options .communityRateDrop::before {
border-bottom-color: #2a2929 !important;
}
/*forum*/
.forumMain .topicWrapper, .post .postContentAndInfo {
border-bottom-color: #3d3d3d !important;
}
/*ramki plakatów*/
.syg {
border-color: #000000 !important;
}
/*[[wtyczki]]*/
/*[[wtwl]]*/
/*[[wtwyl]]*/
/*[[glosy]]*/
/*[[czerwone]]*/
/*[[zolte]]*/
/*[[domyslny]]*/
/*reklama na cały ekran, puste miejsca po reklamach, info o ciasteczkach*/
/*[[reklamy]]*/
/*[[rekwl]]*/
/*[[rekwyl]]*/
/*[[aplikacje]]*/
/*[[apk]]*/
/*[[unapk]]*/
}
|
data/usercss/89241.user.css
|
@charset "utf-8";
/*Autor: skorki */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain(filmweb.pl) {
/*logo*/
#logo {
opacity: 0.7 !important;
}
/*tło*/
body, #body, #body.oldPage, #footer, .footerCont, #header, .mask, .statisticsContent, .active .Ntpc, .screening .bodyWrapper {
background-image: none !important;
background: #1C1B1B !important;
background-color: #1C1B1B !important;
}
/*czcionki*/
.reset, th, tr, thead, tfoot, tbody, caption, table, legend, label, form, fieldset, li, ul, ol, dd, dt, dl, i, u, b, var, tt, sup, sub, strong, strike, small, samp, s, q, kbd, ins, font, em, dfn, del, code, cite, big, address, acronym, abbr, pre, blockquote, p, h6, h5, h4, h3, h2, h1, iframe, object, applet, span, div, body, html, .btn, .dropdownBtn, .stdButton, .link-btn {
color: #b0b0b0 !important;
text-shadow : none !important;
}
a {
color: #d2d2d2 !important;
text-shadow : none !important;
font-weight : bold !important;
}
/*obrazki w kontrybucjach, awatary*/
.fNoImg0, .uNoImg140 {
opacity: 0.8 !important;
}
img {
opacity: 0.8 !important;
}
/*główna żółte wstawki, żółte przyciski*/
.checkRecommendations, .welcomeScreenButton, .homePage .slideshowDescription, .productionsTypesList li.active, .promoVideoDescrContent, .first .newsInfo,
.homePremieresCarousel, .filmBox .trailerLink, .filmBox .trailerLink:hover
{
background: #6f6600 !important;
}
/*żółte przyciski*/
#pk-popup #cityChangeForm .stdButton.sbtn-primary, .sbtn.sbtn-primary, .sbtn-switcher > li > button.on, .sbtn-switcher > li > button:hover,
.sbtn.seeAll.seeAllCast:hover {
background: #6f6600 !important;
background-color: #6f6600 !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.sbtn-switcher > li > button {
border: none !important;
color: #d2d2d2 !important;
}
.sbtn {
background: #3d3b3b !important;
background-color: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
color: #d2d2d2 !important;
font-weight: bold !important;
border: none !important;
}
.sbtn.lite {
border: none !important;
}
/*żółte okna informacyjne*/
#castInfoPlace, #filmograpyInfoPlace, .infoPlace {
background: #6f6600 !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
/*pasek*/
.headerContainer, .menuContainer {
background: transparent !important;
}
/*Przyciski*/
.btn, .dropdownBtn, .stdButton, .typeNameLabel, .hotBar, .selectList > li.on, .nav-tabs > li > a,
.comTabMenu.dark li > a , #main .gwt-Button, .gwt-PopupPanel .gwt-Button, .contribRoles .personEdit, .badge-white, .showCont span, .slideshowBtn,
.personVoteInfo .communityRateSwitcher .tab.on, .personVoteInfo .communityRateSwitcher .tab, .sbtn.dropdown-toggle, .sbtn-switcher > li > button,
.sbtn.seeAll.seeAllCast {
background: #3d3b3b !important;
background-color: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
color: #d2d2d2 !important;
}
.personVoteInfo .communityRateSwitcher .tab.on {
text-decoration: underline !important;
}
.typeNameLabel:hover, .typeNameLabel.on {
color: #d2d2d2 !important;
text-shadow : none !important;
font-weight : bold !important;
}
.btn:hover .dropdownBtn:hover, .stdButton:hover, .nav-tabs > li > a:hover {
background: #505050 !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
li.mLvl.linkOver .topMenu, li.mLvl.on.linkOver .topMenu, li.mLvl .menu_red, li.mLvl.menuOn .topMenu, li.mLvl.on.menuOn .topMenu, .submenu, .channelProgs .singleProg.playing {
background : #8c1414 !important;
}
.nav-tabs > li.active a, .nav-tabs > li.active, .comTabMenu.dark li.on > a, .comTabMenu.dark li.on > span, .comTabMenu.dark li:hover > a, .comTabMenu.dark li:hover > span{
text-decoration: underline !important;
}
.comTabMenu.dark ul, .comTabMenu.dark li a {
border-color: #3d3d3d !important;
}
.fbtn-action /*zobacz zwiastun*/{
background: #4E0000 !important;
}
/*badge użytkownik, powiadomienia itp.*/
.badge-primary, .fbtn-primary, .flat-dropdown-menu {
background: #4b4b4b !important;
color: #ffffff !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.profileLinks .flat-dropdown-menu a {
background: transparent !important;
}
.flat-dropdown-menu .divider {
background-color: #000000 !important;
}
.profileLinks.open::after {
border-color: transparent transparent #3d3b3b !important;
}
.profileLinks a:hover, .profileLinks button:hover {
background: rgba(0,0,0,0.1) !important;
box-shadow: inset 0 -15px 30px rgba(92,92,92,0.4),
0 5px 10px rgba(92,92,92,0.5) !important;
}
.notificationsContainer, .notifyParent {
background: #4b4b4b !important;
}
.notificationsContainer .notify.notifyUnread, .notificationsContainer .notificationsHdr {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.notificationsContainer .moreNotifications {
background: padding-box #1E1E1E !important;
}
.notifyParent:hover .notify {
background: #856600 !important;
}
.userLinks > li a.on {
opacity: 0.8 !important;
}
/*profil uż*/
.userViewPage .userAvatar {
opacity: 0.7 !important;
}
/*kokpit - widżety, główna itp.*/
.gadgetRoundedGrayTopWrap, .black .gadgetRoundedGrayTR, .topNews ,.gadgetRoundedGrayTR, .gadgetRoundedGrayTL, .whiteLabelShadow, .gradMenu li, .moreCont, .filmography-table th {
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
color: #ffffff !important;
background: #3d3b3b !important;
}
.topNews div.active {
background: #484848 !important;
}
.gadgetContent {
background: #1C1B1B !important;
}
.topicsList .forumButtons, .premieresPage .singleFilmBox, .dashboard .elemList .lb, .singleTopicShort, .optionsBox, .gadgetNeighbourhoodList .singleFr, .submenu .sectionPrev, .recommBox:hover, .sideBox, .sideBox.contrast, .stdBar, .noDataToShow {
background-image: none !important;
background: #2a2929 !important;
border : none !important;
}
.elemList ul li, .tvElemList .seeAll, .allInGroups, .AllWithoutGroups {
border-color : #3c3a3a !important;
}
.secondOptionBox .shadebg2, .tvProgram .gadgetRoundedWhiteTopWrap .shadebg2, .userConnections .gadgetRoundedDarkContent .shadebg2,
.userConnections .gadgetRoundedWhiteTopWrap .shadebg2, .secondOptionBox .shadebg1, .secondOptionBox, .userConnections .gadgetRoundedDarkContent .shadebg1,
.userConnections .gadgetRoundedWhiteTopWrap, .userConnections .gadgetRoundedDarkContent, .gadgetZnajomi .gadgetRoundedDarkContent,
.gadgetRoundedWhiteContent, .gadgetPreview,.tvProgram .gadgetRoundedWhiteTR, .tvProgram .gadgetRoundedWhiteTL, .userConnections .gadgetRoundedWhiteTL,
.black .gadgetRoundedWhiteTL, .userConnections .gadgetRoundedWhiteTR, .gadgetRoundedWhiteBotWrap, .gadgetRoundedGrayBotWrap, .black .gadgetRoundedWhiteBL,
.black .gadgetRoundedWhiteBR, .gadgetRoundedGrayBR, .gadgetRoundedWhiteBL, .gadgetRoundedWhiteTopWrap, .gadgetRoundedWhiteTL, .gadgetRoundedWhiteTR,
.gadgetRoundedGrayBL, .gadgetRoundedWhiteBR,.black .gadgetRoundedGrayBL, .well.lighten, .sidebar .boxFooter, .repertuar .gadgetRoundedWhiteTopWrap .shadebg2, .repertuar .gadgetRoundedGrayContent,
.repertuar .gadgetRoundedGrayContent .setCont .s2, .repertuar .gadgetRoundedGrayContent .setCont, .channelProgs .singleProg, .singleChannelProg,
.programmeTVBox .channelChooser {
background-image : none !important;
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
}
.tvTabs .active, .tvTabs .active span {
background: #7d7e7d !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.tvTabs button span, .tvTabs button, .bL5, .bL4, .sideUL.zebra /*przyciski w widżetach*/ {
background: #3c3a3a !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.daySelect .jsNewSelect, .daySelect select {
color: #FFFFFF !important;
}
.sideUL.zebra li:nth-child(2n) {
background: #161616 !important;
}
/*glosowanie*/
.filmVotePanel, .personVoteInfo .communityRate{
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.personVoteInfo .yourAverage {
background: transparent !important;
}
.filmVotePanel .gwt-watchingButton.on:hover, .filmVotePanel .voteBox.voted:hover,
.filmVotePanel .gwt-wtsBox.doesNotWant .doNotWtsBox, .filmVotePanel .gwt-watchingButton.on,
.filmVotePanel .gwt-wtsBox.wants .wtsBox, .filmVotePanel .voteBox.voted {
background: transparent !important;
}
.uniVotePanel, .rateBtns .fbtn, .rateBL, .rateLL, .rateLLW {
background: #2a2929 !important;
border : none !important;
}
.uniVotePanel .watchingButton.on, .uniVotePanel .wantToSeeButton.on, .uniVotePanel .dontWantToSeeButton.on, .uniVotePanel .voteGroup.on, .uniVotePanel .watchingButton.voted, .uniVotePanel .wantToSeeButton.voted, .uniVotePanel .dontWantToSeeButton.voted, .uniVotePanel .voteGroup.voted {
background: #3c3a3a !important;
border : none !important;
}
.uniVotePane {
box-shadow: 1px 1px 2px #7F7F80 !important;
}
.uniVotePanel .watchingButton:hover, .rateBtns .fbtn:hover, .uniVotePanel .wantToSeeButton:hover, .uniVotePanel .dontWantToSeeButton:hover, .uniVotePanel .voteGroup:hover, .filmCast > li:hover, .filmography-table tr:hover td, .filmography-table tr.seen:hover td {
background: #8C1414 !important;
}
.wantToSeeVoting .gwt-highlighted {
color: #FFC404 !important;
}
.s-42.vertical-align.light {
font-weight: bolder !important;
}
/*podstrona dolne menu*/
.convexBox .convexBoxWrapper, #convexBoxParent, .convexBoxWrapper place, .mainCol .common-contextual-bar .local-box, .profileBox, .tpc, .userComment,
.oldPage .mask, .oldPage .bgColor, .oldPage .popup.gwtPopup {
background: #2a2929 !important;
background-image : none !important;
}
div, tr, td, tl {
border-color: #3d3d3d !important;
}
/*podstrona menu*/
.submenuBottom, .table-well thead th, .userViewPage .gradMenu, .userSubPage .gradMenu {
background: #2a2929 !important;
}
li.mLvl.on .topMenu {
background: #8C1414 !important;
}
.filmCastBox .sep {
background: #000000 !important;
border-color: #3d3d3d !important;
}
.sep-hr > *, .newHr, .hr, .filmCast > li > *, .singleMovieW, .table-list td {
border-bottom: 1px solid #3d3d3d !important;
border-top : none !important;
}
.table-well tbody td::before {
background: none !important;
border: none !important;
}
.well.light, .well.concave {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.boxContainer.separated > .box {
border-left: 1px solid #3d3d3d !important;
border-right: none !important;
}
.convexBox .convexBoxWrapper {
position : static !important;
}
.repertuar .gadgetContent {
border : none !important;
}
.singleSimilarity, .singleNews, .singleReview {
border-top: 1px solid #3d3d3d !important;
}
/*lista filmów z aktorem*/
.filmography-table tr.seen td{
background: #616161 !important;
}
.filmography-table tr.seen td:last-child {
border : none !important;
}
.filmography-table th {
border-top: none !important;
box-shadow: none !important;
}
.well {
border: 1px solid #000000 !important;
}
.rba, .channelProgs .singleProg, .singleChannelProg , .filmographyTable tr td, .filmographyTable tr th{
border-color: #3d3d3d !important;
}
.nae {
background-color: #1A1A1A !important;
}
.graphite {
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
background: #3d3b3b !important;
}
.pImg49 > span {
border-color: #3d3d3d !important;
}
/*żółte oceny na zdjęciach filmów*/
.personKnownFor .ribbonParent {
z-index: 2 !important;
opacity: 0.7 !important;
}
/*filmweb poleca film*/
.well.red {
background: #940000 !important;
}
/*menu*/
#menu > li > div > ul a {
color : #D2D2D2 !important;
}
#menu a, .votesSortingPanel > div, #userFilmVotesContainer .barWrapper{
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
}
.flat-dropdown-menu, .flat-btn-group.open .dropdown-toggle {
background: #373636 !important;
}
.awTNS th, .awTN th {
background : none !important;
}
.comTabMenu.dark li > a, .bL3 {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
}
.verified, .accept, .reject, .efficiency, .points, .sub_summary td {
background: #000000 !important;
}
#contrib_stat tr:hover td {
background: #555555 !important;
}
.slideshowDescription .hdrSlider a, .slideshowCategory a, .slideshowDescriptionText, .first .newsInfo a, .first .caption,
.contribElementLabel.contribElementNew {
color: #ffffff !important;
}
#fwtw-slb {
background: #535353 !important;
}
#main .gwt-Button, .gwt-PopupPanel .gwt-Button{
background: #373636 !important;
}
/*menu hovers*/
#menu>li:hover>div.has:after, #menu>li div.open.has:after {
background: transparent !important;
}
#menu > li:hover > div a:hover, #menu > li div.open a:hover {
background: rgba(0,0,0,0.1) !important;
box-shadow: inset 0 -15px 30px rgba(92,92,92,0.4),
0 5px 10px rgba(92,92,92,0.5) !important;
}
#menu > li:hover > div > ul, #menu > li div.open > ul {
background: #222222 !important;
border:none !important;
}
/*wyszukiwarka, input*/
.input-text, .select, #mainSearchInput, #mainSearchCont, .searchInput, .dayProgram , textarea, select, input,
.inputGray, .votesFiltersPanel input[type="text"], .contribName .gwt-TextBox input[type="text"], .contribName .gwt-TextBox,
.forumSearch .input, .forumSearch, #addComment .textarea, .txtBg, #mainSearchCont .resultsList:before {
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
color: #ffffff !important;
background: #3d3b3b !important;
-webkit-border-radius: 10px !important;
-moz-border-radius: 10px !important;
border-radius: 10px !important;
}
.gwt-RichTextArea {
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
color: #ffffff !important;
background: #888888 !important;
-webkit-border-radius: 10px !important;
-moz-border-radius: 10px !important;
border-radius: 10px !important;
}
#mainSearchCont .moreResultsInfo {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
#mainSearchCont li + li {
border-top: 1px solid #000000 !important;
}
#mainSearchCont li.cur {
background: #6f6600 !important;
color: #d2d2d2 !important;
}
.inputGray input, textarea.messageContent{
color: #ffffff !important;
}
.gwt-TextArea-source-creatorComment {
background: #2e2d2d !important;
border: none !important;
color: #d2d2d2 !important;
}
.gwt-RichTextToolbar .gwt-PushButton-up-hovering {
background: #2e2d2d !important;
}
.gwt-RichTextToolbar .gwt-PushButton-up {
background: #413f3f !important;
}
#submitSearch {
background: transparent !important;
}
.badge-concave, /*pasek pod plakatami filmów*/
.paginator_p, /*paginator*/
.moreCont .poinerButton,
.fbtn,
.paginator_cont,
.paginator_cont ul{
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.fbtn:hover {
background: #6f6600 !important;
}
#mainSearchCont .resultsList {
background: #4b4b4b !important;
border: none !important;
}
.naviBtnType01, .menu-badge-new, .meshOff, .listOn, a.carousel-button-next, a.carousel-button-prev {
opacity: 0.3 !important;
}
/*program TV*/
.nav-bar, .channelInfo, .seance, .dayInfo {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.nav-bar > li.off, .tvGrids .element.off .channel {
background: #2B2B2B !important;
}
.nav-bar > li + li {
border: none !important;
}
.nav-bar > li.active, .nav-bar > li.off.active {
background: #6f6600 !important;
}
.guide-carousel .pkc-viewport, .multi .guide-carousel .element, .single .channel-carousel .element, .channelViewPre, .alert, .tvGrids, .guideGrid {
background: #1C1B1B !important;
}
#guideClock {
border: none !important;
}
.channelViewPre::before {
background-color: rgba(0, 0, 0, 0.7) !important;
}
.table-well tbody td, /*komentarze*/
.bCommentArea,
.well.contrast, /*logowanie*/
.sticker, /*rekomendacje*/
.contribRoles .gwt-elementPanel, /*kontrybucje*/
.styleList .votePanel:hover, /*lista filmów hover*/
.votesPagingPanel, /*doł na liście filmów*/
.votesHeader, /*magłówek na liście filmów*/
.sortable th,
.sortable tr:hover td,
#selectedTrailerParent > div,
.userViewPage .common-contextual-bar .darkPlace, /*tło pod zdjęciem profilowym i opisem*/
.filmsTogglePanelParent, /*gustopodobni*/
.gRatingOuter, /*gustomierz*/
.cloud, /*pasek ładowania*/
.smallGrayPopup, /*popup ilość wspólnych filmów, aktorzy */
.nominationsList > li, .awdBox, /*nominacje */
.gwt-PopupPanel .popupContent, /*kontrybucje*/
.personVoteInfo .communityRateSwitcher .options .communityRateDrop, /*popup sortowania zawodów */
.awardOrganizationsList li, /*nagrody*/
.revBox {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
/*popup po najechaniu na uż na forum*/
.userPreviewInner {
background: transparent !important;
}
.userPreview {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.userPreviewInner::before {
border: none !important;
}
/*obserwuj*/
.observ {
opacity: 0.5 !important;
}
/*bilety*/
.otherCinemasList li.cityName {
background: #3d3b3b !important;
}
.cinemasSort, .dropdown-menu {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.ticket::before, .ticket::after {
background: #6f6600 !important;
}
.dropdown-toggle.sbtn {
border-color: #1C1B1B !important;
}
#pk-popup #cityChangeForm .stdButton:hover, .sbtn:hover, .dropdown-menu a:hover, .dropdown-menu button:hover {
background: #6f6600 !important;
}
.started .ticket {
background: #000000 !important;
}
.ticket {
background: #8B6B00 !important;
}
.ticketSmall {
background: #AC7500 !important;
}
/*kontrybucje*/
.contribElementLabel.contribElementNew {
background: #315C00 !important;
}
.contribElementLabel.contribElementUpdate {
background: #6f6600 !important;
}
.gwt-commonWidgetPanel, .contribStudios .gwt-SuggestBox, .gwt-SuggestBoxPopup .item,
.contribRoles .personBox, .contribRoles .imdbNumberBox, .contribRoles .roleBox, .localeWidget , .gwt-TextBox, .contribReleasedates .gwt-elementPanel,
.contribCuriosities .textInPanel .content .filmCuriosities-categoryName, .textInPanel .shortDesc:hover {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
color: #d2d2d2 !important;
}
.gwt-RichTextToolbar .gwt-ToggleButton-up, .gwt-RichTextToolbar .gwt-PushButton-down {
background: #3d3b3b !important;
}
.gwt-RichTextToolbar .gwt-ToggleButton-down-hovering {
background-color: #6A6A6A !important;
}
.contribName .elementPanel,
.contribCountries .panel,
.contribGenres .panel,
.contribCuriosities .gwt-elementPanel {
background: #1C1B1B !important;
border: none !important;
}
.gwt-SuggestBoxPopup .item-selected {
background-color: #7A7A7A !important;
}
.contribStudios .newElementPanel {
border: none !important;
}
/*znajomi*/
.friendsActivityTable:hover, .friendsActivityTable tr:hover td {
background: transparent !important;
}
/*forum, ankiety*/
.forumMain .topics-list > li + li {
border: none !important;
}
.questsList ul li:first-child, .questsList ul li {
border-color: #3d3d3d !important;
}
/*inne obramowania*/
.awTNS th {
border-color : #3d3d3d !important;
}
/*ranking*/
.filterBox {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.awTN th {
border-color: #1C1B1B !important;
}
.awTN th span {
background: transparent !important;
}
.ribbonParent .ribbonButton .label > strong {
color: #000000 !important;
}
.rolesCarousel .roleDesc {
background: #1C1B1B !important;
}
/*gry*/
.niceTable tfoot td, .niceTable tbody td, .dateSelect, .dateSelect > li a, .contentContainer table th {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
#filters {
background: #1C1B1B !important;
}
.dateSelect > li.on a.on span {
background: #6f6600 !important;
}
/*skrzynka odbiorcza*/
#messagesList tbody tr:hover td {
background: #303030 !important;
}
#popup .popupContent { /*popup wiadomosci*/
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
margin-top:0 !important;
margin-bottom: 20px !important;
padding: 10px 15px !important;
}
#popup .popupCorn3, #popup .popupCorn4, #popup .popupCorn1, #popup .popupCorn2 {
background : none !important;
}
#popup .popupCloseButton {
top: 20px !important;
}
/*regulamin*/
#body .regulationsPage, #publisher-pl_PL, #editorial-pl_PL {
background-color: #1C1B1B !important;
background: #1C1B1B !important;
color: #b0b0b0 !important;
}
/*filmweb poleca*/
.recommBox:hover, .dvdTopPremieresW, .filmBox, .rate {
background: #2a2929 !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.comTabMenu li.on > a, .comTabMenu li.on > span, .comTabMenu li:hover > a, .comTabMenu li:hover > span {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-decoration: underline !important;
}
.comTabMenu li > a, .comTabMenu li > span {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
}
.newHr, .hr {
background: #535353 !important;
}
.comTabMenu ul, .comTabMenu li > a, .comTabMenu li > span {
border-color: #535353 !important;
}
/*dvd*/
.sortCont, .sortNaviLeft a.prev, .sortNaviLeft a.next, .sortNaviLeft, .sortNaviLeft span.sp {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
border: none !important;
}
.editionList li {
border-color: #535353 !important;
}
/*lista twórców, kontrybucje*/
ul.horizontal-buttons-list > li:hover, .list-equal.hoverable > li:hover {
background: #303030 !important;
}
/*galeria zdjęć */
.galleryOn .galleryWrapper, html.galleryOn .galleryWrapper, .bodyWrapper.galleryWrapper.gallery_g_1 {
background: transparent!important;
background-color: #3d3b3b!important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
}
.galleryControlPanel .galleryBtn:hover, .slideshowBtn:hover, .slideshowProgressBar {
background: #6f6600 !important;
border: none !important;
}
.galleryControlPanel .galleryBtn {
background: #3d3b3b !important;
box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4),
0 5px 10px rgba(0,0,0,0.5) !important;
text-shadow: none !important;
border: none !important;
color: #d2d2d2 !important;
}
.galleryTitlePanel {
text-align: center !important;
padding-top: 4px !important;
}
.galleryControlPanel {
padding: 10px !important;
}
.gallerySidebarPanel {
margin-top: 10px !important;
}
/*strzaleczka: nad komentarzem, lista zawodów*/
.userComment::after, .userComment::before, .personVoteInfo .communityRateSwitcher .options .communityRateDrop::before {
border-bottom-color: #2a2929 !important;
}
/*forum*/
.forumMain .topicWrapper, .post .postContentAndInfo {
border-bottom-color: #3d3d3d !important;
}
/*ramki plakatów*/
.syg {
border-color: #000000 !important;
}
/*[[wtyczki]]*/
/*[[wtwl]]*/
/*[[wtwyl]]*/
/*[[glosy]]*/
/*[[czerwone]]*/
/*[[zolte]]*/
/*[[domyslny]]*/
/*reklama na cały ekran, puste miejsca po reklamach, info o ciasteczkach*/
/*[[reklamy]]*/
/*[[rekwl]]*/
/*[[rekwyl]]*/
/*[[aplikacje]]*/
/*[[apk]]*/
/*[[unapk]]*/
}
| 0.226099 | 0.05301 |
*,html{
}
body {
background-color: #F9F4E8;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-size: small;
color: #000000;
margin: 0;
padding: 0;
}
#container{
width: 85%;
margin: auto;
position: relative;
}
h1 {
font-weight: bold;
font-size: 50px;
color: #000;
font-family: 'Playfair Display', serif;
margin-bottom: 1px;
margin-top: 0;
}
p{
position: absolute;
top: 15px;
right: -18px;
}
fieldset {
border: 1px dotted #000000;
width: 100%;
margin: auto;
}
.underline input[type="text"] {
padding: 10px;
border: none;
border-bottom: solid 2px #c9c9c9;
transition: border 0.3s;
}
.underline input[type="text"]:focus,
.underline input[type="text"].focus {
border-bottom: solid 2px #969696;
}
.styled-button-8 {
background: #25A6E1;
background: -moz-linear-gradient(top,#25A6E1 0%,#188BC0 100%);
background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#25A6E1),color-stop(100%,#188BC0));
background: -webkit-linear-gradient(top,#25A6E1 0%,#188BC0 100%);
background: -o-linear-gradient(top,#25A6E1 0%,#188BC0 100%);
background: -ms-linear-gradient(top,#25A6E1 0%,#188BC0 100%);
background: linear-gradient(top,#25A6E1 0%,#188BC0 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#25A6E1',endColorstr='#188BC0',GradientType=0);
padding: 6px 13px; color:#fff;
font-family:'Helvetica Neue',sans-serif;
font-size:17px;
border-radius:4px;
-moz-border-radius:4px;
-webkit-border-radius:4px;
border:1px solid #1A87B9
}
.chatWindow{
background: #fff;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
legend {
font-weight: bold;
}
input#message {
width: 100%;
}
div#dialogue {
overflow: auto;
height: 450px;
width: 100%;
}
div#debug {
overflow: auto;
max-height: 450px;
width: 100%;
}
span.user {
font-weight: bold;
color: #0000FF;
}
span.bot {
font-weight: bold;
color: #FF0000;
}
table.input-table {
border: 0px;
border-collapse: separate;
border-spacing: 4px;
width: 100%;
}
table.input-table td.text-box {
padding: 4px;
text-align: left;
vertical-align: middle;
}
table.input-table td.send-button {
padding: 4px;
text-align: center;
vertical-align: middle;
width: 10px;
}
|
eg/web-client/chat.css
|
*,html{
}
body {
background-color: #F9F4E8;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-size: small;
color: #000000;
margin: 0;
padding: 0;
}
#container{
width: 85%;
margin: auto;
position: relative;
}
h1 {
font-weight: bold;
font-size: 50px;
color: #000;
font-family: 'Playfair Display', serif;
margin-bottom: 1px;
margin-top: 0;
}
p{
position: absolute;
top: 15px;
right: -18px;
}
fieldset {
border: 1px dotted #000000;
width: 100%;
margin: auto;
}
.underline input[type="text"] {
padding: 10px;
border: none;
border-bottom: solid 2px #c9c9c9;
transition: border 0.3s;
}
.underline input[type="text"]:focus,
.underline input[type="text"].focus {
border-bottom: solid 2px #969696;
}
.styled-button-8 {
background: #25A6E1;
background: -moz-linear-gradient(top,#25A6E1 0%,#188BC0 100%);
background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#25A6E1),color-stop(100%,#188BC0));
background: -webkit-linear-gradient(top,#25A6E1 0%,#188BC0 100%);
background: -o-linear-gradient(top,#25A6E1 0%,#188BC0 100%);
background: -ms-linear-gradient(top,#25A6E1 0%,#188BC0 100%);
background: linear-gradient(top,#25A6E1 0%,#188BC0 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#25A6E1',endColorstr='#188BC0',GradientType=0);
padding: 6px 13px; color:#fff;
font-family:'Helvetica Neue',sans-serif;
font-size:17px;
border-radius:4px;
-moz-border-radius:4px;
-webkit-border-radius:4px;
border:1px solid #1A87B9
}
.chatWindow{
background: #fff;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
legend {
font-weight: bold;
}
input#message {
width: 100%;
}
div#dialogue {
overflow: auto;
height: 450px;
width: 100%;
}
div#debug {
overflow: auto;
max-height: 450px;
width: 100%;
}
span.user {
font-weight: bold;
color: #0000FF;
}
span.bot {
font-weight: bold;
color: #FF0000;
}
table.input-table {
border: 0px;
border-collapse: separate;
border-spacing: 4px;
width: 100%;
}
table.input-table td.text-box {
padding: 4px;
text-align: left;
vertical-align: middle;
}
table.input-table td.send-button {
padding: 4px;
text-align: center;
vertical-align: middle;
width: 10px;
}
| 0.262558 | 0.062474 |
:root {
--side-nav-size: 250px;
--chupy-admin-card-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.3);
}
.chupy-admin .chupy-admin-aside {
background-color: var(--color-gray);
top: var(--navbar-size);
position: fixed;
left: 0;
height: 100vh;
width: var(--side-nav-size);
}
.chupy-admin-aside .nav-item .nav-link:focus,
.chupy-admin-aside .nav-item .nav-link:hover, .chupy-admin-aside .nav-item .nav-link.active {
background-color: var(--color-primary);
border-color: var(--color-primary);
font-weight: bold;
}
.chupy-admin-aside .nav-item .nav-link {
color: white;
border-bottom: 1px solid gray;
}
.chupy-admin-aside .nav-item * {
color: inherit;
}
.chupy-admin.toggled {
padding-left: var(--side-nav-size);
}
.chupy-admin #page-wrapper {
border-left: 1px solid gray;
}
.chupy-admin #page-wrapper>main {
padding-top: var(--navbar-size);
min-height: 100vh;
position: relative;
}
.chupy-admin #page-wrapper>main .chupy-alert.fixed {
/* box-shadow: var(--navbar-shadow);
position: fixed; */
left: 57%!important;
/* transform: translateX(-50%);
margin-top: 15px;
z-index: 99; */
}
.chupy-admin #page-wrapper .container, .chupy-admin #page-wrapper .container-fluid {
padding-top: 15px;
padding-bottom: 15px;
}
.chupy-admin-dashboard-header {
background-color: var(--color-primary);
color: white;
padding: 16px;
}
.chupy-admin-dashboard-header * {
color: inherit;
}
a.chupy-admin-dashboard-card {
transition: box-shadow var(--transition), background-color var(--transition);
}
a.chupy-admin-dashboard-card:hover {
text-decoration: none;
box-shadow: var(--chupy-admin-card-shadow);
}
.chupy-admin-dashboard-card .data-name-indicator {
font-weight: 300;
}
.chupy-admin-panel {
margin-bottom: 16px;
}
#logout.chupy-dropdown {
right: 0px;
left: auto;
}
footer {
padding-top: 16px;
padding-bottom: 16px;
background-color: var(--color-primary) !important;
}
footer p {
font-weight: bold;
color: white;
font-size: 1.25em;
}
.chupy-image-preview img{
height: 100px;
object-fit: cover;
margin-right:2px;
margin-bottom:2px;
}
|
public/extension/css/style-admin.css
|
:root {
--side-nav-size: 250px;
--chupy-admin-card-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.3);
}
.chupy-admin .chupy-admin-aside {
background-color: var(--color-gray);
top: var(--navbar-size);
position: fixed;
left: 0;
height: 100vh;
width: var(--side-nav-size);
}
.chupy-admin-aside .nav-item .nav-link:focus,
.chupy-admin-aside .nav-item .nav-link:hover, .chupy-admin-aside .nav-item .nav-link.active {
background-color: var(--color-primary);
border-color: var(--color-primary);
font-weight: bold;
}
.chupy-admin-aside .nav-item .nav-link {
color: white;
border-bottom: 1px solid gray;
}
.chupy-admin-aside .nav-item * {
color: inherit;
}
.chupy-admin.toggled {
padding-left: var(--side-nav-size);
}
.chupy-admin #page-wrapper {
border-left: 1px solid gray;
}
.chupy-admin #page-wrapper>main {
padding-top: var(--navbar-size);
min-height: 100vh;
position: relative;
}
.chupy-admin #page-wrapper>main .chupy-alert.fixed {
/* box-shadow: var(--navbar-shadow);
position: fixed; */
left: 57%!important;
/* transform: translateX(-50%);
margin-top: 15px;
z-index: 99; */
}
.chupy-admin #page-wrapper .container, .chupy-admin #page-wrapper .container-fluid {
padding-top: 15px;
padding-bottom: 15px;
}
.chupy-admin-dashboard-header {
background-color: var(--color-primary);
color: white;
padding: 16px;
}
.chupy-admin-dashboard-header * {
color: inherit;
}
a.chupy-admin-dashboard-card {
transition: box-shadow var(--transition), background-color var(--transition);
}
a.chupy-admin-dashboard-card:hover {
text-decoration: none;
box-shadow: var(--chupy-admin-card-shadow);
}
.chupy-admin-dashboard-card .data-name-indicator {
font-weight: 300;
}
.chupy-admin-panel {
margin-bottom: 16px;
}
#logout.chupy-dropdown {
right: 0px;
left: auto;
}
footer {
padding-top: 16px;
padding-bottom: 16px;
background-color: var(--color-primary) !important;
}
footer p {
font-weight: bold;
color: white;
font-size: 1.25em;
}
.chupy-image-preview img{
height: 100px;
object-fit: cover;
margin-right:2px;
margin-bottom:2px;
}
| 0.467818 | 0.132458 |
.tictactoe{
height:485px;
padding:0 6% 6% 6%;
width:160px;
margin:auto;
margin-top:-42px;
}
.tictactoe_board_container{
margin-top:70px;
}
.ttt_title{
margin:auto;
text-align:center;
padding:10px;
}
.ttt_Square{
border:2px solid grey;
padding:8%;
margin-bottom:2.5px;
border-radius:5px;
width:24px;
font-size:2em;
margin-right:2px;
min-height:37px;
min-width:28px;
}
.ttt_Square:hover{
cursor:pointer;
background-color:papayawhip;
}
.ttt_parent_column_container{
text-align:center;
}
.ttt_first_column_container, .ttt_second_column_container, .ttt_third_column_container{
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-align-items: flex-start;
align-items: flex-start;
}
.tictactoe_controls{
border:2px solid grey;
text-align:center;
padding:5px;
width:163px;
}
.ttt_reset, .ttt_quit{
border:none;
border-radius:5px;
margin:2px;
}
.ttt_reset:hover, .ttt_quit:hover, .ttt_gameover_reset:hover, .ttt_gameover_quit:hover{
color:white;
cursor:pointer;
}
.ttt_player_container{
padding-top:5px;
padding-bottom:5px;
}
.ttt_player1_scores, .ttt_player2_scores{
/*width:30%;*/
padding: 0 7px 0 7px;
display:inline-block;
}
.ttt_player1_score, .ttt_player2_score{
border:1px solid black;
height:20px;
width:56%;
margin:auto;
}
.ttt_player1_score{
color:green;
}
.ttt_player2_score{
color:red;
}
.ttt_landing_title_text{
margin-top:-20px;
}
.ttt_koopaBoard{
width:300px;
text-align:center;
border:2px solid rgb(120,69,19);
background-image: linear-gradient(rgb(160,82,45) 50%, rgb(170,82,45) 50%);
background-size: 50px 50px;
padding:20%;
margin: 120px 0 0 -86px;
}
.ttt_player1_title, .ttt_player2_title{
padding-bottom:10px;
}
.ttt_player1_query, .ttt_player2_query{
width:235px;
margin:auto;
}
.ttt_name1_input, .ttt_name2_input{
width:100%;
margin-right:3px;
padding:4px;
margin-top:10px;
text-align:center;
font-size:20px;
}
.ttt_name1_input:focus, .ttt_name2_input:focus{
outline:none;
}
.ttt_player1_name_btn, .ttt_player2_name_btn{
border:2px solid black;
border-radius:5px;
margin-top:10px;
width:50%;
background-color:white;
}
.ttt_player1_name_btn:hover, .ttt_player2_name_btn:hover {
background-color:papayawhip;
cursor:pointer;
}
.ttt_ingame_message{
color:orange;
}
.ttt_winning_colors{
background-color: orange;
padding: 31%;
border-radius: 50%;
margin-bottom: -13px;
margin-left: -9px;
}
.ttt_gameover_reset, .ttt_gameover_quit{
border:none;
border-radius:5px;
margin:2px;
}
.ttt_gameover_container{
margin-top: 120px;
margin-left: -42%;
background-color: oldlace;
border: 2px solid black;
padding: 30px;
width: 233px;
text-align: center;
}
.ttt_gameover_winner{
color:indianred;
font-size:3em;
padding:5px;
}
.ttt_gameover_title{
margin-bottom: -10px;
}
@media (max-width: 490px){
.ttt_koopaBoard{
padding:0 0 20px 0;
margin: 120px 0 0 -71px;
}
}
|
src/components/TicTacToe/tictactoe.css
|
.tictactoe{
height:485px;
padding:0 6% 6% 6%;
width:160px;
margin:auto;
margin-top:-42px;
}
.tictactoe_board_container{
margin-top:70px;
}
.ttt_title{
margin:auto;
text-align:center;
padding:10px;
}
.ttt_Square{
border:2px solid grey;
padding:8%;
margin-bottom:2.5px;
border-radius:5px;
width:24px;
font-size:2em;
margin-right:2px;
min-height:37px;
min-width:28px;
}
.ttt_Square:hover{
cursor:pointer;
background-color:papayawhip;
}
.ttt_parent_column_container{
text-align:center;
}
.ttt_first_column_container, .ttt_second_column_container, .ttt_third_column_container{
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-align-items: flex-start;
align-items: flex-start;
}
.tictactoe_controls{
border:2px solid grey;
text-align:center;
padding:5px;
width:163px;
}
.ttt_reset, .ttt_quit{
border:none;
border-radius:5px;
margin:2px;
}
.ttt_reset:hover, .ttt_quit:hover, .ttt_gameover_reset:hover, .ttt_gameover_quit:hover{
color:white;
cursor:pointer;
}
.ttt_player_container{
padding-top:5px;
padding-bottom:5px;
}
.ttt_player1_scores, .ttt_player2_scores{
/*width:30%;*/
padding: 0 7px 0 7px;
display:inline-block;
}
.ttt_player1_score, .ttt_player2_score{
border:1px solid black;
height:20px;
width:56%;
margin:auto;
}
.ttt_player1_score{
color:green;
}
.ttt_player2_score{
color:red;
}
.ttt_landing_title_text{
margin-top:-20px;
}
.ttt_koopaBoard{
width:300px;
text-align:center;
border:2px solid rgb(120,69,19);
background-image: linear-gradient(rgb(160,82,45) 50%, rgb(170,82,45) 50%);
background-size: 50px 50px;
padding:20%;
margin: 120px 0 0 -86px;
}
.ttt_player1_title, .ttt_player2_title{
padding-bottom:10px;
}
.ttt_player1_query, .ttt_player2_query{
width:235px;
margin:auto;
}
.ttt_name1_input, .ttt_name2_input{
width:100%;
margin-right:3px;
padding:4px;
margin-top:10px;
text-align:center;
font-size:20px;
}
.ttt_name1_input:focus, .ttt_name2_input:focus{
outline:none;
}
.ttt_player1_name_btn, .ttt_player2_name_btn{
border:2px solid black;
border-radius:5px;
margin-top:10px;
width:50%;
background-color:white;
}
.ttt_player1_name_btn:hover, .ttt_player2_name_btn:hover {
background-color:papayawhip;
cursor:pointer;
}
.ttt_ingame_message{
color:orange;
}
.ttt_winning_colors{
background-color: orange;
padding: 31%;
border-radius: 50%;
margin-bottom: -13px;
margin-left: -9px;
}
.ttt_gameover_reset, .ttt_gameover_quit{
border:none;
border-radius:5px;
margin:2px;
}
.ttt_gameover_container{
margin-top: 120px;
margin-left: -42%;
background-color: oldlace;
border: 2px solid black;
padding: 30px;
width: 233px;
text-align: center;
}
.ttt_gameover_winner{
color:indianred;
font-size:3em;
padding:5px;
}
.ttt_gameover_title{
margin-bottom: -10px;
}
@media (max-width: 490px){
.ttt_koopaBoard{
padding:0 0 20px 0;
margin: 120px 0 0 -71px;
}
}
| 0.378459 | 0.090213 |
body { background: #f2f2f2; }
nav { background: white; }
/* Navbar Height */
/*.navbar-fixed { height:40px; }
nav { height:40px;line-height:40px; }*/
.brand_logo>img {
height:60px;
}
.nav_search_container {
background: #f9f9f9;
padding: 0 1.5em 0 1.5em;
}
.nav_search_container>input[type="text"] {
width: 300px;
}
.top_nav_item>a {
color: #8f0c10;
}
/*.top_nav_item>a>i {
color: #8f0c10 !important;
}*/
#splash {
margin-top: 150px;
}
.btn_theme {
text-transform: capitalize;
background: #8f0c10;
color: white !important;
}
.btn_theme:hover {
background: grey;
}
.btn_theme_outline {
text-transform: capitalize;
background: white;
border:2px solid #8f0c10;
color: #8f0c10 !important;
}
.btn_theme_outline:hover {
background: #8f0c10;
color: white !important;
}
.bg_theme { background: #8f0c10; }
.bg_active { background: #e0e0e0; }
.text_theme { color: #8f0c10; }
.text_light { color: white; }
.text_dark { color: black; }
.text_bold { font-weight: bold; }
.text_capitalize { text-transform: capitalize; }
.btn_x_lg {
padding:2%;
padding-left:10%;
padding-right:10%;
}
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
.p_1 { padding: 1%; }
.p_2 { padding: 2%; }
.p_3 { padding: 3%; }
.m_1 { margin: 1%; }
.m_2 { margin: 2%; }
.m_3 { margin: 3%; }
.cursor_pointer {
cursor:pointer !important;
}
.float_right {
float:right !important;
}
.float_left {
float:left !important;
}
#sub_menu {
display: flex;
justify-content: space-around;
border:1px solid grey;
padding: 0;
}
#sub_menu>a {
color: grey;
}
/*///////////// -- loaders -- ////////////*/
.loader {
border: 1px solid #F9F8F8;
border-radius: 50%;
border-top: 16px solid #8f0c10;
border-bottom: 16px solid #8f0c10;
width: 90px;
height: 90px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
.mini_loader {
border: 0;
border-radius: 50%;
border-top: 2px solid white;
border-left: 2px dashed #F9F8F8;
width: 25px;
height: 25px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/*///////////// loaders ////////////*/
.top_banner {
background-image:url('../img/theme/bg-opcaity-desktop.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.banner_heading {
margin-top:170px;
background:rgba(255,255,255,0.5);
padding:1%;
}
.banner_btn {
margin-top:10px;
}
.banner_img {
border:2px solid white;
}
.banner_img:hover {
border:2px solid grey;
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%);
}
/* Chat Page */
.about_img{
height:80px;
width:80px;
border-radius:100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
display:block;
background-size: cover;
object-fit: cover;
display: flex; justify-content: center;
}
.avatar_about{
width:80px;
height:80px;
position:relative;
}
.status_icon_about{
width: 12px;
height: 12px;
position: absolute;
bottom:5px;
right:5px;
display:inline-block;
border-radius: 100%;
-webkit-border-radius: 100%;
background-color: #323232;
border: #fff solid 2px;
}
.chat_img{
height:50px;
width:50px;
border-radius:100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
display:block;
background-size: cover;
object-fit: cover;
display: flex;
justify-content: center;
}
.avatar_chat{
width:40px;
height:40px;
position:relative;
}
.status_icon_chat{
width: 8px;
height: 8px;
position: absolute;
bottom:1px;
right:1px;
display:inline-block;
border-radius: 100%;
-webkit-border-radius: 100%;
background-color: #323232;
border: #fff solid 2px;
}
.status_active{
background: #00CB00;
}
.user_img{
height:50px;
width:50px;
border-radius:100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
display:block;
background-size: cover;
object-fit: cover;
display: flex;
justify-content: center;
}
.avatar_user{
width:50px;
height:50px;
position:relative;
}
.status_icon_user{
width: 10px !important;
height: 10px !important;
position: absolute !important;
bottom:1px !important;
right:1px !important;
display:inline-block !important;
border-radius: 100% !important;
-webkit-border-radius: 100% !important;
background-color: #323232 !important;
border: #fff solid 2px !important;
}
.status_active{
background: #00CB00 !important;
}
/* End Chat Page */
/* Rating Stars */
.ratings {
position: relative;
vertical-align: middle;
display: inline-block;
color: #b1b1b1;
overflow: hidden;
}
.full-stars {
position: absolute;
left: 0;
top: 0;
white-space: nowrap;
overflow: hidden;
color: #fde16d;
}
.empty-stars:before, .full-stars:before {
content:"\2605\2605\2605\2605\2605";
font-size: 14pt;
}
.empty-stars:before {
-webkit-text-stroke: 1px #848484;
}
.full-stars:before {
-webkit-text-stroke: 1px orange;
}
.gc_form {
background: white;
border-radius:7px;
border-top:15px solid #8f0c10;
padding:3% !important;
}
/*.modal {
left: 0;
right: 0;
background-color: #fafafa;
padding: 0;
max-height: 40%;
width: 35%;
will-change: top, opacity;
}*/
.test_border {border:1px solid red;}
/* Chat */
.chat_container { margin-top: 5px; }
.custom_input_container {
border-radius: 23px;
background: white;
min-height: 35px;
padding-left: 30px;
padding-right: 30px;
}
.custom_input {
width: 100%;
border: 0;
line-height: 30px;
}
.icons_container {
}
.search_container {
background: #e0e0e0;
padding: 1%;
min-height: 50px;
}
.about_header {
margin-top: 10px;
}
.about_header>div {
background: white;
padding: 2%;
}
.about_details>h5 {
line-height: 25px;
}
.input_section {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
.controls_container {
/*background: white;*/
padding: 1%;
min-height: 60px;
}
.controls_container>div.icons { padding:2%; }
.chat_input_container {
background: #e0e0e0;
padding: 1%;
min-height: 60px;
}
.chat_input_container>div.icons {
padding:2%;
}
.chat_input_container>div.input {
border-radius: 23px;
background: white;
min-height: 35px;
padding: 2%;
padding-left: 30px;
padding-right: 30px;
}
.chat_input_container>div.input[contenteditable]:focus {
outline: 0px solid transparent;
}
/* End Chat */
|
public/css/global.css
|
body { background: #f2f2f2; }
nav { background: white; }
/* Navbar Height */
/*.navbar-fixed { height:40px; }
nav { height:40px;line-height:40px; }*/
.brand_logo>img {
height:60px;
}
.nav_search_container {
background: #f9f9f9;
padding: 0 1.5em 0 1.5em;
}
.nav_search_container>input[type="text"] {
width: 300px;
}
.top_nav_item>a {
color: #8f0c10;
}
/*.top_nav_item>a>i {
color: #8f0c10 !important;
}*/
#splash {
margin-top: 150px;
}
.btn_theme {
text-transform: capitalize;
background: #8f0c10;
color: white !important;
}
.btn_theme:hover {
background: grey;
}
.btn_theme_outline {
text-transform: capitalize;
background: white;
border:2px solid #8f0c10;
color: #8f0c10 !important;
}
.btn_theme_outline:hover {
background: #8f0c10;
color: white !important;
}
.bg_theme { background: #8f0c10; }
.bg_active { background: #e0e0e0; }
.text_theme { color: #8f0c10; }
.text_light { color: white; }
.text_dark { color: black; }
.text_bold { font-weight: bold; }
.text_capitalize { text-transform: capitalize; }
.btn_x_lg {
padding:2%;
padding-left:10%;
padding-right:10%;
}
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
.p_1 { padding: 1%; }
.p_2 { padding: 2%; }
.p_3 { padding: 3%; }
.m_1 { margin: 1%; }
.m_2 { margin: 2%; }
.m_3 { margin: 3%; }
.cursor_pointer {
cursor:pointer !important;
}
.float_right {
float:right !important;
}
.float_left {
float:left !important;
}
#sub_menu {
display: flex;
justify-content: space-around;
border:1px solid grey;
padding: 0;
}
#sub_menu>a {
color: grey;
}
/*///////////// -- loaders -- ////////////*/
.loader {
border: 1px solid #F9F8F8;
border-radius: 50%;
border-top: 16px solid #8f0c10;
border-bottom: 16px solid #8f0c10;
width: 90px;
height: 90px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
.mini_loader {
border: 0;
border-radius: 50%;
border-top: 2px solid white;
border-left: 2px dashed #F9F8F8;
width: 25px;
height: 25px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/*///////////// loaders ////////////*/
.top_banner {
background-image:url('../img/theme/bg-opcaity-desktop.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.banner_heading {
margin-top:170px;
background:rgba(255,255,255,0.5);
padding:1%;
}
.banner_btn {
margin-top:10px;
}
.banner_img {
border:2px solid white;
}
.banner_img:hover {
border:2px solid grey;
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%);
}
/* Chat Page */
.about_img{
height:80px;
width:80px;
border-radius:100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
display:block;
background-size: cover;
object-fit: cover;
display: flex; justify-content: center;
}
.avatar_about{
width:80px;
height:80px;
position:relative;
}
.status_icon_about{
width: 12px;
height: 12px;
position: absolute;
bottom:5px;
right:5px;
display:inline-block;
border-radius: 100%;
-webkit-border-radius: 100%;
background-color: #323232;
border: #fff solid 2px;
}
.chat_img{
height:50px;
width:50px;
border-radius:100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
display:block;
background-size: cover;
object-fit: cover;
display: flex;
justify-content: center;
}
.avatar_chat{
width:40px;
height:40px;
position:relative;
}
.status_icon_chat{
width: 8px;
height: 8px;
position: absolute;
bottom:1px;
right:1px;
display:inline-block;
border-radius: 100%;
-webkit-border-radius: 100%;
background-color: #323232;
border: #fff solid 2px;
}
.status_active{
background: #00CB00;
}
.user_img{
height:50px;
width:50px;
border-radius:100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
display:block;
background-size: cover;
object-fit: cover;
display: flex;
justify-content: center;
}
.avatar_user{
width:50px;
height:50px;
position:relative;
}
.status_icon_user{
width: 10px !important;
height: 10px !important;
position: absolute !important;
bottom:1px !important;
right:1px !important;
display:inline-block !important;
border-radius: 100% !important;
-webkit-border-radius: 100% !important;
background-color: #323232 !important;
border: #fff solid 2px !important;
}
.status_active{
background: #00CB00 !important;
}
/* End Chat Page */
/* Rating Stars */
.ratings {
position: relative;
vertical-align: middle;
display: inline-block;
color: #b1b1b1;
overflow: hidden;
}
.full-stars {
position: absolute;
left: 0;
top: 0;
white-space: nowrap;
overflow: hidden;
color: #fde16d;
}
.empty-stars:before, .full-stars:before {
content:"\2605\2605\2605\2605\2605";
font-size: 14pt;
}
.empty-stars:before {
-webkit-text-stroke: 1px #848484;
}
.full-stars:before {
-webkit-text-stroke: 1px orange;
}
.gc_form {
background: white;
border-radius:7px;
border-top:15px solid #8f0c10;
padding:3% !important;
}
/*.modal {
left: 0;
right: 0;
background-color: #fafafa;
padding: 0;
max-height: 40%;
width: 35%;
will-change: top, opacity;
}*/
.test_border {border:1px solid red;}
/* Chat */
.chat_container { margin-top: 5px; }
.custom_input_container {
border-radius: 23px;
background: white;
min-height: 35px;
padding-left: 30px;
padding-right: 30px;
}
.custom_input {
width: 100%;
border: 0;
line-height: 30px;
}
.icons_container {
}
.search_container {
background: #e0e0e0;
padding: 1%;
min-height: 50px;
}
.about_header {
margin-top: 10px;
}
.about_header>div {
background: white;
padding: 2%;
}
.about_details>h5 {
line-height: 25px;
}
.input_section {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
.controls_container {
/*background: white;*/
padding: 1%;
min-height: 60px;
}
.controls_container>div.icons { padding:2%; }
.chat_input_container {
background: #e0e0e0;
padding: 1%;
min-height: 60px;
}
.chat_input_container>div.icons {
padding:2%;
}
.chat_input_container>div.input {
border-radius: 23px;
background: white;
min-height: 35px;
padding: 2%;
padding-left: 30px;
padding-right: 30px;
}
.chat_input_container>div.input[contenteditable]:focus {
outline: 0px solid transparent;
}
/* End Chat */
| 0.335786 | 0.087213 |
footer {
background: #1c1f21;
margin-top: 40px;
}
#course-video-container {
width: 100%;
height: 774px;
}
#my-video {
width: 100%;
height: 100%;
}
#course-learn-infos-container {
margin-top: 10px;
overflow: hidden;
width: 1152px;
margin: 0 auto;
}
#comment-qa-container {
float: left;
}
#title-nav-bar {
overflow: hidden;
padding: 20px 10px;
line-height: 18px;
font-size: 18px;
width: 824px;
border-bottom: 1px solid rgba(0,0,0,0.2);
}
#title-nav-bar ul {
height: 20px;
}
#title-nav-bar ul li {
float: left;
margin: 0px 24px;
font-size: 16px;
font-weight: 600;
}
#recommend-courses-container {
float: left;
}
#result-list-container {
margin-top: 6px;
}
#result-list-container .result-list {
width: 100%;
}
.result-list-item {
width: 100%;
overflow: hidden;
border-bottom: 1px solid rgba(0,0,0,0.2);
margin-bottom: 8px;
padding-top: 10px;
padding-bottom: 6px;
}
.result-list:last-child {
border-bottom: none;
}
.right-user-infos-container {
float: left;
margin-left: 60px;
width: 80%;
}
.user-image {
width: 40px;
height: 40px;
float: left;
border-radius: 40px;
overflow: hidden;
}
.user-name {
font-size: 14px;
color: #4d555d;
font-weight: 700;
}
.comment-content {
margin-top: 6px;
font-size: 14px;
color: #14191e;
line-height: 24px;
word-wrap: break-word;
white-space: pre-wrap;
overflow: auto;
}
.comment-time {
font-size: 14px;
float: left;
margin-top: 10px;
color: #696969eb;
}
.comment-fav-num {
float: right;
font-size: 14px;
color: #777777;
}
/*recommend-course-infos-style*/
#recommend-courses-container {
width: 250px;
margin-left: 40px;
float: left;
}
.recommend-title {
margin-top: 16px;
color: #2b333b;
}
.recommend-courses-list {
width: 100%;
overflow: hidden;
}
.recommend-courses-item {
border-top: 1px solid rgba(0,0,0,0.2);
padding-top: 8px;
margin-top: 22px;
width: 100%;
overflow: hidden;
}
.rec-course-image {
float: left;
width: 72px;
height: 60px;
border-radius: 4px;
overflow: hidden;
}
.rec-course-image img{
width: 100%;
height: 100%;
}
.rec-course-infos-container {
float: left;
margin-left: 16px;
}
.rec-course-name {
font-size: 14px;
color: #07111b;
}
.rec-course-learn-nums {
font-size: 12px;
line-height: 24px;
color: #93999f;
margin-top: 18px;
}
|
static/css/course/course-video.css
|
footer {
background: #1c1f21;
margin-top: 40px;
}
#course-video-container {
width: 100%;
height: 774px;
}
#my-video {
width: 100%;
height: 100%;
}
#course-learn-infos-container {
margin-top: 10px;
overflow: hidden;
width: 1152px;
margin: 0 auto;
}
#comment-qa-container {
float: left;
}
#title-nav-bar {
overflow: hidden;
padding: 20px 10px;
line-height: 18px;
font-size: 18px;
width: 824px;
border-bottom: 1px solid rgba(0,0,0,0.2);
}
#title-nav-bar ul {
height: 20px;
}
#title-nav-bar ul li {
float: left;
margin: 0px 24px;
font-size: 16px;
font-weight: 600;
}
#recommend-courses-container {
float: left;
}
#result-list-container {
margin-top: 6px;
}
#result-list-container .result-list {
width: 100%;
}
.result-list-item {
width: 100%;
overflow: hidden;
border-bottom: 1px solid rgba(0,0,0,0.2);
margin-bottom: 8px;
padding-top: 10px;
padding-bottom: 6px;
}
.result-list:last-child {
border-bottom: none;
}
.right-user-infos-container {
float: left;
margin-left: 60px;
width: 80%;
}
.user-image {
width: 40px;
height: 40px;
float: left;
border-radius: 40px;
overflow: hidden;
}
.user-name {
font-size: 14px;
color: #4d555d;
font-weight: 700;
}
.comment-content {
margin-top: 6px;
font-size: 14px;
color: #14191e;
line-height: 24px;
word-wrap: break-word;
white-space: pre-wrap;
overflow: auto;
}
.comment-time {
font-size: 14px;
float: left;
margin-top: 10px;
color: #696969eb;
}
.comment-fav-num {
float: right;
font-size: 14px;
color: #777777;
}
/*recommend-course-infos-style*/
#recommend-courses-container {
width: 250px;
margin-left: 40px;
float: left;
}
.recommend-title {
margin-top: 16px;
color: #2b333b;
}
.recommend-courses-list {
width: 100%;
overflow: hidden;
}
.recommend-courses-item {
border-top: 1px solid rgba(0,0,0,0.2);
padding-top: 8px;
margin-top: 22px;
width: 100%;
overflow: hidden;
}
.rec-course-image {
float: left;
width: 72px;
height: 60px;
border-radius: 4px;
overflow: hidden;
}
.rec-course-image img{
width: 100%;
height: 100%;
}
.rec-course-infos-container {
float: left;
margin-left: 16px;
}
.rec-course-name {
font-size: 14px;
color: #07111b;
}
.rec-course-learn-nums {
font-size: 12px;
line-height: 24px;
color: #93999f;
margin-top: 18px;
}
| 0.361277 | 0.09236 |
.mainWrapper {
}
.toolbar {
background: linear-gradient(var(--lightBlue), var(--mainBlue));
display: flex;
justify-content: space-between;
height: 70px;
width: 100%;
}
.logoText {
margin: 0;
padding: 10px;
font-family: 'Lobster';
color: #C1E3CD;
}
.logoWrapper {
background: rgb(63, 3, 75);
margin: 10px 0 10px 10px;
border-radius: 25px;
}
.logoWrapper:hover {
cursor: pointer;
}
.navigationItems {
display: flex;
font-family: 'Rubik';
color: var(--mainWhite);
align-items: center;
}
.navigationItem {
display: inline;
margin: 10px 20px 0 0;
}
.wrapperNavigationItem {
padding: 26px 9px 24px 20px;
}
.wrapperNavigationItem:hover {
background: rgba(0, 0, 0, 0.5);
cursor: pointer;
}
.link {
text-decoration: none;
color: var(--mainWhite);
}
.button {
font-family: 'Rubik';
border-radius: 10px;
cursor: pointer;
}
.menuButton {
font-size: 16px;
padding: 7px;
background: transparent;
color: var(--mainWhite);
border: 1px solid var(--mainWhite);
margin: 15px 25px;
}
.menuButton:hover {
background: var(--mainWhite);
color: var(--mainBlue);
}
footer {
background: linear-gradient(var(--lightBlue), var(--mainBlue));
font-family: 'Montserrat';
color: var(--mainWhite);
padding: 20px 30px 20px 0;
display: flex;
justify-content: flex-end;
}
.wrapper {
padding-top: 100px;
min-height: 430px;
}
.wrapper p {
text-align: center;
font-family: 'Montserrat';
padding-top: 10px;
}
.wrapper span {
color: var(--mainBlue);
cursor: pointer;
}
.form {
width: 25%;
margin: 0 auto;
font-family: 'Rubik';
padding-top: 20px;
}
.form label, .form input {
display: block;
}
.form label {
padding: 15px 0 5px 0;
font-weight: 600;
}
.form input {
width: 100%;
border-radius: 8px;
font-size: 1.1em;
padding-left: 10px;
box-sizing: border-box;
}
.form p {
color: var(--mainRed);
}
.input {
border: 1px solid rgb(163, 156, 156);
height: 32px;
}
.item {
display: flex;
justify-content: space-between;
}
.item p {
color: var(--mainRed);
font-size: 0.8em;
padding: 8px 0 5px 0;
}
.submit {
font-family: 'Rubik';
font-size: 16px;
border-radius: 10px;
width: 100%;
border: none;
padding: 10px 0;
background: var(--mainBlue);
color: var(--mainWhite);
margin-top: 20px;
cursor: pointer;
height: 40px;
}
|
public/css/login_page.css
|
.mainWrapper {
}
.toolbar {
background: linear-gradient(var(--lightBlue), var(--mainBlue));
display: flex;
justify-content: space-between;
height: 70px;
width: 100%;
}
.logoText {
margin: 0;
padding: 10px;
font-family: 'Lobster';
color: #C1E3CD;
}
.logoWrapper {
background: rgb(63, 3, 75);
margin: 10px 0 10px 10px;
border-radius: 25px;
}
.logoWrapper:hover {
cursor: pointer;
}
.navigationItems {
display: flex;
font-family: 'Rubik';
color: var(--mainWhite);
align-items: center;
}
.navigationItem {
display: inline;
margin: 10px 20px 0 0;
}
.wrapperNavigationItem {
padding: 26px 9px 24px 20px;
}
.wrapperNavigationItem:hover {
background: rgba(0, 0, 0, 0.5);
cursor: pointer;
}
.link {
text-decoration: none;
color: var(--mainWhite);
}
.button {
font-family: 'Rubik';
border-radius: 10px;
cursor: pointer;
}
.menuButton {
font-size: 16px;
padding: 7px;
background: transparent;
color: var(--mainWhite);
border: 1px solid var(--mainWhite);
margin: 15px 25px;
}
.menuButton:hover {
background: var(--mainWhite);
color: var(--mainBlue);
}
footer {
background: linear-gradient(var(--lightBlue), var(--mainBlue));
font-family: 'Montserrat';
color: var(--mainWhite);
padding: 20px 30px 20px 0;
display: flex;
justify-content: flex-end;
}
.wrapper {
padding-top: 100px;
min-height: 430px;
}
.wrapper p {
text-align: center;
font-family: 'Montserrat';
padding-top: 10px;
}
.wrapper span {
color: var(--mainBlue);
cursor: pointer;
}
.form {
width: 25%;
margin: 0 auto;
font-family: 'Rubik';
padding-top: 20px;
}
.form label, .form input {
display: block;
}
.form label {
padding: 15px 0 5px 0;
font-weight: 600;
}
.form input {
width: 100%;
border-radius: 8px;
font-size: 1.1em;
padding-left: 10px;
box-sizing: border-box;
}
.form p {
color: var(--mainRed);
}
.input {
border: 1px solid rgb(163, 156, 156);
height: 32px;
}
.item {
display: flex;
justify-content: space-between;
}
.item p {
color: var(--mainRed);
font-size: 0.8em;
padding: 8px 0 5px 0;
}
.submit {
font-family: 'Rubik';
font-size: 16px;
border-radius: 10px;
width: 100%;
border: none;
padding: 10px 0;
background: var(--mainBlue);
color: var(--mainWhite);
margin-top: 20px;
cursor: pointer;
height: 40px;
}
| 0.52683 | 0.132964 |
body {
background-color: #eee;
}
svg {
background-color: white;
}
rect {
stroke-width: 0px;
cursor: pointer;
}
.dropdown {
font-family: Roboto, sans-serif;
font-size: 1.9em;
font-weight: 700;
text-align: center;
padding-top: 10px;
padding-bottom: 0px;
color: #333;
padding-left: 38%;
}
.graph-title {
font-family: Roboto, sans-serif;
font-size: 1.9em;
font-weight: 700;
text-align: center;
padding-top: 10px;
padding-bottom: 0px;
color: #333;
}
.graph-subtitle {
font-family: Roboto, sans-serif;
font-size: 1.4em;
font-weight: 500;
text-align: center;
padding-top: 0px;
padding-bottom: 0px;
color: #555;
}
text.scales {
font-family: Roboto, sans-serif;
font-size: 0.75em;
font-weight: 300;
}
.axis text {
font-family: Roboto, sans-serif;
font-size: 0.75em;
font-weight: 300;
}
.axis path, .axis line {
fill: none;
stroke: #111;
shape-rendering: crispEdges;
}
.axislabel{
font-family: Roboto, sans-serif;
font-size: 1em;
font-weight: 500;
}
#chart {
background-color: white;
}
.card {
background-color: white;
margin: 10px auto;
padding: 0px;
width: 1250px;
height: 820px;
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32), 0 3px 12px 0 rgba(0, 0, 0, 0.24);
}
.tooltip {
position: absolute;
text-align: center;
width: auto;
height: auto;
padding: 3px 5px 3px 5px;
font: 1em sans-serif;
border: 0px;
border-radius: 5px;
pointer-events: none;
box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
background-color: black;
}
.year {
font-family: Roboto, sans-serif;
font-size: 1.1em;
font-weight: bold;
color: black;
white-space: nowrap;
}
.temperature {
font-family: Roboto, sans-serif;
font-size: 0.95em;
font-weight: bolder;
color: black;
white-space: nowrap;
}
.variance {
font-family: Roboto, sans-serif;
font-size: 0.8em;
font-weight: normal;
color: black;
white-space: nowrap;
}
.details {
font-family: Roboto, sans-serif;
font-size: 0.7em;
font-weight: 300;
text-align: center;
padding: 0px;
}
|
part3/style.css
|
body {
background-color: #eee;
}
svg {
background-color: white;
}
rect {
stroke-width: 0px;
cursor: pointer;
}
.dropdown {
font-family: Roboto, sans-serif;
font-size: 1.9em;
font-weight: 700;
text-align: center;
padding-top: 10px;
padding-bottom: 0px;
color: #333;
padding-left: 38%;
}
.graph-title {
font-family: Roboto, sans-serif;
font-size: 1.9em;
font-weight: 700;
text-align: center;
padding-top: 10px;
padding-bottom: 0px;
color: #333;
}
.graph-subtitle {
font-family: Roboto, sans-serif;
font-size: 1.4em;
font-weight: 500;
text-align: center;
padding-top: 0px;
padding-bottom: 0px;
color: #555;
}
text.scales {
font-family: Roboto, sans-serif;
font-size: 0.75em;
font-weight: 300;
}
.axis text {
font-family: Roboto, sans-serif;
font-size: 0.75em;
font-weight: 300;
}
.axis path, .axis line {
fill: none;
stroke: #111;
shape-rendering: crispEdges;
}
.axislabel{
font-family: Roboto, sans-serif;
font-size: 1em;
font-weight: 500;
}
#chart {
background-color: white;
}
.card {
background-color: white;
margin: 10px auto;
padding: 0px;
width: 1250px;
height: 820px;
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.32), 0 3px 12px 0 rgba(0, 0, 0, 0.24);
}
.tooltip {
position: absolute;
text-align: center;
width: auto;
height: auto;
padding: 3px 5px 3px 5px;
font: 1em sans-serif;
border: 0px;
border-radius: 5px;
pointer-events: none;
box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
background-color: black;
}
.year {
font-family: Roboto, sans-serif;
font-size: 1.1em;
font-weight: bold;
color: black;
white-space: nowrap;
}
.temperature {
font-family: Roboto, sans-serif;
font-size: 0.95em;
font-weight: bolder;
color: black;
white-space: nowrap;
}
.variance {
font-family: Roboto, sans-serif;
font-size: 0.8em;
font-weight: normal;
color: black;
white-space: nowrap;
}
.details {
font-family: Roboto, sans-serif;
font-size: 0.7em;
font-weight: 300;
text-align: center;
padding: 0px;
}
| 0.50293 | 0.117597 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
position: absolute;
height: 100%;
width: 100%;
}
.header {
display: flex;
justify-content: center;
align-items: center;
background-color: black;
color: ghostwhite;
text-align: center;
height: 125px;
width: auto;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
.blinker {
animation: blinker;
animation-duration: 0.1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-play-state: paused;
}
#appNameCustom {
font-family: 'BPneon', sans-serif;
font-size: 100px;
color: aqua;
padding-top: 25px;
padding-bottom: 10px;
font-variant: discretionary-ligatures;
text-shadow: 5px 8px 5px slateblue;
}
.main-container {
min-height: 100%;
height: auto;
width: auto;
background-image: url(./img/background\ PINK-SMOKE.png);
display: grid;
justify-content: center;
}
.search-input {
width: 100%;
padding: 3%;
margin: 5px 0;
font-size: small;
}
.search-container {
display: flex;
margin: 40px;
background-color: black;
width: max-content;
opacity: 90%;
flex-direction: column;
border-radius: 5px;
text-align: center;
}
.btn-holder {
flex-direction: row;
justify-content: center;
display: flex;
}
.search-container .btn-holder button {
padding: 7px 15px;
background-color: blueviolet;
opacity: 75%;
font-size: medium;
color: darkgrey;
}
.search-button {
display: flex;
height: 100px;
width: 200px;
}
.weather-container {
display: block;
margin: 30px;
background-color: black;
opacity: 90%;
border-radius: 5px;
max-height: 250px;
text-align: -webkit-center;
}
.weather-info {
text-align: center;
max-width: fit-content;
}
footer {
background-color: black;
color: blanchedalmond;
height: 50px;
width: auto;
display: flex;
justify-content: center;
align-items: center
}
#track-container {
background-color: black;
height: 50px;
width: 500px;
border-radius: 25px;
color: honeydew;
text-align: justify;
font-size: xx-large;
}
#track-label {
margin-left: 20px;
margin-top: 5px;
}
audio {
padding: 10px;
width:-webkit-fill-available;
}
ul {
display: inline-block;
max-width: 275px;
list-style: none;
text-align: center;
padding-left: 0;
}
.albumArt {
margin: inherit
}
.uk-card-body {
display: block;
height: fit-content;
width: auto;
}
#search-input {
height: 50px;
text-align: center;
}
#next-btn {
display: contents;
}
/* MEDIA QUERIES */
@media only screen and (max-width: 650px) {
#appNameCustom {
font-size: 60px;
}
}
@media only screen and (max-width: 425px) {
#appNameCustom {
font-size: 45px;
}
.search-container {
margin:20px;
}
[class*=uk-align] {
margin-bottom: 0px;
}
.main-container {
display: grid;
justify-content: space-evenly;
align-items: end;
}
.uk-button-default {
margin-top: 20px;
}
.btn-holder {
display: grid;
justify-content: center;
height: 175px;
}
.uk-align-right {
margin-left: 0px;
}
.weather-info {
font-size: small;
}
}
@media only screen and (max-width: 385px) {
.uk-card-body {
width: 275px;
}
.search-container .btn-holder button {
height: fit-content;
}
#search-input {
height: 50px;
text-align: center;
}
}
@media only screen and (max-width: 300px) {
ul {
font-size: small;
}
#appNameCustom {
font-size: 35px;
}
.header {
height: auto;
}
};
|
assets/style.css
|
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
position: absolute;
height: 100%;
width: 100%;
}
.header {
display: flex;
justify-content: center;
align-items: center;
background-color: black;
color: ghostwhite;
text-align: center;
height: 125px;
width: auto;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
.blinker {
animation: blinker;
animation-duration: 0.1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-play-state: paused;
}
#appNameCustom {
font-family: 'BPneon', sans-serif;
font-size: 100px;
color: aqua;
padding-top: 25px;
padding-bottom: 10px;
font-variant: discretionary-ligatures;
text-shadow: 5px 8px 5px slateblue;
}
.main-container {
min-height: 100%;
height: auto;
width: auto;
background-image: url(./img/background\ PINK-SMOKE.png);
display: grid;
justify-content: center;
}
.search-input {
width: 100%;
padding: 3%;
margin: 5px 0;
font-size: small;
}
.search-container {
display: flex;
margin: 40px;
background-color: black;
width: max-content;
opacity: 90%;
flex-direction: column;
border-radius: 5px;
text-align: center;
}
.btn-holder {
flex-direction: row;
justify-content: center;
display: flex;
}
.search-container .btn-holder button {
padding: 7px 15px;
background-color: blueviolet;
opacity: 75%;
font-size: medium;
color: darkgrey;
}
.search-button {
display: flex;
height: 100px;
width: 200px;
}
.weather-container {
display: block;
margin: 30px;
background-color: black;
opacity: 90%;
border-radius: 5px;
max-height: 250px;
text-align: -webkit-center;
}
.weather-info {
text-align: center;
max-width: fit-content;
}
footer {
background-color: black;
color: blanchedalmond;
height: 50px;
width: auto;
display: flex;
justify-content: center;
align-items: center
}
#track-container {
background-color: black;
height: 50px;
width: 500px;
border-radius: 25px;
color: honeydew;
text-align: justify;
font-size: xx-large;
}
#track-label {
margin-left: 20px;
margin-top: 5px;
}
audio {
padding: 10px;
width:-webkit-fill-available;
}
ul {
display: inline-block;
max-width: 275px;
list-style: none;
text-align: center;
padding-left: 0;
}
.albumArt {
margin: inherit
}
.uk-card-body {
display: block;
height: fit-content;
width: auto;
}
#search-input {
height: 50px;
text-align: center;
}
#next-btn {
display: contents;
}
/* MEDIA QUERIES */
@media only screen and (max-width: 650px) {
#appNameCustom {
font-size: 60px;
}
}
@media only screen and (max-width: 425px) {
#appNameCustom {
font-size: 45px;
}
.search-container {
margin:20px;
}
[class*=uk-align] {
margin-bottom: 0px;
}
.main-container {
display: grid;
justify-content: space-evenly;
align-items: end;
}
.uk-button-default {
margin-top: 20px;
}
.btn-holder {
display: grid;
justify-content: center;
height: 175px;
}
.uk-align-right {
margin-left: 0px;
}
.weather-info {
font-size: small;
}
}
@media only screen and (max-width: 385px) {
.uk-card-body {
width: 275px;
}
.search-container .btn-holder button {
height: fit-content;
}
#search-input {
height: 50px;
text-align: center;
}
}
@media only screen and (max-width: 300px) {
ul {
font-size: small;
}
#appNameCustom {
font-size: 35px;
}
.header {
height: auto;
}
};
| 0.603698 | 0.106272 |
@import url("https://fonts.googleapis.com/css?family=Roboto");
body {
font-family: Roboto;
margin: 0;
font-size: 18px;
}
.btn {
padding: 15px 40px;
cursor: pointer;
border: none;
font-size: 15px;
user-select: none;
text-decoration: none;
outline: none;
}
.btn.btn-black {
color: white;
background-color: black;
}
.btn.btn-red {
color: white;
background-color: red;
}
.btn.btn-blue {
color: white;
background-color: dodgerblue;
}
.btn.btn-green {
color: white;
background-color: #21c700;
}
.btn.btn-yellow {
color: white;
background-color: gold;
}
.btn.btn-orange {
color: white;
background-color: orange;
}
.btn.btn-purple {
color: white;
background-color: #7300ff;
}
.btn.btn-grey {
color: white;
background-color: grey;
}
.text-red {
color: red;
}
.text-blue {
color: dodgerblue;
}
.text-white {
color: white;
}
.text-green {
color: #21c700;
}
.text-yellow {
color: gold;
}
.text-orange {
color: orange;
}
.text-purple {
color: #7300ff;
}
.text-grey {
color: grey;
}
.hover-all {
display: inline-block;
}
.hover-content {
display: none;
position: absolute;
min-width: 160px;
padding-right: 50px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 50px;
background-color: #e0e0e0;
}
.hover-all:hover .hover-content {
display: block;
}
.link {
color: dodgerblue;
text-decoration: none;
}
.link:hover {
text-decoration: underline;
}
.nav-desktop {
overflow: hidden;
width: 100%;
display: block;
top: 0;
}
.nav-desktop-link {
color: red;
text-decoration: none;
display: block;
padding: 60px;
line-height: 50px;
text-align: center;
font-size: 30px;
position: relative;
}
.nav-desktop-link:hover {
color: orange;
}
.bg-light {
background-color: #e0e0e0;
}
.bg-dark {
background-color: #404040;
}
.nav-desktop-item {display: inline;}
.nav-desktop-brand {
font-size: 40px;
}
.hover-link {
display: block;
color: black;
text-decoration: none;
}
.hover-link:hover {
color: grey;
}
.text-center {
text-align: center;
}
.table-active td, .table-active th {
border: 4px solid black;
text-align: center;
user-select: none;
}
.table-active td:hover, .table-active th:hover {
border: 4px solid red;
color: red;
}
.table {
border-collapse: collapse;
}
.table td, .table th {
border: 4px solid black;
text-align: center;
padding: 10px 50px;
}
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}
.text-left {
text-align: left;
}
.btn.btn-red-outline {
color: red;
background-color: transparent;
border: 2px solid red;
}
.btn.btn-black-outline {
color: black;
background-color: transparent;
border: 2px solid black;
}
.btn.btn-blue-outline {
color: dodgerblue;
background-color: transparent;
border: 2px solid dodgerblue;
}
.btn.btn-green-outline {
color: #21c700;
background-color: transparent;
border: 2px solid #21c700;
}
.btn.btn-yellow-outline {
color: gold;
background-color: transparent;
border: 2px solid gold;
}
.btn.btn-orange-outline {
color: orange;
background-color: transparent;
border: 2px solid orange;
}
.btn.btn-purple-outline {
color: #7300ff;
background-color: transparent;
border: 2px solid #7300ff;
}
.btn.btn-grey-outline {
color: grey;
background-color: transparent;
border: 2px solid grey;
}
.btn.btn-red-outline:hover {
color: white;
background-color: red;
}
.btn.btn-black-outline:hover {
color: white;
background-color: black;
}
.btn.btn-blue-outline:hover {
color: white;
background-color: dodgerblue;
}
.btn.btn-green-outline:hover {
color: white;
background-color: #21c700;
}
.btn.btn-yellow-outline:hover {
color: white;
background-color: gold;
}
.btn.btn-orange-outline:hover {
color: white;
background-color: orange;
}
.btn.btn-purple-outline:hover {
color: white;
background-color: #7300ff;
}
.btn.btn-grey-outline:hover {
color: white;
background-color: grey;
}
.btn.btn-rounded {
border-radius: 20px;
}
.textarea-input {
border-radius: 12px;
border: 3px solid black;
width: 100%;
height: 70%;
}
.sidebar {
top: 0;
left: 0;
width: 200px;
position: fixed;
overflow-y: hidden;
padding-top: 15px;
padding-bottom: 20px;
height: 100%;
}
.col-3 {
column-count: 3;
}
.col-2 {
column-count: 2;
}
.col-4 {
column-count: 4;
}
.side-link {
color: red;
text-decoration: none;
display: block;
font-size: 30px;
}
.side-brand {
font-size: 40px;
}
.side-link:hover {
color: orange;
}
.main {
margin-left: 205px;
}
.footer {
width: 100%;
display: block;
bottom: 0;
color: white;
padding-top: 20px;
padding-bottom: 20px;
background-color: black;
}
.footer .footer-link {
color: white;
text-decoration: none;
}
.footer .footer-link:hover {
color: silver;
}
.section-light {
width: 100%;
overflow: hidden;
padding-top: 20px;
padding-bottom: 20px;
background-color: #e0e0e0;
}
.section-dark {
width: 100%;
overflow: hidden;
padding-top: 20px;
color: white;
padding-bottom: 20px;
background-color: #404040;
}
.form {outline: none;}
@media only screen and (max-width: 1024px) {
.nav-desktop {display: none;}
.nav-mobile {
display: block;
overflow: hidden;
}
input.form {width: 300px;}
select.form {width: 300px;}
textarea.form {width: 300px;}
table.table td, table.table th {padding: 10px 25px;}
table.table-active td, table.table-active th {padding: 10px 25px;}
table.table-striped td, table.table-striped th {padding: 10px 25px;}
}
@media only screen and (min-width: 1025px) {
table.table-active td, table.table-active th {padding: 10px 50px;}
table.table-striped td, table.table-striped th {padding: 10px 50px;}
table.table td, table.table th {padding: 10px 50px;}
.nav-mobile {display: none}
}
.nav-mobile-brand {float: left; font-size: 40px; color: red; text-decoration: none;}
.nav-mobile-right {float: right}
.nav-mobile-content {
display: none;
position: absolute;
min-width: 160px;
padding-right: 50px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 50px;
right: 0;
background-color: black;
color: white;
}
.nav-mobile-link {
color: white;
text-decoration: none;
display: block;
}
.nav-mobile-brand:active {
color: orange;
}
.form {background-color: transparent;}
input.form {
height: 50px;
width: 300px;
font-size: large;
border: 2px solid black;
}
.btn.btn-submit {padding: 15px 100px}
textarea.form {
width: 300px;
font-size: large;
border: 2px solid black;
height: 100px;
resize: none;
}
select.form {
height: 50px;
width: 300px;
font-size: large;
border: 2px solid black;
}
.btn.btn-red-click {
box-shadow: 0px 7px darkred;
background-color: red;
border: none;
color: white;
}
.btn.btn-red-click:active {
box-shadow: 0px 4px darkred;
transform: translateY(3px);
}
.btn.btn-blue-click {
box-shadow: 0px 7px blue;
background-color: dodgerblue;
border: none;
color: white;
}
.btn.btn-blue-click:active {
box-shadow: 0px 4px blue;
transform: translateY(3px);
}
.btn.btn-green-click {
box-shadow: 0px 7px green;
background-color: #21c700;
border: none;
color: white;
}
.btn.btn-green-click:active {
box-shadow: 0px 4px green;
transform: translateY(3px);
}
.btn.btn-yellow-click {
box-shadow: 0px 7px goldenrod;
background-color: gold;
border: none;
color: white;
}
.btn.btn-yellow-click:active {
box-shadow: 0px 4px goldenrod;
transform: translateY(3px);
}
.btn.btn-grey-click {
box-shadow: 0px 7px black;
background-color: grey;
border: none;
color: white;
}
.btn.btn-grey-click:active {
box-shadow: 0px 4px black;
transform: translateY(3px);
}
.btn.btn-purple-click {
box-shadow: 0px 7px purple;
background-color: #7300ff;
border: none;
color: white;
}
.btn.btn-purple-click:active {
box-shadow: 0px 4px purple;
transform: translateY(3px);
}
.btn.btn-orange-click {
box-shadow: 0px 7px orangered;
background-color: orange;
border: none;
color: white;
}
.btn.btn-orange-click:active {
box-shadow: 0px 4px orangered;
transform: translateY(3px);
}
.n-m-show {display: block;}
input[type=radio].form {
width: initial;
height: initial;
}
input[type=checkbox].form {
width: initial;
height: initial;
}
table.table-striped {
border-collapse: collapse;
}
table.table-striped tr:nth-child(odd) {
border: none;
background-color: lightgrey;
}
table.table-striped td {
text-align: center;
}
input.form.form-line {
border-bottom: 2px solid black;
border-top: none;
border-left: none;
border-right: none;
}
textarea.form.form-line {
border-bottom: 2px solid black;
border-top: none;
border-left: none;
border-right: none;
}
select.form.form-line {
border-bottom: 2px solid black;
border-top: none;
border-left: none;
border-right: none;
}
.card {
width: 40%;
display: inline-block;
transition: 0.2s;
box-shadow: 0 4px 10px 0 grey;
}
.btn.btn-sm {
font-size: 9px;
padding: 8px 20px;
}
|
General/Spectrum.css
|
@import url("https://fonts.googleapis.com/css?family=Roboto");
body {
font-family: Roboto;
margin: 0;
font-size: 18px;
}
.btn {
padding: 15px 40px;
cursor: pointer;
border: none;
font-size: 15px;
user-select: none;
text-decoration: none;
outline: none;
}
.btn.btn-black {
color: white;
background-color: black;
}
.btn.btn-red {
color: white;
background-color: red;
}
.btn.btn-blue {
color: white;
background-color: dodgerblue;
}
.btn.btn-green {
color: white;
background-color: #21c700;
}
.btn.btn-yellow {
color: white;
background-color: gold;
}
.btn.btn-orange {
color: white;
background-color: orange;
}
.btn.btn-purple {
color: white;
background-color: #7300ff;
}
.btn.btn-grey {
color: white;
background-color: grey;
}
.text-red {
color: red;
}
.text-blue {
color: dodgerblue;
}
.text-white {
color: white;
}
.text-green {
color: #21c700;
}
.text-yellow {
color: gold;
}
.text-orange {
color: orange;
}
.text-purple {
color: #7300ff;
}
.text-grey {
color: grey;
}
.hover-all {
display: inline-block;
}
.hover-content {
display: none;
position: absolute;
min-width: 160px;
padding-right: 50px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 50px;
background-color: #e0e0e0;
}
.hover-all:hover .hover-content {
display: block;
}
.link {
color: dodgerblue;
text-decoration: none;
}
.link:hover {
text-decoration: underline;
}
.nav-desktop {
overflow: hidden;
width: 100%;
display: block;
top: 0;
}
.nav-desktop-link {
color: red;
text-decoration: none;
display: block;
padding: 60px;
line-height: 50px;
text-align: center;
font-size: 30px;
position: relative;
}
.nav-desktop-link:hover {
color: orange;
}
.bg-light {
background-color: #e0e0e0;
}
.bg-dark {
background-color: #404040;
}
.nav-desktop-item {display: inline;}
.nav-desktop-brand {
font-size: 40px;
}
.hover-link {
display: block;
color: black;
text-decoration: none;
}
.hover-link:hover {
color: grey;
}
.text-center {
text-align: center;
}
.table-active td, .table-active th {
border: 4px solid black;
text-align: center;
user-select: none;
}
.table-active td:hover, .table-active th:hover {
border: 4px solid red;
color: red;
}
.table {
border-collapse: collapse;
}
.table td, .table th {
border: 4px solid black;
text-align: center;
padding: 10px 50px;
}
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}
.text-left {
text-align: left;
}
.btn.btn-red-outline {
color: red;
background-color: transparent;
border: 2px solid red;
}
.btn.btn-black-outline {
color: black;
background-color: transparent;
border: 2px solid black;
}
.btn.btn-blue-outline {
color: dodgerblue;
background-color: transparent;
border: 2px solid dodgerblue;
}
.btn.btn-green-outline {
color: #21c700;
background-color: transparent;
border: 2px solid #21c700;
}
.btn.btn-yellow-outline {
color: gold;
background-color: transparent;
border: 2px solid gold;
}
.btn.btn-orange-outline {
color: orange;
background-color: transparent;
border: 2px solid orange;
}
.btn.btn-purple-outline {
color: #7300ff;
background-color: transparent;
border: 2px solid #7300ff;
}
.btn.btn-grey-outline {
color: grey;
background-color: transparent;
border: 2px solid grey;
}
.btn.btn-red-outline:hover {
color: white;
background-color: red;
}
.btn.btn-black-outline:hover {
color: white;
background-color: black;
}
.btn.btn-blue-outline:hover {
color: white;
background-color: dodgerblue;
}
.btn.btn-green-outline:hover {
color: white;
background-color: #21c700;
}
.btn.btn-yellow-outline:hover {
color: white;
background-color: gold;
}
.btn.btn-orange-outline:hover {
color: white;
background-color: orange;
}
.btn.btn-purple-outline:hover {
color: white;
background-color: #7300ff;
}
.btn.btn-grey-outline:hover {
color: white;
background-color: grey;
}
.btn.btn-rounded {
border-radius: 20px;
}
.textarea-input {
border-radius: 12px;
border: 3px solid black;
width: 100%;
height: 70%;
}
.sidebar {
top: 0;
left: 0;
width: 200px;
position: fixed;
overflow-y: hidden;
padding-top: 15px;
padding-bottom: 20px;
height: 100%;
}
.col-3 {
column-count: 3;
}
.col-2 {
column-count: 2;
}
.col-4 {
column-count: 4;
}
.side-link {
color: red;
text-decoration: none;
display: block;
font-size: 30px;
}
.side-brand {
font-size: 40px;
}
.side-link:hover {
color: orange;
}
.main {
margin-left: 205px;
}
.footer {
width: 100%;
display: block;
bottom: 0;
color: white;
padding-top: 20px;
padding-bottom: 20px;
background-color: black;
}
.footer .footer-link {
color: white;
text-decoration: none;
}
.footer .footer-link:hover {
color: silver;
}
.section-light {
width: 100%;
overflow: hidden;
padding-top: 20px;
padding-bottom: 20px;
background-color: #e0e0e0;
}
.section-dark {
width: 100%;
overflow: hidden;
padding-top: 20px;
color: white;
padding-bottom: 20px;
background-color: #404040;
}
.form {outline: none;}
@media only screen and (max-width: 1024px) {
.nav-desktop {display: none;}
.nav-mobile {
display: block;
overflow: hidden;
}
input.form {width: 300px;}
select.form {width: 300px;}
textarea.form {width: 300px;}
table.table td, table.table th {padding: 10px 25px;}
table.table-active td, table.table-active th {padding: 10px 25px;}
table.table-striped td, table.table-striped th {padding: 10px 25px;}
}
@media only screen and (min-width: 1025px) {
table.table-active td, table.table-active th {padding: 10px 50px;}
table.table-striped td, table.table-striped th {padding: 10px 50px;}
table.table td, table.table th {padding: 10px 50px;}
.nav-mobile {display: none}
}
.nav-mobile-brand {float: left; font-size: 40px; color: red; text-decoration: none;}
.nav-mobile-right {float: right}
.nav-mobile-content {
display: none;
position: absolute;
min-width: 160px;
padding-right: 50px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 50px;
right: 0;
background-color: black;
color: white;
}
.nav-mobile-link {
color: white;
text-decoration: none;
display: block;
}
.nav-mobile-brand:active {
color: orange;
}
.form {background-color: transparent;}
input.form {
height: 50px;
width: 300px;
font-size: large;
border: 2px solid black;
}
.btn.btn-submit {padding: 15px 100px}
textarea.form {
width: 300px;
font-size: large;
border: 2px solid black;
height: 100px;
resize: none;
}
select.form {
height: 50px;
width: 300px;
font-size: large;
border: 2px solid black;
}
.btn.btn-red-click {
box-shadow: 0px 7px darkred;
background-color: red;
border: none;
color: white;
}
.btn.btn-red-click:active {
box-shadow: 0px 4px darkred;
transform: translateY(3px);
}
.btn.btn-blue-click {
box-shadow: 0px 7px blue;
background-color: dodgerblue;
border: none;
color: white;
}
.btn.btn-blue-click:active {
box-shadow: 0px 4px blue;
transform: translateY(3px);
}
.btn.btn-green-click {
box-shadow: 0px 7px green;
background-color: #21c700;
border: none;
color: white;
}
.btn.btn-green-click:active {
box-shadow: 0px 4px green;
transform: translateY(3px);
}
.btn.btn-yellow-click {
box-shadow: 0px 7px goldenrod;
background-color: gold;
border: none;
color: white;
}
.btn.btn-yellow-click:active {
box-shadow: 0px 4px goldenrod;
transform: translateY(3px);
}
.btn.btn-grey-click {
box-shadow: 0px 7px black;
background-color: grey;
border: none;
color: white;
}
.btn.btn-grey-click:active {
box-shadow: 0px 4px black;
transform: translateY(3px);
}
.btn.btn-purple-click {
box-shadow: 0px 7px purple;
background-color: #7300ff;
border: none;
color: white;
}
.btn.btn-purple-click:active {
box-shadow: 0px 4px purple;
transform: translateY(3px);
}
.btn.btn-orange-click {
box-shadow: 0px 7px orangered;
background-color: orange;
border: none;
color: white;
}
.btn.btn-orange-click:active {
box-shadow: 0px 4px orangered;
transform: translateY(3px);
}
.n-m-show {display: block;}
input[type=radio].form {
width: initial;
height: initial;
}
input[type=checkbox].form {
width: initial;
height: initial;
}
table.table-striped {
border-collapse: collapse;
}
table.table-striped tr:nth-child(odd) {
border: none;
background-color: lightgrey;
}
table.table-striped td {
text-align: center;
}
input.form.form-line {
border-bottom: 2px solid black;
border-top: none;
border-left: none;
border-right: none;
}
textarea.form.form-line {
border-bottom: 2px solid black;
border-top: none;
border-left: none;
border-right: none;
}
select.form.form-line {
border-bottom: 2px solid black;
border-top: none;
border-left: none;
border-right: none;
}
.card {
width: 40%;
display: inline-block;
transition: 0.2s;
box-shadow: 0 4px 10px 0 grey;
}
.btn.btn-sm {
font-size: 9px;
padding: 8px 20px;
}
| 0.486332 | 0.0771 |
height: 200px;
width: 200px;
margin-top: 50px;
border:10px solid #05386B;
}
body::-webkit-scrollbar {
display: none;
}
.page {
position: relative;
color: #05386B;
}
.top {
position: absolute;
left: 25%;
justify-content: center;
top: 10px;
font-size: 36px;
}
.bottom {
position: absolute;
left: 20%;
bottom: 40px;
justify-content: center;
}
#homepage a {
color: #05386B;
}
ul {
list-style-type: none;
}
.fa {
margin:15px;
}
li a {
color:#05386B;
font-weight: bolder;
}
.sidebar {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidebar a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidebar a:hover {
color: #f1f1f1;
}
.sidebar .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
.openbtn {
top: 10px;
left: 10px;
position: fixed;
font-size: 20px;
background-color: grey;
color: white;
padding: 10px 15px;
border: none;
}
.openbtn:hover {
background-color: #444;
}
#main {
transition: margin-left .5s;
padding: 16px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidebar {padding-top: 15px;}
.sidebar a {font-size: 18px;}
}
#workheader {
font-size: 24px;
font-weight: bold;
margin-left: 65px;
}
.imgcontainer {
position: relative;
font-family: Courier New;
color: white;
}
.centertext {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50px;
font-weight: bolder;
}
#quote {
border: 5px dashed #5CDB95;
}
@media only screen and (max-width: 768px) {
#hideonSmall {
display: none;
}
}
.setting {
display: inline;
float: right;
margin-right: 10px;
margin-top: 15px;
color: #05386B;
}
.change {
display: inline;
}
|
assets/css/stylepage.css
|
height: 200px;
width: 200px;
margin-top: 50px;
border:10px solid #05386B;
}
body::-webkit-scrollbar {
display: none;
}
.page {
position: relative;
color: #05386B;
}
.top {
position: absolute;
left: 25%;
justify-content: center;
top: 10px;
font-size: 36px;
}
.bottom {
position: absolute;
left: 20%;
bottom: 40px;
justify-content: center;
}
#homepage a {
color: #05386B;
}
ul {
list-style-type: none;
}
.fa {
margin:15px;
}
li a {
color:#05386B;
font-weight: bolder;
}
.sidebar {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidebar a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidebar a:hover {
color: #f1f1f1;
}
.sidebar .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
.openbtn {
top: 10px;
left: 10px;
position: fixed;
font-size: 20px;
background-color: grey;
color: white;
padding: 10px 15px;
border: none;
}
.openbtn:hover {
background-color: #444;
}
#main {
transition: margin-left .5s;
padding: 16px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidebar {padding-top: 15px;}
.sidebar a {font-size: 18px;}
}
#workheader {
font-size: 24px;
font-weight: bold;
margin-left: 65px;
}
.imgcontainer {
position: relative;
font-family: Courier New;
color: white;
}
.centertext {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50px;
font-weight: bolder;
}
#quote {
border: 5px dashed #5CDB95;
}
@media only screen and (max-width: 768px) {
#hideonSmall {
display: none;
}
}
.setting {
display: inline;
float: right;
margin-right: 10px;
margin-top: 15px;
color: #05386B;
}
.change {
display: inline;
}
| 0.251832 | 0.074973 |
.parent {
-fx-background-color: gray;
}
.main-pane {
-fx-background-color: #222534;
}
.cards {
-fx-background-color: #282b3c;
-fx-background-radius: 10 10 10 10;
-fx-border-radius: 10 10 10 10;
}
.cards:hover {
-fx-background-color: #353652;
}
.side-bar {
-fx-background-color: #282b3c;
}
.sidebar-option {
-fx-background-color: #282b3c;
}
.sidebar-option:hover {
-fx-background-color: #353652;
-fx-border-color: #464a8c;
-fx-border-width: 0 0 0 3;
-fx-border-style: solid;
}
.menu-bar {
-fx-background-color: #282b3c;
}
.menu-bar .menu-button {
-fx-effect: null;
}
.menu-bar .label {
-fx-font-size: 15.0 pt;
-fx-font-family: "Lato";
-fx-text-fill: white;
-fx-padding: 11;
}
.menu-bar .label:hover {
-fx-background-color: #353652;
}
.menu-item .label{
-fx-font-size: 15.0 pt;
-fx-text-fill: white;
-fx-effect: null;
}
.menu-item .label:hover {
-fx-background-color: #353652;
}
.pane {
-fx-pannable: true;
}
.toggle-button {
-fx-background-color: #282b3c;
-fx-pref-width: 50;
-fx-background-radius: 10 10 10 10;
-fx-effect: null;
}
.toggle-button:hover {
-fx-background-color: #353652;
}
.toggle-button:selected {
-fx-background-color: #353652;
}
.context-menu {
-fx-background-color: #282b3c;
-fx-background-radius: 6.0 6.0 6.0 6.0;
-fx-opacity: 1;
}
.popup-bar {
-fx-background-color: #282b3c;
-fx-background-radius: 10 10 10 10;
-fx-border-radius: 10 10 10 10;
}
.vertex {
-fx-font-size: 15;
-fx-background-color: white;
-fx-background-radius: 25;
-fx-effect: dropshadow(three-pass-box, #000000, 6, 0.2, 0, 1);
-fx-opacity: 1;
}
.vertex:hover {
-fx-background-color: #d2d2d2;
}
.edge {
-fx-stroke: yellow;
-fx-stroke-width: 3;
-fx-opacity: 1;
}
.text-area {
-fx-background-color: #282b3c;
-fx-border-color: white;
-fx-border-style: solid;
-fx-border-width: 0.5;
-fx-border-radius: 7 7 7 7;
-fx-background-radius: 7 7 7 7;
-fx-text-fill: white;
-fx-text-alignment: 10px 10px 10px 10px;
}
.text-area .scroll-pane {
-fx-background-color: transparent;
}
.text-area .scroll-pane .viewport{
-fx-background-color: transparent;
}
.text-area .scroll-pane .scroll-bar {
-fx-background-color: transparent;
}
.text-area .scroll-pane .scroll-bar .increment-button {
-fx-opacity: 0;
}
.text-area .scroll-pane .scroll-bar .decrement-button {
-fx-opacity: 0;
}
.text-area .scroll-pane .scroll-bar .thumb {
-fx-background-color: #444561;
-fx-background-radius: 10 10 10 10;
}
.text-area .scroll-pane .content{
-fx-background-color: transparent;
}
.text-area:focused {
-fx-background-color: #282b3c;
-fx-border-color: white;
-fx-border-style: solid;
-fx-border-width: 0.5;
-fx-border-radius: 7 7 7 7;
-fx-background-radius: 7 7 7 7;
-fx-text-fill: white;
-fx-text-alignment: 10px 10px 10px 10px;
}
.choice-box {
-fx-border-width: 0;
-fx-pref-height: 49;
-fx-background-color: #282b3c;
-fx-background-radius: 10;
-fx-mark-color: #282b3c;
}
.choice-box:hover {
-fx-background-color: #353652;
}
.choice-box .label {
-fx-text-fill: white;
}
.arrow {
-fx-background-color: #4c4d70;
}
.tab-pane:top .tab-header-area .control-buttons-tab {
visibility: false;
-fx-opacity: 0;
}
.tab-pane:top .tab-header-area .tab-header-background {
-fx-background-color: #282b3c;
}
.tab-pane:top .tab-header-area .headers-region .tab:top {
-fx-background-color: transparent;
-fx-pref-width: 500;
-fx-pref-height: 50;
}
.tab-pane:top .tab-header-area .headers-region .tab:top:hover {
-fx-background-color: #353652;
}
.tab-pane:top .tab-header-area .headers-region .tab:top .tab-container .tab-label {
-fx-text-fill: white;
-fx-font-size: 20;
-fx-font-family: Lato;
}
.tab-pane:top .tab-header-area .headers-region .tab:top .tab-container .focus-indicator {
-fx-background-color: transparent;
}
.tab-pane:top .tab-header-area .headers-region .tab:selected:top {
-fx-background-color: #353652;
-fx-region-border: none;
}
.tab-content-area {
-fx-background-color: #222534;
}
.list-view {
-fx-background-color: #282b3c;
-fx-background-radius: 7 7 7 7;
-fx-border-width: 0.5;
-fx-border-color: white;
-fx-border-radius: 7 7 7 7;
-fx-text-alignment: 10px 10px 10px 10px;
-fx-text-fill: white;
}
.list-view .virtual-flow .scroll-bar {
-fx-background-color: transparent;
}
.list-view .virtual-flow .scroll-bar .increment-button {
-fx-opacity: 0;
}
.list-view .virtual-flow .scroll-bar .decrement-button {
-fx-opacity: 0;
}
.list-view .virtual-flow .scroll-bar .thumb {
-fx-background-color: #444561;
-fx-background-radius: 10 10 10 10;
}
.list-cell:even {
-fx-background-color: #353652;
-fx-text-fill: white;
}
.list-cell:odd {
-fx-background-color: #282b3c;
-fx-text-fill: white;
}
.list-cell:filled:selected:focused .list-cell:filled:selected {
-fx-background-color: linear-gradient(#328BDB 0%, #207BCF 25%, #1973C9 75%, #0A65BF 100%);
-fx-text-fill: white;
}
.list-cell:filled:hover {
-fx-background-color: #0093ff;
-fx-text-fill: white;
}
.scroll-pane:pannable {
-fx-background-color: #282b3c;
-fx-border-radius: 10 10 10 10;
-fx-border-width: 0.5;
-fx-border-color: white;
}
.scroll-pane:pannable .viewport {
-fx-background-radius: 10 10 10 10;
-fx-background-color: #282b3c;
}
.scroll-pane:pannable .scroll-bar {
-fx-background-color: transparent;
}
.scroll-pane:pannable .scroll-bar .increment-button {
-fx-opacity: 0;
}
.scroll-pane:pannable .scroll-bar .decrement-button {
-fx-opacity: 0;
}
.scroll-pane:pannable .scroll-bar .thumb {
-fx-background-color: #444561;
-fx-cursor: hand;
-fx-background-radius: 10 10 10 10;
}
.scroll-pane:pannable .corner {
-fx-background-color: #282b3c;
}
.cell-even {
-fx-border-width: 0 ;
-fx-background-color: #282b3c;
-fx-text-fill: white;
-fx-pref-width: 60;
-fx-pref-height: 40;
-fx-alignment: center;
}
.cell-odd {
-fx-border-width: 0 ;
-fx-background-color: #57588a;
-fx-text-fill: white;
-fx-pref-width: 60;
-fx-pref-height: 40;
-fx-alignment: center;
}
.cell {
-fx-border-width: 0 ;
-fx-background-color: #3d4075;
-fx-text-fill: white;
-fx-pref-width: 60;
-fx-pref-height: 40;
-fx-alignment: center;
}
.web-view {
-fx-background-color: #282b3c;
-fx-border-width: 0.5;
-fx-border-color: white;
-fx-text-fill: white;
}
.web-view .scroll-bar {
-fx-background-color: transparent;
}
.web-view .scroll-bar .increment-button {
-fx-opacity: 0;
}
.web-view .scroll-bar .decrement-button {
-fx-opacity: 0;
}
.web-view .scroll-bar .thumb {
-fx-background-color: #444561;
-fx-cursor: hand;
-fx-background-radius: 10 10 10 10;
}
|
src/GDF/views/design.css
|
.parent {
-fx-background-color: gray;
}
.main-pane {
-fx-background-color: #222534;
}
.cards {
-fx-background-color: #282b3c;
-fx-background-radius: 10 10 10 10;
-fx-border-radius: 10 10 10 10;
}
.cards:hover {
-fx-background-color: #353652;
}
.side-bar {
-fx-background-color: #282b3c;
}
.sidebar-option {
-fx-background-color: #282b3c;
}
.sidebar-option:hover {
-fx-background-color: #353652;
-fx-border-color: #464a8c;
-fx-border-width: 0 0 0 3;
-fx-border-style: solid;
}
.menu-bar {
-fx-background-color: #282b3c;
}
.menu-bar .menu-button {
-fx-effect: null;
}
.menu-bar .label {
-fx-font-size: 15.0 pt;
-fx-font-family: "Lato";
-fx-text-fill: white;
-fx-padding: 11;
}
.menu-bar .label:hover {
-fx-background-color: #353652;
}
.menu-item .label{
-fx-font-size: 15.0 pt;
-fx-text-fill: white;
-fx-effect: null;
}
.menu-item .label:hover {
-fx-background-color: #353652;
}
.pane {
-fx-pannable: true;
}
.toggle-button {
-fx-background-color: #282b3c;
-fx-pref-width: 50;
-fx-background-radius: 10 10 10 10;
-fx-effect: null;
}
.toggle-button:hover {
-fx-background-color: #353652;
}
.toggle-button:selected {
-fx-background-color: #353652;
}
.context-menu {
-fx-background-color: #282b3c;
-fx-background-radius: 6.0 6.0 6.0 6.0;
-fx-opacity: 1;
}
.popup-bar {
-fx-background-color: #282b3c;
-fx-background-radius: 10 10 10 10;
-fx-border-radius: 10 10 10 10;
}
.vertex {
-fx-font-size: 15;
-fx-background-color: white;
-fx-background-radius: 25;
-fx-effect: dropshadow(three-pass-box, #000000, 6, 0.2, 0, 1);
-fx-opacity: 1;
}
.vertex:hover {
-fx-background-color: #d2d2d2;
}
.edge {
-fx-stroke: yellow;
-fx-stroke-width: 3;
-fx-opacity: 1;
}
.text-area {
-fx-background-color: #282b3c;
-fx-border-color: white;
-fx-border-style: solid;
-fx-border-width: 0.5;
-fx-border-radius: 7 7 7 7;
-fx-background-radius: 7 7 7 7;
-fx-text-fill: white;
-fx-text-alignment: 10px 10px 10px 10px;
}
.text-area .scroll-pane {
-fx-background-color: transparent;
}
.text-area .scroll-pane .viewport{
-fx-background-color: transparent;
}
.text-area .scroll-pane .scroll-bar {
-fx-background-color: transparent;
}
.text-area .scroll-pane .scroll-bar .increment-button {
-fx-opacity: 0;
}
.text-area .scroll-pane .scroll-bar .decrement-button {
-fx-opacity: 0;
}
.text-area .scroll-pane .scroll-bar .thumb {
-fx-background-color: #444561;
-fx-background-radius: 10 10 10 10;
}
.text-area .scroll-pane .content{
-fx-background-color: transparent;
}
.text-area:focused {
-fx-background-color: #282b3c;
-fx-border-color: white;
-fx-border-style: solid;
-fx-border-width: 0.5;
-fx-border-radius: 7 7 7 7;
-fx-background-radius: 7 7 7 7;
-fx-text-fill: white;
-fx-text-alignment: 10px 10px 10px 10px;
}
.choice-box {
-fx-border-width: 0;
-fx-pref-height: 49;
-fx-background-color: #282b3c;
-fx-background-radius: 10;
-fx-mark-color: #282b3c;
}
.choice-box:hover {
-fx-background-color: #353652;
}
.choice-box .label {
-fx-text-fill: white;
}
.arrow {
-fx-background-color: #4c4d70;
}
.tab-pane:top .tab-header-area .control-buttons-tab {
visibility: false;
-fx-opacity: 0;
}
.tab-pane:top .tab-header-area .tab-header-background {
-fx-background-color: #282b3c;
}
.tab-pane:top .tab-header-area .headers-region .tab:top {
-fx-background-color: transparent;
-fx-pref-width: 500;
-fx-pref-height: 50;
}
.tab-pane:top .tab-header-area .headers-region .tab:top:hover {
-fx-background-color: #353652;
}
.tab-pane:top .tab-header-area .headers-region .tab:top .tab-container .tab-label {
-fx-text-fill: white;
-fx-font-size: 20;
-fx-font-family: Lato;
}
.tab-pane:top .tab-header-area .headers-region .tab:top .tab-container .focus-indicator {
-fx-background-color: transparent;
}
.tab-pane:top .tab-header-area .headers-region .tab:selected:top {
-fx-background-color: #353652;
-fx-region-border: none;
}
.tab-content-area {
-fx-background-color: #222534;
}
.list-view {
-fx-background-color: #282b3c;
-fx-background-radius: 7 7 7 7;
-fx-border-width: 0.5;
-fx-border-color: white;
-fx-border-radius: 7 7 7 7;
-fx-text-alignment: 10px 10px 10px 10px;
-fx-text-fill: white;
}
.list-view .virtual-flow .scroll-bar {
-fx-background-color: transparent;
}
.list-view .virtual-flow .scroll-bar .increment-button {
-fx-opacity: 0;
}
.list-view .virtual-flow .scroll-bar .decrement-button {
-fx-opacity: 0;
}
.list-view .virtual-flow .scroll-bar .thumb {
-fx-background-color: #444561;
-fx-background-radius: 10 10 10 10;
}
.list-cell:even {
-fx-background-color: #353652;
-fx-text-fill: white;
}
.list-cell:odd {
-fx-background-color: #282b3c;
-fx-text-fill: white;
}
.list-cell:filled:selected:focused .list-cell:filled:selected {
-fx-background-color: linear-gradient(#328BDB 0%, #207BCF 25%, #1973C9 75%, #0A65BF 100%);
-fx-text-fill: white;
}
.list-cell:filled:hover {
-fx-background-color: #0093ff;
-fx-text-fill: white;
}
.scroll-pane:pannable {
-fx-background-color: #282b3c;
-fx-border-radius: 10 10 10 10;
-fx-border-width: 0.5;
-fx-border-color: white;
}
.scroll-pane:pannable .viewport {
-fx-background-radius: 10 10 10 10;
-fx-background-color: #282b3c;
}
.scroll-pane:pannable .scroll-bar {
-fx-background-color: transparent;
}
.scroll-pane:pannable .scroll-bar .increment-button {
-fx-opacity: 0;
}
.scroll-pane:pannable .scroll-bar .decrement-button {
-fx-opacity: 0;
}
.scroll-pane:pannable .scroll-bar .thumb {
-fx-background-color: #444561;
-fx-cursor: hand;
-fx-background-radius: 10 10 10 10;
}
.scroll-pane:pannable .corner {
-fx-background-color: #282b3c;
}
.cell-even {
-fx-border-width: 0 ;
-fx-background-color: #282b3c;
-fx-text-fill: white;
-fx-pref-width: 60;
-fx-pref-height: 40;
-fx-alignment: center;
}
.cell-odd {
-fx-border-width: 0 ;
-fx-background-color: #57588a;
-fx-text-fill: white;
-fx-pref-width: 60;
-fx-pref-height: 40;
-fx-alignment: center;
}
.cell {
-fx-border-width: 0 ;
-fx-background-color: #3d4075;
-fx-text-fill: white;
-fx-pref-width: 60;
-fx-pref-height: 40;
-fx-alignment: center;
}
.web-view {
-fx-background-color: #282b3c;
-fx-border-width: 0.5;
-fx-border-color: white;
-fx-text-fill: white;
}
.web-view .scroll-bar {
-fx-background-color: transparent;
}
.web-view .scroll-bar .increment-button {
-fx-opacity: 0;
}
.web-view .scroll-bar .decrement-button {
-fx-opacity: 0;
}
.web-view .scroll-bar .thumb {
-fx-background-color: #444561;
-fx-cursor: hand;
-fx-background-radius: 10 10 10 10;
}
| 0.572962 | 0.147709 |
@import '~antd/dist/antd.css';
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #f1f2f7;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
/* split pane */
.Resizer {
/* background: #000; */
opacity: .2;
z-index: 1;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
}
.Resizer:hover {
-webkit-transition: all 2s ease;
transition: all 2s ease;
}
.Resizer.horizontal {
height: 11px;
margin: -5px 0;
border-top: 5px solid rgba(255, 255, 255, 0);
border-bottom: 5px solid rgba(255, 255, 255, 0);
cursor: row-resize;
width: 100%;
}
.Resizer.horizontal:hover {
border-top: 5px solid rgba(0, 0, 0, 0.5);
border-bottom: 5px solid rgba(0, 0, 0, 0.5);
}
.Resizer.vertical {
width: 11px;
margin: 0 -15px;
border-left: 5px solid rgba(255, 255, 255, 0);
border-right: 5px solid rgba(255, 255, 255, 0);
cursor: col-resize;
}
.Resizer.vertical:hover {
border-left: 5px solid rgba(0, 0, 0, 0.5);
border-right: 5px solid rgba(0, 0, 0, 0.5);
}
.Resizer.disabled {
cursor: not-allowed;
}
.Resizer.disabled:hover {
border-color: transparent;
}
.Pane.vertical.Pane1{
overflow: auto;
}
.filter-node {
color: #f50 !important
}
/* .phylo-tree .ant-tree-checkbox-inner {
position: relative;
top: 5px;
left: 0;
display: block;
width: 10px;
height: 10px;
direction: ltr;
background-color: #fff;
border: 1px solid #d9d9d9;
border-radius: 2px;
border-collapse: initial;
-webkit-transition: all .3s;
transition: all .3s;
}
.phylo-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
background-color: #1890ff;
border-color: #1890ff;
}
.phylo-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner:after {
position: absolute;
display: table;
border: 2px solid #fff;
border-top: 0;
border-left: 0;
-webkit-transform: rotate(45deg) scale(1) translate(-50%,-50%);
transform: rotate(45deg) scale(1) translate(-50%,-50%);
opacity: 1;
-webkit-transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s;
transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s;
content: " ";
}
.phylo-tree .ant-tree-checkbox-inner:after {
position: absolute;
top: 50%;
left: 22%;
display: table;
width: 5.71428571px;
height: 9.14285714px;
border: 2px solid #fff;
border-top: 0;
border-left: 0;
-webkit-transform: rotate(45deg) scale(0) translate(-50%,-50%);
transform: rotate(45deg) scale(0) translate(-50%,-50%);
opacity: 0;
-webkit-transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
content: " ";
}
.phylo-tree .ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner:after {
top: 50%;
left: 50%;
width: 5px;
height: 5px;
background-color: #1890ff;
border: 0;
-webkit-transform: translate(-50%,-50%) scale(1);
transform: translate(-50%,-50%) scale(1);
opacity: 1;
content: " ";
} */
|
src/index.css
|
@import '~antd/dist/antd.css';
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #f1f2f7;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
/* split pane */
.Resizer {
/* background: #000; */
opacity: .2;
z-index: 1;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
}
.Resizer:hover {
-webkit-transition: all 2s ease;
transition: all 2s ease;
}
.Resizer.horizontal {
height: 11px;
margin: -5px 0;
border-top: 5px solid rgba(255, 255, 255, 0);
border-bottom: 5px solid rgba(255, 255, 255, 0);
cursor: row-resize;
width: 100%;
}
.Resizer.horizontal:hover {
border-top: 5px solid rgba(0, 0, 0, 0.5);
border-bottom: 5px solid rgba(0, 0, 0, 0.5);
}
.Resizer.vertical {
width: 11px;
margin: 0 -15px;
border-left: 5px solid rgba(255, 255, 255, 0);
border-right: 5px solid rgba(255, 255, 255, 0);
cursor: col-resize;
}
.Resizer.vertical:hover {
border-left: 5px solid rgba(0, 0, 0, 0.5);
border-right: 5px solid rgba(0, 0, 0, 0.5);
}
.Resizer.disabled {
cursor: not-allowed;
}
.Resizer.disabled:hover {
border-color: transparent;
}
.Pane.vertical.Pane1{
overflow: auto;
}
.filter-node {
color: #f50 !important
}
/* .phylo-tree .ant-tree-checkbox-inner {
position: relative;
top: 5px;
left: 0;
display: block;
width: 10px;
height: 10px;
direction: ltr;
background-color: #fff;
border: 1px solid #d9d9d9;
border-radius: 2px;
border-collapse: initial;
-webkit-transition: all .3s;
transition: all .3s;
}
.phylo-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
background-color: #1890ff;
border-color: #1890ff;
}
.phylo-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner:after {
position: absolute;
display: table;
border: 2px solid #fff;
border-top: 0;
border-left: 0;
-webkit-transform: rotate(45deg) scale(1) translate(-50%,-50%);
transform: rotate(45deg) scale(1) translate(-50%,-50%);
opacity: 1;
-webkit-transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s;
transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s;
content: " ";
}
.phylo-tree .ant-tree-checkbox-inner:after {
position: absolute;
top: 50%;
left: 22%;
display: table;
width: 5.71428571px;
height: 9.14285714px;
border: 2px solid #fff;
border-top: 0;
border-left: 0;
-webkit-transform: rotate(45deg) scale(0) translate(-50%,-50%);
transform: rotate(45deg) scale(0) translate(-50%,-50%);
opacity: 0;
-webkit-transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
content: " ";
}
.phylo-tree .ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner:after {
top: 50%;
left: 50%;
width: 5px;
height: 5px;
background-color: #1890ff;
border: 0;
-webkit-transform: translate(-50%,-50%) scale(1);
transform: translate(-50%,-50%) scale(1);
opacity: 1;
content: " ";
} */
| 0.311427 | 0.066904 |
@import url("https://fonts.googleapis.com/css?family=Raleway|Roboto+Condensed&display=swap");
/*===========================================
global
=======================================*/
html,
body {
margin: 0;
padding: 0;
font-family: "Raleway", sans-serif;
font-weight: normal;
font-size: 14px;
color: #111; }
section {
padding: 40px 0; }
ul li {
list-style-type: none; }
a {
text-decoration: none;
color: black; }
h1,
h2,
h3,
h4.h5,
h6 {
font-family: "Roboto Condensed", sans-serif; }
h2 {
margin-bottom: 30px;
position: relative; }
/*===================================
heading start
=====================================*/
.heading {
padding: 5px 10px;
background: #cddc39; }
.heading ul {
margin: 0px;
padding: 0; }
.heading ul li {
list-style: none;
display: inline-block !important;
padding-right: 20px;
color: #111; }
.heading ul li a {
color: #111; }
/*==================================
menu start
====================================*/
#mainNav {
background-color: rgba(250, 255, 255, 0.9); }
.navbar-brand {
font-size: 2rem;
font-family: 'Khand', sans-serif;
color: #fff !important; }
.navbar-brand p {
font-size: 0.84rem;
margin-top: -5px;
font-family: 'Raleway', sans-serif; }
.navbar-brand img {
width: 60px; }
.navbar {
-webkit-transition: width 2s;
/* Safari */
transition: width 2s; }
.navbar button {
background-color: #cddc39;
color: #111;
padding: 0 20px;
font-size: 15px; }
.navbar button:hover {
background-color: #E8EFBA;
color: #111; }
.nav-item a {
color: #111 !important;
text-shadow: 0 0 2px #F2F4EC; }
.navbar-nav .nav-link.active {
background: #d8e464 !important; }
.nav-item:hover {
background-color: #d8e464;
color: #111; }
/*=========================================
banner start
===========================================*/
.carousel-inner {
position: relative;
height: 100vh; }
.content {
position: absolute;
top: 180px;
width: 100%; }
.banner {
color: white; }
.banner h1 {
font-size: 40px;
font-weight: bold;
padding-bottom: 15px; }
.banner h3 {
font-size: 60px;
font-weight: bold;
color: #cddc39;
border-top: 2px solid #cddc39;
display: inline-block;
padding-bottom: 10px; }
.banner h4 {
font-family: 'Raleway', sans-serif !important;
font-size: 18px;
padding: 0 15px 0px 0px; }
.banner h4 span {
font-family: 'Raleway', sans-serif !important;
font-size: 18px; }
.banner button {
background-color: #cddc39;
width: 100%; }
.carousel-item {
position: relative; }
.carousel-item:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(0, 0, 0, 0.3);
background-image: url(../image/arrow.png); }
/*==========================================================
contact form
=============================================================*/
.contact {
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
color: #fff; }
.contact h2 {
text-align: center;
color: #cddc39; }
.contact h4 {
padding: 15px 0 0 0;
font-size: 20px; }
.form-control {
border-color: #777 !important;
background-color: transparent; }
.subs-form {
width: 100%;
padding: 20px 15px; }
/*=============================================================
about start
===============================================================*/
.about {
padding-bottom: 0; }
.about h2,
.about p {
text-align: center; }
.abouts_details {
padding: 10px 0 0 0; }
.about_leftside h1 {
text-align: left; }
.about_leftside p {
padding: 15px 0;
text-align: left; }
.about_rightside {
padding: 20px 25px; }
.about_rightside ul {
padding: 0; }
.about_rightside ul li {
padding: 10px 0;
color: black; }
.about_rightside ul li i {
color: #cddc39;
padding: 0 15px; }
/*================================================================
video start
==================================================================*/
.video {
background-image: url(../image/maxresdefault.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
color: white;
background-attachment: fixed;
padding: 40px 0; }
.video:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-image: url(../image/arrow.png);
/* background-color: rgba(0, 0, 0, 0.3);*/ }
.vdo {
text-align: center; }
.vdo i {
padding: 10px 0 0 0;
font-size: 90px;
color: white;
animation: bounce 1s infinite alternate;
-webkit-animation: bounce 1s infinite alternate; }
@keyframes bounce {
from {
transform: translateY(0px); }
to {
transform: translateY(-15px); } }
@-webkit-keyframes bounce {
from {
transform: translateY(0px); }
to {
transform: translateY(-15px); } }
/*==========================================================
why choose us start
============================================================*/
.why_choose {
background-color: #e8efa5;
text-align: center; }
.why_choose h5 {
font-weight: bold; }
.why_choose i {
font-size: 35px;
margin: 10px;
padding: 20px;
margin-top: 50px;
background-color: #cddc39;
border-radius: 20%;
-webkit-transition: all 1s;
/* For Safari 3.1 to 6.0 */
transition: all 1s; }
.why_choose .why_choose_media {
min-height: 280px;
padding: 30px;
text-align: center;
border: 1px solid black;
margin-bottom: 30px;
color: white;
position: relative;
overflow: hidden;
transition: all 2s; }
.why_choose .why_choose_media:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(0, 0, 0, 0.4);
background-image: url(../image/arrow.png);
z-index: 1; }
.why_choose .why_choose_media .choose-teaser {
position: absolute;
width: 100%;
top: 0;
left: 0;
transform: scale(1.6);
transition: all 1s ease; }
.why_choose .why_choose_media .text {
position: relative;
z-index: 3; }
.why_choose .why_choose_media .card-text {
visibility: hidden;
color: white;
height: 0; }
.why_choose .why_choose_media:hover .card-text {
height: 10px;
visibility: visible;
opacity: 1;
transition: opacity 2s linear; }
.why_choose .why_choose_media:hover i {
margin-top: -20px;
visibility: hidden;
opacity: 0;
transition: visibility 0s 0.5s, opacity 0.5s linear; }
.why_choose .why_choose_media:hover .choose-teaser {
transform: scale(1.8); }
/*========================= ============================================
feature start
=======================================================================*/
.features {
padding-top: 0;
padding-bottom: 40px;
text-align: center;
position: relative; }
.features i {
margin: -70px 10% 5% 10%;
padding: 10%;
border: 1px solid #fff;
border-radius: 50%;
background-color: #cddc39; }
.features .features_details {
padding: 45px 0 100px 0;
text-align: center;
background-image: url(../image/architecture-1836070_1920.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-attachment: fixed; }
.features .features_details p {
padding: 0 15px; }
.features .features_details:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(0, 0, 0, 0.6);
background-image: url(../image/arrow.png); }
.features .features_details .features_details_content {
position: relative;
color: white; }
/*======================================================
testimonial start
========================================================*/
.testimonial {
padding: 25px 0 0 0;
text-align: center;
background-image: url(../image/cta.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-attachment: fixed; }
.testimonial:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(232, 239, 165, 0.85); }
.testimonial h2,
.testimonial p {
text-align: center; }
.testimonial .testimonial_details img {
/*width: 15%;*/
border-radius: 50%; }
.testimonial .testimonial_details h6 {
font-weight: bold;
padding-top: 15px;
text-align: center; }
/*=======================================================
carousel
===================================================*/
.owl-dots {
text-align: center; }
.owl-dot {
border: 1px solid #5ff1cc !important;
width: 10px !important;
height: 10px !important;
margin: 5px !important;
border-radius: 50%; }
.owl-dot.active {
background: #cddc39 !important; }
.navbar-toggler {
padding: 10px 15px !important;
position: relative; }
.navbar-toggler:before {
content: "";
position: absolute;
width: 80%;
height: 5px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
top: 12px;
left: 10%; }
.navbar-toggler:after {
content: "";
position: absolute;
width: 80%;
height: 5px;
border-top: 1px solid #fff;
top: 20px;
left: 10%; }
/*==========================================================
cta start
============================================================*/
.cta {
padding: 25px 0 0 0;
text-align: center;
background-image: url(../image/cta.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-attachment: fixed;
color: white; }
.cta:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(0, 0, 0, 0.6);
background-image: url(../image/arrow.png); }
.cta a {
background-color: #cddc39;
margin-top: 30px;
color: #000; }
.cta i {
font-size: 20px;
color: white; }
.cta h3 {
font-size: 40px;
text-align: center; }
.cta h3 span {
font-size: 20px; }
.cta .cta-img img {
height: 230px;
margin: -100px 0 0 0; }
.cta .cta_btn {
color: white; }
.cta .cta_btn i {
color: black; }
/*=====================================================
footer start
=======================================================*/
.footer-bottom {
position: relative;
background-color: #cddc39;
text-align: center;
padding: 12px 20px; }
.footer-bottom a {
color: #111; }
.footer-bottom i {
float: right;
padding: 15px;
border-radius: 50%;
background-color: #cddc39; }
/*==========================================================
pop-up-vdo start
============================================================*/
.pop-up-vdo {
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.8);
position: fixed;
z-index: 999999;
display: none; }
.pop-up-vdo iframe {
margin: 0 5%;
width: 90%;
height: 90%; }
.pop-up-vdo .vdo_close {
padding: 10px 18px;
background-color: #cddc39;
float: right;
margin-right: 15px; }
/*====================================================
responcive start
======================================================*/
@media (max-width: 768px) {
.header_contact {
display: none; }
#mainNav {
padding: 0; }
.navbar-brand img {
width: 40px; }
.navbar-toggler {
padding: 5px 8px !important; }
.form-control {
background-color: white; }
.banner h1 {
font-size: 32px; }
.banner h3 {
font-size: 40px; }
#curvedarrow {
display: none; }
.features i {
margin: 2%;
padding: 10%;
border: 6px solid white;
border-radius: 50%;
background-color: #cddc39; }
.media {
display: block; }
.cta-img img {
height: 230px;
margin: 0 !important; }
.carousel-inner {
height: auto !important;
background-color: red; }
.carousel {
background-color: gold; }
.content {
position: static;
top: 0px;
width: 100%;
background-color: rgba(0, 0, 0, 0.5); }
.banner_leftside {
position: absolute;
top: 90px;
width: 80%; }
.contact {
text-align: center; } }
@media (max-width: 700px) {
.carousel-inner {
height: auto !important;
background-color: red; }
.carousel {
background-color: gold; }
.content {
position: static;
top: 0px;
width: 100%; }
.form-control {
background-color: white; }
.banner_leftside {
position: absolute;
top: 83px;
width: 80%; }
.contact {
text-align: center; } }
@media (max-width: 600px) {
.content {
position: static !important; }
.banner h1 {
font-size: 20px; }
.banner h3 {
font-size: 26px; }
.banner h4 {
padding: 0 !important;
margin: -10px 0 0 0; }
.form-control {
background-color: white; }
#curvedarrow {
display: none; }
.banner_leftside {
position: static;
position: relative;
top: 0; }
.contact {
text-align: center;
margin-top: 50px;
padding-top: 25px; } }
/*# sourceMappingURL=style.css.map */
|
css/style.css
|
@import url("https://fonts.googleapis.com/css?family=Raleway|Roboto+Condensed&display=swap");
/*===========================================
global
=======================================*/
html,
body {
margin: 0;
padding: 0;
font-family: "Raleway", sans-serif;
font-weight: normal;
font-size: 14px;
color: #111; }
section {
padding: 40px 0; }
ul li {
list-style-type: none; }
a {
text-decoration: none;
color: black; }
h1,
h2,
h3,
h4.h5,
h6 {
font-family: "Roboto Condensed", sans-serif; }
h2 {
margin-bottom: 30px;
position: relative; }
/*===================================
heading start
=====================================*/
.heading {
padding: 5px 10px;
background: #cddc39; }
.heading ul {
margin: 0px;
padding: 0; }
.heading ul li {
list-style: none;
display: inline-block !important;
padding-right: 20px;
color: #111; }
.heading ul li a {
color: #111; }
/*==================================
menu start
====================================*/
#mainNav {
background-color: rgba(250, 255, 255, 0.9); }
.navbar-brand {
font-size: 2rem;
font-family: 'Khand', sans-serif;
color: #fff !important; }
.navbar-brand p {
font-size: 0.84rem;
margin-top: -5px;
font-family: 'Raleway', sans-serif; }
.navbar-brand img {
width: 60px; }
.navbar {
-webkit-transition: width 2s;
/* Safari */
transition: width 2s; }
.navbar button {
background-color: #cddc39;
color: #111;
padding: 0 20px;
font-size: 15px; }
.navbar button:hover {
background-color: #E8EFBA;
color: #111; }
.nav-item a {
color: #111 !important;
text-shadow: 0 0 2px #F2F4EC; }
.navbar-nav .nav-link.active {
background: #d8e464 !important; }
.nav-item:hover {
background-color: #d8e464;
color: #111; }
/*=========================================
banner start
===========================================*/
.carousel-inner {
position: relative;
height: 100vh; }
.content {
position: absolute;
top: 180px;
width: 100%; }
.banner {
color: white; }
.banner h1 {
font-size: 40px;
font-weight: bold;
padding-bottom: 15px; }
.banner h3 {
font-size: 60px;
font-weight: bold;
color: #cddc39;
border-top: 2px solid #cddc39;
display: inline-block;
padding-bottom: 10px; }
.banner h4 {
font-family: 'Raleway', sans-serif !important;
font-size: 18px;
padding: 0 15px 0px 0px; }
.banner h4 span {
font-family: 'Raleway', sans-serif !important;
font-size: 18px; }
.banner button {
background-color: #cddc39;
width: 100%; }
.carousel-item {
position: relative; }
.carousel-item:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(0, 0, 0, 0.3);
background-image: url(../image/arrow.png); }
/*==========================================================
contact form
=============================================================*/
.contact {
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
color: #fff; }
.contact h2 {
text-align: center;
color: #cddc39; }
.contact h4 {
padding: 15px 0 0 0;
font-size: 20px; }
.form-control {
border-color: #777 !important;
background-color: transparent; }
.subs-form {
width: 100%;
padding: 20px 15px; }
/*=============================================================
about start
===============================================================*/
.about {
padding-bottom: 0; }
.about h2,
.about p {
text-align: center; }
.abouts_details {
padding: 10px 0 0 0; }
.about_leftside h1 {
text-align: left; }
.about_leftside p {
padding: 15px 0;
text-align: left; }
.about_rightside {
padding: 20px 25px; }
.about_rightside ul {
padding: 0; }
.about_rightside ul li {
padding: 10px 0;
color: black; }
.about_rightside ul li i {
color: #cddc39;
padding: 0 15px; }
/*================================================================
video start
==================================================================*/
.video {
background-image: url(../image/maxresdefault.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
color: white;
background-attachment: fixed;
padding: 40px 0; }
.video:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-image: url(../image/arrow.png);
/* background-color: rgba(0, 0, 0, 0.3);*/ }
.vdo {
text-align: center; }
.vdo i {
padding: 10px 0 0 0;
font-size: 90px;
color: white;
animation: bounce 1s infinite alternate;
-webkit-animation: bounce 1s infinite alternate; }
@keyframes bounce {
from {
transform: translateY(0px); }
to {
transform: translateY(-15px); } }
@-webkit-keyframes bounce {
from {
transform: translateY(0px); }
to {
transform: translateY(-15px); } }
/*==========================================================
why choose us start
============================================================*/
.why_choose {
background-color: #e8efa5;
text-align: center; }
.why_choose h5 {
font-weight: bold; }
.why_choose i {
font-size: 35px;
margin: 10px;
padding: 20px;
margin-top: 50px;
background-color: #cddc39;
border-radius: 20%;
-webkit-transition: all 1s;
/* For Safari 3.1 to 6.0 */
transition: all 1s; }
.why_choose .why_choose_media {
min-height: 280px;
padding: 30px;
text-align: center;
border: 1px solid black;
margin-bottom: 30px;
color: white;
position: relative;
overflow: hidden;
transition: all 2s; }
.why_choose .why_choose_media:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(0, 0, 0, 0.4);
background-image: url(../image/arrow.png);
z-index: 1; }
.why_choose .why_choose_media .choose-teaser {
position: absolute;
width: 100%;
top: 0;
left: 0;
transform: scale(1.6);
transition: all 1s ease; }
.why_choose .why_choose_media .text {
position: relative;
z-index: 3; }
.why_choose .why_choose_media .card-text {
visibility: hidden;
color: white;
height: 0; }
.why_choose .why_choose_media:hover .card-text {
height: 10px;
visibility: visible;
opacity: 1;
transition: opacity 2s linear; }
.why_choose .why_choose_media:hover i {
margin-top: -20px;
visibility: hidden;
opacity: 0;
transition: visibility 0s 0.5s, opacity 0.5s linear; }
.why_choose .why_choose_media:hover .choose-teaser {
transform: scale(1.8); }
/*========================= ============================================
feature start
=======================================================================*/
.features {
padding-top: 0;
padding-bottom: 40px;
text-align: center;
position: relative; }
.features i {
margin: -70px 10% 5% 10%;
padding: 10%;
border: 1px solid #fff;
border-radius: 50%;
background-color: #cddc39; }
.features .features_details {
padding: 45px 0 100px 0;
text-align: center;
background-image: url(../image/architecture-1836070_1920.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-attachment: fixed; }
.features .features_details p {
padding: 0 15px; }
.features .features_details:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(0, 0, 0, 0.6);
background-image: url(../image/arrow.png); }
.features .features_details .features_details_content {
position: relative;
color: white; }
/*======================================================
testimonial start
========================================================*/
.testimonial {
padding: 25px 0 0 0;
text-align: center;
background-image: url(../image/cta.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-attachment: fixed; }
.testimonial:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(232, 239, 165, 0.85); }
.testimonial h2,
.testimonial p {
text-align: center; }
.testimonial .testimonial_details img {
/*width: 15%;*/
border-radius: 50%; }
.testimonial .testimonial_details h6 {
font-weight: bold;
padding-top: 15px;
text-align: center; }
/*=======================================================
carousel
===================================================*/
.owl-dots {
text-align: center; }
.owl-dot {
border: 1px solid #5ff1cc !important;
width: 10px !important;
height: 10px !important;
margin: 5px !important;
border-radius: 50%; }
.owl-dot.active {
background: #cddc39 !important; }
.navbar-toggler {
padding: 10px 15px !important;
position: relative; }
.navbar-toggler:before {
content: "";
position: absolute;
width: 80%;
height: 5px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
top: 12px;
left: 10%; }
.navbar-toggler:after {
content: "";
position: absolute;
width: 80%;
height: 5px;
border-top: 1px solid #fff;
top: 20px;
left: 10%; }
/*==========================================================
cta start
============================================================*/
.cta {
padding: 25px 0 0 0;
text-align: center;
background-image: url(../image/cta.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-attachment: fixed;
color: white; }
.cta:before {
position: absolute;
content: " ";
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
z-index: 0;
background-color: rgba(0, 0, 0, 0.6);
background-image: url(../image/arrow.png); }
.cta a {
background-color: #cddc39;
margin-top: 30px;
color: #000; }
.cta i {
font-size: 20px;
color: white; }
.cta h3 {
font-size: 40px;
text-align: center; }
.cta h3 span {
font-size: 20px; }
.cta .cta-img img {
height: 230px;
margin: -100px 0 0 0; }
.cta .cta_btn {
color: white; }
.cta .cta_btn i {
color: black; }
/*=====================================================
footer start
=======================================================*/
.footer-bottom {
position: relative;
background-color: #cddc39;
text-align: center;
padding: 12px 20px; }
.footer-bottom a {
color: #111; }
.footer-bottom i {
float: right;
padding: 15px;
border-radius: 50%;
background-color: #cddc39; }
/*==========================================================
pop-up-vdo start
============================================================*/
.pop-up-vdo {
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.8);
position: fixed;
z-index: 999999;
display: none; }
.pop-up-vdo iframe {
margin: 0 5%;
width: 90%;
height: 90%; }
.pop-up-vdo .vdo_close {
padding: 10px 18px;
background-color: #cddc39;
float: right;
margin-right: 15px; }
/*====================================================
responcive start
======================================================*/
@media (max-width: 768px) {
.header_contact {
display: none; }
#mainNav {
padding: 0; }
.navbar-brand img {
width: 40px; }
.navbar-toggler {
padding: 5px 8px !important; }
.form-control {
background-color: white; }
.banner h1 {
font-size: 32px; }
.banner h3 {
font-size: 40px; }
#curvedarrow {
display: none; }
.features i {
margin: 2%;
padding: 10%;
border: 6px solid white;
border-radius: 50%;
background-color: #cddc39; }
.media {
display: block; }
.cta-img img {
height: 230px;
margin: 0 !important; }
.carousel-inner {
height: auto !important;
background-color: red; }
.carousel {
background-color: gold; }
.content {
position: static;
top: 0px;
width: 100%;
background-color: rgba(0, 0, 0, 0.5); }
.banner_leftside {
position: absolute;
top: 90px;
width: 80%; }
.contact {
text-align: center; } }
@media (max-width: 700px) {
.carousel-inner {
height: auto !important;
background-color: red; }
.carousel {
background-color: gold; }
.content {
position: static;
top: 0px;
width: 100%; }
.form-control {
background-color: white; }
.banner_leftside {
position: absolute;
top: 83px;
width: 80%; }
.contact {
text-align: center; } }
@media (max-width: 600px) {
.content {
position: static !important; }
.banner h1 {
font-size: 20px; }
.banner h3 {
font-size: 26px; }
.banner h4 {
padding: 0 !important;
margin: -10px 0 0 0; }
.form-control {
background-color: white; }
#curvedarrow {
display: none; }
.banner_leftside {
position: static;
position: relative;
top: 0; }
.contact {
text-align: center;
margin-top: 50px;
padding-top: 25px; } }
/*# sourceMappingURL=style.css.map */
| 0.319227 | 0.061396 |
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
/*This defines what 1rem is*/
font-size: 62.5%; /*1rem = 10px; 10px/16px = 62.5%*/
scroll-behavior: smooth;
}
@media (max-width: 75em) /* 1200px/16px == 75em */ {
html {
font-size: 56.25%;
}
}
@media (max-width: 56.25em) /* 900px/16px == 56.25em */ {
html {
font-size: 50%;
}
}
@media (max-width: 37.5em) /* 600px/16px == 37.5em */ {
html {
font-size: 40%;
}
}
@media (min-width: 112.5em) {
html {
font-size: 75%;
}
}
body {
font-family: 'Merriweather Sans', sans-serif;
font-weight: 400;
line-height: 1.5;
box-sizing: border-box;
color: #151515;
}
.container {
max-width: 114rem;
margin: 0 auto;
overflow: hidden;
}
ul, li a {
list-style: none;
text-decoration: none;
color: #fff;
}
/*---------------------GRID SYSTEM---------------------*/
.row {
width: 100%;
}
.row::after {
content: "";
display: table;
clear: both;
}
.row [class^="col-"] {
float: left;
}
.row [class^="col-"]:not(:last-child) {
margin-right: 4rem;
}
.row .col-1-of-2 {
width: calc((100% - 4rem) / 2);
}
@media (max-width: 56.25em) {
.row .col-1-of-2 {
width: 100%;
}
}
.row .col-1-of-3 {
width: calc((100% - 2 * 4rem) / 3);
}
@media (max-width: 37.5em) {
.row .col-1-of-3 {
width: 100%;
}
}
.row .col-2-of-3 {
width: calc(2 * ((100% - 2 * 4rem) / 3) + 4rem);
}
@media (max-width: 37.5em) {
.row .col-2-of-3 {
width: 100%;
}
}
.row .col-1-of-4 {
width: calc((100% - 3 * 4rem) / 4);
}
@media (max-width: 37.5em) {
.row .col-1-of-4 {
width: 100%;
}
}
.row .col-2-of-4 {
width: calc(2 * ((100% - 3 * 4rem) / 4) + 4rem);
}
@media (max-width: 37.5em) {
.row .col-2-of-4 {
width: 100%;
}
}
.row .col-3-of-4 {
width: calc(3 * ((100% - 3 * 4rem) / 4) + 2 * 4rem);
}
/*---------------------UTILITIES---------------------*/
.u-center-text { text-align: center; }
.u-margin-bottom-big { margin-bottom: 10rem; }
.u-margin-bottom-medium { margin-bottom: 8rem; }
.u-margin-bottom-small { margin-bottom: 4rem; }
.u-margin-bottom-extra-small { margin-bottom: 2rem; }
.u-margin-top-small { margin-top: 1rem; }
.u-font-weight-light { font-weight: 300; }
.u-font-weight-bold { font-weight: 700; }
.u-small-letter-spacing { letter-spacing: .1rem; }
.u-color-white { color: #fff; }
/*---------------------HEADINGS---------------------*/
.heading-primary {
line-height: 1.1;
backface-visibility: hidden;
}
.heading-primary__title {
color: #fff;
display: block;
}
.heading-primary--main {
font-size: 4rem;
color: #F17B15;
font-family: 'Rancho', cursive;
letter-spacing: 3px;
animation-name: moveInLeft;
animation-duration: 1s;
}
@keyframes moveInLeft {
0% {
opacity: 0;
transform: translateX(-10rem);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.heading-primary--sub {
font-size: 5rem;
animation-name: moveInRight;
animation-duration: 1s;
}
@keyframes moveInRight {
0% {
opacity: 0;
transform: translateX(10rem);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.heading-secondary {
line-height: 1.5;
color: #151515;
font-size: 2rem;
position: relative;
}
.heading-secondary--title {
display: block;
}
.heading-secondary--title:first-child {
font-size: 1.9rem;
color: #F17B15;
font-weight: 400;
}
.heading-secondary--title:last-child {
font-size: 3.6rem;
font-family: 'Rancho', cursive;
letter-spacing: .1rem;
}
.heading-secondary::after {
content: "";
position: absolute;
top: 9rem;
left: 50%;
height: 3px;
width: 3rem;
background-color: #F17B15;
transform: translateX(-50%);
}
.heading-tertiary {
font-size: 1.8rem;
}
.heading-quaternary {
font-size: 1.6rem;
}
.heading-quaternary--margin {
margin: 0 1rem;
}
/*---------------------PARAGRAPHS---------------------*/
.about__paragraph,
.services-box__paragraph,
.menu__paragraph {
font-size: 1.6rem;
color: #969696;
}
.about__paragraph {
margin-bottom: 5rem;
}
.testimonials__paragraph {
font-size: 1.8rem;
width: 80%;
text-align: center;
display: inline-block;
line-height: 1.7;
}
.footer__paragraph {
font-size: 1.4rem;
}
.popup__paragraph {
font-size: 1.3rem;
}
/*---------------------ACTIVE LINK---------------------*/
.active::before {
content: "";
position: absolute;
top: 3.3rem;
left: 2px;
height: 2px;
width: 100%;
background-color: #F17B15;
}
/*---------------------BUTTONS---------------------*/
.btn, .btn:link, .btn:visited {
text-transform: uppercase;
text-decoration: none;
display: inline-block;
border-radius: 10rem;
transition: all .2s;
font-size: 1.6rem;
border: none;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.2);
}
.btn:active, .btn:focus {
outline: none;
transform: translateY(-1px);
box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.2);
}
.btn--green {
background-color: #4D6219;
color: #fff;
margin-top: 4rem;
padding: 1.5rem 4rem;
}
.btn--orange {
background-color: #F17B15;
color: #fff;
padding: 1.1rem 3.5rem;
display: inline-block;
cursor: pointer;
}
.btn--orange:hover {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--orange:focus {
box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--animated {
animation: moveInBottom 1s ease-out .75s;
animation-fill-mode: backwards;
}
@keyframes moveInBottom {
0% {
transform: translateY(10rem);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
/*-----------------------------
HERO SECTION
-------------------------------*/
.hero {
background: #000;
height: 100vh;
position: relative;
width: 100%;
}
/*-----------BACKGROUND VIDEO--------------*/
.bg-video {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
opacity: .15;
z-index: 0;
}
.bg-video__content {
height: 100%;
width: 100%;
object-fit: fill;
}
/*-----------HEADER--------------*/
.hero .header {
width: 100%;
padding-top: 2rem;
}
.hero .header .logo {
float: left;
color: #fff;
line-height: 1.1;
z-index: 2;
position: relative;
z-index: 2;
}
@media (max-width: 56.25em) {
.hero .header .logo {
padding-left: 3rem;
margin-top: 1rem;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.hero .header .logo {
padding-left: 3rem;
}
}
.hero .header .logo--main {
font-size: 2rem;
letter-spacing: .5rem;
display: block;
}
.hero .header .logo--sub {
font-size: 1.4rem;
font-weight: 300;
display: block;
}
/*-----------NAVIGATION--------------*/
.hero .header .navigation {
float: right;
line-height: 2.5;
font-size: 1.4rem;
}
@media (max-width: 56.25em) {
.hero .header .navigation {
display: none;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.hero .header .navigation {
padding-right: 3rem;
}
}
.hero .header .navigation__list {
float: left;
}
.hero .header .navigation__item {
display: inline-block;
margin-left: 3.5rem;
position: relative;
}
.hero .header .navigation__item::after {
content: "";
position: absolute;
top: 3.3rem;
left: 2px;
height: 2px;
width: 100%;
background-color: #F17B15;
transform: scaleX(0);
transition: transform .5s ease;
transform-origin: left;
}
.hero .header .navigation__item:hover::after {
transform: scaleX(1);
}
.hero .header .navigation__link {
text-transform: uppercase;
transition: 2s linear;
color: #fff;
}
/*-----------HAMBURGER NAVIGATION--------------*/
.hamburger {
display: none;
}
@media (max-width: 56.25em) {
.hamburger {
display: initial;
}
}
.hamburger__checkbox {
display: none;
}
.hamburger__button {
background-color: #fff;
height: 5rem;
width: 5rem;
position: fixed;
top: 2.5rem;
right: 2rem;
border-radius: 50%;
z-index: 40;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
text-align: center;
cursor: pointer;
}
.hamburger__background {
height: 3rem;
width: 3rem;
border-radius: 50%;
position: fixed;
top: 3rem;
right: 2.5rem;
background-color: rgba(0, 0, 0, 0.9);
z-index: 30;
transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.hamburger__nav {
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 35;
visibility: hidden;
opacity: 0;
width: 0;
transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger__list {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
list-style: none;
text-align: center;
width: 100%;
}
.hamburger__item {
margin: 1rem;
}
.hamburger__link:link, .hamburger__link:visited {
display: inline-block;
font-size: 3rem;
font-weight: 300;
color: #fff;
text-decoration: none;
padding: .5rem 2rem;
background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
background-size: 220%;
transition: all .4s;
backface-visibility: hidden;
}
.hamburger__checkbox:checked ~ .hamburger__background {
transform: scale(150);
}
.hamburger__checkbox:checked ~ .hamburger__nav {
opacity: 1;
visibility: visible;
width: 100%;
}
.hamburger__icon {
position: relative;
margin-top: 2.5rem;
}
.hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
display: inline-block;
width: 2rem;
height: 1px;
background-color: #151515;
}
.hamburger__icon::before, .hamburger__icon::after {
content: "";
position: absolute;
left: 0;
transition: all .2s;
}
.hamburger__icon::before {
top: -.5rem;
}
.hamburger__icon::after {
top: .5rem;
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon {
background-color: transparent;
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::before {
top: 0;
transform: rotate(135deg);
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::after {
top: 0;
transform: rotate(-135deg);
}
/*-----------TEXT HERO--------------*/
.hero__text-box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width: 65%;
color: #fff;
}
.hero__paragraph {
font-size: 1.6rem;
margin-top: 2rem;
font-weight: 300;
animation-name: fadeIn;
animation-duration: 1.5s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/*-----------------------------
INFO SECTION
-------------------------------*/
.info {
padding: 6rem 0;
background-color: #710502;
}
.info-box {
font-size: 1.4rem;
padding: 2rem;
text-align: center;
color: #fff;
}
.info-box__icon {
font-size: 4rem;
display: inline-block;
color: #fff;
margin-bottom: 1.4rem;
}
.info-box__text {
font-weight: 300;
}
.info-box__text--detail {
display: block;
}
/*-----------------------------
ABOUT SECTION
-------------------------------*/
.about {
padding-top: 18rem;
position: relative;
}
@media (max-width: 56.25em) {
.about__heading-responsive {
padding-left: 2rem;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.about__heading-responsive {
padding-left: 2rem;
}
}
@media (max-width: 37.5em) {
.about__heading-responsive {
margin-bottom: 2rem;
}
}
@media (max-width: 56.25em) {
.about__paragraph-responsive {
padding-right: 2rem;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.about__paragraph-responsive {
padding-right: 2rem;
}
}
@media (max-width: 37.5em) {
.about__paragraph-responsive {
padding-left: 2rem;
}
}
@media (max-width: 37.5em) {
.about__img-responsive:not(:last-child) {
margin-bottom: 3rem;
}
}
.about .wrapper {
position: relative;
}
.about .wrapper__icon--right, .about .wrapper__icon--left {
display: inline-block;
position: absolute;
font-size: 5rem;
color: #151515;
top: 50%;
transform: translateY(-50%);
transition: all .3s;
}
.wrapper__icon--left {
left: 4.5rem;
}
.wrapper__icon--right {
right: 4.5rem;
}
.about .wrapper__icon--right:hover, .about .wrapper__icon--left:hover {
color: #F17B15;
}
@media (max-width: 56.25em) {
.about .wrapper__icon--right, .about .wrapper__icon--left {
display: none;
}
}
@media (max-width: 37.5em) {
.about .wrapper__icon--right, .about .wrapper__icon--left {
display: none;
}
}
.composition-about {
width: 100%;
height: 36rem;
position: relative;
overflow: hidden;
}
.composition-about .composition-about__photo {
width: 100%;
height: 100%;
object-fit: cover;
}
/*-----------------------------
SERVICES SECTION
-------------------------------*/
.services {
padding-top: 18rem;
position: relative;
}
.services-box {
font-size: 1.4rem;
padding: 2rem;
text-align: center;
color: #151515;
}
@media (max-width: 56.25em) {
.services-box {
width: 50%;
margin: 0 auto;
}
}
@media (max-width: 37.5em) {
.services-box {
width: 40%;
margin: 0 auto;
}
}
.services-box__icon {
position: relative;
display: inline-block;
width: 10rem;
height: 10rem;
margin-bottom: 1.8rem;
background-color: #4D6219;
border-radius: 50%;
}
.services-box__icon--p {
width: 45%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 56.25em) {
.services__responsive {
width: 50% !important;
margin-right: 0 !important;
}
}
@media (max-width: 37.5em) {
.services__responsive {
width: 100% !important;
}
}
/*-----------------------------
VIDEO SECTION
-------------------------------*/
.video {
margin-top: 18rem;
background: url("../img/video-img/video-img.png") center no-repeat;
background-size: cover;
height: 80vh;
position: relative;
width: 100%;
text-align: center;
}
.video__wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.video__heading-secondary {
font-size: 3rem;
color: #fff;
font-weight: 300;
}
.video__icon {
margin-top: 2rem;
display: inline-block;
}
.video__icon--p {
width: 100%;
cursor: pointer;
font-size: 7rem;
color: #fff;
transition: all .6s;
}
.video__icon--p:hover {
color: #F17B15;
}
/*-----------------------------
MENU SECTION
-------------------------------*/
.menu {
padding: 18rem 0;
position: relative;
}
@media (min-width: 56.25em) and (max-width: 64em) {
.menu {
padding: 18rem 2rem;
}
}
.navigation-menu {
line-height: 2.5;
font-size: 1.6rem;
text-align: center;
}
.navigation-menu__list {
display: inline-block;
margin-left: 2rem;
}
.navigation-menu__item {
display: inline-block;
position: relative;
}
.navigation-menu__item:not(:first-child) {
margin-left: 3.5rem;
}
.navigation-menu__item::after {
content: "";
position: absolute;
top: 3.3rem;
left: 2px;
height: 2px;
width: 100%;
background-color: #F17B15;
transform: scaleX(0);
transition: transform .5s ease;
}
.navigation-menu__item:hover::after {
transform: scaleX(1);
}
.navigation-menu__link {
text-transform: uppercase;
transition: 2s linear;
color: #151515;
}
.menu-wrapper {
position: relative;
}
@media (max-width: 56.25em) {
.menu-wrapper {
padding: 0 20rem;
margin-bottom: 2rem;
}
}
@media (max-width: 37.5em) {
.menu-wrapper {
padding: 0 1rem;
}
}
.menu-wrapper__shape {
width: 8rem;
height: 8rem;
float: left;
border-radius: 50%;
overflow: hidden;
}
.menu-wrapper__img {
width: 100%;
height: 100%;
object-fit: cover;
}
.menu-wrapper__text {
transform: translate(1.2rem, 1rem);
}
.menu-wrapper__dot {
margin-top: -.5rem;
color: #404044;
width: 64%;
overflow: hidden;
}
@media (max-width: 56.25em) {
.menu-wrapper__dot {
width: 73%;
margin-right: auto;
}
}
@media (max-width: 37.5em) {
.menu-wrapper__dot {
width: 60%;
margin-right: auto;
}
}
.menu-wrapper__price {
float: right;
margin-top: -4.3rem;
font-size: 2.3rem;
}
/*-----------------------------
TESTIMONIALS SECTION
-------------------------------*/
.testimonials {
padding: 8rem 0;
background: url("../img/testimonials/1.jpg") center no-repeat;
background-size: cover;
position: relative;
width: 100%;
text-align: center;
color: #fff;
}
/*-----------------------------
EVENTS SECTION
-------------------------------*/
.events {
padding-top: 18rem;
position: relative;
}
.composition-events {
width: 100%;
height: 36rem;
position: relative;
overflow: hidden;
}
.composition-events__img {
transform: scale(1);
transition: all .5s;
backface-visibility: hidden; /* to prevent shaking whene hover over */
width: 100%;
height: 100%;
object-fit: cover;
}
@media (max-width: 37.5em) {
.events__img-responsive:not(:last-child) {
margin-bottom: 4rem;
}
}
.composition-events:hover .composition-events__img {
transform: scale(1.4);
filter: blur(3px) brightness(60%);
}
.composition-events__caption {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 90%);
color: #fff;
font-size: 1.8rem;
text-align: center;
opacity: 0;
visibility: hidden;
transition: all .5s;
backface-visibility: hidden; /* to prevent shaking whene hover over */
}
.composition-events:hover .composition-events__caption {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%);
}
.composition-events__link:link,
.composition-events__link:visited {
color: #fff;
}
/*-----------------------------
BOOK SECTION
-------------------------------*/
.book {
margin-top: 18rem;
}
.book .form {
width: 80%;
margin: 0 auto;
}
@media (max-width: 56.25em) {
.book .form {
width: 60%;
}
}
.book .form__label {
display: block;
font-size: 1.6rem;
margin-bottom: 5px;
}
.book .form__input {
width: 100%;
padding: 1rem 1.3rem;
font-size: 1.5rem;
}
.book .form__button {
text-align: center;
margin-top: 5rem;
}
@media (max-width: 56.25em) {
.book .form__responsive {
margin-bottom: 2rem;
}
}
/*-----------------------------
FOOTER
-------------------------------*/
.footer {
margin-top: 16rem;
background-color: #151515;
color: #fff;
padding: 5rem 0;
}
@media (max-width: 56.25em) {
.footer__responsive {
width: 100% !important;
text-align: center;
}
.footer__responsive:not(:last-child) {
margin-bottom: 2rem;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.footer {
padding: 5rem 3rem;
}
}
.footer__link {
color: #fff;
}
.footer__box {
float: right;
}
@media (max-width: 56.25em) {
.footer__box {
margin: 0 auto;
float: none;
}
}
.footer__icon {
width: 2rem;
height: 2rem;
display: inline-block;
}
.footer__icon--img {
width: 100%;
height: 100%;
color: #fff;
}
.footer__icon:not(:last-child) {
margin-right: 1rem;
}
/*-----------------------------
POPUP
-------------------------------*/
.popup {
height: 100vh;
width: 100%;
position: fixed;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 999;
opacity: 0;
visibility: hidden;
}
.popup:target {
opacity: 1;
visibility: visible;
}
.popup__content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 75%;
background-color: #fff;
box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
border-radius: 3px;
overflow: hidden;
backface-visibility: hidden;
opacity: 0;
transform: translate(-50%, -50%) scale(0.25);
transition: all .5s .2s;
display: table;
}
.popup:target .popup__content {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.popup__left {
width: 66.6666667%;
height: 50rem;
display: table-cell;
}
@media (max-width: 56.25em) {
.popup__left {
width: 100%;
display: block;
height: 30rem;
}
}
.popup__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.popup__right {
width: 33.333333%;
display: table-cell;
vertical-align: middle;
padding: 0 3rem;
}
@media (max-width: 56.25em) {
.popup__right {
width: 100%;
display: block;
padding: 3rem 3rem;
}
}
.popup__close:link, .popup__close:visited {
color: #151515;
position: absolute;
top: 3rem;
right: 2rem;
font-size: 3rem;
text-decoration: none;
display: inline-block;
transition: all .2s;
line-height: 0;
}
.popup__close:hover {
color: #F17B15;
}
@media (max-width: 56.25em) {
.popup__close:link, .popup__close:visited {
color: #fff;
}
}
|
css/style.css
|
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
/*This defines what 1rem is*/
font-size: 62.5%; /*1rem = 10px; 10px/16px = 62.5%*/
scroll-behavior: smooth;
}
@media (max-width: 75em) /* 1200px/16px == 75em */ {
html {
font-size: 56.25%;
}
}
@media (max-width: 56.25em) /* 900px/16px == 56.25em */ {
html {
font-size: 50%;
}
}
@media (max-width: 37.5em) /* 600px/16px == 37.5em */ {
html {
font-size: 40%;
}
}
@media (min-width: 112.5em) {
html {
font-size: 75%;
}
}
body {
font-family: 'Merriweather Sans', sans-serif;
font-weight: 400;
line-height: 1.5;
box-sizing: border-box;
color: #151515;
}
.container {
max-width: 114rem;
margin: 0 auto;
overflow: hidden;
}
ul, li a {
list-style: none;
text-decoration: none;
color: #fff;
}
/*---------------------GRID SYSTEM---------------------*/
.row {
width: 100%;
}
.row::after {
content: "";
display: table;
clear: both;
}
.row [class^="col-"] {
float: left;
}
.row [class^="col-"]:not(:last-child) {
margin-right: 4rem;
}
.row .col-1-of-2 {
width: calc((100% - 4rem) / 2);
}
@media (max-width: 56.25em) {
.row .col-1-of-2 {
width: 100%;
}
}
.row .col-1-of-3 {
width: calc((100% - 2 * 4rem) / 3);
}
@media (max-width: 37.5em) {
.row .col-1-of-3 {
width: 100%;
}
}
.row .col-2-of-3 {
width: calc(2 * ((100% - 2 * 4rem) / 3) + 4rem);
}
@media (max-width: 37.5em) {
.row .col-2-of-3 {
width: 100%;
}
}
.row .col-1-of-4 {
width: calc((100% - 3 * 4rem) / 4);
}
@media (max-width: 37.5em) {
.row .col-1-of-4 {
width: 100%;
}
}
.row .col-2-of-4 {
width: calc(2 * ((100% - 3 * 4rem) / 4) + 4rem);
}
@media (max-width: 37.5em) {
.row .col-2-of-4 {
width: 100%;
}
}
.row .col-3-of-4 {
width: calc(3 * ((100% - 3 * 4rem) / 4) + 2 * 4rem);
}
/*---------------------UTILITIES---------------------*/
.u-center-text { text-align: center; }
.u-margin-bottom-big { margin-bottom: 10rem; }
.u-margin-bottom-medium { margin-bottom: 8rem; }
.u-margin-bottom-small { margin-bottom: 4rem; }
.u-margin-bottom-extra-small { margin-bottom: 2rem; }
.u-margin-top-small { margin-top: 1rem; }
.u-font-weight-light { font-weight: 300; }
.u-font-weight-bold { font-weight: 700; }
.u-small-letter-spacing { letter-spacing: .1rem; }
.u-color-white { color: #fff; }
/*---------------------HEADINGS---------------------*/
.heading-primary {
line-height: 1.1;
backface-visibility: hidden;
}
.heading-primary__title {
color: #fff;
display: block;
}
.heading-primary--main {
font-size: 4rem;
color: #F17B15;
font-family: 'Rancho', cursive;
letter-spacing: 3px;
animation-name: moveInLeft;
animation-duration: 1s;
}
@keyframes moveInLeft {
0% {
opacity: 0;
transform: translateX(-10rem);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.heading-primary--sub {
font-size: 5rem;
animation-name: moveInRight;
animation-duration: 1s;
}
@keyframes moveInRight {
0% {
opacity: 0;
transform: translateX(10rem);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.heading-secondary {
line-height: 1.5;
color: #151515;
font-size: 2rem;
position: relative;
}
.heading-secondary--title {
display: block;
}
.heading-secondary--title:first-child {
font-size: 1.9rem;
color: #F17B15;
font-weight: 400;
}
.heading-secondary--title:last-child {
font-size: 3.6rem;
font-family: 'Rancho', cursive;
letter-spacing: .1rem;
}
.heading-secondary::after {
content: "";
position: absolute;
top: 9rem;
left: 50%;
height: 3px;
width: 3rem;
background-color: #F17B15;
transform: translateX(-50%);
}
.heading-tertiary {
font-size: 1.8rem;
}
.heading-quaternary {
font-size: 1.6rem;
}
.heading-quaternary--margin {
margin: 0 1rem;
}
/*---------------------PARAGRAPHS---------------------*/
.about__paragraph,
.services-box__paragraph,
.menu__paragraph {
font-size: 1.6rem;
color: #969696;
}
.about__paragraph {
margin-bottom: 5rem;
}
.testimonials__paragraph {
font-size: 1.8rem;
width: 80%;
text-align: center;
display: inline-block;
line-height: 1.7;
}
.footer__paragraph {
font-size: 1.4rem;
}
.popup__paragraph {
font-size: 1.3rem;
}
/*---------------------ACTIVE LINK---------------------*/
.active::before {
content: "";
position: absolute;
top: 3.3rem;
left: 2px;
height: 2px;
width: 100%;
background-color: #F17B15;
}
/*---------------------BUTTONS---------------------*/
.btn, .btn:link, .btn:visited {
text-transform: uppercase;
text-decoration: none;
display: inline-block;
border-radius: 10rem;
transition: all .2s;
font-size: 1.6rem;
border: none;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.2);
}
.btn:active, .btn:focus {
outline: none;
transform: translateY(-1px);
box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.2);
}
.btn--green {
background-color: #4D6219;
color: #fff;
margin-top: 4rem;
padding: 1.5rem 4rem;
}
.btn--orange {
background-color: #F17B15;
color: #fff;
padding: 1.1rem 3.5rem;
display: inline-block;
cursor: pointer;
}
.btn--orange:hover {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--orange:focus {
box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--animated {
animation: moveInBottom 1s ease-out .75s;
animation-fill-mode: backwards;
}
@keyframes moveInBottom {
0% {
transform: translateY(10rem);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
/*-----------------------------
HERO SECTION
-------------------------------*/
.hero {
background: #000;
height: 100vh;
position: relative;
width: 100%;
}
/*-----------BACKGROUND VIDEO--------------*/
.bg-video {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
opacity: .15;
z-index: 0;
}
.bg-video__content {
height: 100%;
width: 100%;
object-fit: fill;
}
/*-----------HEADER--------------*/
.hero .header {
width: 100%;
padding-top: 2rem;
}
.hero .header .logo {
float: left;
color: #fff;
line-height: 1.1;
z-index: 2;
position: relative;
z-index: 2;
}
@media (max-width: 56.25em) {
.hero .header .logo {
padding-left: 3rem;
margin-top: 1rem;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.hero .header .logo {
padding-left: 3rem;
}
}
.hero .header .logo--main {
font-size: 2rem;
letter-spacing: .5rem;
display: block;
}
.hero .header .logo--sub {
font-size: 1.4rem;
font-weight: 300;
display: block;
}
/*-----------NAVIGATION--------------*/
.hero .header .navigation {
float: right;
line-height: 2.5;
font-size: 1.4rem;
}
@media (max-width: 56.25em) {
.hero .header .navigation {
display: none;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.hero .header .navigation {
padding-right: 3rem;
}
}
.hero .header .navigation__list {
float: left;
}
.hero .header .navigation__item {
display: inline-block;
margin-left: 3.5rem;
position: relative;
}
.hero .header .navigation__item::after {
content: "";
position: absolute;
top: 3.3rem;
left: 2px;
height: 2px;
width: 100%;
background-color: #F17B15;
transform: scaleX(0);
transition: transform .5s ease;
transform-origin: left;
}
.hero .header .navigation__item:hover::after {
transform: scaleX(1);
}
.hero .header .navigation__link {
text-transform: uppercase;
transition: 2s linear;
color: #fff;
}
/*-----------HAMBURGER NAVIGATION--------------*/
.hamburger {
display: none;
}
@media (max-width: 56.25em) {
.hamburger {
display: initial;
}
}
.hamburger__checkbox {
display: none;
}
.hamburger__button {
background-color: #fff;
height: 5rem;
width: 5rem;
position: fixed;
top: 2.5rem;
right: 2rem;
border-radius: 50%;
z-index: 40;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
text-align: center;
cursor: pointer;
}
.hamburger__background {
height: 3rem;
width: 3rem;
border-radius: 50%;
position: fixed;
top: 3rem;
right: 2.5rem;
background-color: rgba(0, 0, 0, 0.9);
z-index: 30;
transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.hamburger__nav {
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 35;
visibility: hidden;
opacity: 0;
width: 0;
transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger__list {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
list-style: none;
text-align: center;
width: 100%;
}
.hamburger__item {
margin: 1rem;
}
.hamburger__link:link, .hamburger__link:visited {
display: inline-block;
font-size: 3rem;
font-weight: 300;
color: #fff;
text-decoration: none;
padding: .5rem 2rem;
background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
background-size: 220%;
transition: all .4s;
backface-visibility: hidden;
}
.hamburger__checkbox:checked ~ .hamburger__background {
transform: scale(150);
}
.hamburger__checkbox:checked ~ .hamburger__nav {
opacity: 1;
visibility: visible;
width: 100%;
}
.hamburger__icon {
position: relative;
margin-top: 2.5rem;
}
.hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
display: inline-block;
width: 2rem;
height: 1px;
background-color: #151515;
}
.hamburger__icon::before, .hamburger__icon::after {
content: "";
position: absolute;
left: 0;
transition: all .2s;
}
.hamburger__icon::before {
top: -.5rem;
}
.hamburger__icon::after {
top: .5rem;
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon {
background-color: transparent;
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::before {
top: 0;
transform: rotate(135deg);
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::after {
top: 0;
transform: rotate(-135deg);
}
/*-----------TEXT HERO--------------*/
.hero__text-box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width: 65%;
color: #fff;
}
.hero__paragraph {
font-size: 1.6rem;
margin-top: 2rem;
font-weight: 300;
animation-name: fadeIn;
animation-duration: 1.5s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/*-----------------------------
INFO SECTION
-------------------------------*/
.info {
padding: 6rem 0;
background-color: #710502;
}
.info-box {
font-size: 1.4rem;
padding: 2rem;
text-align: center;
color: #fff;
}
.info-box__icon {
font-size: 4rem;
display: inline-block;
color: #fff;
margin-bottom: 1.4rem;
}
.info-box__text {
font-weight: 300;
}
.info-box__text--detail {
display: block;
}
/*-----------------------------
ABOUT SECTION
-------------------------------*/
.about {
padding-top: 18rem;
position: relative;
}
@media (max-width: 56.25em) {
.about__heading-responsive {
padding-left: 2rem;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.about__heading-responsive {
padding-left: 2rem;
}
}
@media (max-width: 37.5em) {
.about__heading-responsive {
margin-bottom: 2rem;
}
}
@media (max-width: 56.25em) {
.about__paragraph-responsive {
padding-right: 2rem;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.about__paragraph-responsive {
padding-right: 2rem;
}
}
@media (max-width: 37.5em) {
.about__paragraph-responsive {
padding-left: 2rem;
}
}
@media (max-width: 37.5em) {
.about__img-responsive:not(:last-child) {
margin-bottom: 3rem;
}
}
.about .wrapper {
position: relative;
}
.about .wrapper__icon--right, .about .wrapper__icon--left {
display: inline-block;
position: absolute;
font-size: 5rem;
color: #151515;
top: 50%;
transform: translateY(-50%);
transition: all .3s;
}
.wrapper__icon--left {
left: 4.5rem;
}
.wrapper__icon--right {
right: 4.5rem;
}
.about .wrapper__icon--right:hover, .about .wrapper__icon--left:hover {
color: #F17B15;
}
@media (max-width: 56.25em) {
.about .wrapper__icon--right, .about .wrapper__icon--left {
display: none;
}
}
@media (max-width: 37.5em) {
.about .wrapper__icon--right, .about .wrapper__icon--left {
display: none;
}
}
.composition-about {
width: 100%;
height: 36rem;
position: relative;
overflow: hidden;
}
.composition-about .composition-about__photo {
width: 100%;
height: 100%;
object-fit: cover;
}
/*-----------------------------
SERVICES SECTION
-------------------------------*/
.services {
padding-top: 18rem;
position: relative;
}
.services-box {
font-size: 1.4rem;
padding: 2rem;
text-align: center;
color: #151515;
}
@media (max-width: 56.25em) {
.services-box {
width: 50%;
margin: 0 auto;
}
}
@media (max-width: 37.5em) {
.services-box {
width: 40%;
margin: 0 auto;
}
}
.services-box__icon {
position: relative;
display: inline-block;
width: 10rem;
height: 10rem;
margin-bottom: 1.8rem;
background-color: #4D6219;
border-radius: 50%;
}
.services-box__icon--p {
width: 45%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 56.25em) {
.services__responsive {
width: 50% !important;
margin-right: 0 !important;
}
}
@media (max-width: 37.5em) {
.services__responsive {
width: 100% !important;
}
}
/*-----------------------------
VIDEO SECTION
-------------------------------*/
.video {
margin-top: 18rem;
background: url("../img/video-img/video-img.png") center no-repeat;
background-size: cover;
height: 80vh;
position: relative;
width: 100%;
text-align: center;
}
.video__wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.video__heading-secondary {
font-size: 3rem;
color: #fff;
font-weight: 300;
}
.video__icon {
margin-top: 2rem;
display: inline-block;
}
.video__icon--p {
width: 100%;
cursor: pointer;
font-size: 7rem;
color: #fff;
transition: all .6s;
}
.video__icon--p:hover {
color: #F17B15;
}
/*-----------------------------
MENU SECTION
-------------------------------*/
.menu {
padding: 18rem 0;
position: relative;
}
@media (min-width: 56.25em) and (max-width: 64em) {
.menu {
padding: 18rem 2rem;
}
}
.navigation-menu {
line-height: 2.5;
font-size: 1.6rem;
text-align: center;
}
.navigation-menu__list {
display: inline-block;
margin-left: 2rem;
}
.navigation-menu__item {
display: inline-block;
position: relative;
}
.navigation-menu__item:not(:first-child) {
margin-left: 3.5rem;
}
.navigation-menu__item::after {
content: "";
position: absolute;
top: 3.3rem;
left: 2px;
height: 2px;
width: 100%;
background-color: #F17B15;
transform: scaleX(0);
transition: transform .5s ease;
}
.navigation-menu__item:hover::after {
transform: scaleX(1);
}
.navigation-menu__link {
text-transform: uppercase;
transition: 2s linear;
color: #151515;
}
.menu-wrapper {
position: relative;
}
@media (max-width: 56.25em) {
.menu-wrapper {
padding: 0 20rem;
margin-bottom: 2rem;
}
}
@media (max-width: 37.5em) {
.menu-wrapper {
padding: 0 1rem;
}
}
.menu-wrapper__shape {
width: 8rem;
height: 8rem;
float: left;
border-radius: 50%;
overflow: hidden;
}
.menu-wrapper__img {
width: 100%;
height: 100%;
object-fit: cover;
}
.menu-wrapper__text {
transform: translate(1.2rem, 1rem);
}
.menu-wrapper__dot {
margin-top: -.5rem;
color: #404044;
width: 64%;
overflow: hidden;
}
@media (max-width: 56.25em) {
.menu-wrapper__dot {
width: 73%;
margin-right: auto;
}
}
@media (max-width: 37.5em) {
.menu-wrapper__dot {
width: 60%;
margin-right: auto;
}
}
.menu-wrapper__price {
float: right;
margin-top: -4.3rem;
font-size: 2.3rem;
}
/*-----------------------------
TESTIMONIALS SECTION
-------------------------------*/
.testimonials {
padding: 8rem 0;
background: url("../img/testimonials/1.jpg") center no-repeat;
background-size: cover;
position: relative;
width: 100%;
text-align: center;
color: #fff;
}
/*-----------------------------
EVENTS SECTION
-------------------------------*/
.events {
padding-top: 18rem;
position: relative;
}
.composition-events {
width: 100%;
height: 36rem;
position: relative;
overflow: hidden;
}
.composition-events__img {
transform: scale(1);
transition: all .5s;
backface-visibility: hidden; /* to prevent shaking whene hover over */
width: 100%;
height: 100%;
object-fit: cover;
}
@media (max-width: 37.5em) {
.events__img-responsive:not(:last-child) {
margin-bottom: 4rem;
}
}
.composition-events:hover .composition-events__img {
transform: scale(1.4);
filter: blur(3px) brightness(60%);
}
.composition-events__caption {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 90%);
color: #fff;
font-size: 1.8rem;
text-align: center;
opacity: 0;
visibility: hidden;
transition: all .5s;
backface-visibility: hidden; /* to prevent shaking whene hover over */
}
.composition-events:hover .composition-events__caption {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%);
}
.composition-events__link:link,
.composition-events__link:visited {
color: #fff;
}
/*-----------------------------
BOOK SECTION
-------------------------------*/
.book {
margin-top: 18rem;
}
.book .form {
width: 80%;
margin: 0 auto;
}
@media (max-width: 56.25em) {
.book .form {
width: 60%;
}
}
.book .form__label {
display: block;
font-size: 1.6rem;
margin-bottom: 5px;
}
.book .form__input {
width: 100%;
padding: 1rem 1.3rem;
font-size: 1.5rem;
}
.book .form__button {
text-align: center;
margin-top: 5rem;
}
@media (max-width: 56.25em) {
.book .form__responsive {
margin-bottom: 2rem;
}
}
/*-----------------------------
FOOTER
-------------------------------*/
.footer {
margin-top: 16rem;
background-color: #151515;
color: #fff;
padding: 5rem 0;
}
@media (max-width: 56.25em) {
.footer__responsive {
width: 100% !important;
text-align: center;
}
.footer__responsive:not(:last-child) {
margin-bottom: 2rem;
}
}
@media (min-width: 56.25em) and (max-width: 64em) {
.footer {
padding: 5rem 3rem;
}
}
.footer__link {
color: #fff;
}
.footer__box {
float: right;
}
@media (max-width: 56.25em) {
.footer__box {
margin: 0 auto;
float: none;
}
}
.footer__icon {
width: 2rem;
height: 2rem;
display: inline-block;
}
.footer__icon--img {
width: 100%;
height: 100%;
color: #fff;
}
.footer__icon:not(:last-child) {
margin-right: 1rem;
}
/*-----------------------------
POPUP
-------------------------------*/
.popup {
height: 100vh;
width: 100%;
position: fixed;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 999;
opacity: 0;
visibility: hidden;
}
.popup:target {
opacity: 1;
visibility: visible;
}
.popup__content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 75%;
background-color: #fff;
box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
border-radius: 3px;
overflow: hidden;
backface-visibility: hidden;
opacity: 0;
transform: translate(-50%, -50%) scale(0.25);
transition: all .5s .2s;
display: table;
}
.popup:target .popup__content {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.popup__left {
width: 66.6666667%;
height: 50rem;
display: table-cell;
}
@media (max-width: 56.25em) {
.popup__left {
width: 100%;
display: block;
height: 30rem;
}
}
.popup__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.popup__right {
width: 33.333333%;
display: table-cell;
vertical-align: middle;
padding: 0 3rem;
}
@media (max-width: 56.25em) {
.popup__right {
width: 100%;
display: block;
padding: 3rem 3rem;
}
}
.popup__close:link, .popup__close:visited {
color: #151515;
position: absolute;
top: 3rem;
right: 2rem;
font-size: 3rem;
text-decoration: none;
display: inline-block;
transition: all .2s;
line-height: 0;
}
.popup__close:hover {
color: #F17B15;
}
@media (max-width: 56.25em) {
.popup__close:link, .popup__close:visited {
color: #fff;
}
}
| 0.399109 | 0.072178 |
/* Google Fonts
Lato - main title
Open sans - paragraph
*/
/* Image sizes: 1000 x 600 */
body {
overflow-x: hidden;
font-family: "Open Sans", sans-serif;
}
p {
line-height: 1.75;
}
a {
color: #ff8c00;
}
a:hover {
color: #fec503;
}
.text-primary {
color: #ff8c00 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 700;
font-family: "Lato", sans-serif;
}
h1 {
font-size: 3rem;
}
@media screen and (max-width: 414px) {
h1 {
font-size: 1.5rem;
}
}
/* section {
padding: 100px 0;
} */
section h2.section-heading {
font-size: 40px;
margin-top: 0;
margin-bottom: 15px;
}
section h3.section-subheading {
font-size: 20px;
font-weight: 400;
font-style: italic;
margin-bottom: 50px;
text-transform: none;
font-family: "Lato", sans-serif;
}
@media screen and (min-width: 768px) {
section {
padding: 100px 0 25px 0;
}
.hero {
padding: 150px 0 100px 0;
}
}
.btn {
font-family: "Lato", sans-serif;
font-weight: 700;
}
.btn-xl {
font-size: 18px;
padding: 20px 40px;
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-chosen {
background-color: #fec810 !important;
border-color: #fec810 !important;
color: white;
}
.btn-primary {
background-color: #ff8c00;
border-color: #ff8c00;
}
.btn-primary:active,
.btn-primary:focus {
box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
}
::-moz-selection {
background: #ff6600;
text-shadow: none;
}
::selection {
background: #ff6600;
text-shadow: none;
}
img::selection {
background: transparent;
}
img::-moz-selection {
background: transparent;
}
/* Navbar */
#mainNav {
background-color: #ffffff;
padding: 0 10px;
}
#mainNav .navbar-toggler {
font-size: 12px;
right: 0;
padding: 13px;
text-transform: uppercase;
color: white;
border: 0;
background-color: #ff8c00;
font-family: "Lato", sans-serif;
}
@media screen and (max-width: 575px) {
button.navbar-toggler.navbar-toggler-right {
margin-top: 10px;
margin-left: 15px;
}
#navbarResponsive {
margin-left: 15px;
}
.fa-2x {
font-size: 1em;
}
section h2.section-heading {
margin-top: 20px;
}
}
#mainNav .navbar-brand {
font-family: "Lato", sans-serif;
}
#mainNav img.logo {
position: relative;
}
#mainNav .navbar-brand.active,
#mainNav .navbar-brand:active,
#mainNav .navbar-brand:focus,
#mainNav .navbar-brand:hover,
#mainNav .dropdown:hover {
color: #fec503;
}
#mainNav .navbar-nav .nav-item .nav-link {
font-size: 96%;
font-weight: 800;
padding: 0.75em 0;
letter-spacing: 1px;
color: #202020;
font-family: "Lato", sans-serif;
}
#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
color: #ff8c00;
}
#mainNav .nav-search {
}
@media screen and (min-width: 992px) {
#mainNav {
padding-top: 25px;
padding-bottom: 25px;
-webkit-transition: padding-top 0.3s, padding-bottom 0.3s;
-moz-transition: padding-top 0.3s, padding-bottom 0.3s;
transition: padding-top 0.3s, padding-bottom 0.3s;
border: none;
background-color: transparent;
}
#mainNav .navbar-brand {
font-size: 1.75em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
#mainNav .navbar-nav .nav-item .nav-link {
padding: 1.1em 1em !important;
}
#mainNav.navbar-shrink {
padding-top: 0;
padding-bottom: 0;
background-color: #ffffff;
}
#mainNav.navbar-shrink .navbar-brand {
font-size: 1.25em;
padding: 12px 0;
}
}
/* Carousel Section */
.carousel-caption {
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
max-width: 1000px;
}
.carousel-control-next {
background-image: linear-gradient(
to right,
rgba(0, 0, 0, 0.0001) 0%,
rgba(0, 0, 0, 0.2) 100%
);
}
.carousel-control-prev {
background-image: linear-gradient(
to right,
rgba(0, 0, 0, 0.2) 0%,
rgba(0, 0, 0, 0.0001) 100%
);
}
@media (min-width: 768px) {
/* .intro-text .intro-lead-in {
font-size: 50px;
font-style: italic;
line-height: 50px;
margin-bottom: 160px;
font-family: "Lato", sans-serif;
}
.intro-text .intro-heading {
font-size: 75px;
font-weight: 700;
line-height: 75px;
margin: 50px;
font-family: "Lato", sans-serif;
} */
.btn-heading {
font-size: 18px;
padding: 20px 40px;
}
}
.border {
background-color: #3f5a6f47;
border: none !important;
}
/* end of Carousel Section */
/* Section Headings */
.service-heading {
margin: 15px 0;
text-transform: none;
}
.services {
color: #202020;
}
.portfolio-item {
right: 0;
margin: 0 0 15px;
}
.portfolio-item .portfolio-link {
position: relative;
display: block;
max-width: 400px;
margin: 0 auto;
cursor: pointer;
}
.portfolio-item .portfolio-link .portfolio-hover {
position: absolute;
width: 100%;
height: 100%;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
transition: all ease 0.5s;
opacity: 0;
background: rgba(254, 209, 54, 0.9);
}
.portfolio-item .portfolio-link .portfolio-hover:hover {
opacity: 1;
}
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
font-size: 20px;
position: absolute;
top: 50%;
width: 100%;
height: 20px;
margin-top: -12px;
text-align: center;
color: white;
}
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
margin-top: -12px;
}
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
margin: 0;
}
.portfolio-item .portfolio-caption {
max-width: 400px;
margin: 0 auto;
padding: 25px;
text-align: center;
}
.portfolio-caption h4 {
margin: 0;
text-transform: none;
text-align: center;
}
#get-involved #get-educated * {
z-index: 2;
}
@media screen and (min-width: 767px) {
#get-involved #get-educated .portfolio-item {
margin: 0 0 30px;
}
}
/* Start Here */
.container {
max-width: 1280px;
}
.start-here {
padding: 100px 0 10px 0;
}
.start-here-title {
padding-top: 40px;
}
.start-here-subtitle {
margin-bottom: 20px !important;
}
.rounded {
border-radius: 0.25rem;
padding: 20px;
}
.bg-light-faded {
background-color: #f8f9fa;
opacity: 0.9;
position: relative;
bottom: 59px;
}
.test {
color: #f8f9fa;
}
.exercise-fitness-text {
padding: 10px 30px 25px 30px;
}
/* Exercise Counseling and Classes */
.exercise-fitness {
position: relative;
bottom: 40px;
}
.tcl-logo {
background: transparent;
}
/* Fitness Programs */
.start-here-subheading,
.fitness-subheading {
font-size: 20px;
font-weight: 400;
font-style: italic;
margin-bottom: 25px;
line-height: 30px;
text-transform: none;
font-family: "Lato", sans-serif;
}
.membership-hold-cancel {
margin-top: 50px;
}
/* Modals */
.portfolio-modal {
padding-right: 0px !important;
}
.portfolio-modal .modal-dialog {
margin: 1rem;
max-width: 100vw;
}
.portfolio-modal .modal-content {
padding: 50px 0;
text-align: center;
}
.portfolio-modal .modal-content h2 {
font-size: 3em;
margin-bottom: 15px;
}
.portfolio-modal .modal-content p {
margin-bottom: 30px;
}
.portfolio-modal .modal-content p.item-intro {
font-size: 16px;
font-style: italic;
margin: 20px 0 30px;
font-family: "Lato", sans-serif;
}
.portfolio-modal .modal-content ul.list-inline {
margin-top: 0;
margin-bottom: 30px;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content button {
cursor: pointer;
}
.portfolio-modal .close-modal {
position: absolute;
top: 25px;
right: 25px;
width: 75px;
height: 75px;
cursor: pointer;
background-color: transparent;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
/* Safari and Chrome */
z-index: 1051;
width: 1px;
height: 75px;
margin-left: 35px;
/* IE 9 */
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
background-color: #212529;
}
.portfolio-modal .close-modal .lr .rl {
/* Safari and Chrome */
z-index: 1052;
width: 1px;
height: 75px;
/* IE 9 */
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
background-color: #212529;
}
/* Exercise Counseling Sign Up */
.excounseling-signup {
margin-top: 15px;
}
.excounseling-signup-form {
margin-top: 50px;
}
.signup-done {
margin: 30px;
}
.thankyou-img {
margin: 10px;
}
.thankyou-text {
margin: 0 80px;
}
/* Exercise Counseling Locations */
.card-one-line-title {
padding: 1rem;
}
.locations-row {
margin-top: 15px;
margin-bottom: 15px;
}
/* Research and Articles */
.research-articles {
margin: 20px 0;
}
/* Exercise Videos */
.video-header {
font-weight: 900;
}
.video-responsive {
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
height: 0;
}
.video-responsive iframe {
left: 0;
top: 0;
height: 100%;
width: 100%;
position: absolute;
}
.sidebar {
position: relative;
z-index: 1;
width: fit-content;
}
/* Donate */
.donate-image {
background-image: url("../build/img/donate/hands-heart.jpg");
background-size: contain;
}
.donation-amount {
padding: 2rem 0 1rem 0;
}
.donate-other {
width: 22rem;
font-size: 2rem;
text-align: center;
margin-right: 0.25rem;
}
.other-input-box {
position: absolute;
height: 70px;
right: 17.5rem;
}
.close-icon {
cursor: pointer;
position: relative;
right: 2.4rem;
top: 0.25rem;
width: 5%;
height: 1.5rem;
}
.hide {
display: none;
}
.unhide {
display: block;
}
.donate-options {
padding-top: 1rem;
padding-bottom: 1rem;
}
.donate-border {
background-color: none;
border: none !important;
}
.form-check-inline {
padding-right: 3rem;
}
.credit-card {
padding-top: 1rem;
padding-bottom: 1rem;
}
.dedication-dropdown {
margin-left: 0.5rem;
}
.tax-id {
margin: 1rem 0;
text-align: center;
}
.paypal {
width: 10%;
}
/* Contact */
section#contact {
background-color: #212529;
background-image: url("../build/img/map-image.png");
background-repeat: no-repeat;
background-position: center;
}
section#contact .section-heading {
color: #fff;
}
/* Footer */
footer {
padding: 25px 0;
text-align: center;
}
footer span.copyright {
font-size: 90%;
line-height: 40px;
text-transform: none;
font-family: "Lato", sans-serif;
}
footer ul.quicklinks {
font-size: 90%;
line-height: 40px;
margin-bottom: 0;
text-transform: none;
font-family: "Lato", sans-serif;
}
/* Social Media */
ul.social-buttons {
margin-bottom: 0;
}
ul.social-buttons li a {
font-size: 20px;
line-height: 40px;
display: block;
width: 40px;
height: 40px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
color: white;
border-radius: 100%;
outline: none;
background-color: #212529;
}
ul.social-buttons li a:active,
ul.social-buttons li a:focus,
ul.social-buttons li a:hover {
background-color: #fed136;
}
.thanks {
font-size: 0.8em;
text-align: center;
margin: 10px;
padding-top: 15px;
border-top: 1px solid lightgrey;
}
|
css/sunflower.css
|
/* Google Fonts
Lato - main title
Open sans - paragraph
*/
/* Image sizes: 1000 x 600 */
body {
overflow-x: hidden;
font-family: "Open Sans", sans-serif;
}
p {
line-height: 1.75;
}
a {
color: #ff8c00;
}
a:hover {
color: #fec503;
}
.text-primary {
color: #ff8c00 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 700;
font-family: "Lato", sans-serif;
}
h1 {
font-size: 3rem;
}
@media screen and (max-width: 414px) {
h1 {
font-size: 1.5rem;
}
}
/* section {
padding: 100px 0;
} */
section h2.section-heading {
font-size: 40px;
margin-top: 0;
margin-bottom: 15px;
}
section h3.section-subheading {
font-size: 20px;
font-weight: 400;
font-style: italic;
margin-bottom: 50px;
text-transform: none;
font-family: "Lato", sans-serif;
}
@media screen and (min-width: 768px) {
section {
padding: 100px 0 25px 0;
}
.hero {
padding: 150px 0 100px 0;
}
}
.btn {
font-family: "Lato", sans-serif;
font-weight: 700;
}
.btn-xl {
font-size: 18px;
padding: 20px 40px;
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-chosen {
background-color: #fec810 !important;
border-color: #fec810 !important;
color: white;
}
.btn-primary {
background-color: #ff8c00;
border-color: #ff8c00;
}
.btn-primary:active,
.btn-primary:focus {
box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
}
::-moz-selection {
background: #ff6600;
text-shadow: none;
}
::selection {
background: #ff6600;
text-shadow: none;
}
img::selection {
background: transparent;
}
img::-moz-selection {
background: transparent;
}
/* Navbar */
#mainNav {
background-color: #ffffff;
padding: 0 10px;
}
#mainNav .navbar-toggler {
font-size: 12px;
right: 0;
padding: 13px;
text-transform: uppercase;
color: white;
border: 0;
background-color: #ff8c00;
font-family: "Lato", sans-serif;
}
@media screen and (max-width: 575px) {
button.navbar-toggler.navbar-toggler-right {
margin-top: 10px;
margin-left: 15px;
}
#navbarResponsive {
margin-left: 15px;
}
.fa-2x {
font-size: 1em;
}
section h2.section-heading {
margin-top: 20px;
}
}
#mainNav .navbar-brand {
font-family: "Lato", sans-serif;
}
#mainNav img.logo {
position: relative;
}
#mainNav .navbar-brand.active,
#mainNav .navbar-brand:active,
#mainNav .navbar-brand:focus,
#mainNav .navbar-brand:hover,
#mainNav .dropdown:hover {
color: #fec503;
}
#mainNav .navbar-nav .nav-item .nav-link {
font-size: 96%;
font-weight: 800;
padding: 0.75em 0;
letter-spacing: 1px;
color: #202020;
font-family: "Lato", sans-serif;
}
#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
color: #ff8c00;
}
#mainNav .nav-search {
}
@media screen and (min-width: 992px) {
#mainNav {
padding-top: 25px;
padding-bottom: 25px;
-webkit-transition: padding-top 0.3s, padding-bottom 0.3s;
-moz-transition: padding-top 0.3s, padding-bottom 0.3s;
transition: padding-top 0.3s, padding-bottom 0.3s;
border: none;
background-color: transparent;
}
#mainNav .navbar-brand {
font-size: 1.75em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
#mainNav .navbar-nav .nav-item .nav-link {
padding: 1.1em 1em !important;
}
#mainNav.navbar-shrink {
padding-top: 0;
padding-bottom: 0;
background-color: #ffffff;
}
#mainNav.navbar-shrink .navbar-brand {
font-size: 1.25em;
padding: 12px 0;
}
}
/* Carousel Section */
.carousel-caption {
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
max-width: 1000px;
}
.carousel-control-next {
background-image: linear-gradient(
to right,
rgba(0, 0, 0, 0.0001) 0%,
rgba(0, 0, 0, 0.2) 100%
);
}
.carousel-control-prev {
background-image: linear-gradient(
to right,
rgba(0, 0, 0, 0.2) 0%,
rgba(0, 0, 0, 0.0001) 100%
);
}
@media (min-width: 768px) {
/* .intro-text .intro-lead-in {
font-size: 50px;
font-style: italic;
line-height: 50px;
margin-bottom: 160px;
font-family: "Lato", sans-serif;
}
.intro-text .intro-heading {
font-size: 75px;
font-weight: 700;
line-height: 75px;
margin: 50px;
font-family: "Lato", sans-serif;
} */
.btn-heading {
font-size: 18px;
padding: 20px 40px;
}
}
.border {
background-color: #3f5a6f47;
border: none !important;
}
/* end of Carousel Section */
/* Section Headings */
.service-heading {
margin: 15px 0;
text-transform: none;
}
.services {
color: #202020;
}
.portfolio-item {
right: 0;
margin: 0 0 15px;
}
.portfolio-item .portfolio-link {
position: relative;
display: block;
max-width: 400px;
margin: 0 auto;
cursor: pointer;
}
.portfolio-item .portfolio-link .portfolio-hover {
position: absolute;
width: 100%;
height: 100%;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
transition: all ease 0.5s;
opacity: 0;
background: rgba(254, 209, 54, 0.9);
}
.portfolio-item .portfolio-link .portfolio-hover:hover {
opacity: 1;
}
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
font-size: 20px;
position: absolute;
top: 50%;
width: 100%;
height: 20px;
margin-top: -12px;
text-align: center;
color: white;
}
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
margin-top: -12px;
}
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
margin: 0;
}
.portfolio-item .portfolio-caption {
max-width: 400px;
margin: 0 auto;
padding: 25px;
text-align: center;
}
.portfolio-caption h4 {
margin: 0;
text-transform: none;
text-align: center;
}
#get-involved #get-educated * {
z-index: 2;
}
@media screen and (min-width: 767px) {
#get-involved #get-educated .portfolio-item {
margin: 0 0 30px;
}
}
/* Start Here */
.container {
max-width: 1280px;
}
.start-here {
padding: 100px 0 10px 0;
}
.start-here-title {
padding-top: 40px;
}
.start-here-subtitle {
margin-bottom: 20px !important;
}
.rounded {
border-radius: 0.25rem;
padding: 20px;
}
.bg-light-faded {
background-color: #f8f9fa;
opacity: 0.9;
position: relative;
bottom: 59px;
}
.test {
color: #f8f9fa;
}
.exercise-fitness-text {
padding: 10px 30px 25px 30px;
}
/* Exercise Counseling and Classes */
.exercise-fitness {
position: relative;
bottom: 40px;
}
.tcl-logo {
background: transparent;
}
/* Fitness Programs */
.start-here-subheading,
.fitness-subheading {
font-size: 20px;
font-weight: 400;
font-style: italic;
margin-bottom: 25px;
line-height: 30px;
text-transform: none;
font-family: "Lato", sans-serif;
}
.membership-hold-cancel {
margin-top: 50px;
}
/* Modals */
.portfolio-modal {
padding-right: 0px !important;
}
.portfolio-modal .modal-dialog {
margin: 1rem;
max-width: 100vw;
}
.portfolio-modal .modal-content {
padding: 50px 0;
text-align: center;
}
.portfolio-modal .modal-content h2 {
font-size: 3em;
margin-bottom: 15px;
}
.portfolio-modal .modal-content p {
margin-bottom: 30px;
}
.portfolio-modal .modal-content p.item-intro {
font-size: 16px;
font-style: italic;
margin: 20px 0 30px;
font-family: "Lato", sans-serif;
}
.portfolio-modal .modal-content ul.list-inline {
margin-top: 0;
margin-bottom: 30px;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content button {
cursor: pointer;
}
.portfolio-modal .close-modal {
position: absolute;
top: 25px;
right: 25px;
width: 75px;
height: 75px;
cursor: pointer;
background-color: transparent;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
/* Safari and Chrome */
z-index: 1051;
width: 1px;
height: 75px;
margin-left: 35px;
/* IE 9 */
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
background-color: #212529;
}
.portfolio-modal .close-modal .lr .rl {
/* Safari and Chrome */
z-index: 1052;
width: 1px;
height: 75px;
/* IE 9 */
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
background-color: #212529;
}
/* Exercise Counseling Sign Up */
.excounseling-signup {
margin-top: 15px;
}
.excounseling-signup-form {
margin-top: 50px;
}
.signup-done {
margin: 30px;
}
.thankyou-img {
margin: 10px;
}
.thankyou-text {
margin: 0 80px;
}
/* Exercise Counseling Locations */
.card-one-line-title {
padding: 1rem;
}
.locations-row {
margin-top: 15px;
margin-bottom: 15px;
}
/* Research and Articles */
.research-articles {
margin: 20px 0;
}
/* Exercise Videos */
.video-header {
font-weight: 900;
}
.video-responsive {
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
height: 0;
}
.video-responsive iframe {
left: 0;
top: 0;
height: 100%;
width: 100%;
position: absolute;
}
.sidebar {
position: relative;
z-index: 1;
width: fit-content;
}
/* Donate */
.donate-image {
background-image: url("../build/img/donate/hands-heart.jpg");
background-size: contain;
}
.donation-amount {
padding: 2rem 0 1rem 0;
}
.donate-other {
width: 22rem;
font-size: 2rem;
text-align: center;
margin-right: 0.25rem;
}
.other-input-box {
position: absolute;
height: 70px;
right: 17.5rem;
}
.close-icon {
cursor: pointer;
position: relative;
right: 2.4rem;
top: 0.25rem;
width: 5%;
height: 1.5rem;
}
.hide {
display: none;
}
.unhide {
display: block;
}
.donate-options {
padding-top: 1rem;
padding-bottom: 1rem;
}
.donate-border {
background-color: none;
border: none !important;
}
.form-check-inline {
padding-right: 3rem;
}
.credit-card {
padding-top: 1rem;
padding-bottom: 1rem;
}
.dedication-dropdown {
margin-left: 0.5rem;
}
.tax-id {
margin: 1rem 0;
text-align: center;
}
.paypal {
width: 10%;
}
/* Contact */
section#contact {
background-color: #212529;
background-image: url("../build/img/map-image.png");
background-repeat: no-repeat;
background-position: center;
}
section#contact .section-heading {
color: #fff;
}
/* Footer */
footer {
padding: 25px 0;
text-align: center;
}
footer span.copyright {
font-size: 90%;
line-height: 40px;
text-transform: none;
font-family: "Lato", sans-serif;
}
footer ul.quicklinks {
font-size: 90%;
line-height: 40px;
margin-bottom: 0;
text-transform: none;
font-family: "Lato", sans-serif;
}
/* Social Media */
ul.social-buttons {
margin-bottom: 0;
}
ul.social-buttons li a {
font-size: 20px;
line-height: 40px;
display: block;
width: 40px;
height: 40px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
color: white;
border-radius: 100%;
outline: none;
background-color: #212529;
}
ul.social-buttons li a:active,
ul.social-buttons li a:focus,
ul.social-buttons li a:hover {
background-color: #fed136;
}
.thanks {
font-size: 0.8em;
text-align: center;
margin: 10px;
padding-top: 15px;
border-top: 1px solid lightgrey;
}
| 0.344443 | 0.056314 |
body {
margin:0px;
background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:static;
left:auto;
width:1366px;
margin-left:0;
margin-right:0;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u314_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:200px;
height:193px;
}
#u314 {
border-width:0px;
position:absolute;
left:-27px;
top:-23px;
width:200px;
height:193px;
display:flex;
opacity:0.6;
}
#u314 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u314_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u315_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:577px;
height:433px;
}
#u315 {
border-width:0px;
position:absolute;
left:395px;
top:192px;
width:577px;
height:433px;
display:flex;
opacity:0.6;
}
#u315 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u315_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u316_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316 {
border-width:0px;
position:absolute;
left:1159px;
top:7px;
width:193px;
height:91px;
display:flex;
opacity:0.6;
}
#u316 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u316_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u317_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:155px;
height:178px;
}
#u317 {
border-width:0px;
position:absolute;
left:1197px;
top:585px;
width:155px;
height:178px;
display:flex;
opacity:0.6;
}
#u317 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u317_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u318_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318 {
border-width:0px;
position:absolute;
left:9px;
top:215px;
width:99px;
height:379px;
display:flex;
opacity:0.6;
}
#u318 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u318_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u319_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u319 {
border-width:0px;
position:absolute;
left:19px;
top:221px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u319 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u319_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u320_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u320 {
border-width:0px;
position:absolute;
left:19px;
top:317px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u320 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u320_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u321_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u321 {
border-width:0px;
position:absolute;
left:19px;
top:413px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u321 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u321_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u322_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322 {
border-width:0px;
position:absolute;
left:9px;
top:664px;
width:387px;
height:99px;
display:flex;
opacity:0.6;
}
#u322 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u322_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u323_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u323 {
border-width:0px;
position:absolute;
left:21px;
top:671px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u323 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u323_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u324_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u324 {
border-width:0px;
position:absolute;
left:117px;
top:671px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u324 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u324_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u325_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u325 {
border-width:0px;
position:absolute;
left:213px;
top:671px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u325 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u325_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u326_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u326 {
border-width:0px;
position:absolute;
left:19px;
top:508px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u326 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u326_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u327_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u327 {
border-width:0px;
position:absolute;
left:1261px;
top:13px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u327 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u327_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u328_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u328 {
border-width:0px;
position:absolute;
left:1169px;
top:13px;
width:79px;
height:79px;
display:flex;
}
#u328 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u328_img.mouseOver {
}
#u328.mouseOver {
opacity:0.7;
}
#u328_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u329_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329 {
border-width:0px;
position:absolute;
left:467px;
top:245px;
width:468px;
height:269px;
display:flex;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u329_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u330_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330 {
border-width:0px;
position:absolute;
left:1200px;
top:116px;
width:140px;
height:51px;
display:flex;
opacity:0.6;
font-size:18px;
color:#000000;
}
#u330 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u330_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u331_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u331 {
border-width:0px;
position:absolute;
left:309px;
top:671px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u331 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u331_img.mouseOver {
}
#u331.mouseOver {
opacity:0.7;
}
#u331_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u332_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332 {
border-width:0px;
position:absolute;
left:402px;
top:68px;
width:570px;
height:108px;
display:flex;
opacity:0.6;
font-size:47px;
color:#000000;
text-align:center;
}
#u332 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u332_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u333_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:637px;
height:118px;
}
#u333 {
border-width:0px;
position:absolute;
left:365px;
top:135px;
width:637px;
height:118px;
display:flex;
opacity:0.6;
}
#u333 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u333_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
body.a { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:1200px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.a {
}
#u314_img.a {
}
#u314.a {
}
#u314_text.a {
}
#u314 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.a {
}
#u315_img.a {
}
#u315.a {
}
#u315_text.a {
}
#u315 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.a {
}
#u316_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.a {
}
#u316_text.a {
}
#u316 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.a {
}
#u317_img.a {
}
#u317.a {
}
#u317_text.a {
}
#u317 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.a {
}
#u318_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.a {
}
#u318_text.a {
}
#u318 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.a {
}
#u319_img.a {
}
#u319.a {
}
#u319_text.a {
}
#u319 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.a {
}
#u320_img.a {
}
#u320.a {
}
#u320_text.a {
}
#u320 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.a {
}
#u321_img.a {
}
#u321.a {
}
#u321_text.a {
}
#u321 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.a {
}
#u322_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.a {
}
#u322_text.a {
}
#u322 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.a {
}
#u323_img.a {
}
#u323.a {
}
#u323_text.a {
}
#u323 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.a {
}
#u324_img.a {
}
#u324.a {
}
#u324_text.a {
}
#u324 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.a {
}
#u325_img.a {
}
#u325.a {
}
#u325_text.a {
}
#u325 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.a {
}
#u326_img.a {
}
#u326.a {
}
#u326_text.a {
}
#u326 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.a {
}
#u327_img.a {
}
#u327.a {
}
#u327_text.a {
}
#u327 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.a {
}
#u328_img.a {
}
#u328.a {
}
#u328_img.a.mouseOver {
}
#u328.a.mouseOver {
}
#u328_text.a {
}
#u328 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.a {
}
#u329_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.a {
}
#u329_text.a {
}
#u329 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.a {
}
#u330_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.a {
}
#u330_text.a {
}
#u330 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.a {
}
#u331_img.a {
}
#u331.a {
}
#u331_img.a.mouseOver {
}
#u331.a.mouseOver {
}
#u331_text.a {
}
#u331 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.a {
}
#u332_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.a {
}
#u332_text.a {
}
#u332 .text.a {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.a {
}
#u333_img.a {
}
#u333.a {
}
#u333_text.a {
}
#u333 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
body.b { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:1024px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.b {
}
#u314_img.b {
}
#u314.b {
}
#u314_text.b {
}
#u314 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.b {
}
#u315_img.b {
}
#u315.b {
}
#u315_text.b {
}
#u315 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.b {
}
#u316_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.b {
}
#u316_text.b {
}
#u316 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.b {
}
#u317_img.b {
}
#u317.b {
}
#u317_text.b {
}
#u317 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.b {
}
#u318_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.b {
}
#u318_text.b {
}
#u318 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.b {
}
#u319_img.b {
}
#u319.b {
}
#u319_text.b {
}
#u319 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.b {
}
#u320_img.b {
}
#u320.b {
}
#u320_text.b {
}
#u320 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.b {
}
#u321_img.b {
}
#u321.b {
}
#u321_text.b {
}
#u321 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.b {
}
#u322_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.b {
}
#u322_text.b {
}
#u322 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.b {
}
#u323_img.b {
}
#u323.b {
}
#u323_text.b {
}
#u323 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.b {
}
#u324_img.b {
}
#u324.b {
}
#u324_text.b {
}
#u324 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.b {
}
#u325_img.b {
}
#u325.b {
}
#u325_text.b {
}
#u325 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.b {
}
#u326_img.b {
}
#u326.b {
}
#u326_text.b {
}
#u326 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.b {
}
#u327_img.b {
}
#u327.b {
}
#u327_text.b {
}
#u327 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.b {
}
#u328_img.b {
}
#u328.b {
}
#u328_img.b.mouseOver {
}
#u328.b.mouseOver {
}
#u328_text.b {
}
#u328 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.b {
}
#u329_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.b {
}
#u329_text.b {
}
#u329 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.b {
}
#u330_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.b {
}
#u330_text.b {
}
#u330 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.b {
}
#u331_img.b {
}
#u331.b {
}
#u331_img.b.mouseOver {
}
#u331.b.mouseOver {
}
#u331_text.b {
}
#u331 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.b {
}
#u332_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.b {
}
#u332_text.b {
}
#u332 .text.b {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.b {
}
#u333_img.b {
}
#u333.b {
}
#u333_text.b {
}
#u333 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
body.c { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:768px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.c {
}
#u314_img.c {
}
#u314.c {
}
#u314_text.c {
}
#u314 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.c {
}
#u315_img.c {
}
#u315.c {
}
#u315_text.c {
}
#u315 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.c {
}
#u316_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.c {
}
#u316_text.c {
}
#u316 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.c {
}
#u317_img.c {
}
#u317.c {
}
#u317_text.c {
}
#u317 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.c {
}
#u318_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.c {
}
#u318_text.c {
}
#u318 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.c {
}
#u319_img.c {
}
#u319.c {
}
#u319_text.c {
}
#u319 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.c {
}
#u320_img.c {
}
#u320.c {
}
#u320_text.c {
}
#u320 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.c {
}
#u321_img.c {
}
#u321.c {
}
#u321_text.c {
}
#u321 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.c {
}
#u322_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.c {
}
#u322_text.c {
}
#u322 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.c {
}
#u323_img.c {
}
#u323.c {
}
#u323_text.c {
}
#u323 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.c {
}
#u324_img.c {
}
#u324.c {
}
#u324_text.c {
}
#u324 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.c {
}
#u325_img.c {
}
#u325.c {
}
#u325_text.c {
}
#u325 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.c {
}
#u326_img.c {
}
#u326.c {
}
#u326_text.c {
}
#u326 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.c {
}
#u327_img.c {
}
#u327.c {
}
#u327_text.c {
}
#u327 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.c {
}
#u328_img.c {
}
#u328.c {
}
#u328_img.c.mouseOver {
}
#u328.c.mouseOver {
}
#u328_text.c {
}
#u328 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.c {
}
#u329_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.c {
}
#u329_text.c {
}
#u329 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.c {
}
#u330_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.c {
}
#u330_text.c {
}
#u330 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.c {
}
#u331_img.c {
}
#u331.c {
}
#u331_img.c.mouseOver {
}
#u331.c.mouseOver {
}
#u331_text.c {
}
#u331 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.c {
}
#u332_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.c {
}
#u332_text.c {
}
#u332 .text.c {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.c {
}
#u333_img.c {
}
#u333.c {
}
#u333_text.c {
}
#u333 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
body.d { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:480px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.d {
}
#u314_img.d {
}
#u314.d {
}
#u314_text.d {
}
#u314 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.d {
}
#u315_img.d {
}
#u315.d {
}
#u315_text.d {
}
#u315 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.d {
}
#u316_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.d {
}
#u316_text.d {
}
#u316 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.d {
}
#u317_img.d {
}
#u317.d {
}
#u317_text.d {
}
#u317 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.d {
}
#u318_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.d {
}
#u318_text.d {
}
#u318 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.d {
}
#u319_img.d {
}
#u319.d {
}
#u319_text.d {
}
#u319 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.d {
}
#u320_img.d {
}
#u320.d {
}
#u320_text.d {
}
#u320 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.d {
}
#u321_img.d {
}
#u321.d {
}
#u321_text.d {
}
#u321 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.d {
}
#u322_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.d {
}
#u322_text.d {
}
#u322 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.d {
}
#u323_img.d {
}
#u323.d {
}
#u323_text.d {
}
#u323 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.d {
}
#u324_img.d {
}
#u324.d {
}
#u324_text.d {
}
#u324 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.d {
}
#u325_img.d {
}
#u325.d {
}
#u325_text.d {
}
#u325 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.d {
}
#u326_img.d {
}
#u326.d {
}
#u326_text.d {
}
#u326 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.d {
}
#u327_img.d {
}
#u327.d {
}
#u327_text.d {
}
#u327 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.d {
}
#u328_img.d {
}
#u328.d {
}
#u328_img.d.mouseOver {
}
#u328.d.mouseOver {
}
#u328_text.d {
}
#u328 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.d {
}
#u329_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.d {
}
#u329_text.d {
}
#u329 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.d {
}
#u330_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.d {
}
#u330_text.d {
}
#u330 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.d {
}
#u331_img.d {
}
#u331.d {
}
#u331_img.d.mouseOver {
}
#u331.d.mouseOver {
}
#u331_text.d {
}
#u331 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.d {
}
#u332_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.d {
}
#u332_text.d {
}
#u332 .text.d {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.d {
}
#u333_img.d {
}
#u333.d {
}
#u333_text.d {
}
#u333 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
body.e { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:320px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.e {
}
#u314_img.e {
}
#u314.e {
}
#u314_text.e {
}
#u314 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.e {
}
#u315_img.e {
}
#u315.e {
}
#u315_text.e {
}
#u315 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.e {
}
#u316_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.e {
}
#u316_text.e {
}
#u316 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.e {
}
#u317_img.e {
}
#u317.e {
}
#u317_text.e {
}
#u317 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.e {
}
#u318_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.e {
}
#u318_text.e {
}
#u318 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.e {
}
#u319_img.e {
}
#u319.e {
}
#u319_text.e {
}
#u319 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.e {
}
#u320_img.e {
}
#u320.e {
}
#u320_text.e {
}
#u320 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.e {
}
#u321_img.e {
}
#u321.e {
}
#u321_text.e {
}
#u321 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.e {
}
#u322_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.e {
}
#u322_text.e {
}
#u322 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.e {
}
#u323_img.e {
}
#u323.e {
}
#u323_text.e {
}
#u323 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.e {
}
#u324_img.e {
}
#u324.e {
}
#u324_text.e {
}
#u324 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.e {
}
#u325_img.e {
}
#u325.e {
}
#u325_text.e {
}
#u325 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.e {
}
#u326_img.e {
}
#u326.e {
}
#u326_text.e {
}
#u326 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.e {
}
#u327_img.e {
}
#u327.e {
}
#u327_text.e {
}
#u327 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.e {
}
#u328_img.e {
}
#u328.e {
}
#u328_img.e.mouseOver {
}
#u328.e.mouseOver {
}
#u328_text.e {
}
#u328 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.e {
}
#u329_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.e {
}
#u329_text.e {
}
#u329 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.e {
}
#u330_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.e {
}
#u330_text.e {
}
#u330 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.e {
}
#u331_img.e {
}
#u331.e {
}
#u331_img.e.mouseOver {
}
#u331.e.mouseOver {
}
#u331_text.e {
}
#u331 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.e {
}
#u332_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.e {
}
#u332_text.e {
}
#u332 .text.e {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.e {
}
#u333_img.e {
}
#u333.e {
}
#u333_text.e {
}
#u333 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
body.f { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:static;
left:auto;
width:800px;
margin-left:0;
margin-right:0;
text-align:left;
}
#u314.f {
}
#u314_img.f {
}
#u314.f {
}
#u314_text.f {
}
#u314 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.f {
}
#u315_img.f {
}
#u315.f {
}
#u315_text.f {
}
#u315 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.f {
}
#u316_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.f {
}
#u316_text.f {
}
#u316 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.f {
}
#u317_img.f {
}
#u317.f {
}
#u317_text.f {
}
#u317 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.f {
}
#u318_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.f {
}
#u318_text.f {
}
#u318 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.f {
}
#u319_img.f {
}
#u319.f {
}
#u319_text.f {
}
#u319 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.f {
}
#u320_img.f {
}
#u320.f {
}
#u320_text.f {
}
#u320 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.f {
}
#u321_img.f {
}
#u321.f {
}
#u321_text.f {
}
#u321 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.f {
}
#u322_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.f {
}
#u322_text.f {
}
#u322 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.f {
}
#u323_img.f {
}
#u323.f {
}
#u323_text.f {
}
#u323 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.f {
}
#u324_img.f {
}
#u324.f {
}
#u324_text.f {
}
#u324 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.f {
}
#u325_img.f {
}
#u325.f {
}
#u325_text.f {
}
#u325 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.f {
}
#u326_img.f {
}
#u326.f {
}
#u326_text.f {
}
#u326 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.f {
}
#u327_img.f {
}
#u327.f {
}
#u327_text.f {
}
#u327 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.f {
}
#u328_img.f {
}
#u328.f {
}
#u328_img.f.mouseOver {
}
#u328.f.mouseOver {
}
#u328_text.f {
}
#u328 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.f {
}
#u329_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.f {
}
#u329_text.f {
}
#u329 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.f {
}
#u330_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.f {
}
#u330_text.f {
}
#u330 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.f {
}
#u331_img.f {
}
#u331.f {
}
#u331_img.f.mouseOver {
}
#u331.f.mouseOver {
}
#u331_text.f {
}
#u331 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.f {
}
#u332_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.f {
}
#u332_text.f {
}
#u332 .text.f {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.f {
}
#u333_img.f {
}
#u333.f {
}
#u333_text.f {
}
#u333 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
|
files/busquedacompa_erodesactivado/styles.css
|
body {
margin:0px;
background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:static;
left:auto;
width:1366px;
margin-left:0;
margin-right:0;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u314_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:200px;
height:193px;
}
#u314 {
border-width:0px;
position:absolute;
left:-27px;
top:-23px;
width:200px;
height:193px;
display:flex;
opacity:0.6;
}
#u314 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u314_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u315_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:577px;
height:433px;
}
#u315 {
border-width:0px;
position:absolute;
left:395px;
top:192px;
width:577px;
height:433px;
display:flex;
opacity:0.6;
}
#u315 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u315_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u316_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316 {
border-width:0px;
position:absolute;
left:1159px;
top:7px;
width:193px;
height:91px;
display:flex;
opacity:0.6;
}
#u316 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u316_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u317_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:155px;
height:178px;
}
#u317 {
border-width:0px;
position:absolute;
left:1197px;
top:585px;
width:155px;
height:178px;
display:flex;
opacity:0.6;
}
#u317 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u317_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u318_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318 {
border-width:0px;
position:absolute;
left:9px;
top:215px;
width:99px;
height:379px;
display:flex;
opacity:0.6;
}
#u318 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u318_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u319_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u319 {
border-width:0px;
position:absolute;
left:19px;
top:221px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u319 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u319_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u320_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u320 {
border-width:0px;
position:absolute;
left:19px;
top:317px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u320 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u320_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u321_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u321 {
border-width:0px;
position:absolute;
left:19px;
top:413px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u321 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u321_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u322_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322 {
border-width:0px;
position:absolute;
left:9px;
top:664px;
width:387px;
height:99px;
display:flex;
opacity:0.6;
}
#u322 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u322_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u323_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u323 {
border-width:0px;
position:absolute;
left:21px;
top:671px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u323 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u323_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u324_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u324 {
border-width:0px;
position:absolute;
left:117px;
top:671px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u324 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u324_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u325_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u325 {
border-width:0px;
position:absolute;
left:213px;
top:671px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u325 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u325_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u326_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u326 {
border-width:0px;
position:absolute;
left:19px;
top:508px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u326 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u326_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u327_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u327 {
border-width:0px;
position:absolute;
left:1261px;
top:13px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u327 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u327_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u328_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u328 {
border-width:0px;
position:absolute;
left:1169px;
top:13px;
width:79px;
height:79px;
display:flex;
}
#u328 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u328_img.mouseOver {
}
#u328.mouseOver {
opacity:0.7;
}
#u328_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u329_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329 {
border-width:0px;
position:absolute;
left:467px;
top:245px;
width:468px;
height:269px;
display:flex;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u329_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u330_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330 {
border-width:0px;
position:absolute;
left:1200px;
top:116px;
width:140px;
height:51px;
display:flex;
opacity:0.6;
font-size:18px;
color:#000000;
}
#u330 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u330_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u331_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:79px;
height:79px;
}
#u331 {
border-width:0px;
position:absolute;
left:309px;
top:671px;
width:79px;
height:79px;
display:flex;
opacity:0.6;
}
#u331 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u331_img.mouseOver {
}
#u331.mouseOver {
opacity:0.7;
}
#u331_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u332_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332 {
border-width:0px;
position:absolute;
left:402px;
top:68px;
width:570px;
height:108px;
display:flex;
opacity:0.6;
font-size:47px;
color:#000000;
text-align:center;
}
#u332 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u332_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u333_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:637px;
height:118px;
}
#u333 {
border-width:0px;
position:absolute;
left:365px;
top:135px;
width:637px;
height:118px;
display:flex;
opacity:0.6;
}
#u333 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u333_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
body.a { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:1200px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.a {
}
#u314_img.a {
}
#u314.a {
}
#u314_text.a {
}
#u314 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.a {
}
#u315_img.a {
}
#u315.a {
}
#u315_text.a {
}
#u315 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.a {
}
#u316_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.a {
}
#u316_text.a {
}
#u316 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.a {
}
#u317_img.a {
}
#u317.a {
}
#u317_text.a {
}
#u317 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.a {
}
#u318_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.a {
}
#u318_text.a {
}
#u318 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.a {
}
#u319_img.a {
}
#u319.a {
}
#u319_text.a {
}
#u319 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.a {
}
#u320_img.a {
}
#u320.a {
}
#u320_text.a {
}
#u320 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.a {
}
#u321_img.a {
}
#u321.a {
}
#u321_text.a {
}
#u321 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.a {
}
#u322_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.a {
}
#u322_text.a {
}
#u322 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.a {
}
#u323_img.a {
}
#u323.a {
}
#u323_text.a {
}
#u323 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.a {
}
#u324_img.a {
}
#u324.a {
}
#u324_text.a {
}
#u324 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.a {
}
#u325_img.a {
}
#u325.a {
}
#u325_text.a {
}
#u325 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.a {
}
#u326_img.a {
}
#u326.a {
}
#u326_text.a {
}
#u326 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.a {
}
#u327_img.a {
}
#u327.a {
}
#u327_text.a {
}
#u327 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.a {
}
#u328_img.a {
}
#u328.a {
}
#u328_img.a.mouseOver {
}
#u328.a.mouseOver {
}
#u328_text.a {
}
#u328 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.a {
}
#u329_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.a {
}
#u329_text.a {
}
#u329 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.a {
}
#u330_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.a {
}
#u330_text.a {
}
#u330 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.a {
}
#u331_img.a {
}
#u331.a {
}
#u331_img.a.mouseOver {
}
#u331.a.mouseOver {
}
#u331_text.a {
}
#u331 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.a {
}
#u332_div.a {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.a {
}
#u332_text.a {
}
#u332 .text.a {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.a {
}
#u333_img.a {
}
#u333.a {
}
#u333_text.a {
}
#u333 .text.a {
align-self:center;
padding:2px 2px 2px 2px;
}
body.b { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:1024px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.b {
}
#u314_img.b {
}
#u314.b {
}
#u314_text.b {
}
#u314 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.b {
}
#u315_img.b {
}
#u315.b {
}
#u315_text.b {
}
#u315 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.b {
}
#u316_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.b {
}
#u316_text.b {
}
#u316 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.b {
}
#u317_img.b {
}
#u317.b {
}
#u317_text.b {
}
#u317 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.b {
}
#u318_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.b {
}
#u318_text.b {
}
#u318 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.b {
}
#u319_img.b {
}
#u319.b {
}
#u319_text.b {
}
#u319 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.b {
}
#u320_img.b {
}
#u320.b {
}
#u320_text.b {
}
#u320 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.b {
}
#u321_img.b {
}
#u321.b {
}
#u321_text.b {
}
#u321 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.b {
}
#u322_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.b {
}
#u322_text.b {
}
#u322 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.b {
}
#u323_img.b {
}
#u323.b {
}
#u323_text.b {
}
#u323 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.b {
}
#u324_img.b {
}
#u324.b {
}
#u324_text.b {
}
#u324 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.b {
}
#u325_img.b {
}
#u325.b {
}
#u325_text.b {
}
#u325 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.b {
}
#u326_img.b {
}
#u326.b {
}
#u326_text.b {
}
#u326 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.b {
}
#u327_img.b {
}
#u327.b {
}
#u327_text.b {
}
#u327 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.b {
}
#u328_img.b {
}
#u328.b {
}
#u328_img.b.mouseOver {
}
#u328.b.mouseOver {
}
#u328_text.b {
}
#u328 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.b {
}
#u329_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.b {
}
#u329_text.b {
}
#u329 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.b {
}
#u330_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.b {
}
#u330_text.b {
}
#u330 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.b {
}
#u331_img.b {
}
#u331.b {
}
#u331_img.b.mouseOver {
}
#u331.b.mouseOver {
}
#u331_text.b {
}
#u331 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.b {
}
#u332_div.b {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.b {
}
#u332_text.b {
}
#u332 .text.b {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.b {
}
#u333_img.b {
}
#u333.b {
}
#u333_text.b {
}
#u333 .text.b {
align-self:center;
padding:2px 2px 2px 2px;
}
body.c { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:768px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.c {
}
#u314_img.c {
}
#u314.c {
}
#u314_text.c {
}
#u314 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.c {
}
#u315_img.c {
}
#u315.c {
}
#u315_text.c {
}
#u315 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.c {
}
#u316_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.c {
}
#u316_text.c {
}
#u316 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.c {
}
#u317_img.c {
}
#u317.c {
}
#u317_text.c {
}
#u317 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.c {
}
#u318_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.c {
}
#u318_text.c {
}
#u318 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.c {
}
#u319_img.c {
}
#u319.c {
}
#u319_text.c {
}
#u319 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.c {
}
#u320_img.c {
}
#u320.c {
}
#u320_text.c {
}
#u320 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.c {
}
#u321_img.c {
}
#u321.c {
}
#u321_text.c {
}
#u321 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.c {
}
#u322_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.c {
}
#u322_text.c {
}
#u322 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.c {
}
#u323_img.c {
}
#u323.c {
}
#u323_text.c {
}
#u323 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.c {
}
#u324_img.c {
}
#u324.c {
}
#u324_text.c {
}
#u324 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.c {
}
#u325_img.c {
}
#u325.c {
}
#u325_text.c {
}
#u325 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.c {
}
#u326_img.c {
}
#u326.c {
}
#u326_text.c {
}
#u326 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.c {
}
#u327_img.c {
}
#u327.c {
}
#u327_text.c {
}
#u327 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.c {
}
#u328_img.c {
}
#u328.c {
}
#u328_img.c.mouseOver {
}
#u328.c.mouseOver {
}
#u328_text.c {
}
#u328 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.c {
}
#u329_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.c {
}
#u329_text.c {
}
#u329 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.c {
}
#u330_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.c {
}
#u330_text.c {
}
#u330 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.c {
}
#u331_img.c {
}
#u331.c {
}
#u331_img.c.mouseOver {
}
#u331.c.mouseOver {
}
#u331_text.c {
}
#u331 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.c {
}
#u332_div.c {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.c {
}
#u332_text.c {
}
#u332 .text.c {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.c {
}
#u333_img.c {
}
#u333.c {
}
#u333_text.c {
}
#u333 .text.c {
align-self:center;
padding:2px 2px 2px 2px;
}
body.d { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:480px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.d {
}
#u314_img.d {
}
#u314.d {
}
#u314_text.d {
}
#u314 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.d {
}
#u315_img.d {
}
#u315.d {
}
#u315_text.d {
}
#u315 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.d {
}
#u316_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.d {
}
#u316_text.d {
}
#u316 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.d {
}
#u317_img.d {
}
#u317.d {
}
#u317_text.d {
}
#u317 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.d {
}
#u318_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.d {
}
#u318_text.d {
}
#u318 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.d {
}
#u319_img.d {
}
#u319.d {
}
#u319_text.d {
}
#u319 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.d {
}
#u320_img.d {
}
#u320.d {
}
#u320_text.d {
}
#u320 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.d {
}
#u321_img.d {
}
#u321.d {
}
#u321_text.d {
}
#u321 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.d {
}
#u322_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.d {
}
#u322_text.d {
}
#u322 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.d {
}
#u323_img.d {
}
#u323.d {
}
#u323_text.d {
}
#u323 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.d {
}
#u324_img.d {
}
#u324.d {
}
#u324_text.d {
}
#u324 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.d {
}
#u325_img.d {
}
#u325.d {
}
#u325_text.d {
}
#u325 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.d {
}
#u326_img.d {
}
#u326.d {
}
#u326_text.d {
}
#u326 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.d {
}
#u327_img.d {
}
#u327.d {
}
#u327_text.d {
}
#u327 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.d {
}
#u328_img.d {
}
#u328.d {
}
#u328_img.d.mouseOver {
}
#u328.d.mouseOver {
}
#u328_text.d {
}
#u328 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.d {
}
#u329_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.d {
}
#u329_text.d {
}
#u329 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.d {
}
#u330_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.d {
}
#u330_text.d {
}
#u330 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.d {
}
#u331_img.d {
}
#u331.d {
}
#u331_img.d.mouseOver {
}
#u331.d.mouseOver {
}
#u331_text.d {
}
#u331 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.d {
}
#u332_div.d {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.d {
}
#u332_text.d {
}
#u332 .text.d {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.d {
}
#u333_img.d {
}
#u333.d {
}
#u333_text.d {
}
#u333 .text.d {
align-self:center;
padding:2px 2px 2px 2px;
}
body.e { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:relative;
left:0px;
width:320px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#u314.e {
}
#u314_img.e {
}
#u314.e {
}
#u314_text.e {
}
#u314 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.e {
}
#u315_img.e {
}
#u315.e {
}
#u315_text.e {
}
#u315 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.e {
}
#u316_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.e {
}
#u316_text.e {
}
#u316 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.e {
}
#u317_img.e {
}
#u317.e {
}
#u317_text.e {
}
#u317 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.e {
}
#u318_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.e {
}
#u318_text.e {
}
#u318 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.e {
}
#u319_img.e {
}
#u319.e {
}
#u319_text.e {
}
#u319 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.e {
}
#u320_img.e {
}
#u320.e {
}
#u320_text.e {
}
#u320 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.e {
}
#u321_img.e {
}
#u321.e {
}
#u321_text.e {
}
#u321 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.e {
}
#u322_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.e {
}
#u322_text.e {
}
#u322 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.e {
}
#u323_img.e {
}
#u323.e {
}
#u323_text.e {
}
#u323 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.e {
}
#u324_img.e {
}
#u324.e {
}
#u324_text.e {
}
#u324 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.e {
}
#u325_img.e {
}
#u325.e {
}
#u325_text.e {
}
#u325 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.e {
}
#u326_img.e {
}
#u326.e {
}
#u326_text.e {
}
#u326 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.e {
}
#u327_img.e {
}
#u327.e {
}
#u327_text.e {
}
#u327 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.e {
}
#u328_img.e {
}
#u328.e {
}
#u328_img.e.mouseOver {
}
#u328.e.mouseOver {
}
#u328_text.e {
}
#u328 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.e {
}
#u329_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.e {
}
#u329_text.e {
}
#u329 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.e {
}
#u330_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.e {
}
#u330_text.e {
}
#u330 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.e {
}
#u331_img.e {
}
#u331.e {
}
#u331_img.e.mouseOver {
}
#u331.e.mouseOver {
}
#u331_text.e {
}
#u331 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.e {
}
#u332_div.e {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.e {
}
#u332_text.e {
}
#u332 .text.e {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.e {
}
#u333_img.e {
}
#u333.e {
}
#u333_text.e {
}
#u333 .text.e {
align-self:center;
padding:2px 2px 2px 2px;
}
body.f { background-color:rgba(111, 151, 174, 0.52156862745098);
background-image:none;
position:static;
left:auto;
width:800px;
margin-left:0;
margin-right:0;
text-align:left;
}
#u314.f {
}
#u314_img.f {
}
#u314.f {
}
#u314_text.f {
}
#u314 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u315.f {
}
#u315_img.f {
}
#u315.f {
}
#u315_text.f {
}
#u315 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u316.f {
}
#u316_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:193px;
height:91px;
background:inherit;
background-color:rgba(254, 255, 193, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u316.f {
}
#u316_text.f {
}
#u316 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u317.f {
}
#u317_img.f {
}
#u317.f {
}
#u317_text.f {
}
#u317 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u318.f {
}
#u318_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:379px;
background:inherit;
background-color:rgba(169, 255, 168, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u318.f {
}
#u318_text.f {
}
#u318 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u319.f {
}
#u319_img.f {
}
#u319.f {
}
#u319_text.f {
}
#u319 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u320.f {
}
#u320_img.f {
}
#u320.f {
}
#u320_text.f {
}
#u320 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u321.f {
}
#u321_img.f {
}
#u321.f {
}
#u321_text.f {
}
#u321 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u322.f {
}
#u322_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:99px;
background:inherit;
background-color:rgba(137, 200, 251, 1);
box-sizing:border-box;
border-width:2px;
border-style:solid;
border-color:rgba(0, 0, 0, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u322.f {
}
#u322_text.f {
}
#u322 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u323.f {
}
#u323_img.f {
}
#u323.f {
}
#u323_text.f {
}
#u323 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u324.f {
}
#u324_img.f {
}
#u324.f {
}
#u324_text.f {
}
#u324 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u325.f {
}
#u325_img.f {
}
#u325.f {
}
#u325_text.f {
}
#u325 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u326.f {
}
#u326_img.f {
}
#u326.f {
}
#u326_text.f {
}
#u326 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u327.f {
}
#u327_img.f {
}
#u327.f {
}
#u327_text.f {
}
#u327 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u328.f {
}
#u328_img.f {
}
#u328.f {
}
#u328_img.f.mouseOver {
}
#u328.f.mouseOver {
}
#u328_text.f {
}
#u328 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u329.f {
}
#u329_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:468px;
height:269px;
background:inherit;
background-color:rgba(246, 247, 170, 1);
box-sizing:border-box;
border-width:9px;
border-style:solid;
border-color:rgba(245, 154, 35, 1);
border-radius:29px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negrita Cursiva', 'Arial Normal', 'Arial';
font-weight:700;
font-style:italic;
font-size:43px;
}
#u329.f {
}
#u329_text.f {
}
#u329 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u330.f {
}
#u330_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:140px;
height:51px;
background:inherit;
background-color:rgba(255, 244, 189, 0.996078431372549);
box-sizing:border-box;
border-width:4px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:5px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:18px;
color:#000000;
}
#u330.f {
}
#u330_text.f {
}
#u330 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u331.f {
}
#u331_img.f {
}
#u331.f {
}
#u331_img.f.mouseOver {
}
#u331.f.mouseOver {
}
#u331_text.f {
}
#u331 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
#u332.f {
}
#u332_div.f {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:570px;
height:108px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:47px;
color:#000000;
text-align:center;
}
#u332.f {
}
#u332_text.f {
}
#u332 .text.f {
align-self:flex-start;
padding:0px 0px 0px 0px;
}
#u333.f {
}
#u333_img.f {
}
#u333.f {
}
#u333_text.f {
}
#u333 .text.f {
align-self:center;
padding:2px 2px 2px 2px;
}
| 0.31237 | 0.044142 |
@charset "utf-8";
html,body{
margin:0px;
padding:0px;
}
div{
display:block;
}
.bd{
height:100%;
background-color:#ddd;
border-bottom:2px solid #d3d3d3;
}
.upload{
width:980px;
height:700px;
margin:0px auto;
background-color:#fff;
border:2px solid #d3d3d3;
border-top:0px;
}
.wrap{
padding:40px;
}
.left{
float:left;
width:500px;
height:630px;
margin-right:30px;
}
.title{
height:40px;
font-size:24px;
font-weight:bold;
}
.content{
width:400px;
height:540px;
margin-top:30px;
}
.loadcontent{
position:relative;
min-height:38px;
margin-bottom:20px;
padding-left:38px;
}
.label1{
position:absolute;
top:0px;
left:0px;
width:58px;
line-height:32px;
text-align:left;
font-size:16px;
margin-left:10px;
}
.input1{
width:200px;
height:32px;
margin-left:30px;
padding:5px;
line-height:19px;
outline:none;
}
.lyric{
position:relative;
padding-right:14px;
}
.txt{
height:140px;
width:300px;
margin-left:30px;
padding:5px 6px 6px;
line-height:19px;
resize:none;
}
.lyric_number{
position:absolute;
bottom:5px;
left:290px;
color:#d0d0d0;
overflow:auto;
}
.select1{
width:100px;
height:32px;
margin-left:30px;
}
.right{
position: relative;
float:left;
width:250px;
height:250px;
}
.right_img{
width:400px;
margin-top:40px;
}
.input2{
width:200px;
height:32px;
margin-left:26px;
padding:5px;
line-height:19px;
outline:none;
}
.right{
position: relative;
float:left;
width:250px;
height:250px;
}
.label2{
width:80px;
line-height:32px;
text-align:left;
font-size:16px;
margin-left:10px;
}
.right_img{
width:210px;
margin-top:10px;
}
.input3{
position: relative;
top: 10px;
margin-left:10px;
display: inline-block;
background: #D0EEFF;
border: 1px solid #99D3F5;
border-radius: 4px;
padding: 4px 12px;
overflow: hidden;
color: #1E88C7;
text-decoration: none;
text-indent: 0;
line-height: 20px;
}
.input3 input {
position: absolute;
font-size: 100px;
right:0;
top:0px;
opacity:0;
}
.input3:hover {
background:#AADFFD;
border-color:#78C3F3;
color:#004974;
}
.savebtn{
margin-top:40px;
margin-left:10px;
}
.savebtn button{
background-color:#5FD259;
height:40px;
width:125px;
font-size:16px;
color:#fff;
text-align:center;
border-radius:8px;
border:0px;
cursor:pointer;
}
.savebtn button:hover{
background:#cccccc;
border-color:#78C3F3;
color:#004974;
}
|
public/static/css/upload.css
|
@charset "utf-8";
html,body{
margin:0px;
padding:0px;
}
div{
display:block;
}
.bd{
height:100%;
background-color:#ddd;
border-bottom:2px solid #d3d3d3;
}
.upload{
width:980px;
height:700px;
margin:0px auto;
background-color:#fff;
border:2px solid #d3d3d3;
border-top:0px;
}
.wrap{
padding:40px;
}
.left{
float:left;
width:500px;
height:630px;
margin-right:30px;
}
.title{
height:40px;
font-size:24px;
font-weight:bold;
}
.content{
width:400px;
height:540px;
margin-top:30px;
}
.loadcontent{
position:relative;
min-height:38px;
margin-bottom:20px;
padding-left:38px;
}
.label1{
position:absolute;
top:0px;
left:0px;
width:58px;
line-height:32px;
text-align:left;
font-size:16px;
margin-left:10px;
}
.input1{
width:200px;
height:32px;
margin-left:30px;
padding:5px;
line-height:19px;
outline:none;
}
.lyric{
position:relative;
padding-right:14px;
}
.txt{
height:140px;
width:300px;
margin-left:30px;
padding:5px 6px 6px;
line-height:19px;
resize:none;
}
.lyric_number{
position:absolute;
bottom:5px;
left:290px;
color:#d0d0d0;
overflow:auto;
}
.select1{
width:100px;
height:32px;
margin-left:30px;
}
.right{
position: relative;
float:left;
width:250px;
height:250px;
}
.right_img{
width:400px;
margin-top:40px;
}
.input2{
width:200px;
height:32px;
margin-left:26px;
padding:5px;
line-height:19px;
outline:none;
}
.right{
position: relative;
float:left;
width:250px;
height:250px;
}
.label2{
width:80px;
line-height:32px;
text-align:left;
font-size:16px;
margin-left:10px;
}
.right_img{
width:210px;
margin-top:10px;
}
.input3{
position: relative;
top: 10px;
margin-left:10px;
display: inline-block;
background: #D0EEFF;
border: 1px solid #99D3F5;
border-radius: 4px;
padding: 4px 12px;
overflow: hidden;
color: #1E88C7;
text-decoration: none;
text-indent: 0;
line-height: 20px;
}
.input3 input {
position: absolute;
font-size: 100px;
right:0;
top:0px;
opacity:0;
}
.input3:hover {
background:#AADFFD;
border-color:#78C3F3;
color:#004974;
}
.savebtn{
margin-top:40px;
margin-left:10px;
}
.savebtn button{
background-color:#5FD259;
height:40px;
width:125px;
font-size:16px;
color:#fff;
text-align:center;
border-radius:8px;
border:0px;
cursor:pointer;
}
.savebtn button:hover{
background:#cccccc;
border-color:#78C3F3;
color:#004974;
}
| 0.287268 | 0.052716 |
@charset "utf-8";
/*= Gobal reset ==========================================*/
body,div,address,blockquote,iframe,ul,ol,dl,dt,dd,h1,h2,h3,h4,h5,h6,p,pre,table,caption,th,td,form,legend,fieldset{margin:0;padding:0;font-size:100%;}
ol,ul{list-style:none;}
img,iframe,fieldset{border:0;}
/*= Common style =*/
.apptools .clear{clear:both;height:0;overflow:hidden;font:0/0 sans-serif;}
.apptools .clearfix{zoom:1;}
.apptools .clearfix:after{content:".";display:block;clear:both;height:0;font:0/0 sans-serif;visibility:hidden;}
/*= App tools =*/
.apptools{font:75%/1.5 "Lucida Grande",Helvetica,Arial,sans-serif;}
.apptools{margin-bottom:0px;border-top:1px solid #ccc;color:#666;background:#eee url(../images/toolbar/highlight_1.gif) repeat-x;zoom:1;}
.apptools-bottom{border-top:0;border-bottom:1px solid #ccc;background-position:0 100%;}
.apptools-inner{padding:5px;line-height:25px;}
.apptools .select{float:left;margin-right:3px;padding:0 5px;height:25px;}
.apptools .edge{float:left;margin-left:3px;margin-right:3px;width:2px;height:25px;text-indent:-999px;overflow:hidden;background:url(../images/toolbar/apptools_edge.gif) no-repeat;}
.apptools .btn{float:left;padding:0 5px 0 0;margin-left:3px;margin-right:3px;background:url(../images/toolbar/button_3.png) no-repeat 0 999px;cursor:pointer;}
.apptools .btn span{float:left;padding:0 0 0 5px;height:25px;background:url(../images/toolbar/button_3.png) no-repeat 0 999px;}
.apptools .btn img{float:left;margin:5px 2px 0 0;}
.apptools .btn-dropdown{padding-right:19px;background-position:100% 0;}
.apptools .btn:hover{background-position:100% -75px;}
.apptools .btn:hover span{background-position:0 -50px;}
.apptools .btn-dropdown:hover{background-position:100% -25px;}
.apptools a:link,.apptools a:visited{color:#666;text-decoration:none;}
.apptools .dropdowndock{float:left;position:relative;z-index:1;}
.apptools .dropdowndock .dropdownmenu-wrap{top:23px;left:0;}
/*= Dropdown menu =*/
.dropdownmenu-wrap{position:absolute;margin:3px 0 0 3px;background:url(../images/toolbar/shadow.png);z-index:10;}
.dropdownmenu{position:relative;top:-2px;left:-2px;width:150px;background:#fff;}
.dropdownmenu-list,
.dropdownmenu-inner{padding:1px;border:1px solid;border-color:#bbb #aaa #aaa #bbb;zoom:1;}
.dropdownmenu-list li{zoom:1;}
.dropdownmenu-list li.dropmenu-split{height:1px;margin:1px 1px 1px 20px;background:#ddd;overflow:hidden;text-indent:-9999px;font:0/0 sans-serif;}
.dropdownmenu-list li a{display:block;line-height:2;padding:0 10px 0 25px;background-repeat:no-repeat;background-position:5px 50%;zoom:1;}
.dropdownmenu-list li a.checked{background-image:url(../images/toolbar/checked.gif);}
.dropdownmenu-list li a:link,.dropdownmenu-list li a:visited{color:#666;}
.dropdownmenu-list li a:hover,.dropdownmenu-list li a:active{background-color:#f2f7fb;}
.dropdownmenu a:link,.dropdownmenu a:visited{color:#000;}
/* File Extensions*/
.ext { background-image:url(../images/mime/unknown.png);background-repeat: no-repeat; margin: 0px; padding: 0px; height: 16px; width: 16px; }
/*folder*/
.ext_folder { background-image:url(../images/mime/archive.png); }
.ext_folder_go { background-image:url(../images/toolbar/folder_up.gif); }
.ext_folder_open { background-image:url(../images/toolbar/folder_open.gif); }
.ext_big { background-image:url(../images/mime/unknown_big.png); }
.ext_big_dir { background-image:url(../images/toolbar/floder_big.png); }
.ext_big_upto { background-image:url(../images/toolbar/floder_parent_big.png); }
/*file*/
.ext_archive{ background-image:url(../images/mime/archive.png); }
.ext_audio{ background-image:url(../images/mime/audio.png); }
.ext_authors{ background-image:url(../images/mime/authors.png); }
.ext_bin{ background-image:url(../images/mime/bin.png); }
.ext_bmp{ background-image:url(../images/mime/bmp.png); }
.ext_c{ background-image:url(../images/mime/c.png); }
.ext_calc{ background-image:url(../images/mime/calc.png); }
.ext_cd{ background-image:url(../images/mime/cd.png); }
.ext_copying{ background-image:url(../images/mime/copying.png); }
.ext_cpp{ background-image:url(../images/mime/cpp.png); }
.ext_css{ background-image:url(../images/mime/css.png); }
.ext_deb{ background-image:url(../images/mime/deb.png); }
.ext_default{ background-image:url(../images/mime/default.png); }
.ext_doc{ background-image:url(../images/mime/doc.png); }
.ext_draw{ background-image:url(../images/mime/draw.png); }
.ext_eps{ background-image:url(../images/mime/eps.png); }
.ext_exe{ background-image:url(../images/mime/exe.png); }
.ext_floder{ background-image:url(../images/mime/floder.png); }
.ext_floder-home{ background-image:url(../images/mime/floder-home.png); }
.ext_floder-open{ background-image:url(../images/mime/floder-open.png); }
.ext_floder-page{ background-image:url(../images/mime/floder-page.png); }
.ext_floder-parent{ background-image:url(../images/mime/floder-parent.png); }
.ext_gif{ background-image:url(../images/mime/gif.png); }
.ext_gzip{ background-image:url(../images/mime/gzip.png); }
.ext_h{ background-image:url(../images/mime/h.png); }
.ext_hpp{ background-image:url(../images/mime/hpp.png); }
.ext_html{ background-image:url(../images/mime/html.png); }
.ext_ico{ background-image:url(../images/mime/ico.png); }
.ext_image{ background-image:url(../images/mime/image.png); }
.ext_install{ background-image:url(../images/mime/install.png); }
.ext_java{ background-image:url(../images/mime/java.png); }
.ext_jpg{ background-image:url(../images/mime/jpg.png); }
.ext_js{ background-image:url(../images/mime/js.png); }
.ext_log{ background-image:url(../images/mime/log.png); }
.ext_makefile{ background-image:url(../images/mime/makefile.png); }
.ext_package{ background-image:url(../images/mime/package.png); }
.ext_pdf{ background-image:url(../images/mime/pdf.png); }
.ext_php{ background-image:url(../images/mime/php.png); }
.ext_playlist{ background-image:url(../images/mime/playlist.png); }
.ext_png{ background-image:url(../images/mime/png.png); }
.ext_pres{ background-image:url(../images/mime/pres.png); }
.ext_psd{ background-image:url(../images/mime/psd.png); }
.ext_py{ background-image:url(../images/mime/py.png); }
.ext_rar{ background-image:url(../images/mime/rar.png); }
.ext_rb{ background-image:url(../images/mime/rb.png); }
.ext_readme{ background-image:url(../images/mime/readme.png); }
.ext_rpm{ background-image:url(../images/mime/rpm.png); }
.ext_rss{ background-image:url(../images/mime/rss.png); }
.ext_rtf{ background-image:url(../images/mime/rtf.png); }
.ext_script{ background-image:url(../images/mime/script.png); }
.ext_source{ background-image:url(../images/mime/source.png); }
.ext_sql{ background-image:url(../images/mime/sql.png); }
.ext_tar{ background-image:url(../images/mime/tar.png); }
.ext_tex{ background-image:url(../images/mime/tex.png); }
.ext_text{ background-image:url(../images/mime/text.png); }
.ext_tiff{ background-image:url(../images/mime/tiff.png); }
.ext_vcal{ background-image:url(../images/mime/vcal.png); }
.ext_video{ background-image:url(../images/mime/video.png); }
.ext_xml{ background-image:url(../images/mime/xml.png); }
.ext_zip{ background-image:url(../images/mime/zip.png); }
/************ 大图预览模式图标 *************************/
/*file*/
.ext_big_archive{ background-image:url(../images/mime/archive_big.png); }
.ext_big_audio{ background-image:url(../images/mime/audio_big.png); }
.ext_big_authors{ background-image:url(../images/mime/authors_big.png); }
.ext_big_bin{ background-image:url(../images/mime/bin_big.png); }
.ext_big_bmp{ background-image:url(../images/mime/bmp_big.png); }
.ext_big_c{ background-image:url(../images/mime/c_big.png); }
.ext_big_calc{ background-image:url(../images/mime/calc_big.png); }
.ext_big_cd{ background-image:url(../images/mime/cd_big.png); }
.ext_big_copying{ background-image:url(../images/mime/copying_big.png); }
.ext_big_cpp{ background-image:url(../images/mime/cpp_big.png); }
.ext_big_css{ background-image:url(../images/mime/css_big.png); }
.ext_big_deb{ background-image:url(../images/mime/deb_big.png); }
.ext_big_default{ background-image:url(../images/mime/default_big.png); }
.ext_big_doc{ background-image:url(../images/mime/doc_big.png); }
.ext_big_draw{ background-image:url(../images/mime/draw_big.png); }
.ext_big_eps{ background-image:url(../images/mime/eps_big.png); }
.ext_big_exe{ background-image:url(../images/mime/exe_big.png); }
.ext_big_floder{ background-image:url(../images/mime/floder_big.png); }
.ext_big_floder-home{ background-image:url(../images/mime/floder-home_big.png); }
.ext_big_floder-open{ background-image:url(../images/mime/floder-open_big.png); }
.ext_big_floder-page{ background-image:url(../images/mime/floder-page_big.png); }
.ext_big_floder-parent{ background-image:url(../images/mime/floder-parent_big.png); }
.ext_big_gif{ background-image:url(../images/mime/gif_big.png); }
.ext_big_gzip{ background-image:url(../images/mime/gzip_big.png); }
.ext_big_h{ background-image:url(../images/mime/h_big.png); }
.ext_big_hpp{ background-image:url(../images/mime/hpp_big.png); }
.ext_big_html{ background-image:url(../images/mime/html_big.png); }
.ext_big_ico{ background-image:url(../images/mime/ico_big.png); }
.ext_big_image{ background-image:url(../images/mime/image_big.png); }
.ext_big_install{ background-image:url(../images/mime/install_big.png); }
.ext_big_java{ background-image:url(../images/mime/java_big.png); }
.ext_big_jpg{ background-image:url(../images/mime/jpg_big.png); }
.ext_big_js{ background-image:url(../images/mime/js_big.png); }
.ext_big_log{ background-image:url(../images/mime/log_big.png); }
.ext_big_makefile{ background-image:url(../images/mime/makefile_big.png); }
.ext_big_package{ background-image:url(../images/mime/package_big.png); }
.ext_big_pdf{ background-image:url(../images/mime/pdf_big.png); }
.ext_big_php{ background-image:url(../images/mime/php_big.png); }
.ext_big_playlist{ background-image:url(../images/mime/playlist_big.png); }
.ext_big_png{ background-image:url(../images/mime/png_big.png); }
.ext_big_pres{ background-image:url(../images/mime/pres_big.png); }
.ext_big_psd{ background-image:url(../images/mime/psd_big.png); }
.ext_big_py{ background-image:url(../images/mime/py_big.png); }
.ext_big_rar{ background-image:url(../images/mime/rar_big.png); }
.ext_big_rb{ background-image:url(../images/mime/rb_big.png); }
.ext_big_readme{ background-image:url(../images/mime/readme_big.png); }
.ext_big_rpm{ background-image:url(../images/mime/rpm_big.png); }
.ext_big_rss{ background-image:url(../images/mime/rss_big.png); }
.ext_big_rtf{ background-image:url(../images/mime/rtf_big.png); }
.ext_big_script{ background-image:url(../images/mime/script_big.png); }
.ext_big_source{ background-image:url(../images/mime/source_big.png); }
.ext_big_sql{ background-image:url(../images/mime/sql_big.png); }
.ext_big_tar{ background-image:url(../images/mime/tar_big.png); }
.ext_big_tex{ background-image:url(../images/mime/tex_big.png); }
.ext_big_text{ background-image:url(../images/mime/text_big.png); }
.ext_big_tiff{ background-image:url(../images/mime/tiff_big.png); }
.ext_big_vcal{ background-image:url(../images/mime/vcal_big.png); }
.ext_big_video{ background-image:url(../images/mime/video_big.png); }
.ext_big_xml{ background-image:url(../images/mime/xml_big.png); }
.ext_big_zip{ background-image:url(../images/mime/zip_big.png); }
|
static/css/toolbar.css
|
@charset "utf-8";
/*= Gobal reset ==========================================*/
body,div,address,blockquote,iframe,ul,ol,dl,dt,dd,h1,h2,h3,h4,h5,h6,p,pre,table,caption,th,td,form,legend,fieldset{margin:0;padding:0;font-size:100%;}
ol,ul{list-style:none;}
img,iframe,fieldset{border:0;}
/*= Common style =*/
.apptools .clear{clear:both;height:0;overflow:hidden;font:0/0 sans-serif;}
.apptools .clearfix{zoom:1;}
.apptools .clearfix:after{content:".";display:block;clear:both;height:0;font:0/0 sans-serif;visibility:hidden;}
/*= App tools =*/
.apptools{font:75%/1.5 "Lucida Grande",Helvetica,Arial,sans-serif;}
.apptools{margin-bottom:0px;border-top:1px solid #ccc;color:#666;background:#eee url(../images/toolbar/highlight_1.gif) repeat-x;zoom:1;}
.apptools-bottom{border-top:0;border-bottom:1px solid #ccc;background-position:0 100%;}
.apptools-inner{padding:5px;line-height:25px;}
.apptools .select{float:left;margin-right:3px;padding:0 5px;height:25px;}
.apptools .edge{float:left;margin-left:3px;margin-right:3px;width:2px;height:25px;text-indent:-999px;overflow:hidden;background:url(../images/toolbar/apptools_edge.gif) no-repeat;}
.apptools .btn{float:left;padding:0 5px 0 0;margin-left:3px;margin-right:3px;background:url(../images/toolbar/button_3.png) no-repeat 0 999px;cursor:pointer;}
.apptools .btn span{float:left;padding:0 0 0 5px;height:25px;background:url(../images/toolbar/button_3.png) no-repeat 0 999px;}
.apptools .btn img{float:left;margin:5px 2px 0 0;}
.apptools .btn-dropdown{padding-right:19px;background-position:100% 0;}
.apptools .btn:hover{background-position:100% -75px;}
.apptools .btn:hover span{background-position:0 -50px;}
.apptools .btn-dropdown:hover{background-position:100% -25px;}
.apptools a:link,.apptools a:visited{color:#666;text-decoration:none;}
.apptools .dropdowndock{float:left;position:relative;z-index:1;}
.apptools .dropdowndock .dropdownmenu-wrap{top:23px;left:0;}
/*= Dropdown menu =*/
.dropdownmenu-wrap{position:absolute;margin:3px 0 0 3px;background:url(../images/toolbar/shadow.png);z-index:10;}
.dropdownmenu{position:relative;top:-2px;left:-2px;width:150px;background:#fff;}
.dropdownmenu-list,
.dropdownmenu-inner{padding:1px;border:1px solid;border-color:#bbb #aaa #aaa #bbb;zoom:1;}
.dropdownmenu-list li{zoom:1;}
.dropdownmenu-list li.dropmenu-split{height:1px;margin:1px 1px 1px 20px;background:#ddd;overflow:hidden;text-indent:-9999px;font:0/0 sans-serif;}
.dropdownmenu-list li a{display:block;line-height:2;padding:0 10px 0 25px;background-repeat:no-repeat;background-position:5px 50%;zoom:1;}
.dropdownmenu-list li a.checked{background-image:url(../images/toolbar/checked.gif);}
.dropdownmenu-list li a:link,.dropdownmenu-list li a:visited{color:#666;}
.dropdownmenu-list li a:hover,.dropdownmenu-list li a:active{background-color:#f2f7fb;}
.dropdownmenu a:link,.dropdownmenu a:visited{color:#000;}
/* File Extensions*/
.ext { background-image:url(../images/mime/unknown.png);background-repeat: no-repeat; margin: 0px; padding: 0px; height: 16px; width: 16px; }
/*folder*/
.ext_folder { background-image:url(../images/mime/archive.png); }
.ext_folder_go { background-image:url(../images/toolbar/folder_up.gif); }
.ext_folder_open { background-image:url(../images/toolbar/folder_open.gif); }
.ext_big { background-image:url(../images/mime/unknown_big.png); }
.ext_big_dir { background-image:url(../images/toolbar/floder_big.png); }
.ext_big_upto { background-image:url(../images/toolbar/floder_parent_big.png); }
/*file*/
.ext_archive{ background-image:url(../images/mime/archive.png); }
.ext_audio{ background-image:url(../images/mime/audio.png); }
.ext_authors{ background-image:url(../images/mime/authors.png); }
.ext_bin{ background-image:url(../images/mime/bin.png); }
.ext_bmp{ background-image:url(../images/mime/bmp.png); }
.ext_c{ background-image:url(../images/mime/c.png); }
.ext_calc{ background-image:url(../images/mime/calc.png); }
.ext_cd{ background-image:url(../images/mime/cd.png); }
.ext_copying{ background-image:url(../images/mime/copying.png); }
.ext_cpp{ background-image:url(../images/mime/cpp.png); }
.ext_css{ background-image:url(../images/mime/css.png); }
.ext_deb{ background-image:url(../images/mime/deb.png); }
.ext_default{ background-image:url(../images/mime/default.png); }
.ext_doc{ background-image:url(../images/mime/doc.png); }
.ext_draw{ background-image:url(../images/mime/draw.png); }
.ext_eps{ background-image:url(../images/mime/eps.png); }
.ext_exe{ background-image:url(../images/mime/exe.png); }
.ext_floder{ background-image:url(../images/mime/floder.png); }
.ext_floder-home{ background-image:url(../images/mime/floder-home.png); }
.ext_floder-open{ background-image:url(../images/mime/floder-open.png); }
.ext_floder-page{ background-image:url(../images/mime/floder-page.png); }
.ext_floder-parent{ background-image:url(../images/mime/floder-parent.png); }
.ext_gif{ background-image:url(../images/mime/gif.png); }
.ext_gzip{ background-image:url(../images/mime/gzip.png); }
.ext_h{ background-image:url(../images/mime/h.png); }
.ext_hpp{ background-image:url(../images/mime/hpp.png); }
.ext_html{ background-image:url(../images/mime/html.png); }
.ext_ico{ background-image:url(../images/mime/ico.png); }
.ext_image{ background-image:url(../images/mime/image.png); }
.ext_install{ background-image:url(../images/mime/install.png); }
.ext_java{ background-image:url(../images/mime/java.png); }
.ext_jpg{ background-image:url(../images/mime/jpg.png); }
.ext_js{ background-image:url(../images/mime/js.png); }
.ext_log{ background-image:url(../images/mime/log.png); }
.ext_makefile{ background-image:url(../images/mime/makefile.png); }
.ext_package{ background-image:url(../images/mime/package.png); }
.ext_pdf{ background-image:url(../images/mime/pdf.png); }
.ext_php{ background-image:url(../images/mime/php.png); }
.ext_playlist{ background-image:url(../images/mime/playlist.png); }
.ext_png{ background-image:url(../images/mime/png.png); }
.ext_pres{ background-image:url(../images/mime/pres.png); }
.ext_psd{ background-image:url(../images/mime/psd.png); }
.ext_py{ background-image:url(../images/mime/py.png); }
.ext_rar{ background-image:url(../images/mime/rar.png); }
.ext_rb{ background-image:url(../images/mime/rb.png); }
.ext_readme{ background-image:url(../images/mime/readme.png); }
.ext_rpm{ background-image:url(../images/mime/rpm.png); }
.ext_rss{ background-image:url(../images/mime/rss.png); }
.ext_rtf{ background-image:url(../images/mime/rtf.png); }
.ext_script{ background-image:url(../images/mime/script.png); }
.ext_source{ background-image:url(../images/mime/source.png); }
.ext_sql{ background-image:url(../images/mime/sql.png); }
.ext_tar{ background-image:url(../images/mime/tar.png); }
.ext_tex{ background-image:url(../images/mime/tex.png); }
.ext_text{ background-image:url(../images/mime/text.png); }
.ext_tiff{ background-image:url(../images/mime/tiff.png); }
.ext_vcal{ background-image:url(../images/mime/vcal.png); }
.ext_video{ background-image:url(../images/mime/video.png); }
.ext_xml{ background-image:url(../images/mime/xml.png); }
.ext_zip{ background-image:url(../images/mime/zip.png); }
/************ 大图预览模式图标 *************************/
/*file*/
.ext_big_archive{ background-image:url(../images/mime/archive_big.png); }
.ext_big_audio{ background-image:url(../images/mime/audio_big.png); }
.ext_big_authors{ background-image:url(../images/mime/authors_big.png); }
.ext_big_bin{ background-image:url(../images/mime/bin_big.png); }
.ext_big_bmp{ background-image:url(../images/mime/bmp_big.png); }
.ext_big_c{ background-image:url(../images/mime/c_big.png); }
.ext_big_calc{ background-image:url(../images/mime/calc_big.png); }
.ext_big_cd{ background-image:url(../images/mime/cd_big.png); }
.ext_big_copying{ background-image:url(../images/mime/copying_big.png); }
.ext_big_cpp{ background-image:url(../images/mime/cpp_big.png); }
.ext_big_css{ background-image:url(../images/mime/css_big.png); }
.ext_big_deb{ background-image:url(../images/mime/deb_big.png); }
.ext_big_default{ background-image:url(../images/mime/default_big.png); }
.ext_big_doc{ background-image:url(../images/mime/doc_big.png); }
.ext_big_draw{ background-image:url(../images/mime/draw_big.png); }
.ext_big_eps{ background-image:url(../images/mime/eps_big.png); }
.ext_big_exe{ background-image:url(../images/mime/exe_big.png); }
.ext_big_floder{ background-image:url(../images/mime/floder_big.png); }
.ext_big_floder-home{ background-image:url(../images/mime/floder-home_big.png); }
.ext_big_floder-open{ background-image:url(../images/mime/floder-open_big.png); }
.ext_big_floder-page{ background-image:url(../images/mime/floder-page_big.png); }
.ext_big_floder-parent{ background-image:url(../images/mime/floder-parent_big.png); }
.ext_big_gif{ background-image:url(../images/mime/gif_big.png); }
.ext_big_gzip{ background-image:url(../images/mime/gzip_big.png); }
.ext_big_h{ background-image:url(../images/mime/h_big.png); }
.ext_big_hpp{ background-image:url(../images/mime/hpp_big.png); }
.ext_big_html{ background-image:url(../images/mime/html_big.png); }
.ext_big_ico{ background-image:url(../images/mime/ico_big.png); }
.ext_big_image{ background-image:url(../images/mime/image_big.png); }
.ext_big_install{ background-image:url(../images/mime/install_big.png); }
.ext_big_java{ background-image:url(../images/mime/java_big.png); }
.ext_big_jpg{ background-image:url(../images/mime/jpg_big.png); }
.ext_big_js{ background-image:url(../images/mime/js_big.png); }
.ext_big_log{ background-image:url(../images/mime/log_big.png); }
.ext_big_makefile{ background-image:url(../images/mime/makefile_big.png); }
.ext_big_package{ background-image:url(../images/mime/package_big.png); }
.ext_big_pdf{ background-image:url(../images/mime/pdf_big.png); }
.ext_big_php{ background-image:url(../images/mime/php_big.png); }
.ext_big_playlist{ background-image:url(../images/mime/playlist_big.png); }
.ext_big_png{ background-image:url(../images/mime/png_big.png); }
.ext_big_pres{ background-image:url(../images/mime/pres_big.png); }
.ext_big_psd{ background-image:url(../images/mime/psd_big.png); }
.ext_big_py{ background-image:url(../images/mime/py_big.png); }
.ext_big_rar{ background-image:url(../images/mime/rar_big.png); }
.ext_big_rb{ background-image:url(../images/mime/rb_big.png); }
.ext_big_readme{ background-image:url(../images/mime/readme_big.png); }
.ext_big_rpm{ background-image:url(../images/mime/rpm_big.png); }
.ext_big_rss{ background-image:url(../images/mime/rss_big.png); }
.ext_big_rtf{ background-image:url(../images/mime/rtf_big.png); }
.ext_big_script{ background-image:url(../images/mime/script_big.png); }
.ext_big_source{ background-image:url(../images/mime/source_big.png); }
.ext_big_sql{ background-image:url(../images/mime/sql_big.png); }
.ext_big_tar{ background-image:url(../images/mime/tar_big.png); }
.ext_big_tex{ background-image:url(../images/mime/tex_big.png); }
.ext_big_text{ background-image:url(../images/mime/text_big.png); }
.ext_big_tiff{ background-image:url(../images/mime/tiff_big.png); }
.ext_big_vcal{ background-image:url(../images/mime/vcal_big.png); }
.ext_big_video{ background-image:url(../images/mime/video_big.png); }
.ext_big_xml{ background-image:url(../images/mime/xml_big.png); }
.ext_big_zip{ background-image:url(../images/mime/zip_big.png); }
| 0.131954 | 0.055875 |
TABLE OF CONTENTS
====================================================== */
/**
* 1.0 Settings
* 1.1 Top Bar
* 1.2 Navbar
* 1.3 Slider
* 1.4 Search Tabs
* 1.5 Main Block
* 1.6 Hotel Block
* 1.7 Tour Block
* 1.8 Cruise Block
* 1.9 Flight Block
* 1.10 Destination Block
* 1.11 Vehicle Block
* 1.12 Gallery
* 1.13 Best Features
* 1.14 Luxury Offers
* 1.15 Highlights
* 1.16 Banners
* 1.17 Testimonials
* 1.18 Latest Blog
* 1.19 Packages
* 1.20 Newsletter
* 1.21 Contact Form
* 1.22 Footer
* 1.23 Page Cover
* 1.24 Sidebar
* 1.25 Grid Block
* 1.26 List Block
* 1.27 Pagination
* 1.28 Detail Pages Tabs
* 1.29 Detail Pages Slider
* 1.30 Custom Forms
* 1.31 Extra Pages
**/
/* -----------------------------------------------------
Settings
----------------------------------------------------- */
@media(min-width:991px) and (max-width:1200px) {
.page-heading p {
width: 75%;
}
}
@media(min-width:992px) {
.no-pd-r {
padding-left: 0px;
}
.no-pd-l {
padding-right: 0px;
}
.space-right {
padding-left: 30px;
}
}
@media(max-width:991px) {
.page-heading p {
width: 90%;
}
.innerpage-heading p {
width: 90%;
}
}
@media(max-width:768px) {
.btn {
font-size: 14px;
}
.btn-padding {
padding: 10px 30px;
}
.page-heading h2 {
font-size: 32px;
}
.page-heading p {
font-size: 17px;
}
.innerpage-heading h1 {
font-size: 30px;
}
.innerpage-heading p {
font-size: 16px;
}
.butn .btn {
width: 200px;
padding: 14px 0px;
}
}
@media(max-width:767px) {
.view-all {
margin-top: 50px;
}
}
@media(max-width:400px) {
.page-heading h2 {
font-size: 27px;
}
.innerpage-heading h1 {
font-size: 28px;
}
}
@media (min-width: 1200px) {
.col-lg-15 {
width: 20%;
float: right;
}
}
@media (min-width: 992px) {
.col-md-15 {
width: 20%;
float: right;
}
}
@media (min-width: 768px) {
.col-md-15 {
width: 20%;
float: right;
}
}
/* -----------------------------------------------------
Top Bar
----------------------------------------------------- */
@media(min-width:768px) and (max-width:991px) {
#top-bar.container-header #info li:first-child {
margin-left: 5px;
}
#top-bar.container-header #links>ul>li form {
padding-right: 18px;
margin-right: 10px;
}
#top-bar.container-header form ul li:last-child {
margin-right: 4px;
}
#top-bar #links>ul>li form {
padding-right: 22px;
margin-right: 15px;
}
}
@media(min-width:992px) {
#top-bar #links ul li form {
margin-right: 15px;
}
}
@media(max-width:767px) {
#top-bar {
text-align: center;
}
#top-bar #info li:first-child {
margin-left: 0px;
}
#top-bar #info li {
margin: 0px 5px 3px;
}
#top-bar #links {
float: none;
text-align: center;
}
#top-bar #links>ul>li form {
padding-right: 18px;
margin-right: 10px;
}
#top-bar form ul li:last-child {
margin-right: 4px;
}
}
/************* CRUISE HOMEPAGE *************/
@media(min-width:768px) and (max-width:991px) {
#cruise-homepage #top-bar #info li:first-child {
margin-left: 5px;
}
#cruise-homepage #top-bar #links>ul>li form {
padding-right: 18px;
margin-right: 10px;
}
#cruise-homepage #top-bar form ul li:last-child {
margin-right: 4px;
}
}
/* -----------------------------------------------------
Navbar
----------------------------------------------------- */
@media(min-width:1200px) {
.main-navbar.navbar-custom .navbar-brand {
padding-top: 24px;
}
.header-search {
display: none !important;
}
.main-navbar.navbar-custom .navbar-nav>li {
padding: 22px 0;
-webkit-transition: padding 0.3s;
-moz-transition: padding 0.3s;
transition: padding 0.3s;
margin: 0px 1px;
}
.main-navbar .nav>li>a {
padding-right: 0px;
padding-left: 0px;
margin: 0px 13px;
}
.main-navbar .navbar-nav>li:last-child a {
margin-left: 0px;
}
.main-navbar .navbar-nav>li:last-child {
margin-right: 12px;
}
.main-navbar .navbar-search-link>li:last-child {
margin-right: 8px;
/* margin-top: 6px; */
}
.main-navbar.navbar-custom.affix .navbar-nav>li {
padding: 10px 0;
}
.main-navbar.navbar-custom.affix .navbar-brand {
padding-top: 12px;
}
.main-navbar .navbar-nav>li.active::before {
width: 80%;
}
.main-navbar .mega-dropdown-menu {
min-width: 950px;
}
.main-navbar .mega-dropdown-menu ul li a {
padding-left: 15px;
}
.main-navbar .navbar-right .mega-dropdown-menu.dropdown-menu {
right: auto;
left: 0px;
}
}
@media(max-width:1199px) {}
@media(min-width:768px) and (max-width:1199px) {
#mynavbar {
padding: 0px;
}
.main-navbar .header-search {
margin-top: 16px;
}
.main-navbar .navbar-header .header-search .fa {
font-size: 18px;
}
.main-navbar .navbar-header {
padding-top: 15px;
padding-bottom: 15px;
}
.main-navbar .navbar-collapse {
margin-top: 0px;
padding-right: 0px;
padding-left: 0px;
}
.main-navbar .navbar-nav {
float: none !important;
width: 100%;
}
.main-navbar .navbar-nav>li {
float: none;
}
.main-navbar .navbar-nav>li>a {
padding-top: 10px;
padding-bottom: 10px;
}
.main-navbar .navbar-toggle {
display: block;
margin-top: 10px;
margin-left: 0px;
margin-right: 15px;
padding-left: 0px;
}
.main-navbar.container-header .navbar-toggle {
margin-left: 15px;
}
.main-navbar .navbar-header {
float: none;
}
.main-navbar .navbar-nav li .dropdown-menu {
width: 100%;
max-height: 300px;
overflow: auto;
}
.main-navbar.navbar-custom .navbar-brand {
padding-top: 3px;
}
}
@media(min-width:768px) and (max-width:991px) {
#mynavbar .navbar-brand img {
max-height: 46px;
margin-top: 3px;
}
}
@media(min-width: 768px) {
.main-navbar.navbar-custom .navbar-brand {
font-size: 2.0em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.main-navbar.navbar-custom .navbar-brand .fa {
font-size: 1.33em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.main-navbar .navbar-right .dropdown-menu {
right: 0;
left: auto;
}
.dropdown-submenu>.dropdown-menu.dropdown-sbm.left-sbm {
top: 0;
left: 100%;
right: auto;
margin-top: -1px;
margin-right: -1px;
}
}
@media(max-width:768px) {
.main-navbar .navbar-header .header-search .fa {
font-size: 18px;
}
nav.navbar.navbar-custom#mynavbar a.navbar-brand {
font-size: 20px;
}
nav.navbar.navbar-custom#mynavbar a.navbar-brand .fa {
font-size: 24px;
}
.main-navbar .navbar-toggler i {
font-size: 22px !important;
}
nav.navbar#mynavbar {
height: 63px;
background-color: rgba(0, 0, 0, 0.7);
transition: background 0s, height 0.2s;
}
}
@media(max-width:600px) {
#close-button {
left: 20px;
top: 40px;
}
}
@media(max-width:767px) {
.main-navbar {
z-index: 100;
}
.main-navbar .navbar-brand {
padding-bottom: 0px;
padding-top: 17px;
}
.main-navbar .navbar-brand .fa {
top: 0px;
margin-left: 6px;
}
.main-navbar .navbar-nav {
margin-top: 0;
margin-bottom: 0;
}
.main-navbar .navbar-toggle {
padding: 20px;
border-radius: 0px;
margin: 0px;
}
.main-navbar .navbar-nav>li>a {
font-size: 14px;
}
.affix~section {
top: 42px;
}
.main-navbar .navbar-nav li .dropdown-menu {
width: 100%;
max-height: 148px;
overflow: auto;
}
.main-navbar .navbar-nav li .dropdown-menu li a {
font-size: 14px;
}
}
@media(max-width:576px) {}
/************* CRUISE HOMEPAGE *************/
@media(min-width:768px) and (max-width:1199px) {
#cruise-homepage .main-navbar .navbar-toggle {
margin-left: 15px;
}
}
/* -----------------------------------------------------
Slider
----------------------------------------------------- */
@media(max-width:576px) {
.flexslider li .meta .highlight-price {
font-size: 15px;
}
}
/************* SLIDER-1 *************/
@media(min-width:992px) {
#flexslider-container-1, #slider-1 .slides, #slider-1 .flex-viewport {
height: 712px;
}
#slider-1 .slides>li {
height: 712px;
}
#slider-1 {
height: 712px;
}
}
@media(max-width:991px) {
#flexslider-container-1, #slider-1 .slides, #slider-1 .flex-viewport {
height: 800px;
}
#slider-1 .slides>li {
height: 800px;
}
#slider-1 {
height: 800px;
}
#slider-1 li .meta h1 {
font-size: 70px;
}
#slider-1 li .meta h2 {
font-size: 28px;
}
}
@media(max-width:768px) {
#slider-1 li .meta h1 {
font-size: 60px;
}
#slider-1 li .meta h2 {
font-size: 26px;
}
}
@media(max-width:767px) {
#flexslider-container-1, #slider-1 .slides, #slider-1 .flex-viewport {
height: 830px;
}
#slider-1 .slides>li {
height: 830px;
}
#slider-1 {
height: 830px;
}
}
@media(max-width:576px) {
#flexslider-container-1, #slider-1 .slides, #slider-1 .flex-viewport {
height: 745px;
}
#slider-1 .slides>li {
height: 745px;
}
#slider-1 {
height: 745px;
}
#slider-1 li .meta {
padding-top: 80px;
}
#slider-1 li .meta h1 {
font-size: 50px;
}
#slider-1 li .meta h2 {
font-size: 24px;
margin-bottom: -4px;
}
}
@media(max-width:420px) {
#slider-1 li .meta h1 {
font-size: 40px;
}
#slider-1 li .meta h2 {
font-size: 20px;
margin-bottom: -4px;
}
}
/************* SLIDER-2 *************/
@media(min-width:1200px) {
#flexslider-container-2, #slider-2 .slides, #slider-2 .flex-viewport {
height: 618px;
}
#slider-2 .slides>li {
height: 618px;
}
#slider-2 {
height: 618px;
}
}
@media(max-width:1199px) {
#flexslider-container-2, #slider-2 .slides, #slider-2 .flex-viewport {
height: 688px;
}
#slider-2 .slides>li {
height: 688px;
}
#slider-2 {
height: 688px;
}
}
@media(max-width:991px) {
#flexslider-container-2, #slider-2 .slides, #slider-2 .flex-viewport {
height: 758px;
}
#slider-2 .slides>li {
height: 758px;
}
#slider-2 {
height: 758px;
}
#slider-2 li .meta {
padding-top: 130px;
}
}
@media(max-width:768px) {
#slider-2 li .meta h2 {
font-size: 50px;
}
#slider-2 li .meta p {
width: 80%;
}
}
@media(max-width:767px) {
#slider-2 li .meta {
padding-top: 100px;
}
}
@media(max-width:576px) {
#flexslider-container-2, #slider-2 .slides, #slider-2 .flex-viewport {
height: 722px;
}
#slider-2 .slides>li {
height: 722px;
}
#slider-2 {
height: 722px;
}
#slider-2 li .meta h2 {
font-size: 35px;
}
#slider-2 li .meta p {
width: 95%;
}
}
@media(max-width:420px) {
#slider-2 li .meta h2 {
font-size: 30px;
}
#slider-2 li .meta p {
font-size: 14px;
}
}
@media(max-width:360px) {
#slider-2 li .meta h2 {
font-size: 28px;
}
}
/************* SLIDER-3 *************/
@media(min-width:1200px) {
#flexslider-container-3, #slider-3 .slides, #slider-3 .flex-viewport {
height: 778px;
}
#slider-3 .slides>li {
height: 778px;
}
#slider-3 {
height: 778px;
}
}
@media(max-width:1199px) {
#flexslider-container-3, #slider-3 .slides, #slider-3 .flex-viewport {
height: 768px;
}
#slider-3 .slides>li {
height: 768px;
}
#slider-3 {
height: 768px;
}
}
@media(max-width:991px) {
#flexslider-container-3, #slider-3 .slides, #slider-3 .flex-viewport {
height: 768px;
}
#slider-3 .slides>li {
height: 768px;
}
#slider-3 {
height: 768px;
}
}
@media(max-width:767px) {
#flexslider-container-3, #slider-3 .slides, #slider-3 .flex-viewport {
height: 798px;
}
#slider-3 .slides>li {
height: 798px;
}
#slider-3 {
height: 798px;
}
}
/************* SLIDER-4 *************/
@media(min-width:1200px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 658px;
}
#slider-4 .slides>li {
height: 658px;
}
#slider-4 {
height: 658px;
}
}
@media(max-width:1199px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 718px;
}
#slider-4 .slides>li {
height: 718px;
}
#slider-4 {
height: 718px;
}
}
@media(max-width:991px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 818px;
}
#slider-4 .slides>li {
height: 818px;
}
#slider-4 {
height: 818px;
}
#slider-4 li .meta {
padding-top: 130px;
}
}
@media(max-width:767px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 800px;
}
#slider-4 .slides>li {
height: 800px;
}
#slider-4 {
height: 800px;
}
}
@media(max-width:576px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 742px;
}
#slider-4 .slides>li {
height: 742px;
}
#slider-4 {
height: 742px;
}
#slider-4 li .meta {
padding-top: 100px;
}
}
@media(max-width:420px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 712px;
}
#slider-4 .slides>li {
height: 712px;
}
#slider-4 {
height: 712px;
}
}
/************* SLIDER-5 *************/
@media(min-width:1200px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 778px;
}
#slider-5 .slides>li {
height: 778px;
}
#slider-5 {
height: 778px;
}
}
@media(max-width:1199px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 768px;
}
#slider-5 .slides>li {
height: 768px;
}
#slider-5 {
height: 768px;
}
#slider-5 li .meta {
margin-top: -40px;
}
}
@media(max-width:991px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 868px;
}
#slider-5 .slides>li {
height: 868px;
}
#slider-5 {
height: 868px;
}
#slider-5 li .meta {
margin-top: -70px;
}
#slider-5 li .meta h2 {
font-size: 55px;
}
#slider-5 li .meta p {
font-size: 16px;
}
}
@media(max-width:768px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 868px;
}
#slider-5 .slides>li {
height: 868px;
}
#slider-5 {
height: 868px;
}
#slider-5 li .meta {
margin-top: -110px;
}
#slider-5 li .meta h2 {
font-size: 45px;
}
#slider-5 li .meta p {
font-size: 15px;
}
}
@media(max-width:576px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 868px;
}
#slider-5 .slides>li {
height: 868px;
}
#slider-5 {
height: 868px;
}
#slider-5 li .meta {
margin-top: -90px;
}
#slider-5 li .meta h2 {
font-size: 35px;
}
#slider-5 li .meta p {
font-size: 14px;
width: 90%;
}
}
/************* TOUR-SLIDER *************/
@media(max-width:991px) {
.tour-slider li .meta h2 {
font-size: 55px;
}
}
@media(max-width:768px) {
.tour-slider li .meta {
text-align: center;
}
.tour-slider li .meta h2 {
font-size: 45px;
}
.tour-slider li .meta .highlight-price {
font-size: 15px;
}
.tour-slider li .meta p {
margin: 0 auto;
}
}
@media(max-width:576px) {
.tour-slider li .meta h2 {
font-size: 40px;
}
.tour-slider li .meta p {
width: 90%;
}
}
@media(max-width:420px) {
.tour-slider li .meta h2 {
font-size: 35px;
}
}
/************* TRAVEL-AGENCY *************/
@media(min-width:1200px) {
#travel-agency #flexslider-container-5, #travel-agency #slider-5 .slides, #travel-agency #slider-5 .flex-viewport {
height: 720px;
}
#travel-agency #slider-5 .slides>li {
height: 720px;
}
#travel-agency #slider-5 {
height: 720px;
}
#travel-agency #slider-5 li .meta {
margin-top: 30px;
}
}
@media(max-width:1199px) {
#travel-agency #flexslider-container-5, #travel-agency #slider-5 .slides, #travel-agency #slider-5 .flex-viewport {
height: 700px;
}
#travel-agency #slider-5 .slides>li {
height: 700px;
}
#travel-agency #slider-5 {
height: 700px;
}
#travel-agency #slider-5 li .meta {
margin-top: 30px;
}
}
@media(max-width:991px) {
#travel-agency #flexslider-container-5, #travel-agency #slider-5 .slides, #travel-agency #slider-5 .flex-viewport {
height: 660px;
}
#travel-agency #slider-5 .slides>li {
height: 660px;
}
#travel-agency #slider-5 {
height: 660px;
}
}
@media(max-width:768px) {
#travel-agency #slider-5 li .meta {
margin-top: 40px;
}
}
@media(max-width:576px) {
#travel-agency #flexslider-container-5, #travel-agency #slider-5 .slides, #travel-agency #slider-5 .flex-viewport {
height: 600px;
}
#travel-agency #slider-5 .slides>li {
height: 600px;
}
#travel-agency #slider-5 {
height: 600px;
}
#travel-agency #slider-5 li .meta {
margin-top: 45px;
}
}
/* -----------------------------------------------------
Nav Tabs Display
----------------------------------------------------- */
@media(max-width:767.9px) {
.nav.nav-tabs.nav-justified {
display: block;
}
}
@media(min-width:768px) {
.nav.nav-tabs.nav-justified {
display: flex;
}
}
/* -----------------------------------------------------
Search Tabs
----------------------------------------------------- */
@media(max-width:1199px) {
.search-tabs .tab-content .tab-pane .search-btn {
text-align: center;
}
.search-tabs .tab-content .tab-pane .search-btn .btn {
margin-top: 10px;
}
.search-tabs .tab-content .tab-pane {
padding: 35px 30px;
}
}
@media(max-width:650px) {
.search-tabs .nav-tabs li .st-text {
display: none;
}
.search-tabs .nav-tabs li .fa {
margin-left: 0px;
font-size: 18px;
}
.search-tabs .nav-tabs li a {
padding: 8px 18px;
}
.search-tabs .nav-tabs li.active a {
padding: 8px 20px 11px;
}
}
@media(min-width:577px) {
.search-tabs .tab-content .tab-pane input, .search-tabs .tab-content .tab-pane select, .search-tabs .tab-content .tab-pane .btn {
height: 40px;
}
.search-tabs .tab-content .tab-pane .form-group.left-icon .fa {
top: 12px;
font-size: 15px;
}
.search-tabs .tab-content .tab-pane .form-group.right-icon .fa {
top: 10px;
font-size: 20px;
}
}
@media(max-width:576px) {
.search-tabs .tab-content .tab-pane input, .search-tabs .tab-content .tab-pane select {
font-size: 13px;
}
.search-tabs .tab-content .tab-pane .form-group.left-icon .fa {
top: 10px;
font-size: 14px;
}
.search-tabs .tab-content .tab-pane .form-group.right-icon .fa {
top: 7px;
font-size: 20px;
}
}
@media(max-width:360px) {
.search-tabs .nav-tabs li .fa {
font-size: 15px;
}
}
/************* SEARCH-TABS-3 *************/
@media(min-width:992px) and (max-width:1199px) {
#search-tabs-3.search-tabs .nav-tabs li {
font-size: 12px;
}
#search-tabs-3 .nav-tabs li a, #search-tabs-3 .nav-tabs li.active a {
padding: 10px 13px;
}
}
@media(min-width:769px) and (max-width:1199px) {
.welcome-message {
padding: 43px 35px;
margin-top: 37px;
}
}
@media(min-width:577px) {
#search-tabs-3 .tab-content .tab-pane .form-group.left-icon .fa {
top: 38px;
}
#search-tabs-3 .tab-content .tab-pane .form-group.right-icon .fa {
top: 36px;
}
}
@media(max-width:576px) {
#search-tabs-3 .tab-content .tab-pane .form-group.left-icon .fa {
top: 35px;
}
#search-tabs-3 .tab-content .tab-pane .form-group.right-icon .fa {
top: 32px;
}
}
/* -----------------------------------------------------
Main Block
----------------------------------------------------- */
/************** OFFER-PRICE-1 *************/
@media(min-width:992px) and (max-width:1199px) {
.offer-price-1 li.price {
font-size: 17px;
}
.offer-price-1 li.price .pkg, .offer-price-1 li.rating .fa {
font-size: 12px;
}
.offer-price-1 li.price .pkg, .offer-price-1 li.price .divider {
top: -1px;
}
}
@media(max-width:767px) {
.offer-price-1 li.price {
font-size: 17px;
}
.offer-price-1 li.price .pkg, .offer-price-1 li.rating .fa {
font-size: 11px;
}
.offer-price-1 li.price .pkg, .offer-price-1 li.price .divider {
top: -1px;
}
}
@media(max-width:630px) {
.offer-price-1 li.price .divider {
margin: 0px 5px;
}
}
/************** OFFER-PRICE-2 *************/
/*@media(min-width:992px) and (max-width:1199px){
.offer-price-2 li.price{
font-size:20px;
}
}*/
@media(max-width:767px) {
.offer-price-2 li.price {
font-size: 20px;
}
}
/* -----------------------------------------------------
Hotel Block
----------------------------------------------------- */
@media(max-width:420px) {
.hotel-info .hotel-title {
font-size: 1.38em;
}
.hotel-title.main-title p {
font-size: 13px;
}
}
/* -----------------------------------------------------
Tour Block
----------------------------------------------------- */
@media(max-width:767px) {
.tour-info .tour-title a {
font-size: 19px;
}
.tour-info .tour-title p {
font-size: 1.07em;
}
}
/* -----------------------------------------------------
Cruise Block
----------------------------------------------------- */
@media(min-width:992px) and (max-width:1199px) {
.cruise-block .cruise-img img {
min-height: 190px;
max-height: 190px;
}
#owl-cruise-offers .cruise-block .cruise-img img {
min-height: 215px;
max-height: 215px;
}
}
@media(max-width:767px) {
.cruise-block {
margin-bottom: 30px;
}
}
@media(max-width:420px) {
.cruise-title a {
font-size: 19px;
}
.cruise-title p {
font-size: 13px;
}
.cruise-title .cruise-price {
font-size: 20px;
}
}
@media(max-width:991px) {
#owl-cruise-offers .owl-controls .owl-buttons {
top: 47%;
transform: translateY(-47%);
}
}
/* -----------------------------------------------------
Flight Block
----------------------------------------------------- */
@media(min-width:1200px) {
.flight-timing li {
width: 50%;
float: right;
}
}
@media(max-width:1199px) {
.flight-info .offer-price-1 li {
display: inline-block;
}
.flight-info .offer-price-1 li.rating {
float: left;
margin-top: 0px;
}
}
@media(min-width:992px) and (max-width:1199px) {
.flight-timing li {
float: none;
width: 100%;
}
.flight-timing li:first-child {
padding-bottom: 0px;
}
.flight-timing li:nth-child(2) {
padding-top: 4px;
}
}
@media(max-width:991px) {
.flight-timing li {
width: 50%;
float: right;
}
}
@media(max-width:767px) {
.flight-block {
margin-bottom: 30px;
}
.flight-info .offer-price-1 li.price .pkg {
top: -2px;
}
}
@media(max-width:420px) {
.flight-info h3 .flight-destination {
font-size: 21px;
}
.flight-info h3 .flight-type {
font-size: 13px;
}
.flight-timing li {
float: none;
width: 100%;
}
.flight-timing li:first-child {
padding-bottom: 0px;
}
.flight-timing li:nth-child(2) {
padding-top: 4px;
}
}
/* -----------------------------------------------------
Destination Block
----------------------------------------------------- */
@media(min-width:992px) and (max-width:1199px) {
.destination-img img {
min-height: 290px;
}
}
@media(max-width:767px) {
.destination-block {
margin-bottom: 30px;
}
}
/* -----------------------------------------------------
Vehicle Block
----------------------------------------------------- */
@media(max-width:767px) {
.vehicle-block {
margin-bottom: 30px;
}
.vehicle-info .vehicle-title a {
font-size: 19px;
}
.vehicle-info .vehicle-title p {
font-size: 15px;
}
}
/************* CAR-OFFER-BLOCK *************/
@media(max-width:767px) {
.car-offer-info li .car-offer-price {
font-size: 19px;
}
.car-offer-info li .limit {
font-size: 12px;
top: -3px;
}
}
@media(max-width:576px) {
.car-offer-info {
text-align: center;
}
.car-offer-info li h4 {
display: block;
}
.car-offer-info li .car-offer-price {
float: none;
}
}
/* -----------------------------------------------------
Gallery
----------------------------------------------------- */
@media(min-width: 1201px) {
#masonry {
-moz-column-count: 4;
-webkit-column-count: 4;
column-count: 4;
}
}
@media(min-width: 769px) and (max-width: 1200px) {
#masonry {
-moz-column-count: 3;
-webkit-column-count: 3;
column-count: 3;
}
}
@media(min-width: 576px) and (max-width: 768px) {
#masonry {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
}
@media(max-width: 576px) {
#masonry {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
/* -----------------------------------------------------
Best Features
----------------------------------------------------- */
@media(max-width:991px) {
#best-features {
padding-bottom: 26px;
}
.b-feature-block {
margin-bottom: 60px;
}
}
@media(max-width:768px) {
.b-feature-block .fa {
height: 60px;
width: 55px;
padding-top: 12px;
font-size: 30px;
}
.b-feature-block h3 {
font-size: 20px;
}
}
/* -----------------------------------------------------
Luxury Offers
----------------------------------------------------- */
@media(max-width:768px) {
.luxury-text .btn {
height: 42px;
}
.luxury-text .btn-black {
font-size: 18px;
padding: 7px 25px;
}
.luxury-text .btn-o-border {
font-size: 16px;
padding: 8px 37px;
}
}
/*************** ROOMS-OFFER ***************/
@media(max-width:1199px) {
.luxury-room-text {
text-align: center;
}
.luxury-room-text p {
width: 100%;
}
}
@media(max-width:576px) {
.luxury-room-text {
padding: 60px 30px;
}
}
@media(max-width:420px) {
.luxury-room-imgs {
padding: 23px;
}
}
/*************** TOUR-OFFER ****************/
@media(max-width:768px) {
.hot-tour-text h3 {
font-size: 26px;
}
.hot-tour-text .hot-tour-title {
font-size: 40px;
}
.hot-tour-text p {
font-size: 18px;
margin-bottom: 50px;
}
.hot-tour-text .btn {
padding: 8px 28px;
font-size: 16px;
}
.hot-tour-text .btn-details {
padding: 8px 28px;
}
}
@media(max-width:576px) {
#hot-tour-carousel .carousel-control .glyphicon {
font-size: 18px;
height: 55px;
width: 55px;
padding-top: 17px;
}
#hot-tour-carousel .carousel-control.left {
right: 30px;
}
#hot-tour-carousel .carousel-control.right {
left: 30px;
}
.hot-tour-text h3 {
font-size: 22px;
}
.hot-tour-text .hot-tour-title {
font-size: 36px;
}
.hot-tour-text p {
font-size: 16px;
}
}
/************** CRUISE-OFFER ***************/
@media(min-width:992px) and (max-width:1199px) {
.cruise-offer-text {
padding: 65px 50px 0px 0px;
}
}
@media(max-width:991px) {
.cruise-offer-text {
padding: 40px 30px 0px 0px;
}
.cruise-offer-text h2 {
font-size: 38px;
}
.cruise-offer-text h3 {
font-size: 22px;
}
.cruise-offer-text .cruise-offer-dur {
font-size: 15px;
}
.cruise-offer-text .cruise-offer-price {
font-size: 28px;
margin: 25px 0px 35px 0px;
}
.cruise-offer-text .btn {
font-size: 1.2em;
padding: 14px 40px;
}
}
@media(max-width:767px) {
.cruise-offer-text {
padding: 40px 10px 50px;
text-align: center;
}
}
@media(max-width:576px) {
.cruise-offer-text h2 {
font-size: 35px;
}
.cruise-offer-text .cruise-offer-price {
font-size: 25px;
margin: 25px 0px 35px 0px;
}
.cruise-offer-text .btn {
font-size: 1.1em;
padding: 12px 30px;
}
}
/**************** CAR-OFFER ****************/
@media(min-width:1200px) {
.luxury-car-text {
margin-top: 35px;
}
}
@media(min-width:992px) and (max-width:1199px) {
.luxury-car-text {
padding: 40px 50px 51px;
}
.luxury-car-text .btn-black {
font-size: 20px;
padding: 7px 20px;
}
.luxury-car-text .btn-o-border {
font-size: 14px;
padding: 11px 45px;
margin-right: 2px;
margin-left: 0px;
}
}
@media(max-width:991px) {
.luxury-car-text {
text-align: center;
}
.luxury-car-text p {
width: 100%;
}
}
@media(max-width:576px) {
.luxury-car-text {
padding: 60px 30px;
}
}
/* -----------------------------------------------------
Banners
----------------------------------------------------- */
/************** VIDEO-BANNER **************/
@media(max-width:991px) {
#video-banner p {
font-size: 19px;
width: 90%;
margin: 0 auto;
}
}
@media(max-width:768px) {
#video-banner h2 {
font-size: 30px;
}
#video-banner p {
font-size: 15px;
}
#video-banner #play-button .fa {
font-size: 27px;
width: 90px;
height: 90px;
padding-top: 27px;
margin-top: 40px;
}
}
/************* MESSAGE-BANNER *************/
@media(min-width:1200px) {
#message-banner .message-btn {
padding-right: 0px;
}
}
@media(max-width:1199px) {
#message-banner {
text-align: center;
}
#message-banner .message-btn .btn {
margin-top: 40px;
padding: 12px 31px;
}
}
@media(max-width:991px) {
#message-banner h2 {
font-size: 32px;
}
#message-banner .message-btn .btn {
margin-top: 40px;
padding: 12px 31px;
font-size: 17px;
}
}
@media(max-width:768px) {
#message-banner h2 {
font-size: 26px;
}
#message-banner p {
font-size: 16px;
}
#message-banner .message-btn .btn {
padding: 10px 28px;
font-size: 16px;
}
}
/************* SEARCH-BANNER *************/
@media(max-width:991px) {
#search-banner p:first-child {
font-size: 20px;
}
#search-banner p {
font-size: 22px;
}
#search-banner h2 {
font-size: 40px;
}
#search-banner .btn {
margin-top: 30px;
font-size: 18px;
padding: 11px 27px;
}
}
@media(max-width:768px) {
#search-banner {
text-align: center;
}
#search-banner p:first-child {
font-size: 18px;
}
#search-banner p {
font-size: 20px;
}
#search-banner h2 {
font-size: 35px;
}
#search-banner .btn {
margin-top: 25px;
font-size: 16px;
padding: 11px 25px;
}
}
/* -----------------------------------------------------
Highlights
----------------------------------------------------- */
@media(max-width:991px) {
.highlight-box .h-icon {
width: 87px;
font-size: 60px;
}
.highlight-box .h-icon .fa-ship, .highlight-box .h-icon .fa-taxi {
font-size: 55px;
}
.highlight-box .h-text .numbers {
font-size: 45px;
}
.highlight-box .h-text p {
font-size: 15px;
}
}
@media(max-width:767px) {
#highlights #boxes {
width: 290px;
margin: 0 auto;
}
.highlight-box {
margin: 15px 0px;
}
.highlight-box .h-text.cruise, .highlight-box .h-text.taxi {
padding-right: 0px;
}
.highlight-box .h-icon .fa-plane {
margin-top: 14px;
}
}
@media(max-width:576px) {
#highlights #boxes {
width: 255px;
margin: 0 auto;
}
.highlight-box .h-icon {
width: 77px;
font-size: 50px;
}
.highlight-box .h-icon .fa-ship, .highlight-box .h-icon .fa-taxi {
font-size: 45px;
}
.highlight-box .h-text .numbers {
font-size: 40px;
}
.highlight-box .h-text p {
font-size: 13px;
}
}
/* -----------------------------------------------------
Testimonials
----------------------------------------------------- */
@media(max-width:768px) {
#testimonials .page-heading h2, #testimonials-2 .page-heading h2 {
font-size: 32px;
}
}
/************* QUOTE-CAROUSEL *************/
@media(max-width:1199px) {
#quote-carousel .item blockquote {
padding: 0px 100px;
}
}
@media(max-width:991px) {
#quote-carousel .item blockquote {
padding: 0px 10px;
}
}
@media(max-width:768px) {
#quote-carousel .item blockquote {
font-size: 15px;
}
#quote-carousel .item small {
font-size: 20px;
}
}
@media(min-width:576px) {
#quote-carousel .carousel-indicators {
height: 110px;
}
}
@media(max-width:576px) {
#quote-carousel .carousel-indicators {
height: 70px;
}
#quote-carousel .carousel-indicators li {
width: 40px;
height: 40px;
}
#quote-carousel .carousel-indicators li.active {
width: 70px;
height: 70px;
}
}
@media(max-width:576px) {
#quote-carousel .carousel-indicators {
width: 70%;
/*left:45%;*/
}
}
/************* CRUISE HOMEPAGE *************/
@media(max-width:1199px) {
#cruise-homepage #quote-carousel .carousel-item blockquote {
padding: 0px 50px;
}
}
@media(max-width:991px) {
#cruise-homepage #quote-carousel .carousel-item blockquote {
padding: 0px 10px;
}
}
@media(max-width:768px) {
#cruise-homepage #quote-carousel .carousel-item blockquote {
font-size: 15px;
}
#cruise-homepage #quote-carousel .carousel-item .rating .fa {
font-size: 18px;
}
#cruise-homepage #quote-carousel .carousel-item .position {
font-size: 14px;
}
}
/************* OWL-TESTIMONIALS *************/
@media(max-width:991px) {
#owl-testimonials .review-block p {
width: 100%;
margin: 0px auto 27px;
}
}
@media(max-width:768px) {
#owl-testimonials .review-block p {
font-size: 15px;
}
#owl-testimonials .review-block small {
font-size: 20px;
}
#owl-testimonials .review-block .position {
font-size: 15px;
}
}
/* -----------------------------------------------------
Latest Blog
----------------------------------------------------- */
@media(max-width:767px) {
.latest-block {
margin-bottom: 30px;
}
}
/* -----------------------------------------------------
Packages
----------------------------------------------------- */
@media(min-width:992px) {
.package .pkg-features li, .package .btn {
font-size: 14px;
}
}
/************* HOTEL-PACKAGES *************/
@media(min-width:992px) {
#hotel-package-tables {
margin-top: 100px;
}
.hotel-package.best-package {
margin: 0px 4px;
}
.hotel-package.best-package {
padding: 80px 15px 90px;
position: relative;
top: -40px;
}
}
@media(max-width:991px) {
.hotel-package {
margin: 15px 0px;
}
}
@media(max-width:420px) {
.h-pkg-title {
font-size: 23px;
}
.h-pkg-price {
font-size: 34px;
height: 132px;
width: 132px;
padding-top: 34px;
}
.h-pkg-price span {
margin-top: -15px;
font-size: 17px;
}
}
/*************** TOUR-PACKAGES *************/
@media(max-width:420px) {
.tour-package .t-pkg-title {
font-size: 30px;
}
.tour-package .t-pkg-price {
font-size: 20px;
}
}
/* -----------------------------------------------------
Newsletter
----------------------------------------------------- */
/************* NEWSLETTER-1 *************/
@media(max-width:768px) {
#newsletter-1 h2 {
font-size: 31px;
}
#newsletter-1 p {
font-size: 15px;
}
#newsletter-1 form .form-group {
width: 60%;
}
}
@media(max-width:600px) {
#newsletter-1 form .form-group {
width: 90%;
}
#newsletter-1 form .input-group-btn .btn {
width: 65px;
}
}
/************* NEWSLETTER-2 *************/
@media(min-width:992px) and (max-width:1199px) {
#newsletter-2 form .form-group {
margin-top: 20px;
}
}
@media(max-width:991px) {
#newsletter-2 {
text-align: center;
}
#newsletter-2 h2 {
margin-top: 0px;
margin-bottom: 20px;
}
#newsletter-2 form .form-group {
width: 85%;
margin: 0 auto;
}
}
@media(max-width:768px) {
#newsletter-2 h2 {
font-size: 2.0em;
}
}
/* -----------------------------------------------------
Contact Form
----------------------------------------------------- */
@media(max-width:768px) {
#contact-form .page-heading h2 {
font-size: 32px;
}
.contact-block .fa {
font-size: 30px;
}
.contact-block p {
font-size: 18px;
}
}
@media(max-width:420px) {
.contact-block {
margin-top: 30px;
padding: 31px 30px;
}
}
/* -----------------------------------------------------
Footer
----------------------------------------------------- */
@media(min-width:992px) {
.ftr-pad-left {
padding-right: 55px;
}
.footer-widget.ftr-our-company p {
padding-left: 30px;
}
}
@media(max-width:991px) {
.footer-widget {
margin-bottom: 50px;
}
.footer-widget:last-child {
margin-bottom: 0px;
}
}
@media(min-width:768px) {
#terms {
text-align: left;
}
}
@media(max-width:768px) {
.footer-widget .footer-heading {
font-size: 23px;
}
.footer-widget.ftr-about .social-links li a {
font-size: 19px;
}
}
@media(max-width:767px) {
#footer-bottom {
text-align: center;
}
#footer-bottom #copyright {
margin-bottom: 10px;
}
}
/************* HOTEL HOMEPAGE *************/
@media(min-width:992px) {
#hotel-homepage .footer-widget.ftr-our-company {
margin-top: 25px;
}
.footer-widget.ftr-map {
padding-right: 53px;
}
}
/************* CRUISE HOMEPAGE *************/
@media(min-width:992px) {
#cruise-homepage #footer-top {
padding-bottom: 150px;
}
}
/* -----------------------------------------------------
Page Cover
----------------------------------------------------- */
@media(max-width:768px) {
.page-cover h1 {
font-size: 25px;
}
}
/** New **/
@media(max-width:768px) {
.cover-navbar-wrapper.pt-164 {
padding-top: 124px;
}
}
@media(max-width:768px) {
.page-cover.p-20, .page-cover.p-20 .breadcrumb {
text-align: center;
}
.page-cover.p-20 .breadcrumb {
margin-top: 0px;
}
}
/*********** PAGE-COVER STYLE2 **********/
@media(max-width:768px) {
.page-cover.style2 .page-title {
float: none;
margin-bottom: 7px;
}
.page-cover.style2 .breadcrumb {
margin-top: 0px;
}
.page-cover.style2 .breadcrumb, .page-cover.style2 .page-title {
text-align: center;
}
}
/*********** PAGE-COVER STYLE4 **********/
@media(max-width:768px) {
.page-cover.style4 .breadcrumb {
float: none;
margin-bottom: 7px;
}
.page-cover.style4 .breadcrumb, .page-cover.style4 .page-title {
text-align: center;
}
}
/* -----------------------------------------------------
Sidebar
----------------------------------------------------- */
@media(max-width:991px) {
.right-side-bar.side-bar {
margin-top: 90px;
}
.left-side-bar.side-bar {
margin-bottom: 90px;
}
}
/******** GRID/LIST PAGES SIDEBAR ********/
@media(min-width:992px) {
.support-block {
margin-top: 40px;
}
}
@media(max-width:767px) {
.support-block {
margin-top: 40px;
}
}
/********* DETAIL PAGES SIDEBAR *********/
@media(min-width:1200px) {
.booking-form .no-sp-l {
padding-right: 5px;
}
.booking-form .no-sp-r {
padding-left: 5px;
}
}
/********* BOOKING PAGES SIDEBAR ********/
@media(max-width:360px) {
.side-bar .detail-block .detail-title h4 {
font-size: 19px;
}
.side-bar .detail-block .detail-title p {
font-size: 13px;
}
.side-bar .detail-block .detail-title .rating .fa {
font-size: 13px;
}
}
/********** BLOG PAGES SIDEBAR **********/
@media(max-width:991px) {
.side-bar .instagram li {
width: 80px;
}
}
@media(max-width:768px) {
.side-bar .follow-us li a {
font-size: 25px;
}
}
/* -----------------------------------------------------
Grid Block
----------------------------------------------------- */
@media(max-width:420px) {
.block-title {
font-size: 19px;
}
}
@media(max-width:768px) {
.grid-block .offer-price-1 li.price {
font-size: 20px;
}
.grid-block .offer-price-1 li.price .pkg {
font-size: 13px;
top: -2px;
}
.grid-block .offer-price-1 li.price .divider {
margin: 0px 8px;
top: -3px;
}
}
/* -----------------------------------------------------
List Block
----------------------------------------------------- */
@media(min-width:992px) {
.list-info {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
.list-img {
-webkit-flex: 1 0 15%;
-ms-flex: 1 0 15%;
flex: 1 0 15%;
}
}
@media(min-width:768px) and (max-width:991px) {
.list-info {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
.list-img {
-webkit-flex: 1 0 20%;
-ms-flex: 1 0 20%;
flex: 1 0 20%;
}
}
@media(min-width:768px) {
.list-content {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
width: 100%;
vertical-align: top;
overflow: hidden;
}
.list-img {
position: relative;
overflow: hidden;
}
.list-img img {
height: 100%;
}
}
@media(max-width:767px) {
.list-block .list-info {
padding: 21px 21px 28px;
}
.list-block .list-info .block-title {
font-size: 20px;
}
.list-block .list-info .block-minor {
font-size: 13px;
}
}
/*********** FLIGHT-LIST BLOCK **********/
@media(min-width:1200px) {
.f-list-img .flight-timing li {
padding: 15px 5px;
}
}
@media(max-width:1199px) {
.f-list-img .offer-price-1 li {
width: 100%;
text-align: center;
}
.f-list-img .offer-price-1 .price {
float: none;
margin-top: 5px;
font-size: 17px;
}
.f-list-img .offer-price-1 .price .divider {
top: -2px;
}
.f-list-img .offer-price-1 .price .pkg {
font-size: 12px;
top: -2px;
}
}
@media(min-width:992px) {
.f-list-img.list-img {
-webkit-flex: 1 0 14%;
-ms-flex: 1 0 14%;
flex: 1 0 14%;
}
}
@media(max-width:991px) {
.f-list-img.list-img {
-webkit-flex: 1 0 13%;
-ms-flex: 1 0 13%;
flex: 1 0 13%;
}
.f-list-img .flight-timing li {
float: none;
width: 100%;
}
.f-list-img .flight-timing li:first-child {
padding-bottom: 0px;
}
.f-list-img .flight-timing li:nth-child(2) {
padding-top: 4px;
}
}
/************ CAR-LIST BLOCK ************/
@media(max-width:1199px) {
.cr-list-info .car-features li {
font-size: 12px;
padding-left: 7px;
}
.cr-list-info .car-features li .fa {
width: 45px;
height: 39px;
font-size: 15px;
padding-top: 12px;
}
}
@media(min-width:992px) {
.cr-list-img.list-img {
-webkit-flex: 1 0 13%;
-ms-flex: 1 0 13%;
flex: 1 0 13%;
}
}
@media(max-width:991px) {
.cr-list-img .offer-price-1 li.price {
font-size: 17px;
}
.cr-list-img .offer-price-1 li.price .divider {
top: -2px;
}
.cr-list-img .offer-price-1 li.price .pkg {
top: -2px;
font-size: 11px;
}
}
/* -----------------------------------------------------
Pagination
----------------------------------------------------- */
@media(max-width:576px) {
.pages .pagination li a {
font-size: 15px;
padding: 6px 14px;
}
.pages .pagination li:first-child a, .pages .pagination li:last-child a {
padding: 6px 14px;
}
}
/* -----------------------------------------------------
Detail Pages Tabs
----------------------------------------------------- */
@media(min-width:768px) and (max-width:1199px) {
.detail-tabs .tab-pane .tab-text {
padding-top: 0px;
}
}
@media(max-width:767px) {
.available-blocks h2 {
font-size: 24px;
}
.detail-tabs .nav-tabs {
margin-bottom: 5px;
}
.detail-tabs .nav-tabs.nav-justified>li>a {
margin-bottom: 0px;
}
.detail-tabs .tab-pane .tab-text p {
width: 100%;
}
}
@media(max-width:420px) {
.detail-tabs .tab-pane .tab-text h3 {
font-size: 19px;
}
}
/* -----------------------------------------------------
Detail Pages Slider
----------------------------------------------------- */
@media(max-width:576px) {
.detail-slider .features {
top: 8px;
}
.detail-slider .features li {
padding: 12px 20px;
min-width: 140px;
}
.detail-slider .features li .f-icon {
font-size: 21px;
width: 30px;
}
.detail-slider .features li .f-text p.f-heading, .detail-slider .features li .f-text p.f-data {
font-size: 12px;
}
.feature-slider-nav .slick-list .slick-slide img {
padding: 0px 10px;
}
}
@media(max-width:420px) {
.detail-slider .features li {
padding: 10px 17px;
min-width: 130px;
}
.detail-slider .features li .f-icon {
top: -3px;
font-size: 17px;
width: 24px;
}
.detail-slider .features li .f-text p.f-heading {
display: none;
}
}
/* -----------------------------------------------------
Custom Forms
----------------------------------------------------- */
@media(min-width:992px) {
.custom-form-img {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
.custom-form-fields {
-webkit-flex: 1 0 15%;
-ms-flex: 1 0 15%;
flex: 1 0 15%;
}
.flex-content {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
width: 100%;
vertical-align: top;
overflow: hidden;
}
.flex-content-img {
position: relative;
overflow: hidden;
}
.flex-content-img img {
height: 100%;
}
}
@media(max-width:991px) {
.custom-form-img img {
width: 100% !important;
height: 0%;
}
}
@media(max-width:576px) {
.custom-form {
padding: 40px 30px 55px;
}
}
@media(max-width:420px) {
.custom-form {
padding: 35px 25px 50px;
}
.custom-form h3 {
font-size: 22px;
}
}
/************ PAGE-SEARCH-FORM ***********/
@media(max-width:768px) {
.page-search-form h2 {
font-size: 34px;
}
}
@media(max-width:500px) {
.page-search-form {
padding: 30px 30px 45px;
}
.page-search-form h2 {
font-size: 30px;
}
}
/************ LG-BOOKING-FORM ***********/
@media(max-width:768px) {
.lg-booking-form .lg-booking-form-heading h3 {
font-size: 21px;
}
.lg-booking-form .lg-booking-form-heading span {
height: 45px;
width: 45px;
display: inline-block;
text-align: center;
margin-left: 15px;
padding-top: 7px;
font-size: 21px;
}
}
@media(max-width:576px) {
.lg-booking-form .payment-tabs #tab-paypal img {
float: none;
margin-bottom: 20px;
}
}
/************ FULL PAGE FORMS ************/
@media(max-width:768px) {
.full-page-title .company-name {
font-size: 40px;
}
.full-page-title .company-name .fa {
font-size: 54px;
}
.full-page-title p {
width: 90%;
font-size: 15px;
}
}
@media(min-width:650px) {
#full-page-form .custom-form {
width: 470px;
margin: 0 auto;
}
}
@media(max-width:419px) {
.full-page-title .company-name {
font-size: 33px;
}
.full-page-title .company-name .fa {
font-size: 48px;
}
}
/* -----------------------------------------------------
Popup Ad
----------------------------------------------------- */
@media(max-width:767px) {
#popup-ad .modal-body {
text-align: center;
}
#popup-ad .modal-body .popup-ad-img {
margin-top: 40px;
}
#popup-ad .modal-body .popup-ad-text h2 {
margin: -7px 0px 1px;
font-size: 40px;
}
#popup-ad .modal-body .popup-ad-text h2 span {
font-size: 45px;
}
#popup-ad .modal-body .popup-ad-text .btn {
padding: 7px 26px 8px;
}
}
/* -----------------------------------------------------
Extra Pages
----------------------------------------------------- */
/************ ABOUT US PAGE *************/
@media(min-width:992px) {
.about-img {
-webkit-flex: 1 0 25%;
-ms-flex: 1 0 25%;
flex: 1 0 25%;
}
.about-text {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
}
@media(max-width:991px) {
#about-content .about-detail {
padding: 40px 40px 50px;
}
}
@media(max-width:768px) {
#about-content .about-detail h2 {
font-size: 27px;
}
#about-content .about-detail p:nth-of-type(1) {
font-size: 15px;
line-height: 1.5em;
}
#about-content .about-detail p:nth-of-type(2) {
font-size: 14px;
}
}
@media(max-width:575px) {
#about-content .about-detail {
padding: 30px 30px 40px;
}
#about-content .about-detail h2 {
font-size: 24px;
}
}
/*********** ABOUT US 2 PAGE ************/
@media(min-width:992px) {
#about-content-2 #abt-cnt-2-text {
padding-right: 20px;
}
}
@media(max-width:991px) {
#about-content-2 #abt-cnt-2-text, #about-content-2 #abt-cnt-2-img {
text-align: center;
}
#about-content-2 #abt-cnt-2-img img {
display: inline-block;
margin-bottom: 50px;
}
#progress-bars {
margin-top: 50px;
}
}
@media(max-width:768px) {
#about-content-2 #abt-cnt-2-text h2 {
font-size: 25px;
}
#about-content-2 #abt-cnt-2-text h2>span {
font-size: 38px;
}
#about-content-2 #abt-cnt-2-text p {
font-size: 15px;
}
#about-content-2 .abt-cnt-2-ftr .fa {
font-size: 25px;
height: 55px;
width: 55px;
padding-top: 14px;
}
#about-content-2 .abt-cnt-2-ftr h4 {
font-size: 16px;
}
#why-us-tabs .nav-tabs li a {
font-size: 15px;
padding: 8px 20px;
}
}
@media(max-width:767px) {
#why-us-tabs .nav-tabs li {
width: 100%;
margin-bottom: 1px;
text-align: center;
}
#why-us-tabs .nav-tabs li:last-child {
margin-bottom: 0px;
}
#why-us-tabs .nav-tabs li a {
margin-left: 0px;
}
#why-us-tabs .tab-content .tab-pane, #company-logos {
text-align: center;
}
#owl-company-logo {
margin-top: 25px;
}
}
/************** ERROR PAGE **************/
@media(max-width:991px) {
.company-name {
font-size: 34px;
}
.company-name .fa {
font-size: 50px;
}
#error-text h2 {
font-size: 276px;
margin-bottom: -47px;
}
#error-text p {
font-size: 27px;
}
#error-text .btn {
font-size: 18px;
padding: 14px 45px;
}
}
@media(max-width:768px) {
.company-name {
font-size: 30px;
}
.company-name .fa {
font-size: 45px;
}
#error-text h2 {
font-size: 226px;
margin-bottom: -37px;
}
#error-text p {
font-size: 24px;
width: 60%;
}
#error-text .btn {
font-size: 17px;
padding: 14px 37px;
}
}
@media(max-width:576px) {
.company-name {
font-size: 27px;
}
.company-name .fa {
font-size: 40px;
}
#error-text h2 {
font-size: 186px;
margin-bottom: -27px;
}
#error-text p {
font-size: 22px;
width: 75%;
}
#error-text .btn {
font-size: 17px;
padding: 10px 30px;
}
}
@media(max-width:420px) {
.company-name {
font-size: 24px;
}
.company-name .fa {
font-size: 35px;
}
#error-text h2 {
font-size: 156px;
margin-bottom: -20px;
}
#error-text p {
font-size: 20px;
width: 90%;
margin-bottom: 50px;
}
#error-text .btn {
font-size: 15px;
padding: 10px 30px;
}
}
/************** ERROR PAGE 2 *************/
@media(min-width:992px) {
.error-page-2-circle h2 {
margin-top: 140px;
}
}
@media(max-width:991px) {
#error-page-2 {
text-align: center;
}
#error-page-2 .full-page-title {
margin-bottom: 60px;
}
.error-page-2-circle h2 {
margin-bottom: 30px;
}
}
@media(max-width:768px) {
.error-page-2-circle h2 {
margin-bottom: 30px;
font-size: 58px;
height: 183px;
width: 183px;
padding-top: 48px;
}
.error-page-2-text h2 {
font-size: 29px;
}
.error-page-2-text p {
font-size: 16px;
}
}
@media(max-width:419px) {
.error-page-2-circle h2 {
font-size: 53px;
height: 170px;
width: 170px;
}
.error-page-2-text h2 {
font-size: 26px;
}
.error-page-2-text p {
font-size: 15px;
}
.error-page-2-text .btn {
font-size: 16px;
}
}
/********** COMING SOON PAGE ************/
@media(max-width:991px) {
#coming-soon-text h2 {
font-size: 75px;
}
#coming-soon-text p {
font-size: 27px;
}
#coming-soon-text .timer li {
height: 108px;
width: 108px;
font-size: 16px;
padding-top: 24px;
}
#coming-soon-text .timer li .digit {
font-size: 47px;
}
}
@media(max-width:768px) {
#coming-soon-text h2 {
font-size: 60px;
margin-top: 73px;
}
#coming-soon-text p {
font-size: 23px;
}
#coming-soon-text form .form-group {
margin: 60px auto 85px;
}
#coming-soon-text .timer li {
height: 98px;
width: 98px;
font-size: 16px;
padding-top: 21px;
}
#coming-soon-text .timer li .digit {
font-size: 43px;
margin-bottom: 18px;
}
}
@media(max-width:576px) {
#coming-soon-text h2 {
font-size: 50px;
margin-top: 53px;
}
#coming-soon-text p {
font-size: 20px;
}
#coming-soon-text form .form-group {
margin: 50px auto 75px;
}
#coming-soon-text .timer li {
height: 88px;
width: 88px;
font-size: 15px;
padding-top: 18px;
margin: 11px 10px;
}
#coming-soon-text .timer li .digit {
font-size: 38px;
margin-bottom: 15px;
}
}
@media(max-width:500px) {
#coming-soon-text .timer li {
width: 40%;
}
}
@media(max-width:420px) {
#coming-soon-text h2 {
font-size: 41px;
margin-top: 43px;
}
#coming-soon-text p {
font-size: 18px;
}
#coming-soon-text .timer li {
font-size: 14px;
}
#coming-soon-text .timer li .digit {
font-size: 34px;
margin-bottom: 15px;
}
#coming-soon-text form .form-group {
width: 95%;
margin: 50px auto 60px;
}
}
/********** COMING SOON PAGE 2 ************/
@media(max-width:768px) {
#coming-soon-page-2 h2 {
font-size: 25px;
}
#coming-soon-page-2 .coming-soon-2-timer ul li .digit {
font-size: 35px;
margin-bottom: 8px;
width: 100px;
height: 100px;
padding-top: 38px;
}
#coming-soon-page-2-text form .form-group {
width: 340px;
}
#coming-soon-page-2-text form input, #coming-soon-page-2-text form .btn {
height: 40px;
}
}
@media(max-width:575px) {
#coming-soon-page-2 .full-page-title {
margin-bottom: 0px;
}
#coming-soon-page-2 .full-page-title .company-name {
margin-bottom: 20px;
}
#coming-soon-page-2 h2 {
margin-bottom: 15px;
}
#coming-soon-page-2 .coming-soon-2-timer ul {
width: 245px;
margin: 0 auto;
}
#coming-soon-page-2 .coming-soon-2-timer ul li {
width: 49.4%;
}
#coming-soon-page-2 .coming-soon-2-timer ul li .digit {
display: inline-block;
}
#coming-soon-page-2 .coming-soon-2-timer ul li span:nth-child(2) {
display: block;
}
#coming-soon-page-2-text form .form-group {
margin: 50px auto 45px;
}
}
@media(max-width:419px) {
#coming-soon-page-2 h2 {
font-size: 23px;
}
#coming-soon-page-2 .coming-soon-2-timer ul {
width: 225px;
}
#coming-soon-page-2 .coming-soon-2-timer ul li .digit {
font-size: 30px;
margin-bottom: 8px;
width: 90px;
height: 90px;
padding-top: 34px;
}
#coming-soon-page-2-text form .form-group {
width: 90%;
}
#coming-soon-page-2-text form .btn {
font-size: 14px;
}
}
/********* BLOG LISTINGS PAGE ***********/
@media(max-width:576px) {
.blog-post-img .main-mask {
padding: 9px 33px;
}
.blog-post-img .main-mask .blog-post-info li {
font-size: 12px;
}
.blog-post-img .main-mask .blog-post-info li .fa {
font-size: 13px;
}
.blog-post-img .main-mask .blog-post-info li:nth-child(2) {
margin-right: 0px;
}
.blog-post-detail {
padding: 30px;
}
.blog-post-detail .blog-post-title {
font-size: 20px;
}
}
/********** BLOG DETAILS PAGE ***********/
@media(min-width:1200px) {
.comment-block .user-text p {
width: 90%;
}
.comment-block.reply-block .user-text p {
width: 80%;
}
#comment-form {
width: 88%;
}
}
@media(max-width:768px) {
.comment-block .user-text ul .user-name {
font-size: 17px;
}
.comment-block .user-text ul .user-name:after {
top: 3px;
height: 17px;
}
#comment-form .innerpage-heading h1 {
font-size: 26px;
}
}
@media(max-width:767px) {
#comments {
margin-top: 120px;
width: 100%;
}
#comment-form .form-group {
margin-bottom: 15px;
}
}
@media(max-width:550px) {
.comment-block .user-img {
float: none;
margin-bottom: 20px;
}
.comment-block .user-img img {
max-height: 50px;
}
.reply-block {
padding-right: 45px;
}
}
/************** DASHOBARD ***************/
@media(max-width:991px) {
.dashboard-nav .nav-tabs {
margin-top: 10px;
}
.dashboard-nav .nav-tabs li a {
font-size: 16px;
}
.dashboard-nav .nav-tabs li.active a {
background: #faa61a;
color: white;
border-top: 4px solid #000;
margin: -4px 0 0 0;
}
.dashboard-nav .nav-tabs li .fa {
font-size: 22px;
height: 50px;
width: 50px;
padding-top: 12px;
}
.info-stat .stat-block .fa {
font-size: 50px;
}
.dashboard-listing .table-responsive {
margin-bottom: 0px;
}
.dashboard-heading h2 {
font-size: 40px;
}
.dashboard-heading p:nth-of-type(1) {
font-size: 23.24px;
}
.dashboard-heading p:nth-of-type(2) {
font-size: 14.76px;
}
.dash-content-title {
font-size: 30px;
}
.dashboard-listing .dash-listing-heading {
padding: 13px 30px 13px 30px;
}
.dashboard-listing table td.dash-list-icon .fa {
font-size: 17px;
height: 36px;
width: 36px;
padding-top: 9px;
}
.dashboard-listing.recent-activity td.recent-ac-icon {
padding: 12px 30px 12px 8px;
}
.dashboard-listing.recent-activity table td.recent-ac-text {
font-size: 16px;
padding: 18px 8px 12px 8px;
}
.dashboard-listing.recent-activity td.del-field {
padding: 15px 8px 10px 20px;
}
.dashboard-listing.invoices td.invoice-text {
padding: 13px 8px;
}
.dashboard-listing.invoices td.invoice-icon {
padding: 20px 30px 12px 8px;
}
.invoices td.invoice-text h4 {
font-size: 16px;
margin-bottom: 6px;
}
.invoices td.invoice-text .invoice-info {
font-size: 15px;
}
.invoices td.invoice-text .invoice-info li:after {
top: 3px;
}
.invoices td.dash-list-btn {
padding-top: 23px;
padding-left: 30px;
}
}
@media(min-width:768px) {
.dashboard-content {
padding-right: 35px;
}
}
@media(max-width:767px) {
.dashboard-heading h2 {
font-size: 35px;
}
.dashboard-nav .nav-tabs li {
float: right;
width: 20%;
}
.dashboard-content {
margin-top: 80px;
}
}
@media(max-width:576px) {
.dashboard-heading h2 {
font-size: 30px;
margin-bottom: 15px;
}
.dashboard-heading p:nth-of-type(1) {
font-size: 20.24px;
}
.dashboard-heading p:nth-of-type(2) {
font-size: 14px;
}
.dash-content-title {
font-size: 28px;
}
.dashboard-nav .nav-tabs li a {
font-size: 12px;
font-weight: 400;
}
.dashboard-nav .nav-tabs li .fa {
font-size: 19px;
height: 44px;
width: 44px;
padding-top: 10px;
}
.dashboard-listing .dash-listing-heading {
padding: 13px 20px 13px 30px;
}
.dashboard-listing.recent-activity td.recent-ac-icon {
padding: 12px 20px 12px 8px;
}
.dashboard-listing.invoices td.invoice-icon {
padding: 20px 20px 12px 8px;
}
.invoices td.dash-list-btn {
padding-top: 23px;
padding-left: 20px;
}
}
@media(max-width:420px) {
.page-cover.dashboard .page-title {
display: block;
}
.page-cover.dashboard .breadcrumb {
float: none;
}
.dashboard-nav .nav-tabs li a {
font-size: 12px;
padding: 15px 0px;
}
.dashboard-nav .nav-tabs li .fa {
font-size: 17px;
height: 38px;
width: 38px;
padding-top: 9px;
}
}
/*************** DASHBOARD-2 *************/
@media(max-width:991px) {
#dashboard-tabs .nav-tabs li a {
font-size: 15px;
}
#dashboard-tabs .nav-tabs li a .fa {
margin-left: 15px;
font-size: 20px;
}
}
@media(max-width:767px) {
#dashboard-tabs .nav-tabs li a {
margin-top: 2px;
}
#dashboard-tabs .tab-content .tab-pane .dashboard-content {
margin-top: 0px;
}
}
@media(max-width:420px) {
#dashboard-tabs .tab-content .tab-pane .dashboard-content {
padding: 50px 16px 20px;
}
}
/************** PROFILE PAGE **************/
@media(max-width:991px) {
.user-profile .card-header {
padding: 12px 30px;
}
.user-profile .card-body {
padding: 30px;
}
.user-profile .card-body .user-detail li {
font-size: 15px;
}
}
@media(max-width:767px) {
.user-profile .card-body .user-img img {
margin-bottom: 30px;
}
.user-profile .card-body .user-desc {
margin-top: 60px;
}
}
/************** BOOKING PAGE ************/
@media(max-width:991px) {
.booking-trips .dashboard-listing .dash-listing-heading {
font-size: 16px;
}
.booking-listing td.booking-list-date .b-date {
padding: 10px 12px;
}
.booking-listing td.booking-list-date h3 {
font-size: 29px;
margin-bottom: -6px;
}
.booking-listing td.booking-list-date p {
font-size: 13px;
}
.booking-listing td.booking-list-detail h3 {
font-size: 21px;
}
}
@media(max-width:576px) {
.dashboard-listing.booking-listing td.booking-list-date, .booking-listing td.booking-list-detail, .booking-listing td.dash-list-btn {
padding: 20px 20px 25px;
}
}
/************* WISHLIST PAGE ************/
@media(min-width:1200px) {
.wishlist-img.list-img {
-webkit-flex: .55 0 0%;
-ms-flex: .55 0 0%;
flex: .55 0 0%;
}
.wishlist-text.list-text {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
}
@media(max-width:1199px) {
.wishlist-img.list-img {
-webkit-flex: 1 0 0%;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.wishlist-text.list-text {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
}
@media(min-width:768px) and (max-width:991px) {
.wishlist-img.list-img {
-webkit-flex: 1 0 0%;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.wishlist-text.list-text {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
}
@media(max-width:991px) {
.wishlist-text h3 {
font-size: 22px;
}
.wishlist-text h3 .rating {
font-size: 15px;
}
}
@media(max-width:768px) {
.table-responsive>.table>tbody>tr>td {
white-space: nowrap;
}
}
@media(max-width:576px) {
.wishlist td.wishlist-text {
padding: 20px 20px 30px;
}
}
/************** CARD PAGE **************/
@media(min-width:768px) {
.custom-modal .modal-dialog {
width: 450px;
}
}
@media(max-width:991px) {
.card-block {
padding: 20px 30px;
}
.card-block {
min-height: 275px;
}
.card-block .card-number {
font-size: 28px;
}
.card-block .card-expiry {
font-size: 19px;
}
.card-block h4 {
font-size: 18px;
}
.card-block .card-name {
margin-bottom: 33px;
}
.card-block .user-name {
font-size: 22px;
}
.card-block ul li.card-links {
font-size: 30px;
padding-top: 7px;
}
}
@media(max-width:420px) {
.card-block {
padding: 38px 30px 30px;
}
.card-block .card-number {
font-size: 26px;
}
.card-block .card-expiry {
font-size: 18px;
}
.card-block h4 {
font-size: 17px;
}
.card-block .card-name {
margin-bottom: 30px;
}
.custom-modal .modal-content {
padding: 20px 20px 30px;
}
}
/********* BEFORE YOU FLY PAGE **********/
@media(max-width:767px) {
.byf-info .nav-tabs li {
width: 100%;
}
}
@media(max-width:576px) {
.byf-info .nav-tabs li a {
font-size: 15px;
}
.byf-info .tab-pane {
padding: 40px 30px;
}
.byf-info .tab-pane .byf-info-wrap h3 {
font-size: 21px;
}
.byf-info .tab-pane .byf-info-wrap img+h3 {
margin-top: 40px;
}
}
/********* TRAVEL INSURANCE PAGE *********/
@media(max-width:767px) {
.tvl-insurance-info .innerpage-heading h1 {
font-size: 27px;
}
.in-feature-block .fa {
font-size: 35px;
width: 80px;
height: 80px;
padding-top: 22px;
margin-bottom: 20px;
}
.in-feature-block h4 {
font-size: 19px;
}
.insurance-plan-block a {
font-size: 15px;
padding: 10px 25px;
}
}
/************* HOLIDAYS PAGE *************/
@media(max-width:991px) {
.destination-lists {
width: 400px;
margin: 0 auto;
}
}
@media(max-width:768px) {
.big-heading h2 {
font-size: 70px;
margin-top: -138px;
margin-bottom: 60px;
}
.big-heading:before {
bottom: -50px;
font-size: 60px;
}
}
@media(max-width:767px) {
.destination-lists {
width: 200px;
margin: 0 auto;
}
}
@media(max-width:576px) {
.big-heading h2 {
font-size: 55px;
margin-top: -127px;
margin-bottom: 50px;
}
}
@media(max-width:420px) {
.big-heading h2 {
font-size: 45px;
margin-top: -120px;
margin-bottom: 40px;
}
}
@media(max-width:360px) {
.big-heading h2 {
font-size: 38px;
margin-top: -114px;
margin-bottom: 35px;
}
}
/************ THNAK YOU PAGE *************/
@media(max-width:576px) {
.thank-you-note {
padding-right: 110px;
}
.thank-you-note:before {
top: -20px;
font-size: 100px;
}
.thank-you-note h3 {
font-size: 22px;
}
.payment-method ul li img {
max-width: 75px;
}
}
@media(max-width:420px) {
.thank-you-note {
padding-right: 95px;
}
.thank-you-note:before {
top: -15px;
font-size: 85px;
}
.thank-you-note h3 {
font-size: 22px;
}
}
/********** PAYMENT-SUCCESS PAGE *********/
@media(max-width:768px) {
#payment-success h2 {
font-size: 35px;
}
#payment-success .fa-check-circle {
font-size: 105px;
}
#payment-success p:nth-of-type(2) {
width: 90%;
margin: 30px auto;
}
}
/************* SERVICES-1 PAGE *************/
@media(max-width:767px) {
.service-block-1 .service-icon-1 {
width: 65px;
}
.service-block-1 .service-icon-1 .fa {
height: 55px;
width: 55px;
padding-top: 14px;
font-size: 25px;
}
.service-block-1 .service-text-1 h3 {
font-size: 19px;
}
}
/************* SERVICES-2 PAGE ************/
@media(max-width:991px) {
.service-intro-text {
margin-top: 60px;
text-align: center;
}
.service-intro-text h2, .service-intro-text p {
width: 90%;
margin-right: auto;
margin-left: auto;
}
.services-list-img img {
display: inline-block;
margin-bottom: 30px;
}
}
@media(max-width:768px) {
.process-block .fa {
font-size: 30px;
height: 80px;
width: 80px;
padding-top: 22px;
}
.service-intro-text h2 {
font-size: 38px;
}
.service-intro-text p {
font-size: 18px;
margin-bottom: 50px;
}
.service-intro-text .btn {
font-size: 18px;
padding: 10px 27px;
}
}
@media(max-width:768px) {
.services-list .service-block-1 {
margin-top: 30px;
}
}
@media(max-width:576px) {
#process-flow {
padding-bottom: 30px;
}
.process li {
float: none;
width: 100%;
margin-bottom: 50px;
}
.service-intro-text h2 {
font-size: 32px;
margin-bottom: 20px;
}
.service-intro-text p {
font-size: 16px;
margin-bottom: 50px;
}
.service-intro-text .btn {
font-size: 16px;
padding: 10px 27px;
}
}
/************* PRICING PAGES *************/
@media(min-width:992px) {
.pricing-table-1 .page-heading {
margin-bottom: 100px;
}
}
/*********** TESTIMONIALS PAGES **********/
@media(max-width:768px) {
#testimonials-page .page-heading h2 {
font-size: 32px;
}
}
/**************** FAQ PAGES **************/
@media(max-width:767px) {
#faq-page .content-side .faq-heading {
font-size: 20px;
}
#faq-page .content-side .faq-heading::before {
top: 9px;
}
#faq-page .content-side .panel-title::after {
left: -14px;
width: 57px;
}
}
/*************** TRAVEL-GUIDE *************/
@media(min-width:768px) {
#travel-guide .tv-guide-block.right .tab-text {
text-align: left;
}
}
@media(max-width:767px) {
#travel-guide .detail-tabs .nav-tabs li.active {
margin-top: 2px;
}
#travel-guide .tv-guide-block .tab-text h3 {
margin-top: 25px;
}
}
@media(max-width:419px) {
#travel-guide #tv-guide-attractions h3 {
font-size: 18px;
}
#travel-guide #tv-guide-attractions .attract-loc {
font-size: 16px;
}
}
/* -----------------------------------------------------
Contact Us Pages
----------------------------------------------------- */
@media(max-width:767px) {
#contact-form-2 {
padding-top: 30px;
}
#contact-us-2 iframe {
height: 350px;
}
.contact-block-2 {
margin-bottom: 75px;
}
.contact-form-2-text {
text-align: center;
margin-bottom: 50px;
}
.contact-form-2-text .social-links li a {
font-size: 23px;
margin-left: 0px;
margin: 0px 7px;
}
}
|
public/site/css/responsive-rtl.css
|
TABLE OF CONTENTS
====================================================== */
/**
* 1.0 Settings
* 1.1 Top Bar
* 1.2 Navbar
* 1.3 Slider
* 1.4 Search Tabs
* 1.5 Main Block
* 1.6 Hotel Block
* 1.7 Tour Block
* 1.8 Cruise Block
* 1.9 Flight Block
* 1.10 Destination Block
* 1.11 Vehicle Block
* 1.12 Gallery
* 1.13 Best Features
* 1.14 Luxury Offers
* 1.15 Highlights
* 1.16 Banners
* 1.17 Testimonials
* 1.18 Latest Blog
* 1.19 Packages
* 1.20 Newsletter
* 1.21 Contact Form
* 1.22 Footer
* 1.23 Page Cover
* 1.24 Sidebar
* 1.25 Grid Block
* 1.26 List Block
* 1.27 Pagination
* 1.28 Detail Pages Tabs
* 1.29 Detail Pages Slider
* 1.30 Custom Forms
* 1.31 Extra Pages
**/
/* -----------------------------------------------------
Settings
----------------------------------------------------- */
@media(min-width:991px) and (max-width:1200px) {
.page-heading p {
width: 75%;
}
}
@media(min-width:992px) {
.no-pd-r {
padding-left: 0px;
}
.no-pd-l {
padding-right: 0px;
}
.space-right {
padding-left: 30px;
}
}
@media(max-width:991px) {
.page-heading p {
width: 90%;
}
.innerpage-heading p {
width: 90%;
}
}
@media(max-width:768px) {
.btn {
font-size: 14px;
}
.btn-padding {
padding: 10px 30px;
}
.page-heading h2 {
font-size: 32px;
}
.page-heading p {
font-size: 17px;
}
.innerpage-heading h1 {
font-size: 30px;
}
.innerpage-heading p {
font-size: 16px;
}
.butn .btn {
width: 200px;
padding: 14px 0px;
}
}
@media(max-width:767px) {
.view-all {
margin-top: 50px;
}
}
@media(max-width:400px) {
.page-heading h2 {
font-size: 27px;
}
.innerpage-heading h1 {
font-size: 28px;
}
}
@media (min-width: 1200px) {
.col-lg-15 {
width: 20%;
float: right;
}
}
@media (min-width: 992px) {
.col-md-15 {
width: 20%;
float: right;
}
}
@media (min-width: 768px) {
.col-md-15 {
width: 20%;
float: right;
}
}
/* -----------------------------------------------------
Top Bar
----------------------------------------------------- */
@media(min-width:768px) and (max-width:991px) {
#top-bar.container-header #info li:first-child {
margin-left: 5px;
}
#top-bar.container-header #links>ul>li form {
padding-right: 18px;
margin-right: 10px;
}
#top-bar.container-header form ul li:last-child {
margin-right: 4px;
}
#top-bar #links>ul>li form {
padding-right: 22px;
margin-right: 15px;
}
}
@media(min-width:992px) {
#top-bar #links ul li form {
margin-right: 15px;
}
}
@media(max-width:767px) {
#top-bar {
text-align: center;
}
#top-bar #info li:first-child {
margin-left: 0px;
}
#top-bar #info li {
margin: 0px 5px 3px;
}
#top-bar #links {
float: none;
text-align: center;
}
#top-bar #links>ul>li form {
padding-right: 18px;
margin-right: 10px;
}
#top-bar form ul li:last-child {
margin-right: 4px;
}
}
/************* CRUISE HOMEPAGE *************/
@media(min-width:768px) and (max-width:991px) {
#cruise-homepage #top-bar #info li:first-child {
margin-left: 5px;
}
#cruise-homepage #top-bar #links>ul>li form {
padding-right: 18px;
margin-right: 10px;
}
#cruise-homepage #top-bar form ul li:last-child {
margin-right: 4px;
}
}
/* -----------------------------------------------------
Navbar
----------------------------------------------------- */
@media(min-width:1200px) {
.main-navbar.navbar-custom .navbar-brand {
padding-top: 24px;
}
.header-search {
display: none !important;
}
.main-navbar.navbar-custom .navbar-nav>li {
padding: 22px 0;
-webkit-transition: padding 0.3s;
-moz-transition: padding 0.3s;
transition: padding 0.3s;
margin: 0px 1px;
}
.main-navbar .nav>li>a {
padding-right: 0px;
padding-left: 0px;
margin: 0px 13px;
}
.main-navbar .navbar-nav>li:last-child a {
margin-left: 0px;
}
.main-navbar .navbar-nav>li:last-child {
margin-right: 12px;
}
.main-navbar .navbar-search-link>li:last-child {
margin-right: 8px;
/* margin-top: 6px; */
}
.main-navbar.navbar-custom.affix .navbar-nav>li {
padding: 10px 0;
}
.main-navbar.navbar-custom.affix .navbar-brand {
padding-top: 12px;
}
.main-navbar .navbar-nav>li.active::before {
width: 80%;
}
.main-navbar .mega-dropdown-menu {
min-width: 950px;
}
.main-navbar .mega-dropdown-menu ul li a {
padding-left: 15px;
}
.main-navbar .navbar-right .mega-dropdown-menu.dropdown-menu {
right: auto;
left: 0px;
}
}
@media(max-width:1199px) {}
@media(min-width:768px) and (max-width:1199px) {
#mynavbar {
padding: 0px;
}
.main-navbar .header-search {
margin-top: 16px;
}
.main-navbar .navbar-header .header-search .fa {
font-size: 18px;
}
.main-navbar .navbar-header {
padding-top: 15px;
padding-bottom: 15px;
}
.main-navbar .navbar-collapse {
margin-top: 0px;
padding-right: 0px;
padding-left: 0px;
}
.main-navbar .navbar-nav {
float: none !important;
width: 100%;
}
.main-navbar .navbar-nav>li {
float: none;
}
.main-navbar .navbar-nav>li>a {
padding-top: 10px;
padding-bottom: 10px;
}
.main-navbar .navbar-toggle {
display: block;
margin-top: 10px;
margin-left: 0px;
margin-right: 15px;
padding-left: 0px;
}
.main-navbar.container-header .navbar-toggle {
margin-left: 15px;
}
.main-navbar .navbar-header {
float: none;
}
.main-navbar .navbar-nav li .dropdown-menu {
width: 100%;
max-height: 300px;
overflow: auto;
}
.main-navbar.navbar-custom .navbar-brand {
padding-top: 3px;
}
}
@media(min-width:768px) and (max-width:991px) {
#mynavbar .navbar-brand img {
max-height: 46px;
margin-top: 3px;
}
}
@media(min-width: 768px) {
.main-navbar.navbar-custom .navbar-brand {
font-size: 2.0em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.main-navbar.navbar-custom .navbar-brand .fa {
font-size: 1.33em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.main-navbar .navbar-right .dropdown-menu {
right: 0;
left: auto;
}
.dropdown-submenu>.dropdown-menu.dropdown-sbm.left-sbm {
top: 0;
left: 100%;
right: auto;
margin-top: -1px;
margin-right: -1px;
}
}
@media(max-width:768px) {
.main-navbar .navbar-header .header-search .fa {
font-size: 18px;
}
nav.navbar.navbar-custom#mynavbar a.navbar-brand {
font-size: 20px;
}
nav.navbar.navbar-custom#mynavbar a.navbar-brand .fa {
font-size: 24px;
}
.main-navbar .navbar-toggler i {
font-size: 22px !important;
}
nav.navbar#mynavbar {
height: 63px;
background-color: rgba(0, 0, 0, 0.7);
transition: background 0s, height 0.2s;
}
}
@media(max-width:600px) {
#close-button {
left: 20px;
top: 40px;
}
}
@media(max-width:767px) {
.main-navbar {
z-index: 100;
}
.main-navbar .navbar-brand {
padding-bottom: 0px;
padding-top: 17px;
}
.main-navbar .navbar-brand .fa {
top: 0px;
margin-left: 6px;
}
.main-navbar .navbar-nav {
margin-top: 0;
margin-bottom: 0;
}
.main-navbar .navbar-toggle {
padding: 20px;
border-radius: 0px;
margin: 0px;
}
.main-navbar .navbar-nav>li>a {
font-size: 14px;
}
.affix~section {
top: 42px;
}
.main-navbar .navbar-nav li .dropdown-menu {
width: 100%;
max-height: 148px;
overflow: auto;
}
.main-navbar .navbar-nav li .dropdown-menu li a {
font-size: 14px;
}
}
@media(max-width:576px) {}
/************* CRUISE HOMEPAGE *************/
@media(min-width:768px) and (max-width:1199px) {
#cruise-homepage .main-navbar .navbar-toggle {
margin-left: 15px;
}
}
/* -----------------------------------------------------
Slider
----------------------------------------------------- */
@media(max-width:576px) {
.flexslider li .meta .highlight-price {
font-size: 15px;
}
}
/************* SLIDER-1 *************/
@media(min-width:992px) {
#flexslider-container-1, #slider-1 .slides, #slider-1 .flex-viewport {
height: 712px;
}
#slider-1 .slides>li {
height: 712px;
}
#slider-1 {
height: 712px;
}
}
@media(max-width:991px) {
#flexslider-container-1, #slider-1 .slides, #slider-1 .flex-viewport {
height: 800px;
}
#slider-1 .slides>li {
height: 800px;
}
#slider-1 {
height: 800px;
}
#slider-1 li .meta h1 {
font-size: 70px;
}
#slider-1 li .meta h2 {
font-size: 28px;
}
}
@media(max-width:768px) {
#slider-1 li .meta h1 {
font-size: 60px;
}
#slider-1 li .meta h2 {
font-size: 26px;
}
}
@media(max-width:767px) {
#flexslider-container-1, #slider-1 .slides, #slider-1 .flex-viewport {
height: 830px;
}
#slider-1 .slides>li {
height: 830px;
}
#slider-1 {
height: 830px;
}
}
@media(max-width:576px) {
#flexslider-container-1, #slider-1 .slides, #slider-1 .flex-viewport {
height: 745px;
}
#slider-1 .slides>li {
height: 745px;
}
#slider-1 {
height: 745px;
}
#slider-1 li .meta {
padding-top: 80px;
}
#slider-1 li .meta h1 {
font-size: 50px;
}
#slider-1 li .meta h2 {
font-size: 24px;
margin-bottom: -4px;
}
}
@media(max-width:420px) {
#slider-1 li .meta h1 {
font-size: 40px;
}
#slider-1 li .meta h2 {
font-size: 20px;
margin-bottom: -4px;
}
}
/************* SLIDER-2 *************/
@media(min-width:1200px) {
#flexslider-container-2, #slider-2 .slides, #slider-2 .flex-viewport {
height: 618px;
}
#slider-2 .slides>li {
height: 618px;
}
#slider-2 {
height: 618px;
}
}
@media(max-width:1199px) {
#flexslider-container-2, #slider-2 .slides, #slider-2 .flex-viewport {
height: 688px;
}
#slider-2 .slides>li {
height: 688px;
}
#slider-2 {
height: 688px;
}
}
@media(max-width:991px) {
#flexslider-container-2, #slider-2 .slides, #slider-2 .flex-viewport {
height: 758px;
}
#slider-2 .slides>li {
height: 758px;
}
#slider-2 {
height: 758px;
}
#slider-2 li .meta {
padding-top: 130px;
}
}
@media(max-width:768px) {
#slider-2 li .meta h2 {
font-size: 50px;
}
#slider-2 li .meta p {
width: 80%;
}
}
@media(max-width:767px) {
#slider-2 li .meta {
padding-top: 100px;
}
}
@media(max-width:576px) {
#flexslider-container-2, #slider-2 .slides, #slider-2 .flex-viewport {
height: 722px;
}
#slider-2 .slides>li {
height: 722px;
}
#slider-2 {
height: 722px;
}
#slider-2 li .meta h2 {
font-size: 35px;
}
#slider-2 li .meta p {
width: 95%;
}
}
@media(max-width:420px) {
#slider-2 li .meta h2 {
font-size: 30px;
}
#slider-2 li .meta p {
font-size: 14px;
}
}
@media(max-width:360px) {
#slider-2 li .meta h2 {
font-size: 28px;
}
}
/************* SLIDER-3 *************/
@media(min-width:1200px) {
#flexslider-container-3, #slider-3 .slides, #slider-3 .flex-viewport {
height: 778px;
}
#slider-3 .slides>li {
height: 778px;
}
#slider-3 {
height: 778px;
}
}
@media(max-width:1199px) {
#flexslider-container-3, #slider-3 .slides, #slider-3 .flex-viewport {
height: 768px;
}
#slider-3 .slides>li {
height: 768px;
}
#slider-3 {
height: 768px;
}
}
@media(max-width:991px) {
#flexslider-container-3, #slider-3 .slides, #slider-3 .flex-viewport {
height: 768px;
}
#slider-3 .slides>li {
height: 768px;
}
#slider-3 {
height: 768px;
}
}
@media(max-width:767px) {
#flexslider-container-3, #slider-3 .slides, #slider-3 .flex-viewport {
height: 798px;
}
#slider-3 .slides>li {
height: 798px;
}
#slider-3 {
height: 798px;
}
}
/************* SLIDER-4 *************/
@media(min-width:1200px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 658px;
}
#slider-4 .slides>li {
height: 658px;
}
#slider-4 {
height: 658px;
}
}
@media(max-width:1199px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 718px;
}
#slider-4 .slides>li {
height: 718px;
}
#slider-4 {
height: 718px;
}
}
@media(max-width:991px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 818px;
}
#slider-4 .slides>li {
height: 818px;
}
#slider-4 {
height: 818px;
}
#slider-4 li .meta {
padding-top: 130px;
}
}
@media(max-width:767px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 800px;
}
#slider-4 .slides>li {
height: 800px;
}
#slider-4 {
height: 800px;
}
}
@media(max-width:576px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 742px;
}
#slider-4 .slides>li {
height: 742px;
}
#slider-4 {
height: 742px;
}
#slider-4 li .meta {
padding-top: 100px;
}
}
@media(max-width:420px) {
#flexslider-container-4, #slider-4 .slides, #slider-4 .flex-viewport {
height: 712px;
}
#slider-4 .slides>li {
height: 712px;
}
#slider-4 {
height: 712px;
}
}
/************* SLIDER-5 *************/
@media(min-width:1200px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 778px;
}
#slider-5 .slides>li {
height: 778px;
}
#slider-5 {
height: 778px;
}
}
@media(max-width:1199px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 768px;
}
#slider-5 .slides>li {
height: 768px;
}
#slider-5 {
height: 768px;
}
#slider-5 li .meta {
margin-top: -40px;
}
}
@media(max-width:991px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 868px;
}
#slider-5 .slides>li {
height: 868px;
}
#slider-5 {
height: 868px;
}
#slider-5 li .meta {
margin-top: -70px;
}
#slider-5 li .meta h2 {
font-size: 55px;
}
#slider-5 li .meta p {
font-size: 16px;
}
}
@media(max-width:768px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 868px;
}
#slider-5 .slides>li {
height: 868px;
}
#slider-5 {
height: 868px;
}
#slider-5 li .meta {
margin-top: -110px;
}
#slider-5 li .meta h2 {
font-size: 45px;
}
#slider-5 li .meta p {
font-size: 15px;
}
}
@media(max-width:576px) {
#flexslider-container-5, #slider-5 .slides, #slider-5 .flex-viewport {
height: 868px;
}
#slider-5 .slides>li {
height: 868px;
}
#slider-5 {
height: 868px;
}
#slider-5 li .meta {
margin-top: -90px;
}
#slider-5 li .meta h2 {
font-size: 35px;
}
#slider-5 li .meta p {
font-size: 14px;
width: 90%;
}
}
/************* TOUR-SLIDER *************/
@media(max-width:991px) {
.tour-slider li .meta h2 {
font-size: 55px;
}
}
@media(max-width:768px) {
.tour-slider li .meta {
text-align: center;
}
.tour-slider li .meta h2 {
font-size: 45px;
}
.tour-slider li .meta .highlight-price {
font-size: 15px;
}
.tour-slider li .meta p {
margin: 0 auto;
}
}
@media(max-width:576px) {
.tour-slider li .meta h2 {
font-size: 40px;
}
.tour-slider li .meta p {
width: 90%;
}
}
@media(max-width:420px) {
.tour-slider li .meta h2 {
font-size: 35px;
}
}
/************* TRAVEL-AGENCY *************/
@media(min-width:1200px) {
#travel-agency #flexslider-container-5, #travel-agency #slider-5 .slides, #travel-agency #slider-5 .flex-viewport {
height: 720px;
}
#travel-agency #slider-5 .slides>li {
height: 720px;
}
#travel-agency #slider-5 {
height: 720px;
}
#travel-agency #slider-5 li .meta {
margin-top: 30px;
}
}
@media(max-width:1199px) {
#travel-agency #flexslider-container-5, #travel-agency #slider-5 .slides, #travel-agency #slider-5 .flex-viewport {
height: 700px;
}
#travel-agency #slider-5 .slides>li {
height: 700px;
}
#travel-agency #slider-5 {
height: 700px;
}
#travel-agency #slider-5 li .meta {
margin-top: 30px;
}
}
@media(max-width:991px) {
#travel-agency #flexslider-container-5, #travel-agency #slider-5 .slides, #travel-agency #slider-5 .flex-viewport {
height: 660px;
}
#travel-agency #slider-5 .slides>li {
height: 660px;
}
#travel-agency #slider-5 {
height: 660px;
}
}
@media(max-width:768px) {
#travel-agency #slider-5 li .meta {
margin-top: 40px;
}
}
@media(max-width:576px) {
#travel-agency #flexslider-container-5, #travel-agency #slider-5 .slides, #travel-agency #slider-5 .flex-viewport {
height: 600px;
}
#travel-agency #slider-5 .slides>li {
height: 600px;
}
#travel-agency #slider-5 {
height: 600px;
}
#travel-agency #slider-5 li .meta {
margin-top: 45px;
}
}
/* -----------------------------------------------------
Nav Tabs Display
----------------------------------------------------- */
@media(max-width:767.9px) {
.nav.nav-tabs.nav-justified {
display: block;
}
}
@media(min-width:768px) {
.nav.nav-tabs.nav-justified {
display: flex;
}
}
/* -----------------------------------------------------
Search Tabs
----------------------------------------------------- */
@media(max-width:1199px) {
.search-tabs .tab-content .tab-pane .search-btn {
text-align: center;
}
.search-tabs .tab-content .tab-pane .search-btn .btn {
margin-top: 10px;
}
.search-tabs .tab-content .tab-pane {
padding: 35px 30px;
}
}
@media(max-width:650px) {
.search-tabs .nav-tabs li .st-text {
display: none;
}
.search-tabs .nav-tabs li .fa {
margin-left: 0px;
font-size: 18px;
}
.search-tabs .nav-tabs li a {
padding: 8px 18px;
}
.search-tabs .nav-tabs li.active a {
padding: 8px 20px 11px;
}
}
@media(min-width:577px) {
.search-tabs .tab-content .tab-pane input, .search-tabs .tab-content .tab-pane select, .search-tabs .tab-content .tab-pane .btn {
height: 40px;
}
.search-tabs .tab-content .tab-pane .form-group.left-icon .fa {
top: 12px;
font-size: 15px;
}
.search-tabs .tab-content .tab-pane .form-group.right-icon .fa {
top: 10px;
font-size: 20px;
}
}
@media(max-width:576px) {
.search-tabs .tab-content .tab-pane input, .search-tabs .tab-content .tab-pane select {
font-size: 13px;
}
.search-tabs .tab-content .tab-pane .form-group.left-icon .fa {
top: 10px;
font-size: 14px;
}
.search-tabs .tab-content .tab-pane .form-group.right-icon .fa {
top: 7px;
font-size: 20px;
}
}
@media(max-width:360px) {
.search-tabs .nav-tabs li .fa {
font-size: 15px;
}
}
/************* SEARCH-TABS-3 *************/
@media(min-width:992px) and (max-width:1199px) {
#search-tabs-3.search-tabs .nav-tabs li {
font-size: 12px;
}
#search-tabs-3 .nav-tabs li a, #search-tabs-3 .nav-tabs li.active a {
padding: 10px 13px;
}
}
@media(min-width:769px) and (max-width:1199px) {
.welcome-message {
padding: 43px 35px;
margin-top: 37px;
}
}
@media(min-width:577px) {
#search-tabs-3 .tab-content .tab-pane .form-group.left-icon .fa {
top: 38px;
}
#search-tabs-3 .tab-content .tab-pane .form-group.right-icon .fa {
top: 36px;
}
}
@media(max-width:576px) {
#search-tabs-3 .tab-content .tab-pane .form-group.left-icon .fa {
top: 35px;
}
#search-tabs-3 .tab-content .tab-pane .form-group.right-icon .fa {
top: 32px;
}
}
/* -----------------------------------------------------
Main Block
----------------------------------------------------- */
/************** OFFER-PRICE-1 *************/
@media(min-width:992px) and (max-width:1199px) {
.offer-price-1 li.price {
font-size: 17px;
}
.offer-price-1 li.price .pkg, .offer-price-1 li.rating .fa {
font-size: 12px;
}
.offer-price-1 li.price .pkg, .offer-price-1 li.price .divider {
top: -1px;
}
}
@media(max-width:767px) {
.offer-price-1 li.price {
font-size: 17px;
}
.offer-price-1 li.price .pkg, .offer-price-1 li.rating .fa {
font-size: 11px;
}
.offer-price-1 li.price .pkg, .offer-price-1 li.price .divider {
top: -1px;
}
}
@media(max-width:630px) {
.offer-price-1 li.price .divider {
margin: 0px 5px;
}
}
/************** OFFER-PRICE-2 *************/
/*@media(min-width:992px) and (max-width:1199px){
.offer-price-2 li.price{
font-size:20px;
}
}*/
@media(max-width:767px) {
.offer-price-2 li.price {
font-size: 20px;
}
}
/* -----------------------------------------------------
Hotel Block
----------------------------------------------------- */
@media(max-width:420px) {
.hotel-info .hotel-title {
font-size: 1.38em;
}
.hotel-title.main-title p {
font-size: 13px;
}
}
/* -----------------------------------------------------
Tour Block
----------------------------------------------------- */
@media(max-width:767px) {
.tour-info .tour-title a {
font-size: 19px;
}
.tour-info .tour-title p {
font-size: 1.07em;
}
}
/* -----------------------------------------------------
Cruise Block
----------------------------------------------------- */
@media(min-width:992px) and (max-width:1199px) {
.cruise-block .cruise-img img {
min-height: 190px;
max-height: 190px;
}
#owl-cruise-offers .cruise-block .cruise-img img {
min-height: 215px;
max-height: 215px;
}
}
@media(max-width:767px) {
.cruise-block {
margin-bottom: 30px;
}
}
@media(max-width:420px) {
.cruise-title a {
font-size: 19px;
}
.cruise-title p {
font-size: 13px;
}
.cruise-title .cruise-price {
font-size: 20px;
}
}
@media(max-width:991px) {
#owl-cruise-offers .owl-controls .owl-buttons {
top: 47%;
transform: translateY(-47%);
}
}
/* -----------------------------------------------------
Flight Block
----------------------------------------------------- */
@media(min-width:1200px) {
.flight-timing li {
width: 50%;
float: right;
}
}
@media(max-width:1199px) {
.flight-info .offer-price-1 li {
display: inline-block;
}
.flight-info .offer-price-1 li.rating {
float: left;
margin-top: 0px;
}
}
@media(min-width:992px) and (max-width:1199px) {
.flight-timing li {
float: none;
width: 100%;
}
.flight-timing li:first-child {
padding-bottom: 0px;
}
.flight-timing li:nth-child(2) {
padding-top: 4px;
}
}
@media(max-width:991px) {
.flight-timing li {
width: 50%;
float: right;
}
}
@media(max-width:767px) {
.flight-block {
margin-bottom: 30px;
}
.flight-info .offer-price-1 li.price .pkg {
top: -2px;
}
}
@media(max-width:420px) {
.flight-info h3 .flight-destination {
font-size: 21px;
}
.flight-info h3 .flight-type {
font-size: 13px;
}
.flight-timing li {
float: none;
width: 100%;
}
.flight-timing li:first-child {
padding-bottom: 0px;
}
.flight-timing li:nth-child(2) {
padding-top: 4px;
}
}
/* -----------------------------------------------------
Destination Block
----------------------------------------------------- */
@media(min-width:992px) and (max-width:1199px) {
.destination-img img {
min-height: 290px;
}
}
@media(max-width:767px) {
.destination-block {
margin-bottom: 30px;
}
}
/* -----------------------------------------------------
Vehicle Block
----------------------------------------------------- */
@media(max-width:767px) {
.vehicle-block {
margin-bottom: 30px;
}
.vehicle-info .vehicle-title a {
font-size: 19px;
}
.vehicle-info .vehicle-title p {
font-size: 15px;
}
}
/************* CAR-OFFER-BLOCK *************/
@media(max-width:767px) {
.car-offer-info li .car-offer-price {
font-size: 19px;
}
.car-offer-info li .limit {
font-size: 12px;
top: -3px;
}
}
@media(max-width:576px) {
.car-offer-info {
text-align: center;
}
.car-offer-info li h4 {
display: block;
}
.car-offer-info li .car-offer-price {
float: none;
}
}
/* -----------------------------------------------------
Gallery
----------------------------------------------------- */
@media(min-width: 1201px) {
#masonry {
-moz-column-count: 4;
-webkit-column-count: 4;
column-count: 4;
}
}
@media(min-width: 769px) and (max-width: 1200px) {
#masonry {
-moz-column-count: 3;
-webkit-column-count: 3;
column-count: 3;
}
}
@media(min-width: 576px) and (max-width: 768px) {
#masonry {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
}
@media(max-width: 576px) {
#masonry {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
/* -----------------------------------------------------
Best Features
----------------------------------------------------- */
@media(max-width:991px) {
#best-features {
padding-bottom: 26px;
}
.b-feature-block {
margin-bottom: 60px;
}
}
@media(max-width:768px) {
.b-feature-block .fa {
height: 60px;
width: 55px;
padding-top: 12px;
font-size: 30px;
}
.b-feature-block h3 {
font-size: 20px;
}
}
/* -----------------------------------------------------
Luxury Offers
----------------------------------------------------- */
@media(max-width:768px) {
.luxury-text .btn {
height: 42px;
}
.luxury-text .btn-black {
font-size: 18px;
padding: 7px 25px;
}
.luxury-text .btn-o-border {
font-size: 16px;
padding: 8px 37px;
}
}
/*************** ROOMS-OFFER ***************/
@media(max-width:1199px) {
.luxury-room-text {
text-align: center;
}
.luxury-room-text p {
width: 100%;
}
}
@media(max-width:576px) {
.luxury-room-text {
padding: 60px 30px;
}
}
@media(max-width:420px) {
.luxury-room-imgs {
padding: 23px;
}
}
/*************** TOUR-OFFER ****************/
@media(max-width:768px) {
.hot-tour-text h3 {
font-size: 26px;
}
.hot-tour-text .hot-tour-title {
font-size: 40px;
}
.hot-tour-text p {
font-size: 18px;
margin-bottom: 50px;
}
.hot-tour-text .btn {
padding: 8px 28px;
font-size: 16px;
}
.hot-tour-text .btn-details {
padding: 8px 28px;
}
}
@media(max-width:576px) {
#hot-tour-carousel .carousel-control .glyphicon {
font-size: 18px;
height: 55px;
width: 55px;
padding-top: 17px;
}
#hot-tour-carousel .carousel-control.left {
right: 30px;
}
#hot-tour-carousel .carousel-control.right {
left: 30px;
}
.hot-tour-text h3 {
font-size: 22px;
}
.hot-tour-text .hot-tour-title {
font-size: 36px;
}
.hot-tour-text p {
font-size: 16px;
}
}
/************** CRUISE-OFFER ***************/
@media(min-width:992px) and (max-width:1199px) {
.cruise-offer-text {
padding: 65px 50px 0px 0px;
}
}
@media(max-width:991px) {
.cruise-offer-text {
padding: 40px 30px 0px 0px;
}
.cruise-offer-text h2 {
font-size: 38px;
}
.cruise-offer-text h3 {
font-size: 22px;
}
.cruise-offer-text .cruise-offer-dur {
font-size: 15px;
}
.cruise-offer-text .cruise-offer-price {
font-size: 28px;
margin: 25px 0px 35px 0px;
}
.cruise-offer-text .btn {
font-size: 1.2em;
padding: 14px 40px;
}
}
@media(max-width:767px) {
.cruise-offer-text {
padding: 40px 10px 50px;
text-align: center;
}
}
@media(max-width:576px) {
.cruise-offer-text h2 {
font-size: 35px;
}
.cruise-offer-text .cruise-offer-price {
font-size: 25px;
margin: 25px 0px 35px 0px;
}
.cruise-offer-text .btn {
font-size: 1.1em;
padding: 12px 30px;
}
}
/**************** CAR-OFFER ****************/
@media(min-width:1200px) {
.luxury-car-text {
margin-top: 35px;
}
}
@media(min-width:992px) and (max-width:1199px) {
.luxury-car-text {
padding: 40px 50px 51px;
}
.luxury-car-text .btn-black {
font-size: 20px;
padding: 7px 20px;
}
.luxury-car-text .btn-o-border {
font-size: 14px;
padding: 11px 45px;
margin-right: 2px;
margin-left: 0px;
}
}
@media(max-width:991px) {
.luxury-car-text {
text-align: center;
}
.luxury-car-text p {
width: 100%;
}
}
@media(max-width:576px) {
.luxury-car-text {
padding: 60px 30px;
}
}
/* -----------------------------------------------------
Banners
----------------------------------------------------- */
/************** VIDEO-BANNER **************/
@media(max-width:991px) {
#video-banner p {
font-size: 19px;
width: 90%;
margin: 0 auto;
}
}
@media(max-width:768px) {
#video-banner h2 {
font-size: 30px;
}
#video-banner p {
font-size: 15px;
}
#video-banner #play-button .fa {
font-size: 27px;
width: 90px;
height: 90px;
padding-top: 27px;
margin-top: 40px;
}
}
/************* MESSAGE-BANNER *************/
@media(min-width:1200px) {
#message-banner .message-btn {
padding-right: 0px;
}
}
@media(max-width:1199px) {
#message-banner {
text-align: center;
}
#message-banner .message-btn .btn {
margin-top: 40px;
padding: 12px 31px;
}
}
@media(max-width:991px) {
#message-banner h2 {
font-size: 32px;
}
#message-banner .message-btn .btn {
margin-top: 40px;
padding: 12px 31px;
font-size: 17px;
}
}
@media(max-width:768px) {
#message-banner h2 {
font-size: 26px;
}
#message-banner p {
font-size: 16px;
}
#message-banner .message-btn .btn {
padding: 10px 28px;
font-size: 16px;
}
}
/************* SEARCH-BANNER *************/
@media(max-width:991px) {
#search-banner p:first-child {
font-size: 20px;
}
#search-banner p {
font-size: 22px;
}
#search-banner h2 {
font-size: 40px;
}
#search-banner .btn {
margin-top: 30px;
font-size: 18px;
padding: 11px 27px;
}
}
@media(max-width:768px) {
#search-banner {
text-align: center;
}
#search-banner p:first-child {
font-size: 18px;
}
#search-banner p {
font-size: 20px;
}
#search-banner h2 {
font-size: 35px;
}
#search-banner .btn {
margin-top: 25px;
font-size: 16px;
padding: 11px 25px;
}
}
/* -----------------------------------------------------
Highlights
----------------------------------------------------- */
@media(max-width:991px) {
.highlight-box .h-icon {
width: 87px;
font-size: 60px;
}
.highlight-box .h-icon .fa-ship, .highlight-box .h-icon .fa-taxi {
font-size: 55px;
}
.highlight-box .h-text .numbers {
font-size: 45px;
}
.highlight-box .h-text p {
font-size: 15px;
}
}
@media(max-width:767px) {
#highlights #boxes {
width: 290px;
margin: 0 auto;
}
.highlight-box {
margin: 15px 0px;
}
.highlight-box .h-text.cruise, .highlight-box .h-text.taxi {
padding-right: 0px;
}
.highlight-box .h-icon .fa-plane {
margin-top: 14px;
}
}
@media(max-width:576px) {
#highlights #boxes {
width: 255px;
margin: 0 auto;
}
.highlight-box .h-icon {
width: 77px;
font-size: 50px;
}
.highlight-box .h-icon .fa-ship, .highlight-box .h-icon .fa-taxi {
font-size: 45px;
}
.highlight-box .h-text .numbers {
font-size: 40px;
}
.highlight-box .h-text p {
font-size: 13px;
}
}
/* -----------------------------------------------------
Testimonials
----------------------------------------------------- */
@media(max-width:768px) {
#testimonials .page-heading h2, #testimonials-2 .page-heading h2 {
font-size: 32px;
}
}
/************* QUOTE-CAROUSEL *************/
@media(max-width:1199px) {
#quote-carousel .item blockquote {
padding: 0px 100px;
}
}
@media(max-width:991px) {
#quote-carousel .item blockquote {
padding: 0px 10px;
}
}
@media(max-width:768px) {
#quote-carousel .item blockquote {
font-size: 15px;
}
#quote-carousel .item small {
font-size: 20px;
}
}
@media(min-width:576px) {
#quote-carousel .carousel-indicators {
height: 110px;
}
}
@media(max-width:576px) {
#quote-carousel .carousel-indicators {
height: 70px;
}
#quote-carousel .carousel-indicators li {
width: 40px;
height: 40px;
}
#quote-carousel .carousel-indicators li.active {
width: 70px;
height: 70px;
}
}
@media(max-width:576px) {
#quote-carousel .carousel-indicators {
width: 70%;
/*left:45%;*/
}
}
/************* CRUISE HOMEPAGE *************/
@media(max-width:1199px) {
#cruise-homepage #quote-carousel .carousel-item blockquote {
padding: 0px 50px;
}
}
@media(max-width:991px) {
#cruise-homepage #quote-carousel .carousel-item blockquote {
padding: 0px 10px;
}
}
@media(max-width:768px) {
#cruise-homepage #quote-carousel .carousel-item blockquote {
font-size: 15px;
}
#cruise-homepage #quote-carousel .carousel-item .rating .fa {
font-size: 18px;
}
#cruise-homepage #quote-carousel .carousel-item .position {
font-size: 14px;
}
}
/************* OWL-TESTIMONIALS *************/
@media(max-width:991px) {
#owl-testimonials .review-block p {
width: 100%;
margin: 0px auto 27px;
}
}
@media(max-width:768px) {
#owl-testimonials .review-block p {
font-size: 15px;
}
#owl-testimonials .review-block small {
font-size: 20px;
}
#owl-testimonials .review-block .position {
font-size: 15px;
}
}
/* -----------------------------------------------------
Latest Blog
----------------------------------------------------- */
@media(max-width:767px) {
.latest-block {
margin-bottom: 30px;
}
}
/* -----------------------------------------------------
Packages
----------------------------------------------------- */
@media(min-width:992px) {
.package .pkg-features li, .package .btn {
font-size: 14px;
}
}
/************* HOTEL-PACKAGES *************/
@media(min-width:992px) {
#hotel-package-tables {
margin-top: 100px;
}
.hotel-package.best-package {
margin: 0px 4px;
}
.hotel-package.best-package {
padding: 80px 15px 90px;
position: relative;
top: -40px;
}
}
@media(max-width:991px) {
.hotel-package {
margin: 15px 0px;
}
}
@media(max-width:420px) {
.h-pkg-title {
font-size: 23px;
}
.h-pkg-price {
font-size: 34px;
height: 132px;
width: 132px;
padding-top: 34px;
}
.h-pkg-price span {
margin-top: -15px;
font-size: 17px;
}
}
/*************** TOUR-PACKAGES *************/
@media(max-width:420px) {
.tour-package .t-pkg-title {
font-size: 30px;
}
.tour-package .t-pkg-price {
font-size: 20px;
}
}
/* -----------------------------------------------------
Newsletter
----------------------------------------------------- */
/************* NEWSLETTER-1 *************/
@media(max-width:768px) {
#newsletter-1 h2 {
font-size: 31px;
}
#newsletter-1 p {
font-size: 15px;
}
#newsletter-1 form .form-group {
width: 60%;
}
}
@media(max-width:600px) {
#newsletter-1 form .form-group {
width: 90%;
}
#newsletter-1 form .input-group-btn .btn {
width: 65px;
}
}
/************* NEWSLETTER-2 *************/
@media(min-width:992px) and (max-width:1199px) {
#newsletter-2 form .form-group {
margin-top: 20px;
}
}
@media(max-width:991px) {
#newsletter-2 {
text-align: center;
}
#newsletter-2 h2 {
margin-top: 0px;
margin-bottom: 20px;
}
#newsletter-2 form .form-group {
width: 85%;
margin: 0 auto;
}
}
@media(max-width:768px) {
#newsletter-2 h2 {
font-size: 2.0em;
}
}
/* -----------------------------------------------------
Contact Form
----------------------------------------------------- */
@media(max-width:768px) {
#contact-form .page-heading h2 {
font-size: 32px;
}
.contact-block .fa {
font-size: 30px;
}
.contact-block p {
font-size: 18px;
}
}
@media(max-width:420px) {
.contact-block {
margin-top: 30px;
padding: 31px 30px;
}
}
/* -----------------------------------------------------
Footer
----------------------------------------------------- */
@media(min-width:992px) {
.ftr-pad-left {
padding-right: 55px;
}
.footer-widget.ftr-our-company p {
padding-left: 30px;
}
}
@media(max-width:991px) {
.footer-widget {
margin-bottom: 50px;
}
.footer-widget:last-child {
margin-bottom: 0px;
}
}
@media(min-width:768px) {
#terms {
text-align: left;
}
}
@media(max-width:768px) {
.footer-widget .footer-heading {
font-size: 23px;
}
.footer-widget.ftr-about .social-links li a {
font-size: 19px;
}
}
@media(max-width:767px) {
#footer-bottom {
text-align: center;
}
#footer-bottom #copyright {
margin-bottom: 10px;
}
}
/************* HOTEL HOMEPAGE *************/
@media(min-width:992px) {
#hotel-homepage .footer-widget.ftr-our-company {
margin-top: 25px;
}
.footer-widget.ftr-map {
padding-right: 53px;
}
}
/************* CRUISE HOMEPAGE *************/
@media(min-width:992px) {
#cruise-homepage #footer-top {
padding-bottom: 150px;
}
}
/* -----------------------------------------------------
Page Cover
----------------------------------------------------- */
@media(max-width:768px) {
.page-cover h1 {
font-size: 25px;
}
}
/** New **/
@media(max-width:768px) {
.cover-navbar-wrapper.pt-164 {
padding-top: 124px;
}
}
@media(max-width:768px) {
.page-cover.p-20, .page-cover.p-20 .breadcrumb {
text-align: center;
}
.page-cover.p-20 .breadcrumb {
margin-top: 0px;
}
}
/*********** PAGE-COVER STYLE2 **********/
@media(max-width:768px) {
.page-cover.style2 .page-title {
float: none;
margin-bottom: 7px;
}
.page-cover.style2 .breadcrumb {
margin-top: 0px;
}
.page-cover.style2 .breadcrumb, .page-cover.style2 .page-title {
text-align: center;
}
}
/*********** PAGE-COVER STYLE4 **********/
@media(max-width:768px) {
.page-cover.style4 .breadcrumb {
float: none;
margin-bottom: 7px;
}
.page-cover.style4 .breadcrumb, .page-cover.style4 .page-title {
text-align: center;
}
}
/* -----------------------------------------------------
Sidebar
----------------------------------------------------- */
@media(max-width:991px) {
.right-side-bar.side-bar {
margin-top: 90px;
}
.left-side-bar.side-bar {
margin-bottom: 90px;
}
}
/******** GRID/LIST PAGES SIDEBAR ********/
@media(min-width:992px) {
.support-block {
margin-top: 40px;
}
}
@media(max-width:767px) {
.support-block {
margin-top: 40px;
}
}
/********* DETAIL PAGES SIDEBAR *********/
@media(min-width:1200px) {
.booking-form .no-sp-l {
padding-right: 5px;
}
.booking-form .no-sp-r {
padding-left: 5px;
}
}
/********* BOOKING PAGES SIDEBAR ********/
@media(max-width:360px) {
.side-bar .detail-block .detail-title h4 {
font-size: 19px;
}
.side-bar .detail-block .detail-title p {
font-size: 13px;
}
.side-bar .detail-block .detail-title .rating .fa {
font-size: 13px;
}
}
/********** BLOG PAGES SIDEBAR **********/
@media(max-width:991px) {
.side-bar .instagram li {
width: 80px;
}
}
@media(max-width:768px) {
.side-bar .follow-us li a {
font-size: 25px;
}
}
/* -----------------------------------------------------
Grid Block
----------------------------------------------------- */
@media(max-width:420px) {
.block-title {
font-size: 19px;
}
}
@media(max-width:768px) {
.grid-block .offer-price-1 li.price {
font-size: 20px;
}
.grid-block .offer-price-1 li.price .pkg {
font-size: 13px;
top: -2px;
}
.grid-block .offer-price-1 li.price .divider {
margin: 0px 8px;
top: -3px;
}
}
/* -----------------------------------------------------
List Block
----------------------------------------------------- */
@media(min-width:992px) {
.list-info {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
.list-img {
-webkit-flex: 1 0 15%;
-ms-flex: 1 0 15%;
flex: 1 0 15%;
}
}
@media(min-width:768px) and (max-width:991px) {
.list-info {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
.list-img {
-webkit-flex: 1 0 20%;
-ms-flex: 1 0 20%;
flex: 1 0 20%;
}
}
@media(min-width:768px) {
.list-content {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
width: 100%;
vertical-align: top;
overflow: hidden;
}
.list-img {
position: relative;
overflow: hidden;
}
.list-img img {
height: 100%;
}
}
@media(max-width:767px) {
.list-block .list-info {
padding: 21px 21px 28px;
}
.list-block .list-info .block-title {
font-size: 20px;
}
.list-block .list-info .block-minor {
font-size: 13px;
}
}
/*********** FLIGHT-LIST BLOCK **********/
@media(min-width:1200px) {
.f-list-img .flight-timing li {
padding: 15px 5px;
}
}
@media(max-width:1199px) {
.f-list-img .offer-price-1 li {
width: 100%;
text-align: center;
}
.f-list-img .offer-price-1 .price {
float: none;
margin-top: 5px;
font-size: 17px;
}
.f-list-img .offer-price-1 .price .divider {
top: -2px;
}
.f-list-img .offer-price-1 .price .pkg {
font-size: 12px;
top: -2px;
}
}
@media(min-width:992px) {
.f-list-img.list-img {
-webkit-flex: 1 0 14%;
-ms-flex: 1 0 14%;
flex: 1 0 14%;
}
}
@media(max-width:991px) {
.f-list-img.list-img {
-webkit-flex: 1 0 13%;
-ms-flex: 1 0 13%;
flex: 1 0 13%;
}
.f-list-img .flight-timing li {
float: none;
width: 100%;
}
.f-list-img .flight-timing li:first-child {
padding-bottom: 0px;
}
.f-list-img .flight-timing li:nth-child(2) {
padding-top: 4px;
}
}
/************ CAR-LIST BLOCK ************/
@media(max-width:1199px) {
.cr-list-info .car-features li {
font-size: 12px;
padding-left: 7px;
}
.cr-list-info .car-features li .fa {
width: 45px;
height: 39px;
font-size: 15px;
padding-top: 12px;
}
}
@media(min-width:992px) {
.cr-list-img.list-img {
-webkit-flex: 1 0 13%;
-ms-flex: 1 0 13%;
flex: 1 0 13%;
}
}
@media(max-width:991px) {
.cr-list-img .offer-price-1 li.price {
font-size: 17px;
}
.cr-list-img .offer-price-1 li.price .divider {
top: -2px;
}
.cr-list-img .offer-price-1 li.price .pkg {
top: -2px;
font-size: 11px;
}
}
/* -----------------------------------------------------
Pagination
----------------------------------------------------- */
@media(max-width:576px) {
.pages .pagination li a {
font-size: 15px;
padding: 6px 14px;
}
.pages .pagination li:first-child a, .pages .pagination li:last-child a {
padding: 6px 14px;
}
}
/* -----------------------------------------------------
Detail Pages Tabs
----------------------------------------------------- */
@media(min-width:768px) and (max-width:1199px) {
.detail-tabs .tab-pane .tab-text {
padding-top: 0px;
}
}
@media(max-width:767px) {
.available-blocks h2 {
font-size: 24px;
}
.detail-tabs .nav-tabs {
margin-bottom: 5px;
}
.detail-tabs .nav-tabs.nav-justified>li>a {
margin-bottom: 0px;
}
.detail-tabs .tab-pane .tab-text p {
width: 100%;
}
}
@media(max-width:420px) {
.detail-tabs .tab-pane .tab-text h3 {
font-size: 19px;
}
}
/* -----------------------------------------------------
Detail Pages Slider
----------------------------------------------------- */
@media(max-width:576px) {
.detail-slider .features {
top: 8px;
}
.detail-slider .features li {
padding: 12px 20px;
min-width: 140px;
}
.detail-slider .features li .f-icon {
font-size: 21px;
width: 30px;
}
.detail-slider .features li .f-text p.f-heading, .detail-slider .features li .f-text p.f-data {
font-size: 12px;
}
.feature-slider-nav .slick-list .slick-slide img {
padding: 0px 10px;
}
}
@media(max-width:420px) {
.detail-slider .features li {
padding: 10px 17px;
min-width: 130px;
}
.detail-slider .features li .f-icon {
top: -3px;
font-size: 17px;
width: 24px;
}
.detail-slider .features li .f-text p.f-heading {
display: none;
}
}
/* -----------------------------------------------------
Custom Forms
----------------------------------------------------- */
@media(min-width:992px) {
.custom-form-img {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
.custom-form-fields {
-webkit-flex: 1 0 15%;
-ms-flex: 1 0 15%;
flex: 1 0 15%;
}
.flex-content {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
width: 100%;
vertical-align: top;
overflow: hidden;
}
.flex-content-img {
position: relative;
overflow: hidden;
}
.flex-content-img img {
height: 100%;
}
}
@media(max-width:991px) {
.custom-form-img img {
width: 100% !important;
height: 0%;
}
}
@media(max-width:576px) {
.custom-form {
padding: 40px 30px 55px;
}
}
@media(max-width:420px) {
.custom-form {
padding: 35px 25px 50px;
}
.custom-form h3 {
font-size: 22px;
}
}
/************ PAGE-SEARCH-FORM ***********/
@media(max-width:768px) {
.page-search-form h2 {
font-size: 34px;
}
}
@media(max-width:500px) {
.page-search-form {
padding: 30px 30px 45px;
}
.page-search-form h2 {
font-size: 30px;
}
}
/************ LG-BOOKING-FORM ***********/
@media(max-width:768px) {
.lg-booking-form .lg-booking-form-heading h3 {
font-size: 21px;
}
.lg-booking-form .lg-booking-form-heading span {
height: 45px;
width: 45px;
display: inline-block;
text-align: center;
margin-left: 15px;
padding-top: 7px;
font-size: 21px;
}
}
@media(max-width:576px) {
.lg-booking-form .payment-tabs #tab-paypal img {
float: none;
margin-bottom: 20px;
}
}
/************ FULL PAGE FORMS ************/
@media(max-width:768px) {
.full-page-title .company-name {
font-size: 40px;
}
.full-page-title .company-name .fa {
font-size: 54px;
}
.full-page-title p {
width: 90%;
font-size: 15px;
}
}
@media(min-width:650px) {
#full-page-form .custom-form {
width: 470px;
margin: 0 auto;
}
}
@media(max-width:419px) {
.full-page-title .company-name {
font-size: 33px;
}
.full-page-title .company-name .fa {
font-size: 48px;
}
}
/* -----------------------------------------------------
Popup Ad
----------------------------------------------------- */
@media(max-width:767px) {
#popup-ad .modal-body {
text-align: center;
}
#popup-ad .modal-body .popup-ad-img {
margin-top: 40px;
}
#popup-ad .modal-body .popup-ad-text h2 {
margin: -7px 0px 1px;
font-size: 40px;
}
#popup-ad .modal-body .popup-ad-text h2 span {
font-size: 45px;
}
#popup-ad .modal-body .popup-ad-text .btn {
padding: 7px 26px 8px;
}
}
/* -----------------------------------------------------
Extra Pages
----------------------------------------------------- */
/************ ABOUT US PAGE *************/
@media(min-width:992px) {
.about-img {
-webkit-flex: 1 0 25%;
-ms-flex: 1 0 25%;
flex: 1 0 25%;
}
.about-text {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
}
@media(max-width:991px) {
#about-content .about-detail {
padding: 40px 40px 50px;
}
}
@media(max-width:768px) {
#about-content .about-detail h2 {
font-size: 27px;
}
#about-content .about-detail p:nth-of-type(1) {
font-size: 15px;
line-height: 1.5em;
}
#about-content .about-detail p:nth-of-type(2) {
font-size: 14px;
}
}
@media(max-width:575px) {
#about-content .about-detail {
padding: 30px 30px 40px;
}
#about-content .about-detail h2 {
font-size: 24px;
}
}
/*********** ABOUT US 2 PAGE ************/
@media(min-width:992px) {
#about-content-2 #abt-cnt-2-text {
padding-right: 20px;
}
}
@media(max-width:991px) {
#about-content-2 #abt-cnt-2-text, #about-content-2 #abt-cnt-2-img {
text-align: center;
}
#about-content-2 #abt-cnt-2-img img {
display: inline-block;
margin-bottom: 50px;
}
#progress-bars {
margin-top: 50px;
}
}
@media(max-width:768px) {
#about-content-2 #abt-cnt-2-text h2 {
font-size: 25px;
}
#about-content-2 #abt-cnt-2-text h2>span {
font-size: 38px;
}
#about-content-2 #abt-cnt-2-text p {
font-size: 15px;
}
#about-content-2 .abt-cnt-2-ftr .fa {
font-size: 25px;
height: 55px;
width: 55px;
padding-top: 14px;
}
#about-content-2 .abt-cnt-2-ftr h4 {
font-size: 16px;
}
#why-us-tabs .nav-tabs li a {
font-size: 15px;
padding: 8px 20px;
}
}
@media(max-width:767px) {
#why-us-tabs .nav-tabs li {
width: 100%;
margin-bottom: 1px;
text-align: center;
}
#why-us-tabs .nav-tabs li:last-child {
margin-bottom: 0px;
}
#why-us-tabs .nav-tabs li a {
margin-left: 0px;
}
#why-us-tabs .tab-content .tab-pane, #company-logos {
text-align: center;
}
#owl-company-logo {
margin-top: 25px;
}
}
/************** ERROR PAGE **************/
@media(max-width:991px) {
.company-name {
font-size: 34px;
}
.company-name .fa {
font-size: 50px;
}
#error-text h2 {
font-size: 276px;
margin-bottom: -47px;
}
#error-text p {
font-size: 27px;
}
#error-text .btn {
font-size: 18px;
padding: 14px 45px;
}
}
@media(max-width:768px) {
.company-name {
font-size: 30px;
}
.company-name .fa {
font-size: 45px;
}
#error-text h2 {
font-size: 226px;
margin-bottom: -37px;
}
#error-text p {
font-size: 24px;
width: 60%;
}
#error-text .btn {
font-size: 17px;
padding: 14px 37px;
}
}
@media(max-width:576px) {
.company-name {
font-size: 27px;
}
.company-name .fa {
font-size: 40px;
}
#error-text h2 {
font-size: 186px;
margin-bottom: -27px;
}
#error-text p {
font-size: 22px;
width: 75%;
}
#error-text .btn {
font-size: 17px;
padding: 10px 30px;
}
}
@media(max-width:420px) {
.company-name {
font-size: 24px;
}
.company-name .fa {
font-size: 35px;
}
#error-text h2 {
font-size: 156px;
margin-bottom: -20px;
}
#error-text p {
font-size: 20px;
width: 90%;
margin-bottom: 50px;
}
#error-text .btn {
font-size: 15px;
padding: 10px 30px;
}
}
/************** ERROR PAGE 2 *************/
@media(min-width:992px) {
.error-page-2-circle h2 {
margin-top: 140px;
}
}
@media(max-width:991px) {
#error-page-2 {
text-align: center;
}
#error-page-2 .full-page-title {
margin-bottom: 60px;
}
.error-page-2-circle h2 {
margin-bottom: 30px;
}
}
@media(max-width:768px) {
.error-page-2-circle h2 {
margin-bottom: 30px;
font-size: 58px;
height: 183px;
width: 183px;
padding-top: 48px;
}
.error-page-2-text h2 {
font-size: 29px;
}
.error-page-2-text p {
font-size: 16px;
}
}
@media(max-width:419px) {
.error-page-2-circle h2 {
font-size: 53px;
height: 170px;
width: 170px;
}
.error-page-2-text h2 {
font-size: 26px;
}
.error-page-2-text p {
font-size: 15px;
}
.error-page-2-text .btn {
font-size: 16px;
}
}
/********** COMING SOON PAGE ************/
@media(max-width:991px) {
#coming-soon-text h2 {
font-size: 75px;
}
#coming-soon-text p {
font-size: 27px;
}
#coming-soon-text .timer li {
height: 108px;
width: 108px;
font-size: 16px;
padding-top: 24px;
}
#coming-soon-text .timer li .digit {
font-size: 47px;
}
}
@media(max-width:768px) {
#coming-soon-text h2 {
font-size: 60px;
margin-top: 73px;
}
#coming-soon-text p {
font-size: 23px;
}
#coming-soon-text form .form-group {
margin: 60px auto 85px;
}
#coming-soon-text .timer li {
height: 98px;
width: 98px;
font-size: 16px;
padding-top: 21px;
}
#coming-soon-text .timer li .digit {
font-size: 43px;
margin-bottom: 18px;
}
}
@media(max-width:576px) {
#coming-soon-text h2 {
font-size: 50px;
margin-top: 53px;
}
#coming-soon-text p {
font-size: 20px;
}
#coming-soon-text form .form-group {
margin: 50px auto 75px;
}
#coming-soon-text .timer li {
height: 88px;
width: 88px;
font-size: 15px;
padding-top: 18px;
margin: 11px 10px;
}
#coming-soon-text .timer li .digit {
font-size: 38px;
margin-bottom: 15px;
}
}
@media(max-width:500px) {
#coming-soon-text .timer li {
width: 40%;
}
}
@media(max-width:420px) {
#coming-soon-text h2 {
font-size: 41px;
margin-top: 43px;
}
#coming-soon-text p {
font-size: 18px;
}
#coming-soon-text .timer li {
font-size: 14px;
}
#coming-soon-text .timer li .digit {
font-size: 34px;
margin-bottom: 15px;
}
#coming-soon-text form .form-group {
width: 95%;
margin: 50px auto 60px;
}
}
/********** COMING SOON PAGE 2 ************/
@media(max-width:768px) {
#coming-soon-page-2 h2 {
font-size: 25px;
}
#coming-soon-page-2 .coming-soon-2-timer ul li .digit {
font-size: 35px;
margin-bottom: 8px;
width: 100px;
height: 100px;
padding-top: 38px;
}
#coming-soon-page-2-text form .form-group {
width: 340px;
}
#coming-soon-page-2-text form input, #coming-soon-page-2-text form .btn {
height: 40px;
}
}
@media(max-width:575px) {
#coming-soon-page-2 .full-page-title {
margin-bottom: 0px;
}
#coming-soon-page-2 .full-page-title .company-name {
margin-bottom: 20px;
}
#coming-soon-page-2 h2 {
margin-bottom: 15px;
}
#coming-soon-page-2 .coming-soon-2-timer ul {
width: 245px;
margin: 0 auto;
}
#coming-soon-page-2 .coming-soon-2-timer ul li {
width: 49.4%;
}
#coming-soon-page-2 .coming-soon-2-timer ul li .digit {
display: inline-block;
}
#coming-soon-page-2 .coming-soon-2-timer ul li span:nth-child(2) {
display: block;
}
#coming-soon-page-2-text form .form-group {
margin: 50px auto 45px;
}
}
@media(max-width:419px) {
#coming-soon-page-2 h2 {
font-size: 23px;
}
#coming-soon-page-2 .coming-soon-2-timer ul {
width: 225px;
}
#coming-soon-page-2 .coming-soon-2-timer ul li .digit {
font-size: 30px;
margin-bottom: 8px;
width: 90px;
height: 90px;
padding-top: 34px;
}
#coming-soon-page-2-text form .form-group {
width: 90%;
}
#coming-soon-page-2-text form .btn {
font-size: 14px;
}
}
/********* BLOG LISTINGS PAGE ***********/
@media(max-width:576px) {
.blog-post-img .main-mask {
padding: 9px 33px;
}
.blog-post-img .main-mask .blog-post-info li {
font-size: 12px;
}
.blog-post-img .main-mask .blog-post-info li .fa {
font-size: 13px;
}
.blog-post-img .main-mask .blog-post-info li:nth-child(2) {
margin-right: 0px;
}
.blog-post-detail {
padding: 30px;
}
.blog-post-detail .blog-post-title {
font-size: 20px;
}
}
/********** BLOG DETAILS PAGE ***********/
@media(min-width:1200px) {
.comment-block .user-text p {
width: 90%;
}
.comment-block.reply-block .user-text p {
width: 80%;
}
#comment-form {
width: 88%;
}
}
@media(max-width:768px) {
.comment-block .user-text ul .user-name {
font-size: 17px;
}
.comment-block .user-text ul .user-name:after {
top: 3px;
height: 17px;
}
#comment-form .innerpage-heading h1 {
font-size: 26px;
}
}
@media(max-width:767px) {
#comments {
margin-top: 120px;
width: 100%;
}
#comment-form .form-group {
margin-bottom: 15px;
}
}
@media(max-width:550px) {
.comment-block .user-img {
float: none;
margin-bottom: 20px;
}
.comment-block .user-img img {
max-height: 50px;
}
.reply-block {
padding-right: 45px;
}
}
/************** DASHOBARD ***************/
@media(max-width:991px) {
.dashboard-nav .nav-tabs {
margin-top: 10px;
}
.dashboard-nav .nav-tabs li a {
font-size: 16px;
}
.dashboard-nav .nav-tabs li.active a {
background: #faa61a;
color: white;
border-top: 4px solid #000;
margin: -4px 0 0 0;
}
.dashboard-nav .nav-tabs li .fa {
font-size: 22px;
height: 50px;
width: 50px;
padding-top: 12px;
}
.info-stat .stat-block .fa {
font-size: 50px;
}
.dashboard-listing .table-responsive {
margin-bottom: 0px;
}
.dashboard-heading h2 {
font-size: 40px;
}
.dashboard-heading p:nth-of-type(1) {
font-size: 23.24px;
}
.dashboard-heading p:nth-of-type(2) {
font-size: 14.76px;
}
.dash-content-title {
font-size: 30px;
}
.dashboard-listing .dash-listing-heading {
padding: 13px 30px 13px 30px;
}
.dashboard-listing table td.dash-list-icon .fa {
font-size: 17px;
height: 36px;
width: 36px;
padding-top: 9px;
}
.dashboard-listing.recent-activity td.recent-ac-icon {
padding: 12px 30px 12px 8px;
}
.dashboard-listing.recent-activity table td.recent-ac-text {
font-size: 16px;
padding: 18px 8px 12px 8px;
}
.dashboard-listing.recent-activity td.del-field {
padding: 15px 8px 10px 20px;
}
.dashboard-listing.invoices td.invoice-text {
padding: 13px 8px;
}
.dashboard-listing.invoices td.invoice-icon {
padding: 20px 30px 12px 8px;
}
.invoices td.invoice-text h4 {
font-size: 16px;
margin-bottom: 6px;
}
.invoices td.invoice-text .invoice-info {
font-size: 15px;
}
.invoices td.invoice-text .invoice-info li:after {
top: 3px;
}
.invoices td.dash-list-btn {
padding-top: 23px;
padding-left: 30px;
}
}
@media(min-width:768px) {
.dashboard-content {
padding-right: 35px;
}
}
@media(max-width:767px) {
.dashboard-heading h2 {
font-size: 35px;
}
.dashboard-nav .nav-tabs li {
float: right;
width: 20%;
}
.dashboard-content {
margin-top: 80px;
}
}
@media(max-width:576px) {
.dashboard-heading h2 {
font-size: 30px;
margin-bottom: 15px;
}
.dashboard-heading p:nth-of-type(1) {
font-size: 20.24px;
}
.dashboard-heading p:nth-of-type(2) {
font-size: 14px;
}
.dash-content-title {
font-size: 28px;
}
.dashboard-nav .nav-tabs li a {
font-size: 12px;
font-weight: 400;
}
.dashboard-nav .nav-tabs li .fa {
font-size: 19px;
height: 44px;
width: 44px;
padding-top: 10px;
}
.dashboard-listing .dash-listing-heading {
padding: 13px 20px 13px 30px;
}
.dashboard-listing.recent-activity td.recent-ac-icon {
padding: 12px 20px 12px 8px;
}
.dashboard-listing.invoices td.invoice-icon {
padding: 20px 20px 12px 8px;
}
.invoices td.dash-list-btn {
padding-top: 23px;
padding-left: 20px;
}
}
@media(max-width:420px) {
.page-cover.dashboard .page-title {
display: block;
}
.page-cover.dashboard .breadcrumb {
float: none;
}
.dashboard-nav .nav-tabs li a {
font-size: 12px;
padding: 15px 0px;
}
.dashboard-nav .nav-tabs li .fa {
font-size: 17px;
height: 38px;
width: 38px;
padding-top: 9px;
}
}
/*************** DASHBOARD-2 *************/
@media(max-width:991px) {
#dashboard-tabs .nav-tabs li a {
font-size: 15px;
}
#dashboard-tabs .nav-tabs li a .fa {
margin-left: 15px;
font-size: 20px;
}
}
@media(max-width:767px) {
#dashboard-tabs .nav-tabs li a {
margin-top: 2px;
}
#dashboard-tabs .tab-content .tab-pane .dashboard-content {
margin-top: 0px;
}
}
@media(max-width:420px) {
#dashboard-tabs .tab-content .tab-pane .dashboard-content {
padding: 50px 16px 20px;
}
}
/************** PROFILE PAGE **************/
@media(max-width:991px) {
.user-profile .card-header {
padding: 12px 30px;
}
.user-profile .card-body {
padding: 30px;
}
.user-profile .card-body .user-detail li {
font-size: 15px;
}
}
@media(max-width:767px) {
.user-profile .card-body .user-img img {
margin-bottom: 30px;
}
.user-profile .card-body .user-desc {
margin-top: 60px;
}
}
/************** BOOKING PAGE ************/
@media(max-width:991px) {
.booking-trips .dashboard-listing .dash-listing-heading {
font-size: 16px;
}
.booking-listing td.booking-list-date .b-date {
padding: 10px 12px;
}
.booking-listing td.booking-list-date h3 {
font-size: 29px;
margin-bottom: -6px;
}
.booking-listing td.booking-list-date p {
font-size: 13px;
}
.booking-listing td.booking-list-detail h3 {
font-size: 21px;
}
}
@media(max-width:576px) {
.dashboard-listing.booking-listing td.booking-list-date, .booking-listing td.booking-list-detail, .booking-listing td.dash-list-btn {
padding: 20px 20px 25px;
}
}
/************* WISHLIST PAGE ************/
@media(min-width:1200px) {
.wishlist-img.list-img {
-webkit-flex: .55 0 0%;
-ms-flex: .55 0 0%;
flex: .55 0 0%;
}
.wishlist-text.list-text {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
}
@media(max-width:1199px) {
.wishlist-img.list-img {
-webkit-flex: 1 0 0%;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.wishlist-text.list-text {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
}
@media(min-width:768px) and (max-width:991px) {
.wishlist-img.list-img {
-webkit-flex: 1 0 0%;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.wishlist-text.list-text {
-webkit-flex: 1 0 28%;
-ms-flex: 1 0 28%;
flex: 1 0 28%;
}
}
@media(max-width:991px) {
.wishlist-text h3 {
font-size: 22px;
}
.wishlist-text h3 .rating {
font-size: 15px;
}
}
@media(max-width:768px) {
.table-responsive>.table>tbody>tr>td {
white-space: nowrap;
}
}
@media(max-width:576px) {
.wishlist td.wishlist-text {
padding: 20px 20px 30px;
}
}
/************** CARD PAGE **************/
@media(min-width:768px) {
.custom-modal .modal-dialog {
width: 450px;
}
}
@media(max-width:991px) {
.card-block {
padding: 20px 30px;
}
.card-block {
min-height: 275px;
}
.card-block .card-number {
font-size: 28px;
}
.card-block .card-expiry {
font-size: 19px;
}
.card-block h4 {
font-size: 18px;
}
.card-block .card-name {
margin-bottom: 33px;
}
.card-block .user-name {
font-size: 22px;
}
.card-block ul li.card-links {
font-size: 30px;
padding-top: 7px;
}
}
@media(max-width:420px) {
.card-block {
padding: 38px 30px 30px;
}
.card-block .card-number {
font-size: 26px;
}
.card-block .card-expiry {
font-size: 18px;
}
.card-block h4 {
font-size: 17px;
}
.card-block .card-name {
margin-bottom: 30px;
}
.custom-modal .modal-content {
padding: 20px 20px 30px;
}
}
/********* BEFORE YOU FLY PAGE **********/
@media(max-width:767px) {
.byf-info .nav-tabs li {
width: 100%;
}
}
@media(max-width:576px) {
.byf-info .nav-tabs li a {
font-size: 15px;
}
.byf-info .tab-pane {
padding: 40px 30px;
}
.byf-info .tab-pane .byf-info-wrap h3 {
font-size: 21px;
}
.byf-info .tab-pane .byf-info-wrap img+h3 {
margin-top: 40px;
}
}
/********* TRAVEL INSURANCE PAGE *********/
@media(max-width:767px) {
.tvl-insurance-info .innerpage-heading h1 {
font-size: 27px;
}
.in-feature-block .fa {
font-size: 35px;
width: 80px;
height: 80px;
padding-top: 22px;
margin-bottom: 20px;
}
.in-feature-block h4 {
font-size: 19px;
}
.insurance-plan-block a {
font-size: 15px;
padding: 10px 25px;
}
}
/************* HOLIDAYS PAGE *************/
@media(max-width:991px) {
.destination-lists {
width: 400px;
margin: 0 auto;
}
}
@media(max-width:768px) {
.big-heading h2 {
font-size: 70px;
margin-top: -138px;
margin-bottom: 60px;
}
.big-heading:before {
bottom: -50px;
font-size: 60px;
}
}
@media(max-width:767px) {
.destination-lists {
width: 200px;
margin: 0 auto;
}
}
@media(max-width:576px) {
.big-heading h2 {
font-size: 55px;
margin-top: -127px;
margin-bottom: 50px;
}
}
@media(max-width:420px) {
.big-heading h2 {
font-size: 45px;
margin-top: -120px;
margin-bottom: 40px;
}
}
@media(max-width:360px) {
.big-heading h2 {
font-size: 38px;
margin-top: -114px;
margin-bottom: 35px;
}
}
/************ THNAK YOU PAGE *************/
@media(max-width:576px) {
.thank-you-note {
padding-right: 110px;
}
.thank-you-note:before {
top: -20px;
font-size: 100px;
}
.thank-you-note h3 {
font-size: 22px;
}
.payment-method ul li img {
max-width: 75px;
}
}
@media(max-width:420px) {
.thank-you-note {
padding-right: 95px;
}
.thank-you-note:before {
top: -15px;
font-size: 85px;
}
.thank-you-note h3 {
font-size: 22px;
}
}
/********** PAYMENT-SUCCESS PAGE *********/
@media(max-width:768px) {
#payment-success h2 {
font-size: 35px;
}
#payment-success .fa-check-circle {
font-size: 105px;
}
#payment-success p:nth-of-type(2) {
width: 90%;
margin: 30px auto;
}
}
/************* SERVICES-1 PAGE *************/
@media(max-width:767px) {
.service-block-1 .service-icon-1 {
width: 65px;
}
.service-block-1 .service-icon-1 .fa {
height: 55px;
width: 55px;
padding-top: 14px;
font-size: 25px;
}
.service-block-1 .service-text-1 h3 {
font-size: 19px;
}
}
/************* SERVICES-2 PAGE ************/
@media(max-width:991px) {
.service-intro-text {
margin-top: 60px;
text-align: center;
}
.service-intro-text h2, .service-intro-text p {
width: 90%;
margin-right: auto;
margin-left: auto;
}
.services-list-img img {
display: inline-block;
margin-bottom: 30px;
}
}
@media(max-width:768px) {
.process-block .fa {
font-size: 30px;
height: 80px;
width: 80px;
padding-top: 22px;
}
.service-intro-text h2 {
font-size: 38px;
}
.service-intro-text p {
font-size: 18px;
margin-bottom: 50px;
}
.service-intro-text .btn {
font-size: 18px;
padding: 10px 27px;
}
}
@media(max-width:768px) {
.services-list .service-block-1 {
margin-top: 30px;
}
}
@media(max-width:576px) {
#process-flow {
padding-bottom: 30px;
}
.process li {
float: none;
width: 100%;
margin-bottom: 50px;
}
.service-intro-text h2 {
font-size: 32px;
margin-bottom: 20px;
}
.service-intro-text p {
font-size: 16px;
margin-bottom: 50px;
}
.service-intro-text .btn {
font-size: 16px;
padding: 10px 27px;
}
}
/************* PRICING PAGES *************/
@media(min-width:992px) {
.pricing-table-1 .page-heading {
margin-bottom: 100px;
}
}
/*********** TESTIMONIALS PAGES **********/
@media(max-width:768px) {
#testimonials-page .page-heading h2 {
font-size: 32px;
}
}
/**************** FAQ PAGES **************/
@media(max-width:767px) {
#faq-page .content-side .faq-heading {
font-size: 20px;
}
#faq-page .content-side .faq-heading::before {
top: 9px;
}
#faq-page .content-side .panel-title::after {
left: -14px;
width: 57px;
}
}
/*************** TRAVEL-GUIDE *************/
@media(min-width:768px) {
#travel-guide .tv-guide-block.right .tab-text {
text-align: left;
}
}
@media(max-width:767px) {
#travel-guide .detail-tabs .nav-tabs li.active {
margin-top: 2px;
}
#travel-guide .tv-guide-block .tab-text h3 {
margin-top: 25px;
}
}
@media(max-width:419px) {
#travel-guide #tv-guide-attractions h3 {
font-size: 18px;
}
#travel-guide #tv-guide-attractions .attract-loc {
font-size: 16px;
}
}
/* -----------------------------------------------------
Contact Us Pages
----------------------------------------------------- */
@media(max-width:767px) {
#contact-form-2 {
padding-top: 30px;
}
#contact-us-2 iframe {
height: 350px;
}
.contact-block-2 {
margin-bottom: 75px;
}
.contact-form-2-text {
text-align: center;
margin-bottom: 50px;
}
.contact-form-2-text .social-links li a {
font-size: 23px;
margin-left: 0px;
margin: 0px 7px;
}
}
| 0.226698 | 0.113089 |
.pai {
background: url(./img/pai.png) no-repeat;
background-size: 480.3px 338.7px;
height: 57.9px;
width: 41.7px;
}
.received {
transform: rotate(-90deg);
margin-left: 8.1px;
margin-right: 8.1px;
position: relative;
top: 7.78px;
}
.chi.received {
order: -1;
}
.ming {
display:flex;
flex-wrap: nowarp;
}
#f11 {background-position: 1.573% 2.457%;}
#f12 {background-position: 12.372% 2.457%;}
#f13 {background-position: 22.777% 2.457%;}
#f14 {background-position: 33.766% 2.457%;}
#f15 {background-position: 44.596% 2.457%;}
#f16 {background-position: 66.074% 2.457%;}
#f17 {background-position: 76.828% 2.457%;}
#f18 {background-position: 87.62% 2.457%;}
#f19 {background-position: 98.358% 2.457%;}
#f21 {background-position: 1.573% 50.107%;}
#f22 {background-position: 12.372% 50.107%;}
#f23 {background-position: 22.777% 50.107%;}
#f24 {background-position: 33.766% 50.107%;}
#f25 {background-position: 44.596% 50.107%;}
#f26 {background-position: 66.074% 50.107%;}
#f27 {background-position: 76.828% 50.107%;}
#f28 {background-position: 87.62% 50.107%;}
#f29 {background-position: 98.358% 50.107%;}
#f01 {background-position: 1.573% 26.282%;}
#f02 {background-position: 12.372% 26.282%;}
#f03 {background-position: 22.777% 26.282%;}
#f04 {background-position: 33.766% 26.282%;}
#f05 {background-position: 44.596% 26.282%;}
#f06 {background-position: 66.074% 26.282%;}
#f07 {background-position: 76.828% 26.282%;}
#f08 {background-position: 87.62% 26.282%;}
#f09 {background-position: 98.358% 26.282%;}
#f31 {background-position: 1.573% 73.825%;}
#f32 {background-position: 12.372% 73.825%;}
#f33 {background-position: 22.777% 73.825%;}
#f34 {background-position: 33.766% 73.825%;}
#f35 {background-position: 44.596% 73.825%;}
#f36 {background-position: 55.335% 73.825%;}
#f37 {background-position: 66.074% 73.825%;}
#b {background-position: 66.074% 95.513%;}
#t15 {background-position: 55.335% 2.457%;}
#t25 {background-position: 55.335% 50.107%;}
#t05 {background-position: 55.335% 26.282%;}
|
src/component/Pai.css
|
.pai {
background: url(./img/pai.png) no-repeat;
background-size: 480.3px 338.7px;
height: 57.9px;
width: 41.7px;
}
.received {
transform: rotate(-90deg);
margin-left: 8.1px;
margin-right: 8.1px;
position: relative;
top: 7.78px;
}
.chi.received {
order: -1;
}
.ming {
display:flex;
flex-wrap: nowarp;
}
#f11 {background-position: 1.573% 2.457%;}
#f12 {background-position: 12.372% 2.457%;}
#f13 {background-position: 22.777% 2.457%;}
#f14 {background-position: 33.766% 2.457%;}
#f15 {background-position: 44.596% 2.457%;}
#f16 {background-position: 66.074% 2.457%;}
#f17 {background-position: 76.828% 2.457%;}
#f18 {background-position: 87.62% 2.457%;}
#f19 {background-position: 98.358% 2.457%;}
#f21 {background-position: 1.573% 50.107%;}
#f22 {background-position: 12.372% 50.107%;}
#f23 {background-position: 22.777% 50.107%;}
#f24 {background-position: 33.766% 50.107%;}
#f25 {background-position: 44.596% 50.107%;}
#f26 {background-position: 66.074% 50.107%;}
#f27 {background-position: 76.828% 50.107%;}
#f28 {background-position: 87.62% 50.107%;}
#f29 {background-position: 98.358% 50.107%;}
#f01 {background-position: 1.573% 26.282%;}
#f02 {background-position: 12.372% 26.282%;}
#f03 {background-position: 22.777% 26.282%;}
#f04 {background-position: 33.766% 26.282%;}
#f05 {background-position: 44.596% 26.282%;}
#f06 {background-position: 66.074% 26.282%;}
#f07 {background-position: 76.828% 26.282%;}
#f08 {background-position: 87.62% 26.282%;}
#f09 {background-position: 98.358% 26.282%;}
#f31 {background-position: 1.573% 73.825%;}
#f32 {background-position: 12.372% 73.825%;}
#f33 {background-position: 22.777% 73.825%;}
#f34 {background-position: 33.766% 73.825%;}
#f35 {background-position: 44.596% 73.825%;}
#f36 {background-position: 55.335% 73.825%;}
#f37 {background-position: 66.074% 73.825%;}
#b {background-position: 66.074% 95.513%;}
#t15 {background-position: 55.335% 2.457%;}
#t25 {background-position: 55.335% 50.107%;}
#t05 {background-position: 55.335% 26.282%;}
| 0.361841 | 0.127789 |
@import url('./utility-variables.css');
.main-container {
display: grid;
grid-template-columns: 1fr 3fr;
grid-template-rows: 1fr 2fr;
padding: 20px;
height: 70vh;
gap: 10px;
}
.user-general-info-container {
grid-area: 1 / 1 / 2 / 2;
padding: 20px;
display: flex;
align-items: center;
gap: 10px;
border-radius: 20px;
background-color: var(--color-primary);
color: white;
position: relative;
}
.account-status {
position: absolute;
top: 10px;
right: 10px;
width: 75px;
height: 25px;
line-height: 25px;
vertical-align: center;
text-align: center;
border-radius: 10px;
color: var(--color-tertiary);
background-color: var(--color-secondary);
}
.user-image {
width: 80px;
height: 80px;
border-radius: 50%;
}
.user-general-info-text-container {
display: flex;
justify-content: center;
align-items: left;
flex-direction: column;
}
.user-general-info-text-container * {
margin: 0;
}
.user-name {
font-size: 1.5rem;
word-wrap: normal;
}
.user-email {
font-size: 0.8rem;
}
.nav-column {
grid-area: 2 / 1 / 3 / 2;
display: flex;
flex-direction: column;
border-radius: 20px;
justify-content: center;
align-items: center;
}
.nav-column-item {
text-align: center;
background-color: var(--color-primary);
width: 100%;
padding-block: 26px;
font-style: italic;
text-decoration: none;
color: var(--color-tertiary);
}
.nav-column-item:hover {
background-color: var(--color-secondary);
cursor: pointer;
color: white;
}
.nav-column-item:first-child {
border-radius: 20px 20px 0px 0px;
}
.nav-column-item:nth-child(3) {
background-color: var(--color-secondary);
color: white;
}
.nav-column-item:last-child {
border-radius: 0px 0px 20px 20px;
}
.user-transaction-container {
grid-area: 1 / 2 / 3 / 3;
background-color: var(--color-primary-variant);
border-radius: 20px;
padding: 30px;
position: relative;
height: minmax(87.5%, fit-content);
}
.user-main-info-container h3 {
color: var(--color-tertiary);
margin: 0px;
}
.transaction-group-time {
color: white;
font-style: italic;
margin-bottom: 10px;
margin-left: 15px;
}
.transaction-item {
display: flex;
width: 100%;
gap: 15px;
}
.transaction-item-info-container {
display: flex;
align-items: center;
background-color: var(--color-primary);
width: 70%;
height: 80px;
border-radius: 10px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
margin-bottom: 10px;
padding: 10px;
align-items: center;
}
.transaction-item-name {
color: white;
font-size: 1.5rem;
margin-bottom: 5px;
margin-top: 0;
}
.transaction-item-price-quantity-container {
display: flex;
align-items: baseline;
gap: 10px;
}
.transaction-item-price {
background-color: var(--color-secondary);
padding: 5px 15px;
border-radius: 5px;
font-size: 0.9rem;
}
.transaction-item-quantity {
color: var(--color-tertiary);
font-size: 1.5rem;
}
.transaction-item-total-price {
background-color: var(--color-secondary);
margin-left: auto;
height: 80px;
line-height: 80px;
vertical-align: middle;
border-radius: 5px;
padding-inline: 20px;
}
.transaction-item-input {
background-color: var(--color-primary);
width: 25%;
height: 80px;
border-radius: 10px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
margin-bottom: 10px;
padding: 10px;
display: grid;
place-content: center;
}
.transaction-item-review-button {
border: var(--input-border-property-sm);
text-decoration: none;
color: var(--color-tertiary);
font-weight: bold;
background-color: var(--color-secondary);
padding: 5px 20px;
border-radius: 5px;
}
.transaction-item-review-button:active {
transform: scale(90%);
}
|
public/style/user/user-transaction.css
|
@import url('./utility-variables.css');
.main-container {
display: grid;
grid-template-columns: 1fr 3fr;
grid-template-rows: 1fr 2fr;
padding: 20px;
height: 70vh;
gap: 10px;
}
.user-general-info-container {
grid-area: 1 / 1 / 2 / 2;
padding: 20px;
display: flex;
align-items: center;
gap: 10px;
border-radius: 20px;
background-color: var(--color-primary);
color: white;
position: relative;
}
.account-status {
position: absolute;
top: 10px;
right: 10px;
width: 75px;
height: 25px;
line-height: 25px;
vertical-align: center;
text-align: center;
border-radius: 10px;
color: var(--color-tertiary);
background-color: var(--color-secondary);
}
.user-image {
width: 80px;
height: 80px;
border-radius: 50%;
}
.user-general-info-text-container {
display: flex;
justify-content: center;
align-items: left;
flex-direction: column;
}
.user-general-info-text-container * {
margin: 0;
}
.user-name {
font-size: 1.5rem;
word-wrap: normal;
}
.user-email {
font-size: 0.8rem;
}
.nav-column {
grid-area: 2 / 1 / 3 / 2;
display: flex;
flex-direction: column;
border-radius: 20px;
justify-content: center;
align-items: center;
}
.nav-column-item {
text-align: center;
background-color: var(--color-primary);
width: 100%;
padding-block: 26px;
font-style: italic;
text-decoration: none;
color: var(--color-tertiary);
}
.nav-column-item:hover {
background-color: var(--color-secondary);
cursor: pointer;
color: white;
}
.nav-column-item:first-child {
border-radius: 20px 20px 0px 0px;
}
.nav-column-item:nth-child(3) {
background-color: var(--color-secondary);
color: white;
}
.nav-column-item:last-child {
border-radius: 0px 0px 20px 20px;
}
.user-transaction-container {
grid-area: 1 / 2 / 3 / 3;
background-color: var(--color-primary-variant);
border-radius: 20px;
padding: 30px;
position: relative;
height: minmax(87.5%, fit-content);
}
.user-main-info-container h3 {
color: var(--color-tertiary);
margin: 0px;
}
.transaction-group-time {
color: white;
font-style: italic;
margin-bottom: 10px;
margin-left: 15px;
}
.transaction-item {
display: flex;
width: 100%;
gap: 15px;
}
.transaction-item-info-container {
display: flex;
align-items: center;
background-color: var(--color-primary);
width: 70%;
height: 80px;
border-radius: 10px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
margin-bottom: 10px;
padding: 10px;
align-items: center;
}
.transaction-item-name {
color: white;
font-size: 1.5rem;
margin-bottom: 5px;
margin-top: 0;
}
.transaction-item-price-quantity-container {
display: flex;
align-items: baseline;
gap: 10px;
}
.transaction-item-price {
background-color: var(--color-secondary);
padding: 5px 15px;
border-radius: 5px;
font-size: 0.9rem;
}
.transaction-item-quantity {
color: var(--color-tertiary);
font-size: 1.5rem;
}
.transaction-item-total-price {
background-color: var(--color-secondary);
margin-left: auto;
height: 80px;
line-height: 80px;
vertical-align: middle;
border-radius: 5px;
padding-inline: 20px;
}
.transaction-item-input {
background-color: var(--color-primary);
width: 25%;
height: 80px;
border-radius: 10px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
margin-bottom: 10px;
padding: 10px;
display: grid;
place-content: center;
}
.transaction-item-review-button {
border: var(--input-border-property-sm);
text-decoration: none;
color: var(--color-tertiary);
font-weight: bold;
background-color: var(--color-secondary);
padding: 5px 20px;
border-radius: 5px;
}
.transaction-item-review-button:active {
transform: scale(90%);
}
| 0.415729 | 0.137909 |
@media only screen and (max-width: 1280px){
.top-pad{
height:97px;background:white;
}
}
#toggle-btn-1{
border-radius: 50%; width:80px; height: 80px; background: #3b4352;border-color: #3b4352; padding:18px;color:white;
}
#toggle-btn-2{
border-radius: 50%; width:80px; height: 80px; background: #3b4352;border-color: #3b4352; padding:18px;color:white;
}
/*close button in models*/
.btn{
color:white;
background:#3b4352;
font-weight:600;
}
.btn:hover{
color:white;
background:#13171E;
font-weight:600;
}
.banner-btns{
position:absolute;width:17%;height:10%;bottom:21%;color:white;font-size:1.5vw;background-color: #3b4352;border-color:#3b4352;border-radius:1vw;justify-content:center;display:flex;align-items:center
}
.banner-btns:hover{
background:#13171E;
}
/*buttons in first section*/
.div-btns-red{
width:275px;padding:20px 30px;font-weight:600;background-color:#3b4352;color:white;border-radius:1.2vw;justify-content:center;display:flex;align-items:center;
}
.div-btns-red:hover{
background:#13171E;
}
/*buttuns in the merit section*/
.div-btns-red-2{
width:225px;height:70px;padding:20px 30px;font-weight:600;font-size:18px;color:white;border-radius:.4vw;justify-content:center;display:flex;align-items:center;
}
#Quality{
background:#2e8d86;
}
#Quality:hover{
background:#003434;
}
#Advancing{
background:#609d98;
}
#Advancing:hover{
background:#355654
}
#Improvement{
background:#86b0ad;
}
#Improvement:hover{
background:#4B7370;
}
#Cost{
background:#3b4352;
}
#Cost:hover{
background:#13171E;
}
/*buttons in resource section*/
.div-btns-red-3{
width:200px;height:70px;font-weight:600;font-size:18px;color:white;background:#3b4352;border-radius:0vw;justify-content:center;display:flex;align-items:center;
}
.div-btns-red-3:hover{
background:#13171E;
}
.div-btns-red-dl{
width:70px;height:70px;padding:10px;font-weight:600;font-size:18px;background-color:#c6c6c6;color:white;border-radius:0vw;justify-content:center;display:flex;align-items:center;
}
@font-face{
font-family:"Intro-Inline";src:url("../css/Intro_Inline.eot?") format("eot"),url("../css/Intro_Inline.woff") format("woff"),url("../css/Intro_Inline.ttf") format("truetype"),url("../css/Intro_Inline.svg#Intro-Inline") format("svg");font-weight:normal;font-style:normal;
}
/*header fonts accross the site*/
.Mfont{
font-family:Intro-Inline;
font-size:75px;
font-weight:100;
color:teal;
border-bottom:1px solid #000;
}
.Mfont2{
font-family:Intro-Inline;
font-size:100px;
font-weight:100;
color:dimgray;
border-bottom:1px solid #000;
}
.close{
display:none;
}
strong{
color:#3b4352;
}
a{
font-weight:600;
}
a:link{
text-decoration:none;
color:teal;
outline:none;
border:none;
}
a:visited{
color:teal;
text-decoration:none;
outline:none;
}
a:hover{
color:#3b4352;
}
a:active{
text-decoration:none;
color:#3b4352;
}
footer{
background:#2a292a;
height:225px;
padding:50px;
justify-content:center;
display:flex;
align-items:center;
}
@media only screen and (max-width:768px){
.Mfont{
font-size:40px;
}
}
@media only screen and (max-width:768px){
footer{
font-size:10px;
}
}
@media only screen and (max-width:600px){
.banner-btns{
display:none;
}
}
|
css/page.css
|
@media only screen and (max-width: 1280px){
.top-pad{
height:97px;background:white;
}
}
#toggle-btn-1{
border-radius: 50%; width:80px; height: 80px; background: #3b4352;border-color: #3b4352; padding:18px;color:white;
}
#toggle-btn-2{
border-radius: 50%; width:80px; height: 80px; background: #3b4352;border-color: #3b4352; padding:18px;color:white;
}
/*close button in models*/
.btn{
color:white;
background:#3b4352;
font-weight:600;
}
.btn:hover{
color:white;
background:#13171E;
font-weight:600;
}
.banner-btns{
position:absolute;width:17%;height:10%;bottom:21%;color:white;font-size:1.5vw;background-color: #3b4352;border-color:#3b4352;border-radius:1vw;justify-content:center;display:flex;align-items:center
}
.banner-btns:hover{
background:#13171E;
}
/*buttons in first section*/
.div-btns-red{
width:275px;padding:20px 30px;font-weight:600;background-color:#3b4352;color:white;border-radius:1.2vw;justify-content:center;display:flex;align-items:center;
}
.div-btns-red:hover{
background:#13171E;
}
/*buttuns in the merit section*/
.div-btns-red-2{
width:225px;height:70px;padding:20px 30px;font-weight:600;font-size:18px;color:white;border-radius:.4vw;justify-content:center;display:flex;align-items:center;
}
#Quality{
background:#2e8d86;
}
#Quality:hover{
background:#003434;
}
#Advancing{
background:#609d98;
}
#Advancing:hover{
background:#355654
}
#Improvement{
background:#86b0ad;
}
#Improvement:hover{
background:#4B7370;
}
#Cost{
background:#3b4352;
}
#Cost:hover{
background:#13171E;
}
/*buttons in resource section*/
.div-btns-red-3{
width:200px;height:70px;font-weight:600;font-size:18px;color:white;background:#3b4352;border-radius:0vw;justify-content:center;display:flex;align-items:center;
}
.div-btns-red-3:hover{
background:#13171E;
}
.div-btns-red-dl{
width:70px;height:70px;padding:10px;font-weight:600;font-size:18px;background-color:#c6c6c6;color:white;border-radius:0vw;justify-content:center;display:flex;align-items:center;
}
@font-face{
font-family:"Intro-Inline";src:url("../css/Intro_Inline.eot?") format("eot"),url("../css/Intro_Inline.woff") format("woff"),url("../css/Intro_Inline.ttf") format("truetype"),url("../css/Intro_Inline.svg#Intro-Inline") format("svg");font-weight:normal;font-style:normal;
}
/*header fonts accross the site*/
.Mfont{
font-family:Intro-Inline;
font-size:75px;
font-weight:100;
color:teal;
border-bottom:1px solid #000;
}
.Mfont2{
font-family:Intro-Inline;
font-size:100px;
font-weight:100;
color:dimgray;
border-bottom:1px solid #000;
}
.close{
display:none;
}
strong{
color:#3b4352;
}
a{
font-weight:600;
}
a:link{
text-decoration:none;
color:teal;
outline:none;
border:none;
}
a:visited{
color:teal;
text-decoration:none;
outline:none;
}
a:hover{
color:#3b4352;
}
a:active{
text-decoration:none;
color:#3b4352;
}
footer{
background:#2a292a;
height:225px;
padding:50px;
justify-content:center;
display:flex;
align-items:center;
}
@media only screen and (max-width:768px){
.Mfont{
font-size:40px;
}
}
@media only screen and (max-width:768px){
footer{
font-size:10px;
}
}
@media only screen and (max-width:600px){
.banner-btns{
display:none;
}
}
| 0.094725 | 0.057705 |
:root {
--border-color: #111;
--scrollbar: #888;
--scrollbar-track: #bbb;
--light-border-color: #444;
--reverse: #111;
--primary: #1c77c3;
/* Font */
--font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
'Roboto', Roboto, Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
'Segoe UI', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
--heading-font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
'Roboto', Roboto, Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
'Segoe UI', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
--code-font-family: Menlo, 'DM Mono', 'Roboto Mono', Courier New, monospace;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
a:focus-visible,
button:focus-visible {
outline: 3px solid var(--primary);
}
body {
margin: 0;
font-family: var(--font-family);
font-size: 1rem;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
p,
ol,
ul,
table,
blockquote {
font-size: 1.05rem;
margin: 0 0 1.5rem;
}
button {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
border: none;
background: transparent;
cursor: pointer;
}
ul li ul {
margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Roboto',
Roboto, Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI',
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
margin: 0 0 1.5rem 0;
line-height: 1.2;
color: var(--primary);
scroll-margin-top: 60px;
}
a {
text-decoration: none;
}
article a {
border-bottom: 2px solid #1c77c3;
font-weight: 600;
color: black;
}
article a:hover {
background: #1c77c3;
border-top: 2px solid #1c77c3;
color: white;
}
.blog-page h2 {
margin-top: 2.5rem;
}
.accordion__panel {
padding: 0 !important;
}
.accordion__button {
padding: 0.75rem 1rem !important;
}
/* .gatsby-highlight {
margin: 1rem 0 3rem 0;
} */
.gatsby-resp-image-wrapper {
margin-left: 0 !important;
}
a.gatsby-resp-image-link {
border-top: none !important;
border-bottom: none !important;
background: transparent !important;
}
|
src/style.css
|
:root {
--border-color: #111;
--scrollbar: #888;
--scrollbar-track: #bbb;
--light-border-color: #444;
--reverse: #111;
--primary: #1c77c3;
/* Font */
--font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
'Roboto', Roboto, Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
'Segoe UI', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
--heading-font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
'Roboto', Roboto, Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
'Segoe UI', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
--code-font-family: Menlo, 'DM Mono', 'Roboto Mono', Courier New, monospace;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
a:focus-visible,
button:focus-visible {
outline: 3px solid var(--primary);
}
body {
margin: 0;
font-family: var(--font-family);
font-size: 1rem;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
p,
ol,
ul,
table,
blockquote {
font-size: 1.05rem;
margin: 0 0 1.5rem;
}
button {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
border: none;
background: transparent;
cursor: pointer;
}
ul li ul {
margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Roboto',
Roboto, Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI',
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
margin: 0 0 1.5rem 0;
line-height: 1.2;
color: var(--primary);
scroll-margin-top: 60px;
}
a {
text-decoration: none;
}
article a {
border-bottom: 2px solid #1c77c3;
font-weight: 600;
color: black;
}
article a:hover {
background: #1c77c3;
border-top: 2px solid #1c77c3;
color: white;
}
.blog-page h2 {
margin-top: 2.5rem;
}
.accordion__panel {
padding: 0 !important;
}
.accordion__button {
padding: 0.75rem 1rem !important;
}
/* .gatsby-highlight {
margin: 1rem 0 3rem 0;
} */
.gatsby-resp-image-wrapper {
margin-left: 0 !important;
}
a.gatsby-resp-image-link {
border-top: none !important;
border-bottom: none !important;
background: transparent !important;
}
| 0.404743 | 0.117953 |
.login {
background-image: url("../image/background.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
.login-container {
margin-top: 5%;
margin-bottom: 5%;
display: flex;
justify-content: center;
}
.login-form {
padding: 5%;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
background-color: rgba(231, 231, 229, 0.651);
}
.login-form h3 {
text-align: center;
color: #333;
}
.form {
padding: 10%;
}
.form-btn {
display: flex;
justify-content: center;
}
.btnSubmit {
width: 50%;
border-radius: 1rem;
padding: 1.5%;
border: none;
font-weight: 600;
color: rgb(22, 20, 20);
background-color: #83e0ad;
}
.secret{
background-image: url("../image/secret background.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
color: white;
}
.container.secret-container {
padding: 10%;
margin-top: 5%;
margin-bottom: 5%;
display: flex;
align-items: center;
flex-direction: column;
}
.logout-btn {
width: auto;
border-radius: 0.7rem;
padding: 1.5%;
border: none;
font-weight: 600;
color: rgb(22, 20, 20);
background-color: #83e0ad;
margin-right:4%
}
.admin-btn {
width: auto;
border-radius: 0.7rem;
padding: 1.5%;
border: none;
font-weight: 600;
color: rgb(22, 20, 20);
background-color: #83e0ad;
display:none;
}
.logout-admin-btn {
width: 50%;
display: flex;
justify-content: center;
}
.admin{
background-image: url("../image/admin background.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
.table-container{
background-color: rgba(255, 255, 255, 0.726);
text-align: center;
}
|
projs/BuildingMVC/css/style.css
|
.login {
background-image: url("../image/background.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
.login-container {
margin-top: 5%;
margin-bottom: 5%;
display: flex;
justify-content: center;
}
.login-form {
padding: 5%;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
background-color: rgba(231, 231, 229, 0.651);
}
.login-form h3 {
text-align: center;
color: #333;
}
.form {
padding: 10%;
}
.form-btn {
display: flex;
justify-content: center;
}
.btnSubmit {
width: 50%;
border-radius: 1rem;
padding: 1.5%;
border: none;
font-weight: 600;
color: rgb(22, 20, 20);
background-color: #83e0ad;
}
.secret{
background-image: url("../image/secret background.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
color: white;
}
.container.secret-container {
padding: 10%;
margin-top: 5%;
margin-bottom: 5%;
display: flex;
align-items: center;
flex-direction: column;
}
.logout-btn {
width: auto;
border-radius: 0.7rem;
padding: 1.5%;
border: none;
font-weight: 600;
color: rgb(22, 20, 20);
background-color: #83e0ad;
margin-right:4%
}
.admin-btn {
width: auto;
border-radius: 0.7rem;
padding: 1.5%;
border: none;
font-weight: 600;
color: rgb(22, 20, 20);
background-color: #83e0ad;
display:none;
}
.logout-admin-btn {
width: 50%;
display: flex;
justify-content: center;
}
.admin{
background-image: url("../image/admin background.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
.table-container{
background-color: rgba(255, 255, 255, 0.726);
text-align: center;
}
| 0.346541 | 0.079854 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
input,
textarea,
button {
outline: none;
background-color: transparent;
border: 0;
}
.page {
min-height: 100vh;
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;
font-weight: lighter;
}
.bg {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url("https://desk-fd.zol-img.com.cn/t_s1440x900c5/g5/M00/02/05/ChMkJ1bKyU2IG8KRAAT_NkosRHwAALIMALHqVcABP9O282.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
.container {
position: relative;
max-width: 800px;
width: 95%;
padding: 45px 65px;
border-radius: 10px;
color: #fff;
overflow: hidden;
}
.container.result {
background: rgba(120, 129, 147, 0.3);
box-shadow: 0 0 10px 0px #333;
backdrop-filter: blur(10px);
}
h1.title {
text-align: center;
margin-bottom: 30px;
}
.search-form {
text-align: center;
font-size: 16px;
}
.search-form input {
border: #e1e1e1 solid 1px;
border-radius: 50px;
width: 100%;
line-height: 1;
font-size: 16px;
padding: 15px 30px;
color: #fff;
text-align: center;
margin-bottom: 30px;
}
.search-form input::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #f5f5f5;
}
.search-form input::-moz-placeholder {
/* Firefox 19+ */
color: #f5f5f5;
}
.search-form input:-ms-input-placeholder {
/* IE 10+ */
color: #f5f5f5;
}
.search-form input:-moz-placeholder {
/* Firefox 18- */
color: #f5f5f5;
}
.search-form .search-submit {
padding: 15px 60px;
border: 0;
border-radius: 50px;
color: #fff;
font-size: 16px;
cursor: pointer;
line-height: 1;
transition: all 0.3s;
background: -webkit-gradient( linear, left top, right top, from(#9c51ff), to(#816bff));
background: -webkit-linear-gradient(90deg, #9c51ff, #816bff);
background: linear-gradient(90deg, #9c51ff, #816bff);
}
.info {
border: #e1e1e1 solid 1px;
border-radius: 10px;
}
.info .info-item {
padding: 0px;
display: flex;
/* line-height: 46px; */
}
.info .info-item~.info-item {
border-top: #e1e1e1 solid 1px;
}
.info .info-item .lable {
border-right: #e1e1e1 solid 1px;
width: 120px;
padding: 12px 20px;
text-align-last: justify;
}
.info .info-item .value {
flex: 1;
padding: 12px 20px;
}
.div_foot {
position: fixed;
bottom:20px;
left:0px;
text-align: center;
width: 100%;
font-size: 16px;
letter-spacing: 1px;
}
@media (max-width: 820px) {
.container {
padding: 20px;
}
}
|
html/moe/style.css
|
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
input,
textarea,
button {
outline: none;
background-color: transparent;
border: 0;
}
.page {
min-height: 100vh;
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;
font-weight: lighter;
}
.bg {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url("https://desk-fd.zol-img.com.cn/t_s1440x900c5/g5/M00/02/05/ChMkJ1bKyU2IG8KRAAT_NkosRHwAALIMALHqVcABP9O282.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
.container {
position: relative;
max-width: 800px;
width: 95%;
padding: 45px 65px;
border-radius: 10px;
color: #fff;
overflow: hidden;
}
.container.result {
background: rgba(120, 129, 147, 0.3);
box-shadow: 0 0 10px 0px #333;
backdrop-filter: blur(10px);
}
h1.title {
text-align: center;
margin-bottom: 30px;
}
.search-form {
text-align: center;
font-size: 16px;
}
.search-form input {
border: #e1e1e1 solid 1px;
border-radius: 50px;
width: 100%;
line-height: 1;
font-size: 16px;
padding: 15px 30px;
color: #fff;
text-align: center;
margin-bottom: 30px;
}
.search-form input::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #f5f5f5;
}
.search-form input::-moz-placeholder {
/* Firefox 19+ */
color: #f5f5f5;
}
.search-form input:-ms-input-placeholder {
/* IE 10+ */
color: #f5f5f5;
}
.search-form input:-moz-placeholder {
/* Firefox 18- */
color: #f5f5f5;
}
.search-form .search-submit {
padding: 15px 60px;
border: 0;
border-radius: 50px;
color: #fff;
font-size: 16px;
cursor: pointer;
line-height: 1;
transition: all 0.3s;
background: -webkit-gradient( linear, left top, right top, from(#9c51ff), to(#816bff));
background: -webkit-linear-gradient(90deg, #9c51ff, #816bff);
background: linear-gradient(90deg, #9c51ff, #816bff);
}
.info {
border: #e1e1e1 solid 1px;
border-radius: 10px;
}
.info .info-item {
padding: 0px;
display: flex;
/* line-height: 46px; */
}
.info .info-item~.info-item {
border-top: #e1e1e1 solid 1px;
}
.info .info-item .lable {
border-right: #e1e1e1 solid 1px;
width: 120px;
padding: 12px 20px;
text-align-last: justify;
}
.info .info-item .value {
flex: 1;
padding: 12px 20px;
}
.div_foot {
position: fixed;
bottom:20px;
left:0px;
text-align: center;
width: 100%;
font-size: 16px;
letter-spacing: 1px;
}
@media (max-width: 820px) {
.container {
padding: 20px;
}
}
| 0.333503 | 0.074164 |
z { column-rule-color: inherit }
y { column-rule-color: initial }
w { column-rule-color: currentColor }
crca { column-rule-color: #f00 }
crcb { column-rule-color: transparent }
crcc { column-rule-color: rgb(255,0,0) }
crcd { column-rule-color: rgb(100%, 0%, 0%) }
crce { column-rule-color: #ff0000 }
crcf { column-rule-color: rgb(110%, 120%, 0%) }
crcf1 { column-rule-color: rgb(255,-10,0) }
crcf2 { column-rule-color: rgb(300,10,0) }
crcf3 {column-rule-color: rgba(255,0,0,1) }
crcf4 {column-rule-color: rgba(100%,0%,0%,1) }
crcf5 {column-rule-color: rgba(0,0,255,0.5) }
crcf6 {column-rule-color: rgba(0,0,255,0.0) }
crcf7 {column-rule-color: rgba(255,0,0,1.0) }
crcf8 {column-rule-color: hsl(0, 100%, 50%) }
crcf9 {column-rule-color: hsl(120, 100%, 25%) }
crcf10 {column-rule-color: hsl(240, 0%, 10%) }
crcf11 {column-rule-color: hsl(360, 50%, 0%) }
crcf12 {column-rule-color: hsl(450, 50%, 0%) }
crcf13 {column-rule-color: hsla(360, 50%, 50%, 0.5) }
crcf14 {column-rule-color: hsla(360, 50%, 50%, 1.0) }
crcf15 {column-rule-color: hsla(360, 50%, 50%, 1) }
crcf16 {column-rule-color: hsla(360, 50%, 50%, 0.0) }
crcf17 {column-rule-color: hsla(360, 50%, 50%, 0) }
crcf18 {column-rule-color: hsla(-120, 50%, 50%, 0) }
crcf19 {column-rule-color: hsl(-120, 50%, 50%) }
crcg { column-rule-color: white }
crch { column-rule-color: aqua }
crci { column-rule-color: black }
crcj {column-rule-color: blue }
crck { column-rule-color: fuchsia }
crcl { column-rule-color: gray }
crcm { column-rule-color: green }
crcn { column-rule-color: lime }
crco { column-rule-color: maroon }
crcp { column-rule-color: navy }
crcq { column-rule-color: olive }
crcr { column-rule-color: purple }
crcs { column-rule-color: red }
crct { column-rule-color: silver }
crcu { column-rule-color: teal }
crcv { column-rule-color: yellow }
crcextcolkw1 { column-rule-color: aliceblue }
crcextcolkw2 { column-rule-color: antiquewhite }
crcextcolkw3 { column-rule-color: aqua }
crcextcolkw4 { column-rule-color: aquamarine }
crcextcolkw5 { column-rule-color: azure }
crcextcolkw6 { column-rule-color: beige }
crcextcolkw7 { column-rule-color: bisque }
crcextcolkw8 { column-rule-color: black }
crcextcolkw9 { column-rule-color: blanchedalmond }
crcextcolkw10 { column-rule-color: blue }
crcextcolkw11 { column-rule-color: blueviolet }
crcextcolkw12 { column-rule-color: brown }
crcextcolkw13 { column-rule-color: burlywood }
crcextcolkw14 { column-rule-color: cadetblue }
crcextcolkw15 { column-rule-color: chartreuse }
crcextcolkw16 { column-rule-color: chocolate }
crcextcolkw17 { column-rule-color: coral }
crcextcolkw18 { column-rule-color: cornflowerblue }
crcextcolkw19 { column-rule-color: cornsilk }
crcextcolkw20 { column-rule-color: crimson }
crcextcolkw21 { column-rule-color: cyan }
crcextcolkw22 { column-rule-color: darkblue }
crcextcolkw23 { column-rule-color: darkcyan }
crcextcolkw24 { column-rule-color: darkgoldenrod }
crcextcolkw25 { column-rule-color: darkgray }
crcextcolkw26 { column-rule-color: darkgreen }
crcextcolkw27 { column-rule-color: darkgrey }
crcextcolkw28 { column-rule-color: darkkhaki }
crcextcolkw29 { column-rule-color: darkmagenta }
crcextcolkw30 { column-rule-color: darkolivegreen }
crcextcolkw31 { column-rule-color: darkorange }
crcextcolkw32 { column-rule-color: darkorchid }
crcextcolkw33 { column-rule-color: darkred }
crcextcolkw34 { column-rule-color: darksalmon }
crcextcolkw35 { column-rule-color: darkseagreen }
crcextcolkw36 { column-rule-color: darkslateblue }
crcextcolkw37 { column-rule-color: darkslategray }
crcextcolkw38 { column-rule-color: darkslategrey }
crcextcolkw39 { column-rule-color: darkturquoise }
crcextcolkw40 { column-rule-color: darkviolet }
crcextcolkw41 { column-rule-color: deeppink }
crcextcolkw42 { column-rule-color: deepskyblue }
crcextcolkw43 { column-rule-color: dimgray }
crcextcolkw44 { column-rule-color: dimgrey }
crcextcolkw45 { column-rule-color: dodgerblue }
crcextcolkw46 { column-rule-color: firebrick }
crcextcolkw47 { column-rule-color: floralwhite }
crcextcolkw48 { column-rule-color: forestgreen }
crcextcolkw49 { column-rule-color: fuchsia }
crcextcolkw50 { column-rule-color: gainsboro }
crcextcolkw51 { column-rule-color: ghostwhite }
crcextcolkw52 { column-rule-color: gold }
crcextcolkw53 { column-rule-color: goldenrod }
crcextcolkw54 { column-rule-color: gray }
crcextcolkw55 { column-rule-color: grey }
crcextcolkw56 { column-rule-color: green }
crcextcolkw57 { column-rule-color: greenyellow }
crcextcolkw58 { column-rule-color: honeydew }
crcextcolkw59 { column-rule-color: hotpink }
crcextcolkw60 { column-rule-color: indianred }
crcextcolkw61 { column-rule-color: indigo }
crcextcolkw62 { column-rule-color: ivory }
crcextcolkw63 { column-rule-color: khaki }
crcextcolkw64 { column-rule-color: lavender }
crcextcolkw65 { column-rule-color: lavenderblush }
crcextcolkw66 { column-rule-color: lawngreen }
crcextcolkw67 { column-rule-color: lemonchiffon }
crcextcolkw68 { column-rule-color: lightblue }
crcextcolkw69 { column-rule-color: lightcoral }
crcextcolkw70 { column-rule-color: lightcyan }
crcextcolkw71 { column-rule-color: lightgoldenrodyellow }
crcextcolkw72 { column-rule-color: lightgray }
crcextcolkw73 { column-rule-color: lightgreen }
crcextcolkw74 { column-rule-color: lightgrey}
crcextcolkw75 { column-rule-color: lightpink }
crcextcolkw76 { column-rule-color: lightsalmon }
crcextcolkw77 { column-rule-color: lightseagreen }
crcextcolkw78 { column-rule-color: lightskyblue }
crcextcolkw79 { column-rule-color: lightslategray }
crcextcolkw80 { column-rule-color: lightslategrey }
crcextcolkw81 { column-rule-color: lightsteelblue }
crcextcolkw82 { column-rule-color: lightyellow }
crcextcolkw83 { column-rule-color: lime }
crcextcolkw84 { column-rule-color: limegreen }
crcextcolkw85 { column-rule-color: linen }
crcextcolkw86 { column-rule-color: magenta }
crcextcolkw87 { column-rule-color: maroon }
crcextcolkw88 { column-rule-color: mediumaquamarine }
crcextcolkw89 { column-rule-color: mediumblue }
crcextcolkw90 { column-rule-color: mediumorchid }
crcextcolkw91 { column-rule-color: mediumpurple }
crcextcolkw92 { column-rule-color: mediumseagreen }
crcextcolkw93 { column-rule-color: mediumslateblue }
crcextcolkw94 { column-rule-color: mediumspringgreen }
crcextcolkw95 { column-rule-color: mediumturquoise }
crcextcolkw96 { column-rule-color: mediumvioletred }
crcextcolkw97 { column-rule-color: midnightblue }
crcextcolkw98 { column-rule-color: mintcream }
crcextcolkw99 { column-rule-color: mistyrose }
crcextcolkw100 { column-rule-color: moccasin }
crcextcolkw101 { column-rule-color: navajowhite }
crcextcolkw102 { column-rule-color: navy }
crcextcolkw103 { column-rule-color: oldlace }
crcextcolkw104 { column-rule-color: olive }
crcextcolkw105 { column-rule-color: olivedrab }
crcextcolkw106 { column-rule-color: orange }
crcextcolkw107 { column-rule-color: orangered }
crcextcolkw108 { column-rule-color: orchid }
crcextcolkw109 { column-rule-color: palegoldenrod }
crcextcolkw110 { column-rule-color: palegreen }
crcextcolkw111 { column-rule-color: paleturquoise }
crcextcolkw112 { column-rule-color: palevioletred }
crcextcolkw113 { column-rule-color: papayawhip }
crcextcolkw114 { column-rule-color: peachpuff }
crcextcolkw115 { column-rule-color: peru }
crcextcolkw116 { column-rule-color: pink }
crcextcolkw117 { column-rule-color: plum }
crcextcolkw118 { column-rule-color: powderblue }
crcextcolkw119 { column-rule-color: purple }
crcextcolkw120 { column-rule-color: red }
crcextcolkw121 { column-rule-color: rosybrown }
crcextcolkw122 { column-rule-color: royalblue }
crcextcolkw123 { column-rule-color: saddlebrown }
crcextcolkw124 { column-rule-color: salmon }
crcextcolkw125 { column-rule-color: sandybrown }
crcextcolkw126 { column-rule-color: seagreen }
crcextcolkw127 { column-rule-color: seashell }
crcextcolkw128 { column-rule-color: sienna }
crcextcolkw129 { column-rule-color: silver }
crcextcolkw130 { column-rule-color: skyblue }
crcextcolkw131 { column-rule-color: slateblue }
crcextcolkw132 { column-rule-color: slategray }
crcextcolkw133 { column-rule-color: slategrey }
crcextcolkw134 { column-rule-color: snow }
crcextcolkw135 { column-rule-color: springgreen }
crcextcolkw136 { column-rule-color: steelblue }
crcextcolkw137 { column-rule-color: tan }
crcextcolkw138 { column-rule-color: teal }
crcextcolkw139 { column-rule-color: thistle }
crcextcolkw140 { column-rule-color: tomato }
crcextcolkw141 { column-rule-color: turquoise }
crcextcolkw142 { column-rule-color: violet }
crcextcolkw143 { column-rule-color: wheat }
crcextcolkw144 { column-rule-color: white }
crcextcolkw145 { column-rule-color: whitesmoke }
crcextcolkw146 { column-rule-color: yellow }
crcextcolkw147 { column-rule-color: yellowgreen}
crcdeprecatedsyscol1 { column-rule-color: ActiveBorder }
crcdeprecatedsyscol2 { column-rule-color: ActiveCaption }
crcdeprecatedsyscol3 { column-rule-color: AppWorkspace }
crcdeprecatedsyscol4 { column-rule-color: Background }
crcdeprecatedsyscol5 { column-rule-color: ButtonFace }
crcdeprecatedsyscol6 { column-rule-color: ButtonHighlight }
crcdeprecatedsyscol7 { column-rule-color: ButtonShadow }
crcdeprecatedsyscol8 { column-rule-color: ButtonText }
crcdeprecatedsyscol9 { column-rule-color: CaptionText }
crcdeprecatedsyscol10 { column-rule-color: GrayText }
crcdeprecatedsyscol11 { column-rule-color: Highlight }
crcdeprecatedsyscol12 { column-rule-color: HighlightText }
crcdeprecatedsyscol13 { column-rule-color: InactiveBorder }
crcdeprecatedsyscol14 { column-rule-color: InactiveCaption }
crcdeprecatedsyscol15 { column-rule-color: InactiveCaptionText }
crcdeprecatedsyscol16 { column-rule-color: InfoBackground }
crcdeprecatedsyscol17 { column-rule-color: InfoText }
crcdeprecatedsyscol18 { column-rule-color: Menu }
crcdeprecatedsyscol19 { column-rule-color: MenuText }
crcdeprecatedsyscol20 { column-rule-color: Scrollbar }
crcdeprecatedsyscol21 { column-rule-color: ThreeDDarkShadow }
crcdeprecatedsyscol22 { column-rule-color: ThreeDFace }
crcdeprecatedsyscol23 { column-rule-color: ThreeDHighlight }
crcdeprecatedsyscol24 { column-rule-color: ThreeDLightShadow }
crcdeprecatedsyscol25 { column-rule-color: ThreeDShadow }
crcdeprecatedsyscol26 { column-rule-color: Window }
crcdeprecatedsyscol27 { column-rule-color: WindowFrame }
crcdeprecatedsyscol28 { column-rule-color: WindowText }
|
autotest/testsuite/properties/positive/column-rule-color/css3/001.css
|
z { column-rule-color: inherit }
y { column-rule-color: initial }
w { column-rule-color: currentColor }
crca { column-rule-color: #f00 }
crcb { column-rule-color: transparent }
crcc { column-rule-color: rgb(255,0,0) }
crcd { column-rule-color: rgb(100%, 0%, 0%) }
crce { column-rule-color: #ff0000 }
crcf { column-rule-color: rgb(110%, 120%, 0%) }
crcf1 { column-rule-color: rgb(255,-10,0) }
crcf2 { column-rule-color: rgb(300,10,0) }
crcf3 {column-rule-color: rgba(255,0,0,1) }
crcf4 {column-rule-color: rgba(100%,0%,0%,1) }
crcf5 {column-rule-color: rgba(0,0,255,0.5) }
crcf6 {column-rule-color: rgba(0,0,255,0.0) }
crcf7 {column-rule-color: rgba(255,0,0,1.0) }
crcf8 {column-rule-color: hsl(0, 100%, 50%) }
crcf9 {column-rule-color: hsl(120, 100%, 25%) }
crcf10 {column-rule-color: hsl(240, 0%, 10%) }
crcf11 {column-rule-color: hsl(360, 50%, 0%) }
crcf12 {column-rule-color: hsl(450, 50%, 0%) }
crcf13 {column-rule-color: hsla(360, 50%, 50%, 0.5) }
crcf14 {column-rule-color: hsla(360, 50%, 50%, 1.0) }
crcf15 {column-rule-color: hsla(360, 50%, 50%, 1) }
crcf16 {column-rule-color: hsla(360, 50%, 50%, 0.0) }
crcf17 {column-rule-color: hsla(360, 50%, 50%, 0) }
crcf18 {column-rule-color: hsla(-120, 50%, 50%, 0) }
crcf19 {column-rule-color: hsl(-120, 50%, 50%) }
crcg { column-rule-color: white }
crch { column-rule-color: aqua }
crci { column-rule-color: black }
crcj {column-rule-color: blue }
crck { column-rule-color: fuchsia }
crcl { column-rule-color: gray }
crcm { column-rule-color: green }
crcn { column-rule-color: lime }
crco { column-rule-color: maroon }
crcp { column-rule-color: navy }
crcq { column-rule-color: olive }
crcr { column-rule-color: purple }
crcs { column-rule-color: red }
crct { column-rule-color: silver }
crcu { column-rule-color: teal }
crcv { column-rule-color: yellow }
crcextcolkw1 { column-rule-color: aliceblue }
crcextcolkw2 { column-rule-color: antiquewhite }
crcextcolkw3 { column-rule-color: aqua }
crcextcolkw4 { column-rule-color: aquamarine }
crcextcolkw5 { column-rule-color: azure }
crcextcolkw6 { column-rule-color: beige }
crcextcolkw7 { column-rule-color: bisque }
crcextcolkw8 { column-rule-color: black }
crcextcolkw9 { column-rule-color: blanchedalmond }
crcextcolkw10 { column-rule-color: blue }
crcextcolkw11 { column-rule-color: blueviolet }
crcextcolkw12 { column-rule-color: brown }
crcextcolkw13 { column-rule-color: burlywood }
crcextcolkw14 { column-rule-color: cadetblue }
crcextcolkw15 { column-rule-color: chartreuse }
crcextcolkw16 { column-rule-color: chocolate }
crcextcolkw17 { column-rule-color: coral }
crcextcolkw18 { column-rule-color: cornflowerblue }
crcextcolkw19 { column-rule-color: cornsilk }
crcextcolkw20 { column-rule-color: crimson }
crcextcolkw21 { column-rule-color: cyan }
crcextcolkw22 { column-rule-color: darkblue }
crcextcolkw23 { column-rule-color: darkcyan }
crcextcolkw24 { column-rule-color: darkgoldenrod }
crcextcolkw25 { column-rule-color: darkgray }
crcextcolkw26 { column-rule-color: darkgreen }
crcextcolkw27 { column-rule-color: darkgrey }
crcextcolkw28 { column-rule-color: darkkhaki }
crcextcolkw29 { column-rule-color: darkmagenta }
crcextcolkw30 { column-rule-color: darkolivegreen }
crcextcolkw31 { column-rule-color: darkorange }
crcextcolkw32 { column-rule-color: darkorchid }
crcextcolkw33 { column-rule-color: darkred }
crcextcolkw34 { column-rule-color: darksalmon }
crcextcolkw35 { column-rule-color: darkseagreen }
crcextcolkw36 { column-rule-color: darkslateblue }
crcextcolkw37 { column-rule-color: darkslategray }
crcextcolkw38 { column-rule-color: darkslategrey }
crcextcolkw39 { column-rule-color: darkturquoise }
crcextcolkw40 { column-rule-color: darkviolet }
crcextcolkw41 { column-rule-color: deeppink }
crcextcolkw42 { column-rule-color: deepskyblue }
crcextcolkw43 { column-rule-color: dimgray }
crcextcolkw44 { column-rule-color: dimgrey }
crcextcolkw45 { column-rule-color: dodgerblue }
crcextcolkw46 { column-rule-color: firebrick }
crcextcolkw47 { column-rule-color: floralwhite }
crcextcolkw48 { column-rule-color: forestgreen }
crcextcolkw49 { column-rule-color: fuchsia }
crcextcolkw50 { column-rule-color: gainsboro }
crcextcolkw51 { column-rule-color: ghostwhite }
crcextcolkw52 { column-rule-color: gold }
crcextcolkw53 { column-rule-color: goldenrod }
crcextcolkw54 { column-rule-color: gray }
crcextcolkw55 { column-rule-color: grey }
crcextcolkw56 { column-rule-color: green }
crcextcolkw57 { column-rule-color: greenyellow }
crcextcolkw58 { column-rule-color: honeydew }
crcextcolkw59 { column-rule-color: hotpink }
crcextcolkw60 { column-rule-color: indianred }
crcextcolkw61 { column-rule-color: indigo }
crcextcolkw62 { column-rule-color: ivory }
crcextcolkw63 { column-rule-color: khaki }
crcextcolkw64 { column-rule-color: lavender }
crcextcolkw65 { column-rule-color: lavenderblush }
crcextcolkw66 { column-rule-color: lawngreen }
crcextcolkw67 { column-rule-color: lemonchiffon }
crcextcolkw68 { column-rule-color: lightblue }
crcextcolkw69 { column-rule-color: lightcoral }
crcextcolkw70 { column-rule-color: lightcyan }
crcextcolkw71 { column-rule-color: lightgoldenrodyellow }
crcextcolkw72 { column-rule-color: lightgray }
crcextcolkw73 { column-rule-color: lightgreen }
crcextcolkw74 { column-rule-color: lightgrey}
crcextcolkw75 { column-rule-color: lightpink }
crcextcolkw76 { column-rule-color: lightsalmon }
crcextcolkw77 { column-rule-color: lightseagreen }
crcextcolkw78 { column-rule-color: lightskyblue }
crcextcolkw79 { column-rule-color: lightslategray }
crcextcolkw80 { column-rule-color: lightslategrey }
crcextcolkw81 { column-rule-color: lightsteelblue }
crcextcolkw82 { column-rule-color: lightyellow }
crcextcolkw83 { column-rule-color: lime }
crcextcolkw84 { column-rule-color: limegreen }
crcextcolkw85 { column-rule-color: linen }
crcextcolkw86 { column-rule-color: magenta }
crcextcolkw87 { column-rule-color: maroon }
crcextcolkw88 { column-rule-color: mediumaquamarine }
crcextcolkw89 { column-rule-color: mediumblue }
crcextcolkw90 { column-rule-color: mediumorchid }
crcextcolkw91 { column-rule-color: mediumpurple }
crcextcolkw92 { column-rule-color: mediumseagreen }
crcextcolkw93 { column-rule-color: mediumslateblue }
crcextcolkw94 { column-rule-color: mediumspringgreen }
crcextcolkw95 { column-rule-color: mediumturquoise }
crcextcolkw96 { column-rule-color: mediumvioletred }
crcextcolkw97 { column-rule-color: midnightblue }
crcextcolkw98 { column-rule-color: mintcream }
crcextcolkw99 { column-rule-color: mistyrose }
crcextcolkw100 { column-rule-color: moccasin }
crcextcolkw101 { column-rule-color: navajowhite }
crcextcolkw102 { column-rule-color: navy }
crcextcolkw103 { column-rule-color: oldlace }
crcextcolkw104 { column-rule-color: olive }
crcextcolkw105 { column-rule-color: olivedrab }
crcextcolkw106 { column-rule-color: orange }
crcextcolkw107 { column-rule-color: orangered }
crcextcolkw108 { column-rule-color: orchid }
crcextcolkw109 { column-rule-color: palegoldenrod }
crcextcolkw110 { column-rule-color: palegreen }
crcextcolkw111 { column-rule-color: paleturquoise }
crcextcolkw112 { column-rule-color: palevioletred }
crcextcolkw113 { column-rule-color: papayawhip }
crcextcolkw114 { column-rule-color: peachpuff }
crcextcolkw115 { column-rule-color: peru }
crcextcolkw116 { column-rule-color: pink }
crcextcolkw117 { column-rule-color: plum }
crcextcolkw118 { column-rule-color: powderblue }
crcextcolkw119 { column-rule-color: purple }
crcextcolkw120 { column-rule-color: red }
crcextcolkw121 { column-rule-color: rosybrown }
crcextcolkw122 { column-rule-color: royalblue }
crcextcolkw123 { column-rule-color: saddlebrown }
crcextcolkw124 { column-rule-color: salmon }
crcextcolkw125 { column-rule-color: sandybrown }
crcextcolkw126 { column-rule-color: seagreen }
crcextcolkw127 { column-rule-color: seashell }
crcextcolkw128 { column-rule-color: sienna }
crcextcolkw129 { column-rule-color: silver }
crcextcolkw130 { column-rule-color: skyblue }
crcextcolkw131 { column-rule-color: slateblue }
crcextcolkw132 { column-rule-color: slategray }
crcextcolkw133 { column-rule-color: slategrey }
crcextcolkw134 { column-rule-color: snow }
crcextcolkw135 { column-rule-color: springgreen }
crcextcolkw136 { column-rule-color: steelblue }
crcextcolkw137 { column-rule-color: tan }
crcextcolkw138 { column-rule-color: teal }
crcextcolkw139 { column-rule-color: thistle }
crcextcolkw140 { column-rule-color: tomato }
crcextcolkw141 { column-rule-color: turquoise }
crcextcolkw142 { column-rule-color: violet }
crcextcolkw143 { column-rule-color: wheat }
crcextcolkw144 { column-rule-color: white }
crcextcolkw145 { column-rule-color: whitesmoke }
crcextcolkw146 { column-rule-color: yellow }
crcextcolkw147 { column-rule-color: yellowgreen}
crcdeprecatedsyscol1 { column-rule-color: ActiveBorder }
crcdeprecatedsyscol2 { column-rule-color: ActiveCaption }
crcdeprecatedsyscol3 { column-rule-color: AppWorkspace }
crcdeprecatedsyscol4 { column-rule-color: Background }
crcdeprecatedsyscol5 { column-rule-color: ButtonFace }
crcdeprecatedsyscol6 { column-rule-color: ButtonHighlight }
crcdeprecatedsyscol7 { column-rule-color: ButtonShadow }
crcdeprecatedsyscol8 { column-rule-color: ButtonText }
crcdeprecatedsyscol9 { column-rule-color: CaptionText }
crcdeprecatedsyscol10 { column-rule-color: GrayText }
crcdeprecatedsyscol11 { column-rule-color: Highlight }
crcdeprecatedsyscol12 { column-rule-color: HighlightText }
crcdeprecatedsyscol13 { column-rule-color: InactiveBorder }
crcdeprecatedsyscol14 { column-rule-color: InactiveCaption }
crcdeprecatedsyscol15 { column-rule-color: InactiveCaptionText }
crcdeprecatedsyscol16 { column-rule-color: InfoBackground }
crcdeprecatedsyscol17 { column-rule-color: InfoText }
crcdeprecatedsyscol18 { column-rule-color: Menu }
crcdeprecatedsyscol19 { column-rule-color: MenuText }
crcdeprecatedsyscol20 { column-rule-color: Scrollbar }
crcdeprecatedsyscol21 { column-rule-color: ThreeDDarkShadow }
crcdeprecatedsyscol22 { column-rule-color: ThreeDFace }
crcdeprecatedsyscol23 { column-rule-color: ThreeDHighlight }
crcdeprecatedsyscol24 { column-rule-color: ThreeDLightShadow }
crcdeprecatedsyscol25 { column-rule-color: ThreeDShadow }
crcdeprecatedsyscol26 { column-rule-color: Window }
crcdeprecatedsyscol27 { column-rule-color: WindowFrame }
crcdeprecatedsyscol28 { column-rule-color: WindowText }
| 0.627495 | 0.316726 |
*{
margin: 0;
padding: 0;
}
.navbar {
font-weight: 700;
font-size: 20px;
letter-spacing: 0.2rem;
background: rgb(255, 196, 2) !important;
padding: 20px;
}
.navbar-dark .navbar-nav .nav-link {
color:black;
padding-left: 20px;
}
a:hover {
background-color: rgb(202, 188, 127);
}
.about {
padding:2rem 0;
}
.pizza{
text-align: center;
background: rgb(194, 180, 116);
font-size: 40px;
width: 100%;
}
.pizza1{
margin-top: 80px;
width: 100%;
}
.pizza1 img{
column-width: 100;
}
.pizza1 h1 {
font-size: 64px;
font-weight: bold;
font-family: monospace;
}
.pizza p {
font-size: 1em;
font-weight: lighter;
font-family: monospace;
}
.about p {
font-size: 20px;
font-weight: bolder;
}
.about h2 {
font-weight: bold;
}
.heading {
padding: 2rem 0;
}
.heading span{
background:rgb(255, 196, 2);
color:#fff;
display: inline-block;
padding : 1rem;
clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}
.services
{
background: rgb(189, 187, 187) ;
height: 100%;
width: 100%;
}
.services .box-container {
display: grid;
grid-template-columns:repeat(auto-fit, minmax(30rem, 1fr));
gap: 1.5rem;
margin-bottom: 50px;
}
.services .box-container .box {
padding: 3rem, 2rem;
background: white;
outline: 0.5rem solid rgba(0,0,0,0.1);
outline-offset: -1rem ;
text-align: center;
box-shadow: 1rem rgba(0,0,0,0.1);
}
.services .box-container .box:hover {
outline:0.5rem solid rgba(12, 12, 12, 0.1);
outline-offset: 0rem;
}
.services .box-container .box img{
margin: 1rem 0;
height: 15rem;
}
.services .box-container .box h3 {
font-size: 2.5rem;
line-height: 1.8;
color: black;
}
.services .box-container .box p {
padding: 1rem 0;
}
.menu {
margin-bottom: 50px;
}
.form {
background:rgb(151, 151, 151) ;
}
.footer {
text-align: center;
background: rgb(255, 196, 2);
margin-top: -40px;
}
.footer .icons-container {
display: grid;
grid-template-columns: repeat(auto-fit, min-max( 25rem, 1fr));
}
.footer .icons-container .icons {
text-align: center;
padding: 2rem;
}
|
css/style.css
|
*{
margin: 0;
padding: 0;
}
.navbar {
font-weight: 700;
font-size: 20px;
letter-spacing: 0.2rem;
background: rgb(255, 196, 2) !important;
padding: 20px;
}
.navbar-dark .navbar-nav .nav-link {
color:black;
padding-left: 20px;
}
a:hover {
background-color: rgb(202, 188, 127);
}
.about {
padding:2rem 0;
}
.pizza{
text-align: center;
background: rgb(194, 180, 116);
font-size: 40px;
width: 100%;
}
.pizza1{
margin-top: 80px;
width: 100%;
}
.pizza1 img{
column-width: 100;
}
.pizza1 h1 {
font-size: 64px;
font-weight: bold;
font-family: monospace;
}
.pizza p {
font-size: 1em;
font-weight: lighter;
font-family: monospace;
}
.about p {
font-size: 20px;
font-weight: bolder;
}
.about h2 {
font-weight: bold;
}
.heading {
padding: 2rem 0;
}
.heading span{
background:rgb(255, 196, 2);
color:#fff;
display: inline-block;
padding : 1rem;
clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}
.services
{
background: rgb(189, 187, 187) ;
height: 100%;
width: 100%;
}
.services .box-container {
display: grid;
grid-template-columns:repeat(auto-fit, minmax(30rem, 1fr));
gap: 1.5rem;
margin-bottom: 50px;
}
.services .box-container .box {
padding: 3rem, 2rem;
background: white;
outline: 0.5rem solid rgba(0,0,0,0.1);
outline-offset: -1rem ;
text-align: center;
box-shadow: 1rem rgba(0,0,0,0.1);
}
.services .box-container .box:hover {
outline:0.5rem solid rgba(12, 12, 12, 0.1);
outline-offset: 0rem;
}
.services .box-container .box img{
margin: 1rem 0;
height: 15rem;
}
.services .box-container .box h3 {
font-size: 2.5rem;
line-height: 1.8;
color: black;
}
.services .box-container .box p {
padding: 1rem 0;
}
.menu {
margin-bottom: 50px;
}
.form {
background:rgb(151, 151, 151) ;
}
.footer {
text-align: center;
background: rgb(255, 196, 2);
margin-top: -40px;
}
.footer .icons-container {
display: grid;
grid-template-columns: repeat(auto-fit, min-max( 25rem, 1fr));
}
.footer .icons-container .icons {
text-align: center;
padding: 2rem;
}
| 0.52756 | 0.088308 |
.ui-tree {
font-family: Verdana, sans-serif;
font-size: 11px;
line-height: 18px;
padding: 0px;
margin: 0px;
}
.ui-tree ul {
background-repeat: repeat-y;
background-position: top left;
margin: 0;
padding: 0;
}
.ui-tree li {
list-style-type: none;
padding: 0px;
padding-left: 22px;
margin: 0px;
padding-bottom: 4px;
white-space: nowrap;
}
li.ui-tree-node{
padding-top:0;
padding-bottom:0;
margin-top:0;
margin-bottom:0;
}
.ui-tree li span.ui-tree-title {
padding: 0px;
padding-left: 20px;
margin: 0px;
white-space: nowrap;
cursor:pointer;
}
.ui-tree .ui-tree-node > span.ui-tree-title {
background-image: url(../../images/directory.png);
background-position: 1px 0px;
background-repeat: no-repeat;
padding-top: 1px;
padding-bottom: 3px;
padding-right: 2px;
}
.ui-tree .ui-tree-node > * {
display: none;
}
.ui-tree .ui-tree-node > span {
display: inline;
}
.ui-tree-node ul{
margin-top: 4px;
}
.ui-tree .ui-tree-list > span.ui-tree-title {
background-image: url(../../images/file.png);
background-repeat: no-repeat;
padding-top: 1px;
padding-bottom: 4px;
padding-right: 2px;
background-position: 1px 1px;
}
.ui-tree .ui-tree-expanded > span.ui-tree-title {
background-image: url(../../images/folder_open.png);
background-repeat: no-repeat;
background-position: 1px top;
}
.ui-tree .ui-tree-expanded > * {
display: block;
}
.ui-tree .ui-tree-selected {
border: 1px dotted #34abff;
background-color: #ebf7ff !important;
font:bold 11px/18px Verdana, sans-serif !important;
padding: 0px;
margin: 0px;
color:#000 !important;
}
.ui-tree-droppable {
background-color: #dafff9 !important;
}
.ui-tree-droppable-top {
border-top: 2px solid black !important;
}
.ui-tree-droppable-bottom {
border-bottom: 2px solid black !important;
}
.ui-tree-droppable-left {
border-left: 2px solid black !important;
}
.ui-tree-droppable-right {
border-right: 2px solid black !important;
}
div#d1{
width: 40%;
height: 300px;
float: left;
}
div#d2{
width: 60%;
float: left;
}
div#dd_demo{
clear: both;
}
li.ui-draggable-dragging span.ui-tree-expand-control {
padding-left: 0;
}
li.ui-tree-node {
padding-bottom: 2px;
}
li.ui-draggable-dragging span.ui-tree-expand-control {
display: none;
}
.cssClassTreeNav, .sfLcontent { position:absolute; width:227px;}
|
SageFrame/Templates/AspxCommerce/css/TreeView/ui.tree.css
|
.ui-tree {
font-family: Verdana, sans-serif;
font-size: 11px;
line-height: 18px;
padding: 0px;
margin: 0px;
}
.ui-tree ul {
background-repeat: repeat-y;
background-position: top left;
margin: 0;
padding: 0;
}
.ui-tree li {
list-style-type: none;
padding: 0px;
padding-left: 22px;
margin: 0px;
padding-bottom: 4px;
white-space: nowrap;
}
li.ui-tree-node{
padding-top:0;
padding-bottom:0;
margin-top:0;
margin-bottom:0;
}
.ui-tree li span.ui-tree-title {
padding: 0px;
padding-left: 20px;
margin: 0px;
white-space: nowrap;
cursor:pointer;
}
.ui-tree .ui-tree-node > span.ui-tree-title {
background-image: url(../../images/directory.png);
background-position: 1px 0px;
background-repeat: no-repeat;
padding-top: 1px;
padding-bottom: 3px;
padding-right: 2px;
}
.ui-tree .ui-tree-node > * {
display: none;
}
.ui-tree .ui-tree-node > span {
display: inline;
}
.ui-tree-node ul{
margin-top: 4px;
}
.ui-tree .ui-tree-list > span.ui-tree-title {
background-image: url(../../images/file.png);
background-repeat: no-repeat;
padding-top: 1px;
padding-bottom: 4px;
padding-right: 2px;
background-position: 1px 1px;
}
.ui-tree .ui-tree-expanded > span.ui-tree-title {
background-image: url(../../images/folder_open.png);
background-repeat: no-repeat;
background-position: 1px top;
}
.ui-tree .ui-tree-expanded > * {
display: block;
}
.ui-tree .ui-tree-selected {
border: 1px dotted #34abff;
background-color: #ebf7ff !important;
font:bold 11px/18px Verdana, sans-serif !important;
padding: 0px;
margin: 0px;
color:#000 !important;
}
.ui-tree-droppable {
background-color: #dafff9 !important;
}
.ui-tree-droppable-top {
border-top: 2px solid black !important;
}
.ui-tree-droppable-bottom {
border-bottom: 2px solid black !important;
}
.ui-tree-droppable-left {
border-left: 2px solid black !important;
}
.ui-tree-droppable-right {
border-right: 2px solid black !important;
}
div#d1{
width: 40%;
height: 300px;
float: left;
}
div#d2{
width: 60%;
float: left;
}
div#dd_demo{
clear: both;
}
li.ui-draggable-dragging span.ui-tree-expand-control {
padding-left: 0;
}
li.ui-tree-node {
padding-bottom: 2px;
}
li.ui-draggable-dragging span.ui-tree-expand-control {
display: none;
}
.cssClassTreeNav, .sfLcontent { position:absolute; width:227px;}
| 0.352648 | 0.061734 |
body {
font-family: 'century-gothic-regular', sans-serif;
color: #000000;
}
a {
color: #5777ba;
text-decoration: none;
}
a:hover {
color: #7b94c9;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'century-gothic-regular', sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 996;
background: #5777ba;
width: 40px;
height: 40px;
border-radius: 50px;
transition: all 0.4s;
}
.back-to-top i {
font-size: 24px;
color: #fff;
line-height: 0;
}
.back-to-top:hover {
background: #748ec6;
color: #fff;
}
.back-to-top.active {
visibility: visible;
opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
transition: all 0.5s;
z-index: 997;
transition: all 0.5s;
padding: 15px 0;
background: rgba(255, 255, 255, 0.95);
}
#header .header-transparent {
background: transparent;
}
#header.header-scrolled {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo h1 {
font-size: 30px;
margin: 0;
line-height: 1;
font-weight: 400;
letter-spacing: 2px;
}
#header .logo h1 span {
color: #e6d600;
}
#header .logo h1 a,
#header .logo h1 a:hover {
color: #02b419;
text-decoration: none;
}
#header .logo img {
margin: 0;
max-height: 40px;
}
/**
# NAVBAR
*/
.navbar {
padding: 0;
}
.navbar ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}
.navbar li {
position: relative;
}
.navbar a,
.navbar a:focus {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 30px;
font-family: 'century-gothic-regular', sans-serif;
font-size: 15px;
color: #000f66;
white-space: nowrap;
transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
color: #02b419;
}
.navbar .getstarted,
.navbar .getstarted:focus {
background: #02b419;
color: rgb(255, 255, 255);
padding: 9px 15px;
margin-left: 30px;
color: #fff;
line-height: 1;
border-radius: 50px;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
background: #748ec6;
color: #fff;
}
.navbar .dropdown ul {
display: block;
position: absolute;
left: 14px;
top: calc(100% + 30px);
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: rgb(249, 249, 255);
box-shadow: 0px 0px 30px rgba(255, 253, 253, 0.25);
transition: 0.3s;
border-radius: 4px;
}
.navbar .dropdown ul li {
min-width: 200px;
}
.navbar .dropdown ul a {
padding: 10px 20px;
font-size: 15px;
text-transform: none;
font-weight: 600;
}
.navbar .dropdown ul a i {
font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
color: #5777ba;
}
.navbar .dropdown:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}
.navbar .dropdown .dropdown ul {
top: 0;
left: calc(100% - 30px);
visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
opacity: 1;
top: 0;
left: 100%;
visibility: visible;
}
@media (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
left: -90%;
}
.navbar .dropdown .dropdown:hover>ul {
left: -100%;
}
}
/**
* Navbar Mobile Navigation
*/
.mobile-nav-toggle {
color: #47536e;
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
color: #fff;
}
@media (max-width: 991px) {
.mobile-nav-toggle {
display: block;
}
.navbar ul {
display: none;
}
}
.navbar-mobile {
position: fixed;
overflow: hidden;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(51, 60, 79, 0.9);
transition: 0.3s;
z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
position: absolute;
top: 15px;
right: 15px;
}
.navbar-mobile ul {
display: block;
position: absolute;
top: 55px;
right: 15px;
bottom: 15px;
left: 15px;
padding: 10px 0;
border-radius: 6px;
background-color: #fff;
overflow-y: auto;
transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
padding: 10px 20px;
font-size: 15px;
color: #47536e;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
color: #5777ba;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
margin: 15px;
}
.navbar-mobile .dropdown ul {
position: static;
display: none;
margin: 10px 20px;
padding: 10px 0;
z-index: 99;
opacity: 1;
visibility: visible;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
min-width: 200px;
}
.navbar-mobile .dropdown ul a {
padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
color: #5777ba;
}
.navbar-mobile .dropdown>.dropdown-active {
display: block;
}
/*--------------------------------------------------------------
# Hero About Section
--------------------------------------------------------------*/
#hero-about {
width: 100%;
height: 400px;
background-image: linear-gradient(rgb(118, 80, 142), #482D57);
overflow: hidden;
position: relative;
}
.hero-about img {
width: 480px;
height: 300px;
display: block;
position: relative;
top: 90px;
left: -90px;
}
.hero-about h5 span {
font-weight: 300;
color: #fff;
font-size: 48px;
}
.hero-about h5 {
text-align: center;
color: #fff;
font-family: century gothic;
font-weight: 200;
font-size: 25px;
position: relative;
top: -100px;
right: -190px;
}
/*--------------------------------------------------------------
# Hero Ujian Section
--------------------------------------------------------------*/
.hero-ujian {
background-image: linear-gradient(rgb(173, 194, 169), #99A799);
background-size: cover;
height: 500px;
padding: 50px;
}
.hero-ujian img {
width: 250px;
height: 250px;
display: block;
position: relative;
bottom: -90px;
left: -40px;
}
.hero-ujian h1 {
text-align: center;
color: #fff;
font-family: century gothic;
font-weight: 300;
font-size: 40px;
position: relative;
top: -300px;
right: -190px;
}
.hero-ujian h5 span {
font-weight: 300;
color: #fff;
font-size: 48px;
}
.hero-ujian h5 {
text-align: center;
color: #fff;
font-family: century gothic;
font-weight: 200;
font-size: 25px;
position: relative;
top: -300px;
right: -190px;
}
/*--------------------------------------------------------------
# Hero teacher Section
--------------------------------------------------------------*/
#hero-inform {
width: 100%;
height: 400px;
background-image: linear-gradient(rgb(113, 223, 231), #009DAE);
overflow: hidden;
position: relative;
}
#hero-inform h1 {
margin-bottom: 170px;
color: #fff;
font-size: 42px;
font-weight: 500;
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
padding: 15px;
}
#hero-inform .box1 {
height: 140px;
margin-bottom: 50px;
background: none;
}
#hero-inform .carousel,
#hero-inform .carousel-inner,
#hero-inform .carousel-item,
#hero-inform .carousel-item::before {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
#hero-inform .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
#hero-inform {
height: 100vh;
text-align: center;
}
#hero-inform .animated {
-webkit-animation: none;
animation: none;
}
#hero-inform .hero-img {
text-align: center;
background-size: 30%;
}
#hero-inform .hero-img img {
width: 20%;
}
}
@media (max-width: 768px) {
#hero-inform h1 {
font-size: 28px;
line-height: 36px;
}
#hero-inform h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}
#hero-inform .hero-img img {
width: 70%;
}
}
@media (max-width: 575px) {
#hero-inform .hero-img img {
width: 80%;
}
#hero-inform .btn-get-started {
font-size: 16px;
padding: 10px 24px 11px 24px;
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
#hero-inform .carousel-container {
display: flex;
align-items: flex-end;
justify-content: center;
position: absolute;
bottom: 60px;
top: 70px;
left: 55px;
right: 55px;
}
#hero-inform .carousel-content {
background: rgba(4, 4, 4, 0.7);
padding: 20px;
color: #fff;
border-top: 5px solid #1bbd36;
}
#hero-inform .carousel-content h2 {
color: #fff;
margin-bottom: 20px;
font-size: 28px;
font-weight: 700;
}
#hero-inform .btn-get-started {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 32px;
border-radius: 4px;
transition: 0.5s;
line-height: 1;
margin: 10px;
color: #fff;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
border: 2px solid #1bbd36;
}
#hero-inform .btn-get-started:hover {
background: #1bbd36;
color: #fff;
text-decoration: none;
}
#hero-inform .carousel-inner .carousel-item {
transition-property: opacity;
background-position: center top;
}
#hero-inform .carousel-inner .carousel-item,
#hero-inform .carousel-inner .active.carousel-item-start,
#hero-inform .carousel-inner .active.carousel-item-end {
opacity: 0;
}
#hero-inform .carousel-inner .active,
#hero-inform .carousel-inner .carousel-item-next.carousel-item-start,
#hero-inform .carousel-inner .carousel-item-prev.carousel-item-end {
opacity: 1;
transition: 0.5s;
}
#hero-inform .carousel-inner .carousel-item-next,
#hero-inform .carousel-inner .carousel-item-prev,
#hero-inform .carousel-inner .active.carousel-item-start,
#hero-inform .carousel-inner .active.carousel-item-end {
left: 0;
transform: translate3d(0, 0, 0);
}
#hero-inform .carousel-control-next-icon,
#hero-inform .carousel-control-prev-icon {
background: none;
font-size: 30px;
line-height: 0;
width: auto;
height: auto;
background: rgba(255, 255, 255, 0.4);
border-radius: 50px;
transition: 0.3s;
color: rgba(255, 255, 255, 0.6);
width: 54px;
height: 54px;
display: flex;
align-items: center;
justify-content: center;
}
#hero-inform .carousel-control-next-icon:hover,
#hero-inform .carousel-control-prev-icon:hover {
background: rgba(255, 255, 255, 0.6);
color: rgba(255, 255, 255, 0.8);
}
#hero-inform .carousel-indicators li {
cursor: pointer;
background: #fff;
overflow: hidden;
border: 0;
width: 12px;
height: 12px;
border-radius: 50px;
opacity: 0.6;
transition: 0.3s;
}
#hero-inform .carousel-indicators li.active {
opacity: 1;
background: #1bbd36;
}
@media (min-width: 1024px) {
#hero-inform .carousel-content {
width: 60%;
}
#hero-inform .carousel-control-prev,
#hero-inform .carousel-control-next {
width: 5%;
}
}
@media (max-width: 992px) {
#hero-inform .carousel-container {
top: 58px;
}
#hero-inform .carousel-content h2 {
margin-bottom: 15px;
font-size: 22px;
}
#hero-inform .carousel-content p {
font-size: 15px;
}
}
@media (max-height: 500px) {
#hero-inform {
height: 120vh;
}
}
#hero-inform .download-btn {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 15px;
display: inline-block;
padding: 8px 24px 10px 46px;
border-radius: 3px;
transition: 0.5s;
color: #fff;
background: #e6d600;
position: relative;
margin-bottom: 90px;
}
#hero-inform .download-btn:hover {
background: #f7fa50;
}
#hero-inform .download-btn i {
font-size: 20px;
position: absolute;
left: 18px;
top: 8.5px;
}
/*--------------------------------------------------------------
# Hero Blog Section
--------------------------------------------------------------*/
#hero-blog {
width: 100%;
height: 650px;
background-image: linear-gradient(rgb(113, 223, 231), #009DAE);
overflow: hidden;
position: relative;
}
#hero-profile {
width: 100%;
height: 150px;
background-color: #161E54;
overflow: hidden;
}
#hero-blog h1 {
margin-bottom: 170px;
color: #fff;
font-size: 42px;
font-weight: 500;
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
padding: 15px;
}
#hero-blog .box1 {
height: 140px;
margin-bottom: 170px;
background: none;
border: solid 6px #ffffff;
border-radius: 20px;
}
#hero-blog .box2 {
height: 140px;
margin-bottom: 170px;
font-weight: 400;
background: none;
border: solid 6px #ffffff;
border-radius: 20px;
}
#hero-blog img {
margin-bottom: -40px;
position: relative;
left: 120px;
}
#hero-blog .carousel,
#hero-blog .carousel-inner,
#hero-blog .carousel-item,
#hero-blog .carousel-item::before {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
#hero-blog .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
#hero-blog {
height: 100vh;
text-align: center;
}
#hero-blog .animated {
-webkit-animation: none;
animation: none;
}
#hero-blog .hero-img {
text-align: center;
background-size: 30%;
}
#hero-blog .hero-img img {
width: 20%;
}
}
@media (max-width: 768px) {
#hero-blog h1 {
font-size: 28px;
line-height: 36px;
}
#hero-blog h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}
#hero-blog .hero-img img {
width: 70%;
}
}
@media (max-width: 575px) {
#hero-blog .hero-img img {
width: 80%;
}
#hero-blog .btn-get-started {
font-size: 16px;
padding: 10px 24px 11px 24px;
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
#hero-blog .carousel-container {
display: flex;
align-items: flex-end;
justify-content: center;
position: absolute;
bottom: 60px;
top: 70px;
left: 55px;
right: 55px;
}
#hero-blog .carousel-content {
background: rgba(4, 4, 4, 0.7);
padding: 20px;
color: #fff;
border-top: 5px solid #1bbd36;
}
#hero-blog .carousel-content h2 {
color: #fff;
margin-bottom: 20px;
font-size: 28px;
font-weight: 700;
}
#hero-blog .btn-get-started {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 32px;
border-radius: 4px;
transition: 0.5s;
line-height: 1;
margin: 10px;
color: #fff;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
border: 2px solid #1bbd36;
}
#hero-blog .btn-get-started:hover {
background: #1bbd36;
color: #fff;
text-decoration: none;
}
#hero-blog .carousel-inner .carousel-item {
transition-property: opacity;
background-position: center top;
}
#hero-blog .carousel-inner .carousel-item,
#hero-blog .carousel-inner .active.carousel-item-start,
#hero-blog .carousel-inner .active.carousel-item-end {
opacity: 0;
}
#hero-blog .carousel-inner .active,
#hero-blog .carousel-inner .carousel-item-next.carousel-item-start,
#hero-blog .carousel-inner .carousel-item-prev.carousel-item-end {
opacity: 1;
transition: 0.5s;
}
#hero-blog .carousel-inner .carousel-item-next,
#hero-blog .carousel-inner .carousel-item-prev,
#hero-blog .carousel-inner .active.carousel-item-start,
#hero-blog .carousel-inner .active.carousel-item-end {
left: 0;
transform: translate3d(0, 0, 0);
}
#hero-blog .carousel-control-next-icon,
#hero-blog .carousel-control-prev-icon {
background: none;
font-size: 30px;
line-height: 0;
width: auto;
height: auto;
background: rgba(255, 255, 255, 0.4);
border-radius: 50px;
transition: 0.3s;
color: rgba(255, 255, 255, 0.6);
width: 54px;
height: 54px;
display: flex;
align-items: center;
justify-content: center;
}
#hero-blog .carousel-control-next-icon:hover,
#hero-blog .carousel-control-prev-icon:hover {
background: rgba(255, 255, 255, 0.6);
color: rgba(255, 255, 255, 0.8);
}
#hero-blog .carousel-indicators li {
cursor: pointer;
background: #fff;
overflow: hidden;
border: 0;
width: 12px;
height: 12px;
border-radius: 50px;
opacity: 0.6;
transition: 0.3s;
}
#hero-blog .carousel-indicators li.active {
opacity: 1;
background: #1bbd36;
}
@media (min-width: 1024px) {
#hero-blog .carousel-content {
width: 60%;
}
#hero-blog .carousel-control-prev,
#hero-blog .carousel-control-next {
width: 5%;
}
}
@media (max-width: 992px) {
#hero-blog .carousel-container {
top: 58px;
}
#hero-blog .carousel-content h2 {
margin-bottom: 15px;
font-size: 22px;
}
#hero-blog .carousel-content p {
font-size: 15px;
}
}
@media (max-height: 500px) {
#hero-blog {
height: 120vh;
}
}
#hero-blog .download-btn {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 15px;
display: inline-block;
padding: 8px 24px 10px 46px;
border-radius: 3px;
transition: 0.5s;
color: #fff;
background: #e6d600;
position: relative;
margin-bottom: 90px;
}
#hero-blog .download-btn:hover {
background: #f7fa50;
}
#hero-blog .download-btn i {
font-size: 20px;
position: absolute;
left: 18px;
top: 8.5px;
}
/* Background List Blog */
.bg-list-blog {
background-image: url('https://i.postimg.cc/g09L9JmP/bg1.png');
background-size: cover;
margin-top: -30px;
padding: 30px;
}
.bg-list-blog .cv-course-container {
background: #71DFE7;
}
.bg-list-blog .cv-course-container .read-more {
-moz-text-align-last: right;
text-align-last: right;
}
.bg-list-blog .cv-course-container .read-more a {
display: inline-block;
background: #71DFE7;
color: #000;
padding: 6px 20px;
transition: 0.3s;
font-size: 14px;
border-radius: 4px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
position: relative;
right: 30px;
}
.bg-list-blog .cv-course-container .read-more a:hover {
background: #71DFE7;
}
/* Background View Blog */
.bg-view-blog {
background-image: url('https://i.postimg.cc/g09L9JmP/bg1.png');
background-size: cover;
margin-top: -30px;
padding: 30px;
}
.bg-view-blog .cv-course-container {
background-color: #71DFE7;
}
.bg-view-blog .cv-course-container .read-more {
-moz-text-align-last: right;
text-align-last: right;
}
.bg-view-blog .cv-course-container .read-more a {
display: inline-block;
background: #C2FFF9;
color: #000;
padding: 6px 20px;
transition: 0.3s;
font-size: 14px;
border-radius: 4px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
position: relative;
right: 30px;
}
.bg-view-blog .cv-course-container .read-more a:hover {
background: #C2FFF9;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 650px;
overflow: hidden;
position: relative;
}
#hero-profile {
width: 100%;
height: 150px;
background-color: #161E54;
overflow: hidden;
}
/* hero teacher */
#hero-teacher {
background-color: #161E54;
}
#hero-teacher .carousel-inner .carousel-item-teacher h1 {
-webkit-text-stroke: 3px rgba(6, 138, 6, 0.623);
color: rgb(255, 255, 255);
}
/* breadcrumb */
.breadcrumb {
padding: 0.75rem 0rem;
font-size: 0.9rem;
}
.breadcrumb li.breadcrumb-item-profile.active {
color: rgb(255, 255, 255);
font-weight: bold;
}
.breadcrumb-item-profile+.breadcrumb-item-profile::before {
content: "»";
padding-right: 0.2rem;
color: rgb(255, 255, 255);
}
.breadcrumb-item-profile+.breadcrumb-item-profile {
padding-left: 0.2rem;
color: rgb(255, 255, 255);
}
.breadcrumb-item-profile a {
color: #ffffff;
text-decoration: none;
}
.breadcrumb-item-profile a:hover {
color: #2a6496;
}
.breadcrumb-container-profile {
height: 50px;
background-color: #72147E;
}
/* Hero section GIBS arjuna View */
.hero-view {
background-image: linear-gradient(rgb(113, 223, 231), #009DAE);
background-size: cover;
height: 400px;
}
.hero-view img {
width: 480px;
height: 480px;
display: block;
padding: 20px;
position: relative;
top: 10;
}
.hero-view h2 {
margin-top: -230px;
margin-right: -180px;
color: #fff;
font-size: 60px;
font-weight: 700;
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
}
/* hero section */
#hero h1 {
margin-bottom: 20px;
color: #e6d600;
font-size: 50px;
font-weight: 500;
line-height: 56px;
font-family: 'century-gothic-regular', sans-serif;
}
#hero h1 span {
display: table-cell;
animation: animate 1s linear infinite;
color: white;
font-family: 'century-gothic-regular', sans-serif;
line-height: 60px;
}
#hero h2 {
color: #ffffff;
margin-bottom: 30px;
font-size: 16px;
text-align: justify;
padding: 1px 0 20px 1;
font-family: 'century-gothic-regular', sans-serif;
}
#hero h4 {
margin-bottom: 70px;
font-family: 'century-gothic-regular', sans-serif;
color: white;
font-size: 20px;
}
#hero h3 {
margin-bottom: 200px;
font-family: 'century-gothic-regular', sans-serif;
color: white;
font-size: 20px;
}
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
#hero .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
#hero {
height: 100vh;
text-align: center;
}
#hero .animated {
-webkit-animation: none;
animation: none;
}
#hero .hero-img {
text-align: center;
background-size: 30%;
}
#hero .hero-img img {
width: 20%;
}
}
@media (max-width: 768px) {
#hero h1 {
font-size: 28px;
line-height: 36px;
}
#hero h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}
#hero .hero-img img {
width: 70%;
}
}
@media (max-width: 575px) {
#hero .hero-img img {
width: 80%;
}
#hero .btn-get-started {
font-size: 16px;
padding: 10px 24px 11px 24px;
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
#hero .carousel-container {
display: flex;
align-items: flex-end;
justify-content: center;
position: absolute;
bottom: 60px;
top: 70px;
left: 55px;
right: 55px;
}
#hero .carousel-content {
background: rgba(4, 4, 4, 0.7);
padding: 20px;
color: #fff;
border-top: 5px solid #1bbd36;
}
#hero .carousel-content h2 {
color: #fff;
margin-bottom: 20px;
font-size: 28px;
font-weight: 700;
}
#hero .btn-get-started {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 32px;
border-radius: 4px;
transition: 0.5s;
line-height: 1;
margin: 10px;
color: #fff;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
border: 2px solid #1bbd36;
}
#hero .btn-get-started:hover {
background: #1bbd36;
color: #fff;
text-decoration: none;
}
#hero .carousel-inner .carousel-item {
transition-property: opacity;
background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
opacity: 1;
transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
left: 0;
transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
background: none;
font-size: 30px;
line-height: 0;
width: auto;
height: auto;
background: rgba(255, 255, 255, 0.4);
border-radius: 50px;
transition: 0.3s;
color: rgba(255, 255, 255, 0.6);
width: 54px;
height: 54px;
display: flex;
align-items: center;
justify-content: center;
}
#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
background: rgba(255, 255, 255, 0.6);
color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
cursor: pointer;
background: #fff;
overflow: hidden;
border: 0;
width: 12px;
height: 12px;
border-radius: 50px;
opacity: 0.6;
transition: 0.3s;
}
#hero .carousel-indicators li.active {
opacity: 1;
background: #1bbd36;
}
@media (min-width: 1024px) {
#hero .carousel-content {
width: 60%;
}
#hero .carousel-control-prev,
#hero .carousel-control-next {
width: 5%;
}
}
@media (max-width: 992px) {
#hero .carousel-container {
top: 58px;
}
#hero .carousel-content h2 {
margin-bottom: 15px;
font-size: 22px;
}
#hero .carousel-content p {
font-size: 15px;
}
}
@media (max-height: 500px) {
#hero {
height: 120vh;
}
}
#hero .download-btn {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 15px;
display: inline-block;
padding: 8px 24px 10px 46px;
border-radius: 3px;
transition: 0.5s;
color: #fff;
background: #e6d600;
position: relative;
margin-bottom: 90px;
}
#hero .download-btn:hover {
background: #f7fa50;
}
#hero .download-btn i {
font-size: 20px;
position: absolute;
left: 18px;
top: 8.5px;
}
/*--------------------------------------------------------------
# Hero contact Section
--------------------------------------------------------------*/
#hero-contact {
width: 100%;
height: 650px;
background-image: linear-gradient(rgb(41, 80, 252), #001275);
overflow: hidden;
position: relative;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
background-color: #FFBCBC;
background-size: cover;
}
.portfolio h1 {
text-align: center;
font-size: 38px;
padding: 20px;
font-family: century gothic;
color: #fff;
}
.portfolio h1 span {
text-align: center;
font-size: 60px;
padding: 20px;
font-family: 'The Hound';
color: #8E0505;
}
.portfolio #portfolio-flters {
padding: 30px;
margin: 0 auto 50px auto;
list-style: none;
text-align: center;
}
.portfolio #portfolio-flters li {
cursor: pointer;
display: inline-block;
padding: 8px 20px 10px 20px;
font-size: 14px;
font-weight: 400;
line-height: 1;
text-transform: uppercase;
color: #4d4643;
transition: all 0.3s;
border-radius: 4px;
font-family: century gothic;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
color: #fff;
background: #C89595;
}
.portfolio #portfolio-flters li:last-child {
margin-right: 0;
}
.portfolio .portfolio-item {
margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-info {
opacity: 0;
position: absolute;
left: 30px;
right: 30px;
bottom: 0;
z-index: 3;
transition: all ease-in-out 0.3s;
background: rgba(255, 255, 255, 0.9);
padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
font-size: 18px;
color: #fff;
font-weight: 600;
color: #111;
}
.portfolio .portfolio-item .portfolio-info p {
color: #444444;
font-size: 14px;
margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
position: absolute;
right: 40px;
font-size: 24px;
top: calc(50% - 18px);
color: #2b2b2b;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
color: #C89595;
}
.portfolio .portfolio-item .portfolio-info .details-link {
right: 10px;
}
.portfolio .portfolio-item .portfolio-links {
opacity: 0;
left: 0;
right: 0;
text-align: center;
z-index: 3;
position: absolute;
transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .portfolio-links a {
color: #fff;
margin: 0 2px;
font-size: 28px;
display: inline-block;
transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-links a:hover {
color: #C89595;
}
.portfolio .portfolio-item:hover .portfolio-info {
opacity: 1;
bottom: 20px;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
margin-top: 20px;
position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #1bbd36;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
background-color: #1bbd36;
}
.portfolio-details .portfolio-info {
padding: 30px;
box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}
.portfolio-details .portfolio-info h3 {
font-size: 22px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
list-style: none;
padding: 0;
font-size: 15px;
}
.portfolio-details .portfolio-info ul li+li {
margin-top: 10px;
}
.portfolio-details .portfolio-description {
padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
padding: 0;
}
/* work1 section */
.work1 {
background-color: #1DB9C3;
}
.work1 .container h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/*--------------------------------------------------------------
# WORK (Content 2)
--------------------------------------------------------------*/
.work-teacher {
background-color: #99FEFF;
padding: 12px 0;
}
.work-teacher .work-up {
padding-left: 230px;
}
.work-teacher h5 {
font-family: century;
text-align: center;
align-items: center;
display: block;
margin: auto;
color: black;
}
.work-teacher .box:hover {
filter: none;
transform: scale(0.1);
}
@media (max-width: 768px) {
.work-teacher .box {
max-width: 40%;
}
}
.work-teacher .picture-item {
overflow: hidden;
}
.work-teacher .picture-item img {
width: 200px;
height: 200px;
transition: all ease-in-out 0.4s;
}
.work-teacher .picture-item:hover img {
transform: scale(0.8);
}
/* Features1 Section */
.features1 {
background-color: #63B4B8;
}
.features1 .container h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/* Features2 Section */
.features2 {
background-color: #A9E4D7;
display: inline-block;
height: 100%;
width: 100%;
padding: 40px;
display: inline-block;
height: 100%;
width: 100%;
}
#features2 h2 {
font-family: 'century-gothic-regular', sans-serif;
color: #000;
}
#features2 .feature-block {
background: #fff none repeat scroll 0 0;
padding: 30px 20px;
margin-bottom: 30px;
transition: all 0.5s ease-in-out 0s;
}
#features2 .feature-block img {
height: 60px;
margin-bottom: 30px;
width: 60px;
}
#features2 .feature-block:hover {
box-shadow: 0 0 35px rgba(255, 190, 12, 0.884);
transition: all 0.5s ease-in-out 0s;
}
#features2 .feature-block h1 {
margin-bottom: 20px;
font-size: 25px;
color: #22577A;
}
#features2 .feature-block h5 {
margin-bottom: 20px;
font-size: 17px;
color: #000;
}
#features2 .feature-block p {
margin-bottom: 0;
}
#features2 .features-carousel,
.features .features-slider {
overflow: hidden;
}
#features2 .features-item {
box-sizing: content-box;
padding: 30px 30px 30px 60px;
margin: 30px 10px 30px 50px;
min-height: 200px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
position: relative;
}
#features2 .feature-item .feature-img {
width: 90px;
border-radius: 10px;
border: 6px solid #5777ba;
position: absolute;
left: -45px;
}
.features2 .featur-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}
.features2 .feature-item h4 {
font-size: 14px;
color: #999;
margin: 0;
}
.features2 .feature-item .quote-icon-left,
.features .feature-item .quote-icon-right {
color: #e8ecf5;
font-size: 26px;
}
.features2 .feature-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}
.features2 .feature-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
}
.features2 .feature-item p {
font-style: italic;
margin: 15px auto 15px auto;
}
.features2 .swiper-pagination {
margin-top: 20px;
position: relative;
}
.features2 .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #5777ba;
}
.features2 .swiper-pagination .swiper-pagination-bullet-active {
background-color: #5777ba;
}
/* Features3 Section */
.features3 {
background-color: #3E065F;
padding-top: 15px;
}
.features3 .container h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/* Features4 Section */
.features2 h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/* Features5 Section */
.features5 {
background-color: #8DB596;
padding-top: 15px;
}
.features5 h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
padding: 20px;
background-image: url('https://i.postimg.cc/m2yYPNbn/bg-2.png');
background-size: cover;
}
.services .icon-box {
text-align: center;
padding: 70px 20px 80px 20px;
transition: all ease-in-out 0.3s;
background: #A685E2;
}
.services .icon-box .icon {
margin: 0 auto;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
transition: ease-in-out 0.3s;
position: relative;
}
.services .icon-box .icon i {
font-size: 36px;
transition: 0.5s;
position: relative;
}
.services .icon-box .icon svg {
position: absolute;
top: 0;
left: 0;
}
.services .icon-box .icon svg path {
transition: 0.5s;
fill: #f5f5f5;
}
.services .icon-box h4 {
font-weight: 600;
margin: 10px 0 15px 0;
font-size: 22px;
}
.services .icon-box h4 a {
color: #111;
transition: ease-in-out 0.3s;
}
.services .icon-box p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}
.services .icon-box:hover {
border-color: #fff;
box-shadow: 5px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
color: #fff;
}
.services .iconbox-blue:hover .icon path {
fill: #47aeff;
}
.services .iconbox-orange i {
color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
color: #fff;
}
.services .iconbox-orange:hover .icon path {
fill: #ffa76e;
}
.services .iconbox-pink i {
color: #e80368;
}
.services .iconbox-pink:hover .icon i {
color: #fff;
}
.services .iconbox-pink:hover .icon path {
fill: #e80368;
}
.services .iconbox-yellow i {
color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
color: #fff;
}
.services .iconbox-yellow:hover .icon path {
fill: #ffbb2c;
}
.services .iconbox-red i {
color: #ff5828;
}
.services .iconbox-red:hover .icon i {
color: #fff;
}
.services .iconbox-red:hover .icon path {
fill: #ff5828;
}
.services .iconbox-teal i {
color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
color: #fff;
}
.services .iconbox-teal:hover .icon path {
fill: #11dbcf;
}
/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
overflow: hidden;
background-color: #C1A1D3;
}
.specials .nav-tabs {
border: 0;
}
.specials .nav-link {
border: 0;
padding: 12px 15px;
transition: 0.3s;
color: rgb(0, 0, 0);
border-radius: 0;
border-right: 2px solid #cda45e;
font-weight: 600;
font-size: 15px;
}
.specials .nav-link:hover {
color: #f5457a;
}
.specials .nav-link.active {
color: #1a1814;
background: #f5457a;
border-color: #cda45e;
}
.specials .nav-link:hover {
border-color: #cda45e;
}
.specials .tab-pane.active {
-webkit-animation: fadeIn 0.5s ease-out;
animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
font-size: 26px;
font-weight: 600;
margin-bottom: 20px;
color: rgb(0, 0, 0);
}
.specials .details p {
color: #000000;
}
.specials .details p:last-child {
margin-bottom: 0;
}
@media (max-width: 992px) {
.specials .nav-link {
border: 0;
padding: 15px;
}
}
/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials6 {
overflow: hidden;
background-color: #A9E4D7;
}
.specials6 .nav-tabs {
border: 0;
padding: 40px;
}
.specials6 .nav-link {
border: 0;
padding: 12px 15px;
transition: 0.3s;
color: rgb(0, 0, 0);
border-radius: 0;
border-right: 2px solid #cda45e;
font-weight: 600;
font-size: 15px;
}
.specials6 .nav-link:hover {
color: #ffffff;
}
.specials6 .nav-link.active {
color: #1a1814;
background: #63B4B8;
border-color: #cda45e;
}
.specials6 .nav-link:hover {
border-color: #cda45e;
}
.specials6 .tab-pane.active {
-webkit-animation: fadeIn 0.5s ease-out;
animation: fadeIn 0.5s ease-out;
}
.specials6 .details h3 {
font-size: 26px;
font-weight: 600;
margin-bottom: 20px;
color: rgb(0, 0, 0);
}
.specials6 .details p {
color: #000000;
}
.specials6 .details p:last-child {
margin-bottom: 0;
}
@media (max-width: 992px) {
.specials6 .nav-link {
border: 0;
padding: 15px;
}
}
/* Specials1 Section */
.specials1 {
background-color: #3E065F;
padding-top: 15px;
}
.specials1 .container h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/*--------------------------------------------------------------
# Breadcrumbs-about
--------------------------------------------------------------*/
.breadcrumbs-about {
padding: 30px 0;
background-color: #482D57;
height: 100px;
}
.breadcrumbs-about h2 {
font-size: 20px;
font-weight: 100;
color: #fff;
}
.breadcrumbs-about ol {
display: flex;
flex-wrap: wrap;
list-style: none;
margin-top: -10px;
color: #ffffff;
border-radius: 8px;
border: 3px solid #ffffff;
padding: 10px 10px;
}
.breadcrumbs-about ol a {
color: #fff;
}
.breadcrumbs-about ol li {
font-size: 18px;
font-weight: 100;
color: #ffffff;
}
.breadcrumbs-about ol li+li {
padding-left: 10px;
}
.breadcrumbs-about ol li+li::before {
display: inline-block;
padding-right: 10px;
color: #ffffff;
content: "/";
}
.breadcrumbs-about a:hover {
color: #2a6496;
}
@media (max-width: 991px) {
.breadcrumbs-about {
margin-top: 58px;
}
.breadcrumbs-about .d-flex {
display: block !important;
}
.breadcrumbs-about ol {
display: block;
}
.breadcrumbs-about ol li {
display: inline-block;
}
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us {
background-color: #916BBF;
padding: 20px;
}
.about-us .pictures img {
width: 400px;
height: 500px;
display: block;
margin: auto;
}
.about-us .content p:last-child {
margin-bottom: 0;
font-family: century gothic;
}
.about-us .content p {
font-size: 20px;
font-weight: 200;
font-family: century gothic;
text-align: justify;
}
.about-us .content p span {
font-size: 34px;
font-weight: 200;
font-family: century gothic;
}
.about-us .content h2 {
font-weight: 200;
font-family: century gothic;
text-align: center;
padding: 10px;
}
/*--------------------------------------------------------------
# program us
--------------------------------------------------------------*/
.program-us {
background-color: #BEDBBB;
padding: 20px;
}
.program-us .pictures img {
width: 400px;
height: 300px;
display: block;
margin: auto;
}
.program-us .content p:last-child {
margin-bottom: 0;
font-family: century gothic;
}
.program-us .content p {
font-size: 20px;
font-weight: 200;
font-family: century gothic;
text-align: justify;
}
.program-us .content p span {
font-size: 34px;
font-weight: 200;
font-family: century gothic;
}
.program-us .content h2 {
font-weight: 200;
font-family: century gothic;
text-align: center;
padding: 10px;
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
background-image: linear-gradient(rgb(141, 181, 150), #BEDBBB);
}
.why-us .content {
padding: 30px 100px 0 100px;
}
.why-us .content h5 {
font-weight: 400;
font-size: 34px;
color: #1E5128;
}
.why-us .content h4 {
font-size: 20px;
font-weight: 700;
margin-top: 5px;
}
.why-us .content p {
font-size: 15px;
color: #000000;
text-align: justify;
}
.why-us .img {
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
.why-us .accordion-list {
padding: 0 100px 60px 100px;
}
.why-us .accordion-list ul {
padding: 0;
list-style: none;
}
.why-us .accordion-list li+li {
margin-top: 15px;
}
.why-us .accordion-list li {
padding: 20px;
background: #9CC094;
border-radius: 4px;
}
.why-us .accordion-list a {
display: block;
position: relative;
font-family: "Poppins", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 500;
padding-right: 30px;
outline: none;
cursor: pointer;
}
.why-us .accordion-list span {
color: #1E5128;
font-weight: 600;
font-size: 18px;
padding-right: 10px;
}
.why-us .accordion-list i {
font-size: 24px;
position: absolute;
right: 0;
top: 0;
}
.why-us .accordion-list p {
margin-bottom: 0;
padding: 10px 0 0 0;
}
.why-us .accordion-list .icon-show {
display: none;
}
.why-us .accordion-list a.collapsed {
color: #1E5128;
}
.why-us .accordion-list a.collapsed:hover {
color: #1E5128;
}
.why-us .accordion-list a.collapsed .icon-show {
display: inline-block;
}
.why-us .accordion-list a.collapsed .icon-close {
display: none;
}
@media (max-width: 1024px) {
.why-us .content,
.why-us .accordion-list {
padding-left: 0;
padding-right: 0;
}
}
@media (max-width: 992px) {
.why-us .img {
min-height: 400px;
}
.why-us .content {
padding-top: 30px;
}
.why-us .accordion-list {
padding-bottom: 30px;
}
}
@media (max-width: 575px) {
.why-us .img {
min-height: 200px;
}
}
/*--------------------------------------------------------------
# Ujian
--------------------------------------------------------------*/
.ujian .content {
padding: 30px;
background: #1977cc;
border-radius: 4px;
color: #fff;
}
.ujian .content h3 {
font-weight: 700;
font-size: 34px;
margin-bottom: 30px;
}
.ujian .content p {
margin-bottom: 30px;
}
.ujian .content .more-btn {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
padding: 6px 30px 8px 30px;
color: #fff;
border-radius: 50px;
transition: all ease-in-out 0.4s;
}
.ujian .content .more-btn i {
font-size: 14px;
}
.ujian .content .more-btn:hover {
color: #1977cc;
background: #fff;
}
.ujian .icon-boxes .icon-box {
text-align: center;
border-radius: 10px;
background: #fff;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
padding: 40px 30px;
width: 100%;
}
.ujian .icon-boxes .icon-box i {
font-size: 40px;
color: #1977cc;
margin-bottom: 30px;
}
.ujian .icon-boxes .icon-box h4 {
font-size: 20px;
font-weight: 700;
margin: 0 0 30px 0;
}
.ujian .icon-boxes .icon-box p {
font-size: 15px;
color: #848484;
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.breadcrumbs {
padding: 15px 0;
background: #1bbd36;
min-height: 40px;
margin-top: 72px;
}
.breadcrumbs h2 {
font-size: 26px;
font-weight: 300;
color: #fff;
}
.breadcrumbs ol {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
margin: 0;
color: #fff;
}
.breadcrumbs ol a {
color: #fff;
}
.breadcrumbs ol li+li {
padding-left: 10px;
}
.breadcrumbs ol li+li::before {
display: inline-block;
padding-right: 10px;
color: #fff;
content: "/";
}
@media (max-width: 991px) {
.breadcrumbs {
margin-top: 58px;
}
.breadcrumbs .d-flex {
display: block !important;
}
.breadcrumbs ol {
display: block;
}
.breadcrumbs ol li {
display: inline-block;
}
}
/*--------------------------------------------------------------
# Picture (Content 3)
--------------------------------------------------------------*/
.content1 {
background-image: url('https://i.postimg.cc/0NkDJX2f/bg3.png');
background-size: cover;
padding: 20px;
}
.content1 img {
width: 550px;
height: 510px;
display: block;
margin: auto;
}
.content1 h2 {
color: rgb(0, 0, 0);
text-align: center;
font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}
.content1 span {
color: #ffffff;
font-weight: 800;
font-family: century gothic;
}
.content1 h5 {
color: #ffffff;
font-weight: 1200;
font-family: 'Rubik', sans-serif;
text-align: center;
font-size: 35px;
}
.content .icon1 img {
width: 300px;
height: 350px;
display: block;
margin: auto;
}
.content .text1 p {
text-align: justify;
position: relative;
right: 80px;
font-size: 16px;
bottom: -60px;
color: #000000;
font-weight: 500;
padding: 5px;
}
.content .icon2 img {
width: 300px;
height: 350px;
display: block;
margin: auto;
}
.content .text2 p {
text-align: justify;
position: relative;
left: 80px;
font-size: 18px;
bottom: -60px;
color: #ffffff;
font-weight: 700;
border-radius: 5px;
border: 2px dashed #ffffff;
padding: 5px;
}
.content1 .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
#hero {
height: 100vh;
text-align: center;
}
#hero .animated {
-webkit-animation: none;
animation: none;
}
#hero .hero-img {
text-align: center;
background-size: 30%;
}
#hero .hero-img img {
width: 20%;
}
}
/*--------------------------------------------------------------
# Picture (Content 4)
--------------------------------------------------------------*/
.picture h2 {
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
}
.picture p {
text-align: center;
}
.picture h6 {
text-align: center;
}
.picture .picture-item {
overflow: hidden;
border-top: 5px solid #ffae00;
border-right: 5px solid #ffae00;
border-bottom: 5px solid #ffae00;
}
.picture .picture-item img {
transition: all ease-in-out 0.4s;
}
.picture .picture-item:hover img {
transform: scale(1.1);
}
/* Tips belajar Section (Content 5)
--------------------------------*/
#features {
display: inline-block;
height: 100%;
width: 100%;
}
#features h2 {
font-family: 'century-gothic-regular', sans-serif;
}
#features .feature-block {
background: #fff none repeat scroll 0 0;
padding: 30px 20px;
margin-bottom: 30px;
transition: all 0.5s ease-in-out 0s;
}
#features .feature-block img {
height: 60px;
margin-bottom: 30px;
width: 60px;
}
#features .feature-block:hover {
box-shadow: 0 0 35px rgba(255, 190, 12, 0.884);
transition: all 0.5s ease-in-out 0s;
}
#features .feature-block h4 {
margin-bottom: 20px;
}
#features .feature-block p {
margin-bottom: 0;
}
#features .features-carousel,
.features .features-slider {
overflow: hidden;
}
#features .features-item {
box-sizing: content-box;
padding: 30px 30px 30px 60px;
margin: 30px 10px 30px 50px;
min-height: 200px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
position: relative;
}
#features .feature-item .feature-img {
width: 90px;
border-radius: 10px;
border: 6px solid #5777ba;
position: absolute;
left: -45px;
}
.features .featur-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}
.features .feature-item h4 {
font-size: 14px;
color: #999;
margin: 0;
}
.features .feature-item .quote-icon-left,
.features .feature-item .quote-icon-right {
color: #e8ecf5;
font-size: 26px;
}
.features .feature-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}
.features .feature-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
}
.features .feature-item p {
font-style: italic;
margin: 15px auto 15px auto;
}
.features .swiper-pagination {
margin-top: 20px;
position: relative;
}
.features .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #5777ba;
}
.features .swiper-pagination .swiper-pagination-bullet-active {
background-color: #5777ba;
}
/*--------------------------------------------------------------
# Counts Section (Content 6)
--------------------------------------------------------------*/
.counts {
padding: 30px 0;
background-color: #000f66;
}
.counts1 {
padding: 60px 0;
background-color: #000f66;
}
.counts .counters span {
font-size: 48px;
display: block;
color: #e6d600;
font-weight: 700;
}
.counts .counters p {
padding: 0;
margin: 0 0 20px 0;
font-family: 'century-gothic-regular', sans-serif;
font-size: 15px;
font-weight: 600;
color: #ffffff;
}
/* Bg Contact Section */
.bg-contact {
background-image: url('https://i.postimg.cc/DwnrMH5d/bg-contact.png');
background-size: cover;
padding: 20px;
}
/*--------------------------------------------------------------
# Gallery Section (Content 7)
--------------------------------------------------------------*/
.gallery {
overflow: hidden;
}
.gallery h2 {
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
}
.gallery p {
text-align: center;
}
.gallery .swiper-slide {
transition: 0.3s;
}
.gallery .swiper-pagination {
margin-top: 20px;
position: relative;
}
.gallery .swiper-text h6 {
text-align: center;
}
.gallery .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #5777ba;
}
.gallery .swiper-pagination .swiper-pagination-bullet-active {
background-color: #5777ba;
}
.gallery .swiper-slide-active {
text-align: center;
}
@media (min-width: 992px) {
.gallery .swiper-wrapper {
padding: 40px 0;
}
.gallery .swiper-slide-active {
border: 6px solid #02b419;
padding: 4px;
background: #fff;
z-index: 1;
transform: scale(1.2);
margin-top: 10px;
border-radius: 25px;
}
}
/*--------------------------------------------------------------
# Testimonials (Content 8)
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer blog
--------------------------------------------------------------*/
#footer-blog {
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #009DAE;
background-size: cover;
}
#footer-blog .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-blog .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-blog .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-blog .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-blog .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-blog .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-blog .footer-top {
padding: 60px 0 30px 0;
background: #009DAE;
background-size: cover;
}
#footer-blog .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-blog .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-blog .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-blog .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-blog .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #fff;
}
#footer-blog .footer-top h4 {
font-size: 16px;
color: #fff;
position: relative;
padding-bottom: 12px;
}
#footer-blog .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-blog .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-blog .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer-blog .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-blog .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-blog .footer-top .footer-links ul a {
color: #fff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-blog .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-blog .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #9DF5EC;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-blog .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-blog .copyright {
text-align: center;
float: center;
color: #fff;
font-weight: 400;
}
#footer-blog .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-blog .copyright,
#footer-blog .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer teacher
--------------------------------------------------------------*/
#footer-teacher {
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #009DAE;
background-size: cover;
}
#footer-teacher .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-teacher .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-teacher .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-teacher .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-teacher .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-teacher .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-teacher .footer-top {
padding: 60px 0 30px 0;
background: #009DAE;
background-size: cover;
}
#footer-teacher .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-teacher .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-teacher .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-teacher .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-teacher .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #fff;
}
#footer-teacher .footer-top h4 {
font-size: 16px;
color: #fff;
position: relative;
padding-bottom: 12px;
}
#footer-teacher .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-teacher .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-teacher .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer-teacher .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-teacher .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-teacher .footer-top .footer-links ul a {
color: #fff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-teacher .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-teacher .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #A9E4D7;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-teacher .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-teacher .copyright {
text-align: center;
float: center;
color: #fff;
font-weight: 400;
}
#footer-teacher .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-teacher .copyright,
#footer-teacher .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer gallery
--------------------------------------------------------------*/
#footer-gallery {
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #E1578A;
background-size: cover;
}
#footer-gallery .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-gallery .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-gallery .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-gallery .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-gallery .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #F38BA0;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-gallery .footer-newsletter form input[type=submit]:hover {
background: #F38BA0;
}
#footer-gallery .footer-top {
padding: 60px 0 30px 0;
background: #E1578A;
background-size: cover;
}
#footer-gallery .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-gallery .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-gallery .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-gallery .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-gallery .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #fff;
}
#footer-gallery .footer-top h4 {
font-size: 16px;
color: #fff;
position: relative;
padding-bottom: 12px;
}
#footer-gallery .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-gallery .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-gallery .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer-gallery .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-gallery .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-gallery .footer-top .footer-links ul a {
color: #fff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-gallery .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-gallery .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #F38BA0;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-gallery .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-gallery .copyright {
text-align: center;
float: center;
color: #fff;
font-weight: 400;
}
#footer-gallery .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-gallery .copyright,
#footer-gallery .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer-program {
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #8DB596;
background-size: cover;
}
#footer-program .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-program .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-program .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-program .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-program .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-program .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-program .footer-top {
padding: 60px 0 30px 0;
background: #8DB596;
background-size: cover;
}
#footer-program .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-program .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-program .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-program .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-program .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #fff;
}
#footer-program .footer-top h4 {
font-size: 16px;
color: #fff;
position: relative;
padding-bottom: 12px;
}
#footer-program .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-program .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-program .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer-program .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-program .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-program .footer-top .footer-links ul a {
color: #fff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-program .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-program .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #9CC094;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-program .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-program .copyright {
text-align: center;
float: center;
color: #fff;
font-weight: 400;
}
#footer-program .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-program .copyright,
#footer-program .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer About
--------------------------------------------------------------*/
#footer-about {
color: #ffffff;
font-size: 14px;
background-color: #3E065F;
}
#footer-about .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-about .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-about .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-about .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-about .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-about .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-about .footer-top {
padding: 60px 0 30px 0;
background-color: #3E065F;
background-size: cover;
}
#footer-about .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-about .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-about .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-about .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-about .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #ffffff;
}
#footer-about .footer-top h4 {
font-size: 16px;
color: #ffffff;
position: relative;
padding-bottom: 12px;
}
#footer-about .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-about .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-about .footer-top .footer-links ul i {
padding-right: 2px;
color: #ffffff;
font-size: 18px;
line-height: 1;
}
#footer-about .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-about .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-about .footer-top .footer-links ul a {
color: #ffffff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-about .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-about .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #C1A1D3;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-about .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-about .copyright {
text-align: center;
float: center;
color: #ffffff;
font-weight: 400;
}
#footer-about .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-about .copyright,
#footer-about .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer Programs
--------------------------------------------------------------*/
#footer-programs {
color: #ffffff;
font-size: 14px;
background-color: #6B4F4F;
}
#footer-programs .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-programs .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-programs .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-programs .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-programs .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-programs .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-programs .footer-top {
padding: 60px 0 30px 0;
background-color: #6B4F4F;
background-size: cover;
}
#footer-programs .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-programs .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-programs .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-programs .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-programs .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #ffffff;
}
#footer-programs .footer-top h4 {
font-size: 16px;
color: #ffffff;
position: relative;
padding-bottom: 12px;
}
#footer-programs .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-programs .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-programs .footer-top .footer-links ul i {
padding-right: 2px;
color: #ffffff;
font-size: 18px;
line-height: 1;
}
#footer-programs .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-programs .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-programs .footer-top .footer-links ul a {
color: #ffffff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-programs .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-programs .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #5777ba;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-programs .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-programs .copyright {
text-align: center;
float: center;
color: #ffffff;
font-weight: 400;
}
#footer-programs .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-programs .copyright,
#footer-programs .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*Footer contact*/
/*========================================*/
#footer-contact {
background: rgb(255, 255, 255);
padding: 0 0 30px 0;
color: #ffffff;
font-size: 14px;
background-color: #181D31;
background-size: cover;
}
#footer-contact .footer-contact-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-contact .footer-contact-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-contact .footer-contact-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-contact .footer-contact-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-contact .footer-contact-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-contact .footer-contact-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-contact .footer-contact-top {
padding: 60px 0 30px 0;
background-color: #181D31;
background-size: cover;
}
#footer-contact .footer-contact-top .footer-contact-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-contact .footer-contact-top .footer-contact-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-contact .footer-contact-top .footer-contact-contact p {
text-align: left;
font-weight: 100;
}
#footer-contact .footer-contact-top .footer-contact-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #ffffff;
}
#footer-contact .footer-contact-top .footer-contact-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #ffffff;
}
#footer-contact .footer-contact-top h4 {
font-size: 16px;
color: #ffffff;
position: relative;
padding-bottom: 12px;
}
#footer-contact .footer-contact-top .footer-contact-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-contact .footer-contact-top .footer-contact-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-contact .footer-contact-top .footer-contact-links ul i {
padding-right: 2px;
color: #ffffff;
font-size: 18px;
line-height: 1;
}
#footer-contact .footer-contact-top .footer-contact-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-contact .footer-contact-top .footer-contact-links ul li:first-child {
padding-top: 0;
}
#footer-contact .footer-contact-top .footer-contact-links ul a {
color: #ffffff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-contact .footer-contact-top .footer-contact-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-contact .footer-contact-top .social-links a {
font-size: 18px;
display: inline-block;
background: #FFCE45;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-contact .footer-contact-top .social-links a:hover {
background: #ffffff;
color: #fff;
text-decoration: none;
}
#footer-contact .copyright {
text-align: center;
float: center;
color: #ffffff;
font-weight: 400;
}
#footer-contact .credits {
float: right;
text-align: center;
font-size: 13px;
color: #ffffff;
}
@media (max-width: 768px) {
#footer-contact .copyright,
#footer-contact .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/* Contact fiture */
.ftco-section {
padding: 7em 0;
}
.ftco-no-pt {
padding-top: 0;
}
.ftco-no-pb {
padding-bottom: 0;
}
.heading-section {
font-size: 28px;
font-family: century gothic;
color: #fff;
}
.img {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.form-group {
margin-top: 15px;
}
.form-control {
height: 44px;
background: #fff;
color: rgba(0, 0, 0, 0.8);
font-size: 14px;
border-radius: 2px;
-webkit-box-shadow: none !important;
box-shadow: none !important;
border: none;
}
.form-control::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: rgba(0, 0, 0, 0.3) !important;
}
.form-control::-moz-placeholder {
/* Firefox 19+ */
color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:-ms-input-placeholder {
/* IE 0+ */
color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:-moz-placeholder {
/* Firefox 18- */
color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:focus,
.form-control:active {
border-color: #FFCE45 !important;
}
textarea.form-control {
height: inherit !important;
}
.wrapper {
width: 100%;
}
.contact-wrap {
background: #e8edf0;
}
.dbox {
width: 100%;
margin-bottom: 25px;
padding: 0 20px;
}
@media (min-width: 768px) {
.dbox {
margin-bottom: 0;
padding: 0;
}
}
.dbox p {
margin-bottom: 0;
color: #fff;
}
.dbox p span {
font-weight: 500;
color: #fff;
}
.dbox p a {
color: #FFCE45;
}
.dbox .icon {
width: 60px;
height: 60px;
border-radius: 50%;
background: #FFCE45;
margin: 0 auto;
margin-bottom: 20px;
}
.dbox .icon span {
font-size: 20px;
color: #fff;
}
.dbox .text {
width: 100%;
}
.btn {
padding: 12px 16px;
cursor: pointer;
border-width: 1px;
border-radius: 5px;
font-size: 14px;
font-weight: 400;
-webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
position: relative;
margin-bottom: 20px;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
.btn {
-webkit-transition: none;
-o-transition: none;
transition: none;
}
}
.btn:hover,
.btn:active,
.btn:focus {
outline: none !important;
-webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
-moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
}
.btn.btn-primary {
background: #2553b8 !important;
border-color: #2553b8 !important;
color: #fff;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
border-color: #1c408e !important;
background: #1c408e !important;
}
.contactForm .label {
color: #000;
text-transform: uppercase;
font-size: 12px;
font-weight: 600;
}
.contactForm .form-control {
border: none;
}
#map {
width: 100%;
}
@media (max-width: 767.98px) {
#map {
height: 300px;
}
}
#contactForm .error {
color: red;
font-size: 12px;
}
#contactForm .form-control {
font-size: 16px;
}
#message {
resize: vertical;
}
#form-message-warning,
#form-message-success {
display: none;
}
#form-message-warning {
color: red;
}
#form-message-success {
color: #28a745;
font-size: 18px;
font-weight: 500;
}
.submitting {
float: left;
width: 100%;
padding: 10px 0;
display: none;
font-size: 16px;
font-weight: 500;
color: #2553b8;
}
|
public/newfrontend/assets/css/teacherStyle.css
|
body {
font-family: 'century-gothic-regular', sans-serif;
color: #000000;
}
a {
color: #5777ba;
text-decoration: none;
}
a:hover {
color: #7b94c9;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'century-gothic-regular', sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 996;
background: #5777ba;
width: 40px;
height: 40px;
border-radius: 50px;
transition: all 0.4s;
}
.back-to-top i {
font-size: 24px;
color: #fff;
line-height: 0;
}
.back-to-top:hover {
background: #748ec6;
color: #fff;
}
.back-to-top.active {
visibility: visible;
opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
transition: all 0.5s;
z-index: 997;
transition: all 0.5s;
padding: 15px 0;
background: rgba(255, 255, 255, 0.95);
}
#header .header-transparent {
background: transparent;
}
#header.header-scrolled {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo h1 {
font-size: 30px;
margin: 0;
line-height: 1;
font-weight: 400;
letter-spacing: 2px;
}
#header .logo h1 span {
color: #e6d600;
}
#header .logo h1 a,
#header .logo h1 a:hover {
color: #02b419;
text-decoration: none;
}
#header .logo img {
margin: 0;
max-height: 40px;
}
/**
# NAVBAR
*/
.navbar {
padding: 0;
}
.navbar ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}
.navbar li {
position: relative;
}
.navbar a,
.navbar a:focus {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 30px;
font-family: 'century-gothic-regular', sans-serif;
font-size: 15px;
color: #000f66;
white-space: nowrap;
transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
color: #02b419;
}
.navbar .getstarted,
.navbar .getstarted:focus {
background: #02b419;
color: rgb(255, 255, 255);
padding: 9px 15px;
margin-left: 30px;
color: #fff;
line-height: 1;
border-radius: 50px;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
background: #748ec6;
color: #fff;
}
.navbar .dropdown ul {
display: block;
position: absolute;
left: 14px;
top: calc(100% + 30px);
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: rgb(249, 249, 255);
box-shadow: 0px 0px 30px rgba(255, 253, 253, 0.25);
transition: 0.3s;
border-radius: 4px;
}
.navbar .dropdown ul li {
min-width: 200px;
}
.navbar .dropdown ul a {
padding: 10px 20px;
font-size: 15px;
text-transform: none;
font-weight: 600;
}
.navbar .dropdown ul a i {
font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
color: #5777ba;
}
.navbar .dropdown:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}
.navbar .dropdown .dropdown ul {
top: 0;
left: calc(100% - 30px);
visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
opacity: 1;
top: 0;
left: 100%;
visibility: visible;
}
@media (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
left: -90%;
}
.navbar .dropdown .dropdown:hover>ul {
left: -100%;
}
}
/**
* Navbar Mobile Navigation
*/
.mobile-nav-toggle {
color: #47536e;
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
color: #fff;
}
@media (max-width: 991px) {
.mobile-nav-toggle {
display: block;
}
.navbar ul {
display: none;
}
}
.navbar-mobile {
position: fixed;
overflow: hidden;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(51, 60, 79, 0.9);
transition: 0.3s;
z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
position: absolute;
top: 15px;
right: 15px;
}
.navbar-mobile ul {
display: block;
position: absolute;
top: 55px;
right: 15px;
bottom: 15px;
left: 15px;
padding: 10px 0;
border-radius: 6px;
background-color: #fff;
overflow-y: auto;
transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
padding: 10px 20px;
font-size: 15px;
color: #47536e;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
color: #5777ba;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
margin: 15px;
}
.navbar-mobile .dropdown ul {
position: static;
display: none;
margin: 10px 20px;
padding: 10px 0;
z-index: 99;
opacity: 1;
visibility: visible;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
min-width: 200px;
}
.navbar-mobile .dropdown ul a {
padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
color: #5777ba;
}
.navbar-mobile .dropdown>.dropdown-active {
display: block;
}
/*--------------------------------------------------------------
# Hero About Section
--------------------------------------------------------------*/
#hero-about {
width: 100%;
height: 400px;
background-image: linear-gradient(rgb(118, 80, 142), #482D57);
overflow: hidden;
position: relative;
}
.hero-about img {
width: 480px;
height: 300px;
display: block;
position: relative;
top: 90px;
left: -90px;
}
.hero-about h5 span {
font-weight: 300;
color: #fff;
font-size: 48px;
}
.hero-about h5 {
text-align: center;
color: #fff;
font-family: century gothic;
font-weight: 200;
font-size: 25px;
position: relative;
top: -100px;
right: -190px;
}
/*--------------------------------------------------------------
# Hero Ujian Section
--------------------------------------------------------------*/
.hero-ujian {
background-image: linear-gradient(rgb(173, 194, 169), #99A799);
background-size: cover;
height: 500px;
padding: 50px;
}
.hero-ujian img {
width: 250px;
height: 250px;
display: block;
position: relative;
bottom: -90px;
left: -40px;
}
.hero-ujian h1 {
text-align: center;
color: #fff;
font-family: century gothic;
font-weight: 300;
font-size: 40px;
position: relative;
top: -300px;
right: -190px;
}
.hero-ujian h5 span {
font-weight: 300;
color: #fff;
font-size: 48px;
}
.hero-ujian h5 {
text-align: center;
color: #fff;
font-family: century gothic;
font-weight: 200;
font-size: 25px;
position: relative;
top: -300px;
right: -190px;
}
/*--------------------------------------------------------------
# Hero teacher Section
--------------------------------------------------------------*/
#hero-inform {
width: 100%;
height: 400px;
background-image: linear-gradient(rgb(113, 223, 231), #009DAE);
overflow: hidden;
position: relative;
}
#hero-inform h1 {
margin-bottom: 170px;
color: #fff;
font-size: 42px;
font-weight: 500;
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
padding: 15px;
}
#hero-inform .box1 {
height: 140px;
margin-bottom: 50px;
background: none;
}
#hero-inform .carousel,
#hero-inform .carousel-inner,
#hero-inform .carousel-item,
#hero-inform .carousel-item::before {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
#hero-inform .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
#hero-inform {
height: 100vh;
text-align: center;
}
#hero-inform .animated {
-webkit-animation: none;
animation: none;
}
#hero-inform .hero-img {
text-align: center;
background-size: 30%;
}
#hero-inform .hero-img img {
width: 20%;
}
}
@media (max-width: 768px) {
#hero-inform h1 {
font-size: 28px;
line-height: 36px;
}
#hero-inform h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}
#hero-inform .hero-img img {
width: 70%;
}
}
@media (max-width: 575px) {
#hero-inform .hero-img img {
width: 80%;
}
#hero-inform .btn-get-started {
font-size: 16px;
padding: 10px 24px 11px 24px;
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
#hero-inform .carousel-container {
display: flex;
align-items: flex-end;
justify-content: center;
position: absolute;
bottom: 60px;
top: 70px;
left: 55px;
right: 55px;
}
#hero-inform .carousel-content {
background: rgba(4, 4, 4, 0.7);
padding: 20px;
color: #fff;
border-top: 5px solid #1bbd36;
}
#hero-inform .carousel-content h2 {
color: #fff;
margin-bottom: 20px;
font-size: 28px;
font-weight: 700;
}
#hero-inform .btn-get-started {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 32px;
border-radius: 4px;
transition: 0.5s;
line-height: 1;
margin: 10px;
color: #fff;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
border: 2px solid #1bbd36;
}
#hero-inform .btn-get-started:hover {
background: #1bbd36;
color: #fff;
text-decoration: none;
}
#hero-inform .carousel-inner .carousel-item {
transition-property: opacity;
background-position: center top;
}
#hero-inform .carousel-inner .carousel-item,
#hero-inform .carousel-inner .active.carousel-item-start,
#hero-inform .carousel-inner .active.carousel-item-end {
opacity: 0;
}
#hero-inform .carousel-inner .active,
#hero-inform .carousel-inner .carousel-item-next.carousel-item-start,
#hero-inform .carousel-inner .carousel-item-prev.carousel-item-end {
opacity: 1;
transition: 0.5s;
}
#hero-inform .carousel-inner .carousel-item-next,
#hero-inform .carousel-inner .carousel-item-prev,
#hero-inform .carousel-inner .active.carousel-item-start,
#hero-inform .carousel-inner .active.carousel-item-end {
left: 0;
transform: translate3d(0, 0, 0);
}
#hero-inform .carousel-control-next-icon,
#hero-inform .carousel-control-prev-icon {
background: none;
font-size: 30px;
line-height: 0;
width: auto;
height: auto;
background: rgba(255, 255, 255, 0.4);
border-radius: 50px;
transition: 0.3s;
color: rgba(255, 255, 255, 0.6);
width: 54px;
height: 54px;
display: flex;
align-items: center;
justify-content: center;
}
#hero-inform .carousel-control-next-icon:hover,
#hero-inform .carousel-control-prev-icon:hover {
background: rgba(255, 255, 255, 0.6);
color: rgba(255, 255, 255, 0.8);
}
#hero-inform .carousel-indicators li {
cursor: pointer;
background: #fff;
overflow: hidden;
border: 0;
width: 12px;
height: 12px;
border-radius: 50px;
opacity: 0.6;
transition: 0.3s;
}
#hero-inform .carousel-indicators li.active {
opacity: 1;
background: #1bbd36;
}
@media (min-width: 1024px) {
#hero-inform .carousel-content {
width: 60%;
}
#hero-inform .carousel-control-prev,
#hero-inform .carousel-control-next {
width: 5%;
}
}
@media (max-width: 992px) {
#hero-inform .carousel-container {
top: 58px;
}
#hero-inform .carousel-content h2 {
margin-bottom: 15px;
font-size: 22px;
}
#hero-inform .carousel-content p {
font-size: 15px;
}
}
@media (max-height: 500px) {
#hero-inform {
height: 120vh;
}
}
#hero-inform .download-btn {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 15px;
display: inline-block;
padding: 8px 24px 10px 46px;
border-radius: 3px;
transition: 0.5s;
color: #fff;
background: #e6d600;
position: relative;
margin-bottom: 90px;
}
#hero-inform .download-btn:hover {
background: #f7fa50;
}
#hero-inform .download-btn i {
font-size: 20px;
position: absolute;
left: 18px;
top: 8.5px;
}
/*--------------------------------------------------------------
# Hero Blog Section
--------------------------------------------------------------*/
#hero-blog {
width: 100%;
height: 650px;
background-image: linear-gradient(rgb(113, 223, 231), #009DAE);
overflow: hidden;
position: relative;
}
#hero-profile {
width: 100%;
height: 150px;
background-color: #161E54;
overflow: hidden;
}
#hero-blog h1 {
margin-bottom: 170px;
color: #fff;
font-size: 42px;
font-weight: 500;
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
padding: 15px;
}
#hero-blog .box1 {
height: 140px;
margin-bottom: 170px;
background: none;
border: solid 6px #ffffff;
border-radius: 20px;
}
#hero-blog .box2 {
height: 140px;
margin-bottom: 170px;
font-weight: 400;
background: none;
border: solid 6px #ffffff;
border-radius: 20px;
}
#hero-blog img {
margin-bottom: -40px;
position: relative;
left: 120px;
}
#hero-blog .carousel,
#hero-blog .carousel-inner,
#hero-blog .carousel-item,
#hero-blog .carousel-item::before {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
#hero-blog .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
#hero-blog {
height: 100vh;
text-align: center;
}
#hero-blog .animated {
-webkit-animation: none;
animation: none;
}
#hero-blog .hero-img {
text-align: center;
background-size: 30%;
}
#hero-blog .hero-img img {
width: 20%;
}
}
@media (max-width: 768px) {
#hero-blog h1 {
font-size: 28px;
line-height: 36px;
}
#hero-blog h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}
#hero-blog .hero-img img {
width: 70%;
}
}
@media (max-width: 575px) {
#hero-blog .hero-img img {
width: 80%;
}
#hero-blog .btn-get-started {
font-size: 16px;
padding: 10px 24px 11px 24px;
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
#hero-blog .carousel-container {
display: flex;
align-items: flex-end;
justify-content: center;
position: absolute;
bottom: 60px;
top: 70px;
left: 55px;
right: 55px;
}
#hero-blog .carousel-content {
background: rgba(4, 4, 4, 0.7);
padding: 20px;
color: #fff;
border-top: 5px solid #1bbd36;
}
#hero-blog .carousel-content h2 {
color: #fff;
margin-bottom: 20px;
font-size: 28px;
font-weight: 700;
}
#hero-blog .btn-get-started {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 32px;
border-radius: 4px;
transition: 0.5s;
line-height: 1;
margin: 10px;
color: #fff;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
border: 2px solid #1bbd36;
}
#hero-blog .btn-get-started:hover {
background: #1bbd36;
color: #fff;
text-decoration: none;
}
#hero-blog .carousel-inner .carousel-item {
transition-property: opacity;
background-position: center top;
}
#hero-blog .carousel-inner .carousel-item,
#hero-blog .carousel-inner .active.carousel-item-start,
#hero-blog .carousel-inner .active.carousel-item-end {
opacity: 0;
}
#hero-blog .carousel-inner .active,
#hero-blog .carousel-inner .carousel-item-next.carousel-item-start,
#hero-blog .carousel-inner .carousel-item-prev.carousel-item-end {
opacity: 1;
transition: 0.5s;
}
#hero-blog .carousel-inner .carousel-item-next,
#hero-blog .carousel-inner .carousel-item-prev,
#hero-blog .carousel-inner .active.carousel-item-start,
#hero-blog .carousel-inner .active.carousel-item-end {
left: 0;
transform: translate3d(0, 0, 0);
}
#hero-blog .carousel-control-next-icon,
#hero-blog .carousel-control-prev-icon {
background: none;
font-size: 30px;
line-height: 0;
width: auto;
height: auto;
background: rgba(255, 255, 255, 0.4);
border-radius: 50px;
transition: 0.3s;
color: rgba(255, 255, 255, 0.6);
width: 54px;
height: 54px;
display: flex;
align-items: center;
justify-content: center;
}
#hero-blog .carousel-control-next-icon:hover,
#hero-blog .carousel-control-prev-icon:hover {
background: rgba(255, 255, 255, 0.6);
color: rgba(255, 255, 255, 0.8);
}
#hero-blog .carousel-indicators li {
cursor: pointer;
background: #fff;
overflow: hidden;
border: 0;
width: 12px;
height: 12px;
border-radius: 50px;
opacity: 0.6;
transition: 0.3s;
}
#hero-blog .carousel-indicators li.active {
opacity: 1;
background: #1bbd36;
}
@media (min-width: 1024px) {
#hero-blog .carousel-content {
width: 60%;
}
#hero-blog .carousel-control-prev,
#hero-blog .carousel-control-next {
width: 5%;
}
}
@media (max-width: 992px) {
#hero-blog .carousel-container {
top: 58px;
}
#hero-blog .carousel-content h2 {
margin-bottom: 15px;
font-size: 22px;
}
#hero-blog .carousel-content p {
font-size: 15px;
}
}
@media (max-height: 500px) {
#hero-blog {
height: 120vh;
}
}
#hero-blog .download-btn {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 15px;
display: inline-block;
padding: 8px 24px 10px 46px;
border-radius: 3px;
transition: 0.5s;
color: #fff;
background: #e6d600;
position: relative;
margin-bottom: 90px;
}
#hero-blog .download-btn:hover {
background: #f7fa50;
}
#hero-blog .download-btn i {
font-size: 20px;
position: absolute;
left: 18px;
top: 8.5px;
}
/* Background List Blog */
.bg-list-blog {
background-image: url('https://i.postimg.cc/g09L9JmP/bg1.png');
background-size: cover;
margin-top: -30px;
padding: 30px;
}
.bg-list-blog .cv-course-container {
background: #71DFE7;
}
.bg-list-blog .cv-course-container .read-more {
-moz-text-align-last: right;
text-align-last: right;
}
.bg-list-blog .cv-course-container .read-more a {
display: inline-block;
background: #71DFE7;
color: #000;
padding: 6px 20px;
transition: 0.3s;
font-size: 14px;
border-radius: 4px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
position: relative;
right: 30px;
}
.bg-list-blog .cv-course-container .read-more a:hover {
background: #71DFE7;
}
/* Background View Blog */
.bg-view-blog {
background-image: url('https://i.postimg.cc/g09L9JmP/bg1.png');
background-size: cover;
margin-top: -30px;
padding: 30px;
}
.bg-view-blog .cv-course-container {
background-color: #71DFE7;
}
.bg-view-blog .cv-course-container .read-more {
-moz-text-align-last: right;
text-align-last: right;
}
.bg-view-blog .cv-course-container .read-more a {
display: inline-block;
background: #C2FFF9;
color: #000;
padding: 6px 20px;
transition: 0.3s;
font-size: 14px;
border-radius: 4px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
position: relative;
right: 30px;
}
.bg-view-blog .cv-course-container .read-more a:hover {
background: #C2FFF9;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 650px;
overflow: hidden;
position: relative;
}
#hero-profile {
width: 100%;
height: 150px;
background-color: #161E54;
overflow: hidden;
}
/* hero teacher */
#hero-teacher {
background-color: #161E54;
}
#hero-teacher .carousel-inner .carousel-item-teacher h1 {
-webkit-text-stroke: 3px rgba(6, 138, 6, 0.623);
color: rgb(255, 255, 255);
}
/* breadcrumb */
.breadcrumb {
padding: 0.75rem 0rem;
font-size: 0.9rem;
}
.breadcrumb li.breadcrumb-item-profile.active {
color: rgb(255, 255, 255);
font-weight: bold;
}
.breadcrumb-item-profile+.breadcrumb-item-profile::before {
content: "»";
padding-right: 0.2rem;
color: rgb(255, 255, 255);
}
.breadcrumb-item-profile+.breadcrumb-item-profile {
padding-left: 0.2rem;
color: rgb(255, 255, 255);
}
.breadcrumb-item-profile a {
color: #ffffff;
text-decoration: none;
}
.breadcrumb-item-profile a:hover {
color: #2a6496;
}
.breadcrumb-container-profile {
height: 50px;
background-color: #72147E;
}
/* Hero section GIBS arjuna View */
.hero-view {
background-image: linear-gradient(rgb(113, 223, 231), #009DAE);
background-size: cover;
height: 400px;
}
.hero-view img {
width: 480px;
height: 480px;
display: block;
padding: 20px;
position: relative;
top: 10;
}
.hero-view h2 {
margin-top: -230px;
margin-right: -180px;
color: #fff;
font-size: 60px;
font-weight: 700;
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
}
/* hero section */
#hero h1 {
margin-bottom: 20px;
color: #e6d600;
font-size: 50px;
font-weight: 500;
line-height: 56px;
font-family: 'century-gothic-regular', sans-serif;
}
#hero h1 span {
display: table-cell;
animation: animate 1s linear infinite;
color: white;
font-family: 'century-gothic-regular', sans-serif;
line-height: 60px;
}
#hero h2 {
color: #ffffff;
margin-bottom: 30px;
font-size: 16px;
text-align: justify;
padding: 1px 0 20px 1;
font-family: 'century-gothic-regular', sans-serif;
}
#hero h4 {
margin-bottom: 70px;
font-family: 'century-gothic-regular', sans-serif;
color: white;
font-size: 20px;
}
#hero h3 {
margin-bottom: 200px;
font-family: 'century-gothic-regular', sans-serif;
color: white;
font-size: 20px;
}
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
#hero .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
#hero {
height: 100vh;
text-align: center;
}
#hero .animated {
-webkit-animation: none;
animation: none;
}
#hero .hero-img {
text-align: center;
background-size: 30%;
}
#hero .hero-img img {
width: 20%;
}
}
@media (max-width: 768px) {
#hero h1 {
font-size: 28px;
line-height: 36px;
}
#hero h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}
#hero .hero-img img {
width: 70%;
}
}
@media (max-width: 575px) {
#hero .hero-img img {
width: 80%;
}
#hero .btn-get-started {
font-size: 16px;
padding: 10px 24px 11px 24px;
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
#hero .carousel-container {
display: flex;
align-items: flex-end;
justify-content: center;
position: absolute;
bottom: 60px;
top: 70px;
left: 55px;
right: 55px;
}
#hero .carousel-content {
background: rgba(4, 4, 4, 0.7);
padding: 20px;
color: #fff;
border-top: 5px solid #1bbd36;
}
#hero .carousel-content h2 {
color: #fff;
margin-bottom: 20px;
font-size: 28px;
font-weight: 700;
}
#hero .btn-get-started {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 32px;
border-radius: 4px;
transition: 0.5s;
line-height: 1;
margin: 10px;
color: #fff;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
border: 2px solid #1bbd36;
}
#hero .btn-get-started:hover {
background: #1bbd36;
color: #fff;
text-decoration: none;
}
#hero .carousel-inner .carousel-item {
transition-property: opacity;
background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
opacity: 1;
transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
left: 0;
transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
background: none;
font-size: 30px;
line-height: 0;
width: auto;
height: auto;
background: rgba(255, 255, 255, 0.4);
border-radius: 50px;
transition: 0.3s;
color: rgba(255, 255, 255, 0.6);
width: 54px;
height: 54px;
display: flex;
align-items: center;
justify-content: center;
}
#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
background: rgba(255, 255, 255, 0.6);
color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
cursor: pointer;
background: #fff;
overflow: hidden;
border: 0;
width: 12px;
height: 12px;
border-radius: 50px;
opacity: 0.6;
transition: 0.3s;
}
#hero .carousel-indicators li.active {
opacity: 1;
background: #1bbd36;
}
@media (min-width: 1024px) {
#hero .carousel-content {
width: 60%;
}
#hero .carousel-control-prev,
#hero .carousel-control-next {
width: 5%;
}
}
@media (max-width: 992px) {
#hero .carousel-container {
top: 58px;
}
#hero .carousel-content h2 {
margin-bottom: 15px;
font-size: 22px;
}
#hero .carousel-content p {
font-size: 15px;
}
}
@media (max-height: 500px) {
#hero {
height: 120vh;
}
}
#hero .download-btn {
font-family: 'century-gothic-regular', sans-serif;
font-weight: 500;
font-size: 15px;
display: inline-block;
padding: 8px 24px 10px 46px;
border-radius: 3px;
transition: 0.5s;
color: #fff;
background: #e6d600;
position: relative;
margin-bottom: 90px;
}
#hero .download-btn:hover {
background: #f7fa50;
}
#hero .download-btn i {
font-size: 20px;
position: absolute;
left: 18px;
top: 8.5px;
}
/*--------------------------------------------------------------
# Hero contact Section
--------------------------------------------------------------*/
#hero-contact {
width: 100%;
height: 650px;
background-image: linear-gradient(rgb(41, 80, 252), #001275);
overflow: hidden;
position: relative;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
background-color: #FFBCBC;
background-size: cover;
}
.portfolio h1 {
text-align: center;
font-size: 38px;
padding: 20px;
font-family: century gothic;
color: #fff;
}
.portfolio h1 span {
text-align: center;
font-size: 60px;
padding: 20px;
font-family: 'The Hound';
color: #8E0505;
}
.portfolio #portfolio-flters {
padding: 30px;
margin: 0 auto 50px auto;
list-style: none;
text-align: center;
}
.portfolio #portfolio-flters li {
cursor: pointer;
display: inline-block;
padding: 8px 20px 10px 20px;
font-size: 14px;
font-weight: 400;
line-height: 1;
text-transform: uppercase;
color: #4d4643;
transition: all 0.3s;
border-radius: 4px;
font-family: century gothic;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
color: #fff;
background: #C89595;
}
.portfolio #portfolio-flters li:last-child {
margin-right: 0;
}
.portfolio .portfolio-item {
margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-info {
opacity: 0;
position: absolute;
left: 30px;
right: 30px;
bottom: 0;
z-index: 3;
transition: all ease-in-out 0.3s;
background: rgba(255, 255, 255, 0.9);
padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
font-size: 18px;
color: #fff;
font-weight: 600;
color: #111;
}
.portfolio .portfolio-item .portfolio-info p {
color: #444444;
font-size: 14px;
margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
position: absolute;
right: 40px;
font-size: 24px;
top: calc(50% - 18px);
color: #2b2b2b;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
color: #C89595;
}
.portfolio .portfolio-item .portfolio-info .details-link {
right: 10px;
}
.portfolio .portfolio-item .portfolio-links {
opacity: 0;
left: 0;
right: 0;
text-align: center;
z-index: 3;
position: absolute;
transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .portfolio-links a {
color: #fff;
margin: 0 2px;
font-size: 28px;
display: inline-block;
transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-links a:hover {
color: #C89595;
}
.portfolio .portfolio-item:hover .portfolio-info {
opacity: 1;
bottom: 20px;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
margin-top: 20px;
position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #1bbd36;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
background-color: #1bbd36;
}
.portfolio-details .portfolio-info {
padding: 30px;
box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}
.portfolio-details .portfolio-info h3 {
font-size: 22px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
list-style: none;
padding: 0;
font-size: 15px;
}
.portfolio-details .portfolio-info ul li+li {
margin-top: 10px;
}
.portfolio-details .portfolio-description {
padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
padding: 0;
}
/* work1 section */
.work1 {
background-color: #1DB9C3;
}
.work1 .container h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/*--------------------------------------------------------------
# WORK (Content 2)
--------------------------------------------------------------*/
.work-teacher {
background-color: #99FEFF;
padding: 12px 0;
}
.work-teacher .work-up {
padding-left: 230px;
}
.work-teacher h5 {
font-family: century;
text-align: center;
align-items: center;
display: block;
margin: auto;
color: black;
}
.work-teacher .box:hover {
filter: none;
transform: scale(0.1);
}
@media (max-width: 768px) {
.work-teacher .box {
max-width: 40%;
}
}
.work-teacher .picture-item {
overflow: hidden;
}
.work-teacher .picture-item img {
width: 200px;
height: 200px;
transition: all ease-in-out 0.4s;
}
.work-teacher .picture-item:hover img {
transform: scale(0.8);
}
/* Features1 Section */
.features1 {
background-color: #63B4B8;
}
.features1 .container h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/* Features2 Section */
.features2 {
background-color: #A9E4D7;
display: inline-block;
height: 100%;
width: 100%;
padding: 40px;
display: inline-block;
height: 100%;
width: 100%;
}
#features2 h2 {
font-family: 'century-gothic-regular', sans-serif;
color: #000;
}
#features2 .feature-block {
background: #fff none repeat scroll 0 0;
padding: 30px 20px;
margin-bottom: 30px;
transition: all 0.5s ease-in-out 0s;
}
#features2 .feature-block img {
height: 60px;
margin-bottom: 30px;
width: 60px;
}
#features2 .feature-block:hover {
box-shadow: 0 0 35px rgba(255, 190, 12, 0.884);
transition: all 0.5s ease-in-out 0s;
}
#features2 .feature-block h1 {
margin-bottom: 20px;
font-size: 25px;
color: #22577A;
}
#features2 .feature-block h5 {
margin-bottom: 20px;
font-size: 17px;
color: #000;
}
#features2 .feature-block p {
margin-bottom: 0;
}
#features2 .features-carousel,
.features .features-slider {
overflow: hidden;
}
#features2 .features-item {
box-sizing: content-box;
padding: 30px 30px 30px 60px;
margin: 30px 10px 30px 50px;
min-height: 200px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
position: relative;
}
#features2 .feature-item .feature-img {
width: 90px;
border-radius: 10px;
border: 6px solid #5777ba;
position: absolute;
left: -45px;
}
.features2 .featur-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}
.features2 .feature-item h4 {
font-size: 14px;
color: #999;
margin: 0;
}
.features2 .feature-item .quote-icon-left,
.features .feature-item .quote-icon-right {
color: #e8ecf5;
font-size: 26px;
}
.features2 .feature-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}
.features2 .feature-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
}
.features2 .feature-item p {
font-style: italic;
margin: 15px auto 15px auto;
}
.features2 .swiper-pagination {
margin-top: 20px;
position: relative;
}
.features2 .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #5777ba;
}
.features2 .swiper-pagination .swiper-pagination-bullet-active {
background-color: #5777ba;
}
/* Features3 Section */
.features3 {
background-color: #3E065F;
padding-top: 15px;
}
.features3 .container h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/* Features4 Section */
.features2 h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/* Features5 Section */
.features5 {
background-color: #8DB596;
padding-top: 15px;
}
.features5 h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
padding: 20px;
background-image: url('https://i.postimg.cc/m2yYPNbn/bg-2.png');
background-size: cover;
}
.services .icon-box {
text-align: center;
padding: 70px 20px 80px 20px;
transition: all ease-in-out 0.3s;
background: #A685E2;
}
.services .icon-box .icon {
margin: 0 auto;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
transition: ease-in-out 0.3s;
position: relative;
}
.services .icon-box .icon i {
font-size: 36px;
transition: 0.5s;
position: relative;
}
.services .icon-box .icon svg {
position: absolute;
top: 0;
left: 0;
}
.services .icon-box .icon svg path {
transition: 0.5s;
fill: #f5f5f5;
}
.services .icon-box h4 {
font-weight: 600;
margin: 10px 0 15px 0;
font-size: 22px;
}
.services .icon-box h4 a {
color: #111;
transition: ease-in-out 0.3s;
}
.services .icon-box p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}
.services .icon-box:hover {
border-color: #fff;
box-shadow: 5px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
color: #fff;
}
.services .iconbox-blue:hover .icon path {
fill: #47aeff;
}
.services .iconbox-orange i {
color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
color: #fff;
}
.services .iconbox-orange:hover .icon path {
fill: #ffa76e;
}
.services .iconbox-pink i {
color: #e80368;
}
.services .iconbox-pink:hover .icon i {
color: #fff;
}
.services .iconbox-pink:hover .icon path {
fill: #e80368;
}
.services .iconbox-yellow i {
color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
color: #fff;
}
.services .iconbox-yellow:hover .icon path {
fill: #ffbb2c;
}
.services .iconbox-red i {
color: #ff5828;
}
.services .iconbox-red:hover .icon i {
color: #fff;
}
.services .iconbox-red:hover .icon path {
fill: #ff5828;
}
.services .iconbox-teal i {
color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
color: #fff;
}
.services .iconbox-teal:hover .icon path {
fill: #11dbcf;
}
/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
overflow: hidden;
background-color: #C1A1D3;
}
.specials .nav-tabs {
border: 0;
}
.specials .nav-link {
border: 0;
padding: 12px 15px;
transition: 0.3s;
color: rgb(0, 0, 0);
border-radius: 0;
border-right: 2px solid #cda45e;
font-weight: 600;
font-size: 15px;
}
.specials .nav-link:hover {
color: #f5457a;
}
.specials .nav-link.active {
color: #1a1814;
background: #f5457a;
border-color: #cda45e;
}
.specials .nav-link:hover {
border-color: #cda45e;
}
.specials .tab-pane.active {
-webkit-animation: fadeIn 0.5s ease-out;
animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
font-size: 26px;
font-weight: 600;
margin-bottom: 20px;
color: rgb(0, 0, 0);
}
.specials .details p {
color: #000000;
}
.specials .details p:last-child {
margin-bottom: 0;
}
@media (max-width: 992px) {
.specials .nav-link {
border: 0;
padding: 15px;
}
}
/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials6 {
overflow: hidden;
background-color: #A9E4D7;
}
.specials6 .nav-tabs {
border: 0;
padding: 40px;
}
.specials6 .nav-link {
border: 0;
padding: 12px 15px;
transition: 0.3s;
color: rgb(0, 0, 0);
border-radius: 0;
border-right: 2px solid #cda45e;
font-weight: 600;
font-size: 15px;
}
.specials6 .nav-link:hover {
color: #ffffff;
}
.specials6 .nav-link.active {
color: #1a1814;
background: #63B4B8;
border-color: #cda45e;
}
.specials6 .nav-link:hover {
border-color: #cda45e;
}
.specials6 .tab-pane.active {
-webkit-animation: fadeIn 0.5s ease-out;
animation: fadeIn 0.5s ease-out;
}
.specials6 .details h3 {
font-size: 26px;
font-weight: 600;
margin-bottom: 20px;
color: rgb(0, 0, 0);
}
.specials6 .details p {
color: #000000;
}
.specials6 .details p:last-child {
margin-bottom: 0;
}
@media (max-width: 992px) {
.specials6 .nav-link {
border: 0;
padding: 15px;
}
}
/* Specials1 Section */
.specials1 {
background-color: #3E065F;
padding-top: 15px;
}
.specials1 .container h2 {
text-align: center;
font-family: century gothic;
font-weight: 400;
color: #ffffff;
font-size: 38px;
}
/*--------------------------------------------------------------
# Breadcrumbs-about
--------------------------------------------------------------*/
.breadcrumbs-about {
padding: 30px 0;
background-color: #482D57;
height: 100px;
}
.breadcrumbs-about h2 {
font-size: 20px;
font-weight: 100;
color: #fff;
}
.breadcrumbs-about ol {
display: flex;
flex-wrap: wrap;
list-style: none;
margin-top: -10px;
color: #ffffff;
border-radius: 8px;
border: 3px solid #ffffff;
padding: 10px 10px;
}
.breadcrumbs-about ol a {
color: #fff;
}
.breadcrumbs-about ol li {
font-size: 18px;
font-weight: 100;
color: #ffffff;
}
.breadcrumbs-about ol li+li {
padding-left: 10px;
}
.breadcrumbs-about ol li+li::before {
display: inline-block;
padding-right: 10px;
color: #ffffff;
content: "/";
}
.breadcrumbs-about a:hover {
color: #2a6496;
}
@media (max-width: 991px) {
.breadcrumbs-about {
margin-top: 58px;
}
.breadcrumbs-about .d-flex {
display: block !important;
}
.breadcrumbs-about ol {
display: block;
}
.breadcrumbs-about ol li {
display: inline-block;
}
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us {
background-color: #916BBF;
padding: 20px;
}
.about-us .pictures img {
width: 400px;
height: 500px;
display: block;
margin: auto;
}
.about-us .content p:last-child {
margin-bottom: 0;
font-family: century gothic;
}
.about-us .content p {
font-size: 20px;
font-weight: 200;
font-family: century gothic;
text-align: justify;
}
.about-us .content p span {
font-size: 34px;
font-weight: 200;
font-family: century gothic;
}
.about-us .content h2 {
font-weight: 200;
font-family: century gothic;
text-align: center;
padding: 10px;
}
/*--------------------------------------------------------------
# program us
--------------------------------------------------------------*/
.program-us {
background-color: #BEDBBB;
padding: 20px;
}
.program-us .pictures img {
width: 400px;
height: 300px;
display: block;
margin: auto;
}
.program-us .content p:last-child {
margin-bottom: 0;
font-family: century gothic;
}
.program-us .content p {
font-size: 20px;
font-weight: 200;
font-family: century gothic;
text-align: justify;
}
.program-us .content p span {
font-size: 34px;
font-weight: 200;
font-family: century gothic;
}
.program-us .content h2 {
font-weight: 200;
font-family: century gothic;
text-align: center;
padding: 10px;
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
background-image: linear-gradient(rgb(141, 181, 150), #BEDBBB);
}
.why-us .content {
padding: 30px 100px 0 100px;
}
.why-us .content h5 {
font-weight: 400;
font-size: 34px;
color: #1E5128;
}
.why-us .content h4 {
font-size: 20px;
font-weight: 700;
margin-top: 5px;
}
.why-us .content p {
font-size: 15px;
color: #000000;
text-align: justify;
}
.why-us .img {
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
.why-us .accordion-list {
padding: 0 100px 60px 100px;
}
.why-us .accordion-list ul {
padding: 0;
list-style: none;
}
.why-us .accordion-list li+li {
margin-top: 15px;
}
.why-us .accordion-list li {
padding: 20px;
background: #9CC094;
border-radius: 4px;
}
.why-us .accordion-list a {
display: block;
position: relative;
font-family: "Poppins", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 500;
padding-right: 30px;
outline: none;
cursor: pointer;
}
.why-us .accordion-list span {
color: #1E5128;
font-weight: 600;
font-size: 18px;
padding-right: 10px;
}
.why-us .accordion-list i {
font-size: 24px;
position: absolute;
right: 0;
top: 0;
}
.why-us .accordion-list p {
margin-bottom: 0;
padding: 10px 0 0 0;
}
.why-us .accordion-list .icon-show {
display: none;
}
.why-us .accordion-list a.collapsed {
color: #1E5128;
}
.why-us .accordion-list a.collapsed:hover {
color: #1E5128;
}
.why-us .accordion-list a.collapsed .icon-show {
display: inline-block;
}
.why-us .accordion-list a.collapsed .icon-close {
display: none;
}
@media (max-width: 1024px) {
.why-us .content,
.why-us .accordion-list {
padding-left: 0;
padding-right: 0;
}
}
@media (max-width: 992px) {
.why-us .img {
min-height: 400px;
}
.why-us .content {
padding-top: 30px;
}
.why-us .accordion-list {
padding-bottom: 30px;
}
}
@media (max-width: 575px) {
.why-us .img {
min-height: 200px;
}
}
/*--------------------------------------------------------------
# Ujian
--------------------------------------------------------------*/
.ujian .content {
padding: 30px;
background: #1977cc;
border-radius: 4px;
color: #fff;
}
.ujian .content h3 {
font-weight: 700;
font-size: 34px;
margin-bottom: 30px;
}
.ujian .content p {
margin-bottom: 30px;
}
.ujian .content .more-btn {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
padding: 6px 30px 8px 30px;
color: #fff;
border-radius: 50px;
transition: all ease-in-out 0.4s;
}
.ujian .content .more-btn i {
font-size: 14px;
}
.ujian .content .more-btn:hover {
color: #1977cc;
background: #fff;
}
.ujian .icon-boxes .icon-box {
text-align: center;
border-radius: 10px;
background: #fff;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
padding: 40px 30px;
width: 100%;
}
.ujian .icon-boxes .icon-box i {
font-size: 40px;
color: #1977cc;
margin-bottom: 30px;
}
.ujian .icon-boxes .icon-box h4 {
font-size: 20px;
font-weight: 700;
margin: 0 0 30px 0;
}
.ujian .icon-boxes .icon-box p {
font-size: 15px;
color: #848484;
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.breadcrumbs {
padding: 15px 0;
background: #1bbd36;
min-height: 40px;
margin-top: 72px;
}
.breadcrumbs h2 {
font-size: 26px;
font-weight: 300;
color: #fff;
}
.breadcrumbs ol {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
margin: 0;
color: #fff;
}
.breadcrumbs ol a {
color: #fff;
}
.breadcrumbs ol li+li {
padding-left: 10px;
}
.breadcrumbs ol li+li::before {
display: inline-block;
padding-right: 10px;
color: #fff;
content: "/";
}
@media (max-width: 991px) {
.breadcrumbs {
margin-top: 58px;
}
.breadcrumbs .d-flex {
display: block !important;
}
.breadcrumbs ol {
display: block;
}
.breadcrumbs ol li {
display: inline-block;
}
}
/*--------------------------------------------------------------
# Picture (Content 3)
--------------------------------------------------------------*/
.content1 {
background-image: url('https://i.postimg.cc/0NkDJX2f/bg3.png');
background-size: cover;
padding: 20px;
}
.content1 img {
width: 550px;
height: 510px;
display: block;
margin: auto;
}
.content1 h2 {
color: rgb(0, 0, 0);
text-align: center;
font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}
.content1 span {
color: #ffffff;
font-weight: 800;
font-family: century gothic;
}
.content1 h5 {
color: #ffffff;
font-weight: 1200;
font-family: 'Rubik', sans-serif;
text-align: center;
font-size: 35px;
}
.content .icon1 img {
width: 300px;
height: 350px;
display: block;
margin: auto;
}
.content .text1 p {
text-align: justify;
position: relative;
right: 80px;
font-size: 16px;
bottom: -60px;
color: #000000;
font-weight: 500;
padding: 5px;
}
.content .icon2 img {
width: 300px;
height: 350px;
display: block;
margin: auto;
}
.content .text2 p {
text-align: justify;
position: relative;
left: 80px;
font-size: 18px;
bottom: -60px;
color: #ffffff;
font-weight: 700;
border-radius: 5px;
border: 2px dashed #ffffff;
padding: 5px;
}
.content1 .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
#hero {
height: 100vh;
text-align: center;
}
#hero .animated {
-webkit-animation: none;
animation: none;
}
#hero .hero-img {
text-align: center;
background-size: 30%;
}
#hero .hero-img img {
width: 20%;
}
}
/*--------------------------------------------------------------
# Picture (Content 4)
--------------------------------------------------------------*/
.picture h2 {
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
}
.picture p {
text-align: center;
}
.picture h6 {
text-align: center;
}
.picture .picture-item {
overflow: hidden;
border-top: 5px solid #ffae00;
border-right: 5px solid #ffae00;
border-bottom: 5px solid #ffae00;
}
.picture .picture-item img {
transition: all ease-in-out 0.4s;
}
.picture .picture-item:hover img {
transform: scale(1.1);
}
/* Tips belajar Section (Content 5)
--------------------------------*/
#features {
display: inline-block;
height: 100%;
width: 100%;
}
#features h2 {
font-family: 'century-gothic-regular', sans-serif;
}
#features .feature-block {
background: #fff none repeat scroll 0 0;
padding: 30px 20px;
margin-bottom: 30px;
transition: all 0.5s ease-in-out 0s;
}
#features .feature-block img {
height: 60px;
margin-bottom: 30px;
width: 60px;
}
#features .feature-block:hover {
box-shadow: 0 0 35px rgba(255, 190, 12, 0.884);
transition: all 0.5s ease-in-out 0s;
}
#features .feature-block h4 {
margin-bottom: 20px;
}
#features .feature-block p {
margin-bottom: 0;
}
#features .features-carousel,
.features .features-slider {
overflow: hidden;
}
#features .features-item {
box-sizing: content-box;
padding: 30px 30px 30px 60px;
margin: 30px 10px 30px 50px;
min-height: 200px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
position: relative;
}
#features .feature-item .feature-img {
width: 90px;
border-radius: 10px;
border: 6px solid #5777ba;
position: absolute;
left: -45px;
}
.features .featur-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}
.features .feature-item h4 {
font-size: 14px;
color: #999;
margin: 0;
}
.features .feature-item .quote-icon-left,
.features .feature-item .quote-icon-right {
color: #e8ecf5;
font-size: 26px;
}
.features .feature-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}
.features .feature-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
}
.features .feature-item p {
font-style: italic;
margin: 15px auto 15px auto;
}
.features .swiper-pagination {
margin-top: 20px;
position: relative;
}
.features .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #5777ba;
}
.features .swiper-pagination .swiper-pagination-bullet-active {
background-color: #5777ba;
}
/*--------------------------------------------------------------
# Counts Section (Content 6)
--------------------------------------------------------------*/
.counts {
padding: 30px 0;
background-color: #000f66;
}
.counts1 {
padding: 60px 0;
background-color: #000f66;
}
.counts .counters span {
font-size: 48px;
display: block;
color: #e6d600;
font-weight: 700;
}
.counts .counters p {
padding: 0;
margin: 0 0 20px 0;
font-family: 'century-gothic-regular', sans-serif;
font-size: 15px;
font-weight: 600;
color: #ffffff;
}
/* Bg Contact Section */
.bg-contact {
background-image: url('https://i.postimg.cc/DwnrMH5d/bg-contact.png');
background-size: cover;
padding: 20px;
}
/*--------------------------------------------------------------
# Gallery Section (Content 7)
--------------------------------------------------------------*/
.gallery {
overflow: hidden;
}
.gallery h2 {
text-align: center;
font-family: 'century-gothic-regular', sans-serif;
}
.gallery p {
text-align: center;
}
.gallery .swiper-slide {
transition: 0.3s;
}
.gallery .swiper-pagination {
margin-top: 20px;
position: relative;
}
.gallery .swiper-text h6 {
text-align: center;
}
.gallery .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #5777ba;
}
.gallery .swiper-pagination .swiper-pagination-bullet-active {
background-color: #5777ba;
}
.gallery .swiper-slide-active {
text-align: center;
}
@media (min-width: 992px) {
.gallery .swiper-wrapper {
padding: 40px 0;
}
.gallery .swiper-slide-active {
border: 6px solid #02b419;
padding: 4px;
background: #fff;
z-index: 1;
transform: scale(1.2);
margin-top: 10px;
border-radius: 25px;
}
}
/*--------------------------------------------------------------
# Testimonials (Content 8)
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer blog
--------------------------------------------------------------*/
#footer-blog {
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #009DAE;
background-size: cover;
}
#footer-blog .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-blog .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-blog .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-blog .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-blog .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-blog .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-blog .footer-top {
padding: 60px 0 30px 0;
background: #009DAE;
background-size: cover;
}
#footer-blog .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-blog .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-blog .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-blog .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-blog .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #fff;
}
#footer-blog .footer-top h4 {
font-size: 16px;
color: #fff;
position: relative;
padding-bottom: 12px;
}
#footer-blog .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-blog .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-blog .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer-blog .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-blog .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-blog .footer-top .footer-links ul a {
color: #fff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-blog .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-blog .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #9DF5EC;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-blog .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-blog .copyright {
text-align: center;
float: center;
color: #fff;
font-weight: 400;
}
#footer-blog .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-blog .copyright,
#footer-blog .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer teacher
--------------------------------------------------------------*/
#footer-teacher {
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #009DAE;
background-size: cover;
}
#footer-teacher .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-teacher .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-teacher .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-teacher .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-teacher .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-teacher .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-teacher .footer-top {
padding: 60px 0 30px 0;
background: #009DAE;
background-size: cover;
}
#footer-teacher .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-teacher .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-teacher .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-teacher .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-teacher .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #fff;
}
#footer-teacher .footer-top h4 {
font-size: 16px;
color: #fff;
position: relative;
padding-bottom: 12px;
}
#footer-teacher .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-teacher .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-teacher .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer-teacher .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-teacher .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-teacher .footer-top .footer-links ul a {
color: #fff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-teacher .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-teacher .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #A9E4D7;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-teacher .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-teacher .copyright {
text-align: center;
float: center;
color: #fff;
font-weight: 400;
}
#footer-teacher .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-teacher .copyright,
#footer-teacher .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer gallery
--------------------------------------------------------------*/
#footer-gallery {
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #E1578A;
background-size: cover;
}
#footer-gallery .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-gallery .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-gallery .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-gallery .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-gallery .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #F38BA0;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-gallery .footer-newsletter form input[type=submit]:hover {
background: #F38BA0;
}
#footer-gallery .footer-top {
padding: 60px 0 30px 0;
background: #E1578A;
background-size: cover;
}
#footer-gallery .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-gallery .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-gallery .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-gallery .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-gallery .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #fff;
}
#footer-gallery .footer-top h4 {
font-size: 16px;
color: #fff;
position: relative;
padding-bottom: 12px;
}
#footer-gallery .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-gallery .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-gallery .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer-gallery .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-gallery .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-gallery .footer-top .footer-links ul a {
color: #fff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-gallery .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-gallery .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #F38BA0;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-gallery .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-gallery .copyright {
text-align: center;
float: center;
color: #fff;
font-weight: 400;
}
#footer-gallery .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-gallery .copyright,
#footer-gallery .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer-program {
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
background: #8DB596;
background-size: cover;
}
#footer-program .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-program .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-program .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-program .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-program .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-program .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-program .footer-top {
padding: 60px 0 30px 0;
background: #8DB596;
background-size: cover;
}
#footer-program .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-program .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-program .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-program .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-program .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #fff;
}
#footer-program .footer-top h4 {
font-size: 16px;
color: #fff;
position: relative;
padding-bottom: 12px;
}
#footer-program .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-program .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-program .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer-program .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-program .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-program .footer-top .footer-links ul a {
color: #fff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-program .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-program .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #9CC094;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-program .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-program .copyright {
text-align: center;
float: center;
color: #fff;
font-weight: 400;
}
#footer-program .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-program .copyright,
#footer-program .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer About
--------------------------------------------------------------*/
#footer-about {
color: #ffffff;
font-size: 14px;
background-color: #3E065F;
}
#footer-about .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-about .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-about .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-about .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-about .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-about .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-about .footer-top {
padding: 60px 0 30px 0;
background-color: #3E065F;
background-size: cover;
}
#footer-about .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-about .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-about .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-about .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-about .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #ffffff;
}
#footer-about .footer-top h4 {
font-size: 16px;
color: #ffffff;
position: relative;
padding-bottom: 12px;
}
#footer-about .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-about .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-about .footer-top .footer-links ul i {
padding-right: 2px;
color: #ffffff;
font-size: 18px;
line-height: 1;
}
#footer-about .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-about .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-about .footer-top .footer-links ul a {
color: #ffffff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-about .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-about .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #C1A1D3;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-about .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-about .copyright {
text-align: center;
float: center;
color: #ffffff;
font-weight: 400;
}
#footer-about .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-about .copyright,
#footer-about .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*--------------------------------------------------------------
# Footer Programs
--------------------------------------------------------------*/
#footer-programs {
color: #ffffff;
font-size: 14px;
background-color: #6B4F4F;
}
#footer-programs .footer-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-programs .footer-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-programs .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-programs .footer-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-programs .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-programs .footer-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-programs .footer-top {
padding: 60px 0 30px 0;
background-color: #6B4F4F;
background-size: cover;
}
#footer-programs .footer-top .footer-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-programs .footer-top .footer-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-programs .footer-top .footer-contact p {
text-align: left;
font-weight: 100;
}
#footer-programs .footer-top .footer-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #fff;
}
#footer-programs .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #ffffff;
}
#footer-programs .footer-top h4 {
font-size: 16px;
color: #ffffff;
position: relative;
padding-bottom: 12px;
}
#footer-programs .footer-top .footer-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-programs .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-programs .footer-top .footer-links ul i {
padding-right: 2px;
color: #ffffff;
font-size: 18px;
line-height: 1;
}
#footer-programs .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-programs .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer-programs .footer-top .footer-links ul a {
color: #ffffff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-programs .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-programs .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: #5777ba;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-programs .footer-top .social-links a:hover {
background: #000000;
color: #fff;
text-decoration: none;
}
#footer-programs .copyright {
text-align: center;
float: center;
color: #ffffff;
font-weight: 400;
}
#footer-programs .credits {
float: right;
text-align: center;
font-size: 13px;
color: #fff;
}
@media (max-width: 768px) {
#footer-programs .copyright,
#footer-programs .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/*Footer contact*/
/*========================================*/
#footer-contact {
background: rgb(255, 255, 255);
padding: 0 0 30px 0;
color: #ffffff;
font-size: 14px;
background-color: #181D31;
background-size: cover;
}
#footer-contact .footer-contact-newsletter {
padding: 50px 0;
background: #eff2f8;
text-align: center;
font-size: 15px;
}
#footer-contact .footer-contact-newsletter h4 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 0;
line-height: 1;
color: #ffffff;
}
#footer-contact .footer-contact-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px #000000;
text-align: left;
}
#footer-contact .footer-contact-newsletter form input[type=email] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer-contact .footer-contact-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: #5777ba;
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer-contact .footer-contact-newsletter form input[type=submit]:hover {
background: #415f9d;
}
#footer-contact .footer-contact-top {
padding: 60px 0 30px 0;
background-color: #181D31;
background-size: cover;
}
#footer-contact .footer-contact-top .footer-contact-contact {
margin-bottom: 30px;
font-weight: 100;
}
#footer-contact .footer-contact-top .footer-contact-contact h3 {
text-align: left;
font-weight: 100;
}
#footer-contact .footer-contact-top .footer-contact-contact p {
text-align: left;
font-weight: 100;
}
#footer-contact .footer-contact-top .footer-contact-contact h4 {
font-size: 22px;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
color: #ffffff;
}
#footer-contact .footer-contact-top .footer-contact-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: 'century-gothic-regular', sans-serif;
color: #ffffff;
}
#footer-contact .footer-contact-top h4 {
font-size: 16px;
color: #ffffff;
position: relative;
padding-bottom: 12px;
}
#footer-contact .footer-contact-top .footer-contact-links {
margin-bottom: 30px;
font-weight: 100;
}
#footer-contact .footer-contact-top .footer-contact-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer-contact .footer-contact-top .footer-contact-links ul i {
padding-right: 2px;
color: #ffffff;
font-size: 18px;
line-height: 1;
}
#footer-contact .footer-contact-top .footer-contact-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer-contact .footer-contact-top .footer-contact-links ul li:first-child {
padding-top: 0;
}
#footer-contact .footer-contact-top .footer-contact-links ul a {
color: #ffffff;
transition: 0.3s;
display: inline-block;
line-height: 1;
}
#footer-contact .footer-contact-top .footer-contact-links ul a:hover {
text-decoration: none;
color: #5777ba;
}
#footer-contact .footer-contact-top .social-links a {
font-size: 18px;
display: inline-block;
background: #FFCE45;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer-contact .footer-contact-top .social-links a:hover {
background: #ffffff;
color: #fff;
text-decoration: none;
}
#footer-contact .copyright {
text-align: center;
float: center;
color: #ffffff;
font-weight: 400;
}
#footer-contact .credits {
float: right;
text-align: center;
font-size: 13px;
color: #ffffff;
}
@media (max-width: 768px) {
#footer-contact .copyright,
#footer-contact .credits {
float: none;
text-align: center;
padding: 5px 0;
}
}
/* Contact fiture */
.ftco-section {
padding: 7em 0;
}
.ftco-no-pt {
padding-top: 0;
}
.ftco-no-pb {
padding-bottom: 0;
}
.heading-section {
font-size: 28px;
font-family: century gothic;
color: #fff;
}
.img {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.form-group {
margin-top: 15px;
}
.form-control {
height: 44px;
background: #fff;
color: rgba(0, 0, 0, 0.8);
font-size: 14px;
border-radius: 2px;
-webkit-box-shadow: none !important;
box-shadow: none !important;
border: none;
}
.form-control::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: rgba(0, 0, 0, 0.3) !important;
}
.form-control::-moz-placeholder {
/* Firefox 19+ */
color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:-ms-input-placeholder {
/* IE 0+ */
color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:-moz-placeholder {
/* Firefox 18- */
color: rgba(0, 0, 0, 0.3) !important;
}
.form-control:focus,
.form-control:active {
border-color: #FFCE45 !important;
}
textarea.form-control {
height: inherit !important;
}
.wrapper {
width: 100%;
}
.contact-wrap {
background: #e8edf0;
}
.dbox {
width: 100%;
margin-bottom: 25px;
padding: 0 20px;
}
@media (min-width: 768px) {
.dbox {
margin-bottom: 0;
padding: 0;
}
}
.dbox p {
margin-bottom: 0;
color: #fff;
}
.dbox p span {
font-weight: 500;
color: #fff;
}
.dbox p a {
color: #FFCE45;
}
.dbox .icon {
width: 60px;
height: 60px;
border-radius: 50%;
background: #FFCE45;
margin: 0 auto;
margin-bottom: 20px;
}
.dbox .icon span {
font-size: 20px;
color: #fff;
}
.dbox .text {
width: 100%;
}
.btn {
padding: 12px 16px;
cursor: pointer;
border-width: 1px;
border-radius: 5px;
font-size: 14px;
font-weight: 400;
-webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
position: relative;
margin-bottom: 20px;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
.btn {
-webkit-transition: none;
-o-transition: none;
transition: none;
}
}
.btn:hover,
.btn:active,
.btn:focus {
outline: none !important;
-webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
-moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
}
.btn.btn-primary {
background: #2553b8 !important;
border-color: #2553b8 !important;
color: #fff;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
border-color: #1c408e !important;
background: #1c408e !important;
}
.contactForm .label {
color: #000;
text-transform: uppercase;
font-size: 12px;
font-weight: 600;
}
.contactForm .form-control {
border: none;
}
#map {
width: 100%;
}
@media (max-width: 767.98px) {
#map {
height: 300px;
}
}
#contactForm .error {
color: red;
font-size: 12px;
}
#contactForm .form-control {
font-size: 16px;
}
#message {
resize: vertical;
}
#form-message-warning,
#form-message-success {
display: none;
}
#form-message-warning {
color: red;
}
#form-message-success {
color: #28a745;
font-size: 18px;
font-weight: 500;
}
.submitting {
float: left;
width: 100%;
padding: 10px 0;
display: none;
font-size: 16px;
font-weight: 500;
color: #2553b8;
}
| 0.543348 | 0.076477 |
html, body{
font-size: 100%;
font-family: 'Open Sans', sans-serif;
background:#ffffff;
margin: 0;
}
p,ul li,ol li{
margin:0;
font-size:14px;
}
h1,h2,h3,h4,h5,h6{
font-family: 'Playfair Display', serif;
margin:0;
}
ul,label{
margin:0;
padding:0;
}
body a:hover{
text-decoration:none;
}
input[type="submit"],input[type="reset"],a,.w3l_banner_bottom_grid1 i,.w3layouts_more a i{
-webkit-transition: 0.5s ease-in;
-moz-transition: 0.5s ease-in;
-ms-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
transition:0.5s ease-in;
}
a:focus{
outline:none;
}
/*-- banner --*/
.banner{
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:800px;
position: relative;
}
.banner1{
background:url(../images/banner.jpg) no-repeat 0px -240px;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
min-height:300px;
position: relative;
}
/*-- nav --*/
.navbar-default {
background: none;
border: none;
}
.navbar {
margin-bottom: 0;
}
.navbar-collapse {
padding: 0;
}
.navbar-right {
margin-right: 0;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color:#f5232e;
background:none;
}
.navbar-default .navbar-nav > .active > a:before{
background:#fff;
}
.navbar-default .navbar-nav > li > a {
font-weight: 600;
letter-spacing: 1px;
}
.navbar-nav > li > a {
margin: 0 2em;
padding:.7em 0;
text-transform: uppercase;
}
.navbar-default .navbar-nav > li > a:hover{
color:#f5232e;
}
.navbar-default .navbar-nav > li > a:focus {
color: #fff;
outline:none;
}
nav.navbar.navbar-default {
background: none;
padding:1em 1em 0;
}
.navbar-right {
margin:3.5em 0 0;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
color:#fff;
background: none;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
}
.navbar-default .navbar-nav > .active.open > a:focus {
background:transparent;
color: #fff;
}
.navbar-default .navbar-brand,.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #fff;
}
.navbar-brand {
height: 120px;
padding: 0 0 0 1.7em;
font-weight: 600;
font-size: 1em;
line-height: 150px;
letter-spacing: 2px;
text-transform: uppercase;
background: url(../images/1.png) no-repeat 0px 0px;
}
.navbar-brand span{
color:#f5232e;
border: 1px solid #fff;
text-align: center;
font-size: .7em;
padding: .3em .5em;
}
.agile_short_dropdown {
border-radius: 0;
background: #ffffff;
text-align: center;
padding:0;
border: none;
}
.agile_short_dropdown li a{
text-transform:uppercase;
color:#212121;
font-size:13px;
font-weight:600;
padding: .8em 0;
}
.agile_short_dropdown li a:before,.agile_short_dropdown li a:after{
display:none;
}
.agile_short_dropdown > li > a:hover{
color: #fff;
text-decoration: none;
background-color:#35e034;
}
.link-effect-8 ul.nav li a {
-moz-transition: ease-out 0.3s 0.1s;
-o-transition: ease-out 0.3s 0.1s;
-webkit-transition: ease-out 0.3s;
-webkit-transition-delay: 0.1s;
transition: ease-out 0.3s 0.1s;
}
.link-effect-8 ul.nav li a::before {
height: 2px;
width: 100%;
background: #797878;
content: "";
position: absolute;
left: 0;
top: 0;
visibility: hidden;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.link-effect-8 ul.nav li a::after {
height: 2px;
width: 100%;
content: "";
position: absolute;
left: 0;
top: 100%;
visibility: hidden;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.link-effect-8 ul.nav li a:hover::before,.navbar-default .navbar-nav > .active > a::before {
visibility: visible;
top: 100%;
background: white;
}
.link-effect-8 ul.nav li a:hover::after,.navbar-default .navbar-nav > .active > a::after {
visibility: visible;
top: 0;
background: white;
}
/*-- //nav --*/
.w3_agile_banner_info{
margin:10em 0 0;
}
.w3_agile_banner_info h2{
font-size:4em;
text-transform:capitalize;
color:#fff;
line-height:1.5em;
}
.w3_agile_banner_info h2 i{
color:#35e034;
}
.w3_agile_banner_info h2 span{
display: block;
padding-left: 3em;
position:relative;
}
.w3_agile_banner_info h2 span:after{
content: '';
background: #f5232e;
height: 2px;
width: 28%;
position: absolute;
bottom: 45%;
right: 36%;
}
.agile_banner_social{
position:absolute;
bottom:5%;
right:5%;
}
.agile_banner_social ul li{
display: block;
margin: 1em 0;
}
.agileits_social_list li a{
width: 30px;
height: 30px;
color: #fff;
text-align: center;
display: inline-block;
font-size: 12px;
border: 2px dotted #f5232e;
border-radius: 25px;
}
.agileits_social_list li a i{
line-height:2.4em;
}
.agileits_social_list li a:hover{
color:#fff;
}
a.w3_agile_facebook:hover{
background:#3b5998;
border-color:#3b5998;
}
a.agile_twitter:hover{
background:#1da1f2;
border-color:#1da1f2;
}
a.w3_agile_dribble:hover{
background:#ea4c89;
border-color:#ea4c89;
}
a.w3_agile_vimeo:hover{
background:#1ab7ea;
border-color:#1ab7ea;
}
/*-- //banner --*/
/*-- banner-bottom --*/
.banner-bottom,.statistics,.testimonials,.footer,.service-bottom{
padding:5em 0;
}
.agileinfo_banner_bottom_grid_main:before,.agileinfo_banner_bottom_grid_main:after{
content: '';
position: absolute;
top: 50%;
width: 34%;
height: 2px;
background: #212121;
}
.agileinfo_banner_bottom_grid_main:before{
left:0%;
}
.agileinfo_banner_bottom_grid_main:after{
right:0%;
}
.wthree_banner_bottom_grid1{
width: 95px;
height: 60px;
border: 2px solid #212121;
border-radius: 50px;
text-align: center;
margin: 0 auto;
}
.agileinfo_banner_bottom_grid_main{
position:relative;
}
.wthree_banner_bottom_grid1 p{
font-size: 1.8em;
color: #f5232e;
line-height: 1.9em;
}
.w3_agileits_banner_bottom_grid{
padding:0;
}
/*-- layla --*/
.agileits_grid {
position: relative;
margin: 1em auto 0;
width: 95%;
}
.agileits_grid figure {
position: relative;
overflow: hidden;
height: 308px;
text-align: center;
}
.agileits_grid:hover figure{
background: #000000;
}
.agileits_grid figure img {
position: relative;
}
.agileits_grid figure figcaption {
padding: 2em;
text-transform: uppercase;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.agileits_grid figure figcaption::before,
.agileits_grid figure figcaption::after {
pointer-events: none;
}
.agileits_grid figure figcaption,
.agileits_grid figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after {
position: absolute;
content: '';
opacity: 0;
}
figure.effect-layla figcaption::before {
top: 50px;
right: 30px;
bottom: 50px;
left: 30px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: scale(0,1);
transform: scale(0,1);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
figure.effect-layla figcaption::after {
top: 30px;
right: 50px;
bottom: 30px;
left: 50px;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
-webkit-transform: scale(1,0);
transform: scale(1,0);
-webkit-transform-origin: 100% 0;
transform-origin: 100% 0;
}
figure.effect-layla h3 {
padding-top: 2.6em;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
font-size: 1.5em;
color: #35e034;
font-weight: 600;
opacity: 0;
}
figure.effect-layla p {
padding: 1em 2em 0;
text-transform: none;
color: #fff;
line-height: 2em;
opacity: 0;
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0);
}
figure.effect-layla ul{
opacity: 0;
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0);
padding: 7.5em 0 0;
}
figure.effect-layla h3 {
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
}
figure.effect-layla img,figure.effect-layla h3,
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after,
figure.effect-layla p,figure.effect-layla ul {
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
}
figure.effect-layla:hover img {
opacity: 0.7;
-webkit-transform:translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
}
figure.effect-layla:hover figcaption::before,
figure.effect-layla:hover figcaption::after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
figure.effect-layla:hover h3,
figure.effect-layla:hover p,figure.effect-layla:hover ul {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
figure.effect-layla:hover figcaption::after,
figure.effect-layla:hover h3,
figure.effect-layla:hover p,
figure.effect-layla:hover img,figure.effect-layla:hover ul {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
/*-- //layla --*/
/*-- //banner-bottom --*/
/*-- statistics --*/
.statistics{
background: url(../images/6.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-attachment:fixed;
}
.w3_statistics_grid_left_grid{
position:relative;
}
.w3ls_play_icon{
position: absolute;
bottom: 45%;
left: 45%;
font-size: 1.5em;
width: 70px;
height: 40px;
background: #f5232e;
color: #fff;
text-align: center;
border-radius: 5px;
}
.w3ls_play_icon i{
line-height:1.6em;
}
.w3ls_play_icon:hover,.w3ls_play_icon:focus{
color:#fff;
}
.w3layouts_statistics_grid_right h4{
font-size: 1.5em;
line-height: 1.5em;
color: #fff;
text-transform: capitalize;
margin-bottom: 2em;
}
.w3_stats_grid {
text-align: center;
}
.w3layouts_stats_grid1{
width:80px;
height:80px;
background:#fff;
border-radius:80px;
margin:2em auto 0;
text-align:center;
}
.w3layouts_stats_grid1 i{
font-size: 2em;
color: #5ec05d;
line-height: 2.5em;
}
/*-- odometer --*/
.odometer{
font-size: 3em;
color: #fff;
font-family: 'Open Sans', sans-serif;
font-weight:600;
}
.w3_stats_grid p{
font-size:1em;
color:#fff;
margin:1em 0 0;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-car {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
*display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-car .odometer-digit .odometer-digit-spacer {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-car .odometer-digit .odometer-digit-spacer {
*display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
text-align: left;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-car .odometer-digit .odometer-ribbon {
display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-car .odometer-digit .odometer-ribbon-inner {
display: block;
-webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-car .odometer-digit .odometer-value {
display: block;
-webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-car .odometer-digit .odometer-value.odometer-last-value {
position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
-moz-transition: -moz-transform 2s;
-ms-transition: -ms-transform 2s;
-o-transition: -o-transform 2s;
transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
-moz-transition: -moz-transform 2s;
-ms-transition: -ms-transform 2s;
-o-transition: -o-transform 2s;
transition: transform 2s;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
padding: 0 0.1em;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
left: 0.09em;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
-webkit-transition-timing-function: linear;
-moz-transition-timing-function: linear;
-ms-transition-timing-function: linear;
-o-transition-timing-function: linear;
transition-timing-function: linear;
}
/*-- //odometer --*/
/*-- portfolio --*/
.agileits_portfolio_grid:before {
content: "\f06e";
font-size: 1.5em;
width: 60px;
height: 60px;
line-height: 2.9em;
background-color: #f5232e;
font-family: FontAwesome;
color: #fff;
text-align: center;
position: absolute;
z-index: 10;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
-moz-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
-ms-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
-moz-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
-ms-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
-o-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
opacity: 0;
filter: alpha(opacity=0);
}
.agileits_portfolio_grid:after {
background-color: rgba(94, 192, 93, 0.44);
content: ' ';
position: absolute;
z-index: 1;
top: 0;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
-webkit-transition: opacity .3s ease;
-moz-transition: opacity .3s ease;
-ms-transition: opacity .3s ease;
-o-transition: opacity .3s ease;
transition: opacity .3s ease;
}
.agileinfo_portfolio_grid:hover .agileits_portfolio_grid:after {
opacity: 1;
}
.agileinfo_portfolio_grid:hover .agileits_portfolio_grid:before {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translateX(-50%) translateY(-50%) scale(1,1);
-moz-transform: translateX(-50%) translateY(-50%) scale(1,1);
-ms-transform: translateX(-50%) translateY(-50%) scale(1,1);
transform: translateX(-50%) translateY(-50%) scale(1,1);
-webkit-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
-moz-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
-ms-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
-o-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
}
/*--flexisel--*/
.flex-slider{
background:#222227;
padding: 70px 0 165px 0;
}
#flexiselDemo1 {
display: none;
}
.nbs-flexisel-container {
position: relative;
max-width: 100%;
}
.nbs-flexisel-ul {
position: relative;
width: 9999px;
margin: 0px;
padding: 0px;
list-style-type: none;
}
.nbs-flexisel-inner {
overflow: hidden;
margin: 0 auto;
padding:0;
}
.nbs-flexisel-item {
float: left;
margin: 0;
padding: 0px;
position: relative;
line-height: 35px;
}
.nbs-flexisel-item > img {
cursor: pointer;
position: relative;
}
/*---- Nav ---*/
.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
width: 40px;
height: 40px;
position: absolute;
cursor: pointer;
z-index: 100;
background:none;
top: -5% !important;
border-radius: 5px;
display:none;
}
.nbs-flexisel-nav-left {
left:91%;
}
.nbs-flexisel-nav-right {
right: 1.2%;
background:none;
}
/*--//flexisel--*/
/*-- //portfolio --*/
/*-- testimonials --*/
.testimonials {
background: url(../images/11.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-attachment: fixed;
}
.wthree_head{
position: relative;
font-size: 2em;
font-weight: 600;
color: #fff;
text-align: center;
padding-bottom:.8em;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom:.5em;
}
.wthree_head:before,.wthree_head:after{
position:absolute;
background:#5ec05d;
height:2px;
content:'';
}
.wthree_head:before{
width: 11%;
bottom: 8%;
left: 44.5%;
}
.wthree_head:after{
width: 18%;
right: 41%;
bottom: 0%;
}
.agileits_w3layouts_para{
text-align:center;
color:#fff;
line-height:2em;
}
.w3_testimonials_grids{
margin:3em 0 0;
}
.w3_agileits_testimonials_grid{
text-align:center;
}
.w3_agileits_testimonials_grid img{
margin:0 auto;
}
.w3_agileits_testimonials_grid h4{
margin:1em 0 1.5em;
color:#fff;
font-size:1em;
}
.w3_agileits_testimonials_grid span{
color:#f5232e;
}
.w3_agileits_testimonials_grid p{
color: #a7a7a7;
line-height: 2em;
width: 80%;
margin: 0 auto;
}
.owl-carousel .owl-item img{
visibility: hidden;
}
.owl-carousel .owl-item.active img {
visibility: visible;
}
.owl-carousel .owl-item{
opacity: 0.4;
padding:1em;
}
.owl-carousel .owl-item.active{
opacity:1;
border: 1px solid #fff;
}
/*-- //testimonials --*/
/*-- team --*/
.agile_head1{
color:#212121;
}
.w3_agile_para{
color:#999;
}
.w3_team_grid1 {
width: 100% !important;
margin: 0 !important;
}
.w3_team_grid1 figure {
height: 353px !important;
}
.w3_team_grid1 ul li{
display:inline-block;
}
.w3layouts_team_grid h4{
font-size: 1em;
color: #212121;
margin: 1em 0 0.5em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 5px;
}
.w3layouts_team_grid p{
color:#f5232e;
}
.w3_agile_turpis{
margin: 2em auto 0;
text-align: center;
color: #999;
line-height: 2em;
width: 70%;
position: relative;
z-index: 1;
}
.w3_agile_turpis:before{
content: "\f10d";
font-family: FontAwesome;
position: absolute;
top: 0%;
left: 5%;
font-size: 5em;
color: #ececec;
z-index: -1;
}
/*-- //team --*/
/*-- footer --*/
.footer{
background: url(../images/16.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-attachment: fixed;
}
.footer h2 {
text-align: center;
width: 32%;
margin: 0 auto;
}
.footer h2 a{
text-decoration: none;
padding: 0 0 0 1.2em;
font-weight: 600;
font-size: 1.5em;
line-height: 115px;
letter-spacing: 2px;
text-transform: uppercase;
background: url(../images/1.png) no-repeat 0px 0px;
color: #fff;
display: block;
text-align: center;
}
.footer h2 a span {
color: #f5232e;
border: 1px solid #fff;
text-align: center;
font-size: .7em;
padding: .3em .5em;
}
.footer h3{
text-align: center;
font-size: 2em;
color: #fff;
margin: 1.5em auto;
letter-spacing: 5px;
width: 40%;
border-top: 1px solid;
border-bottom: 1px solid;
padding: .5em 0;
}
.footer form{
width: 60%;
margin: 0 auto;
padding: 2em;
background: rgba(245, 35, 46, 0.4);
}
.footer input[type="email"] {
outline: none;
padding: 15px;
font-size: 1em;
color: #999;
width: 84.1%;
background: #fff;
border: none;
font-weight: 600;
}
.footer input[type="submit"] {
outline: none;
width: 15%;
background: url(../images/9.png) no-repeat center center #5ec05d;
text-transform: uppercase;
border: none;
padding: 15px 0;
}
.footer input[type="submit"]:hover{
background-color:#f5232e;
}
.agileits_w3layouts_nav_left{
float:left;
margin-top: .5em;
}
.agileits_w3layouts_nav_left ul li{
display:inline-block;
margin-right:4em;
}
.agileits_w3layouts_nav_left ul li a{
color: #fff;
text-decoration: none;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
}
.agileits_w3layouts_nav{
margin:4em 0;
}
.agileits_w3layouts_nav_left ul li.active a,.agileits_w3layouts_nav_left ul li a:hover,.footer p a:hover{
color:#f5232e;
}
.agileits_w3layouts_nav_right{
float:right;
}
.agileits_w3layouts_nav_right ul li{
display: inline-block;
margin-left: 1em;
}
.footer p{
padding:1em 0;
text-align:center;
border-top:1px solid #fff;
border-bottom:1px solid #fff;
color:#fff;
line-height: 2em;
}
.footer p a{
text-decoration:none;
color:#5ec05d;
}
/*-- //footer --*/
/*-- to-top --*/
#toTop {
display: none;
text-decoration: none;
position: fixed;
bottom: 20px;
right: 2%;
overflow: hidden;
z-index: 999;
width: 32px;
height: 32px;
border: none;
text-indent: 100%;
background: url(../images/arrow.png) no-repeat 0px 0px;
}
#toTopHover {
width: 32px;
height: 32px;
display: block;
overflow: hidden;
float: right;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
}
/*-- //to-top --*/
/*-- services --*/
.w3ls_services_grid_right_left img{
margin:0 auto;
}
.agile_services_grid_right{
padding:0;
}
.w3ls_services_grid_right_right h4{
text-transform: capitalize;
font-size: 1.3em;
color: #212121;
font-weight: 600;
padding-bottom: 1em;
position: relative;
letter-spacing: 3px;
}
.w3ls_services_grid_right_right h4 span{
color:#f5232e;
}
.w3ls_services_grid_right_right h4:after{
content:'';
background:#5ec05d;
height:2px;
width:30%;
position:absolute;
bottom:0%;
left:0%;
}
.w3ls_services_grid_right_right p{
color:#999;
line-height:2em;
margin:1em 0 0;
}
.w3_services_grid_right_grid:nth-child(2){
margin:2em 0;
}
.agileinfo_services_grid_left_grid_left {
padding-left: 0;
padding-right: .5em;
}
.agileinfo_services_grid_left_grid_right {
padding-right: 0;
padding-left: .5em;
}
.wthree_services_grid_left_grid {
margin-bottom: 1em;
}
/*-- //services --*/
/*-- service-bottom --*/
.service-bottom{
background: url(../images/6.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-attachment: fixed;
text-align:center;
}
.service-bottom h3{
font-size: 2em;
letter-spacing: 6px;
color: #fff;
padding-bottom: 1em;
position: relative;
text-transform: uppercase;
}
.service-bottom h3:after{
content: '';
background: #f5232e;
width: 15%;
left: 43%;
position: absolute;
bottom: 0%;
height: 2px;
}
.service-bottom p{
margin:1em 0 3em;
color:#fff;
font-size:1em;
text-transform:capitalize;
font-weight:600;
}
.service-bottom ul{
width:45%;
margin:0 auto;
}
.service-bottom ul li {
list-style-type: none;
margin-bottom: 1em;
color: #fff;
position: relative;
text-align: left;
font-size:1em;
}
.service-bottom ul li span {
width: 70%;
display: inline-block;
}
.service-bottom ul li i {
position: absolute;
left: 50%;
font-style: normal;
}
.service-bottom1{
padding:3em 0;
background:#5ec05d;
}
.agileits_service_bottom1_left{
float:left;
}
.agileits_service_bottom1_right{
float:right;
}
.agileits_service_bottom1_left h3{
font-size:2em;
color:#212121;
text-transform:capitalize;
}
.w3layouts_more a{
padding: 10px 30px;
background: #ffffff;
color: #f5232e;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 3px;
border-bottom: 2px solid #505050;
border-radius: 5px;
display: block;
}
.w3layouts_more a:hover{
background:#f5232e;
color:#fff;
}
/*-- //service-bottom --*/
/*-- bootstrap-pop-up --*/
.modal-header {
font-size: 2em;
color: #fff;
text-align: center;
text-transform: capitalize;
background:#f5232e;
border-bottom: none;
letter-spacing: 10px;
font-family:'Playfair Display', serif;
}
.close {
opacity: 1;
}
.w3_modal_body_right h4{
text-transform: capitalize;
font-size: 1.5em;
color: #212121;
line-height: 1.5em;
margin: 1.5em 0 1em;
letter-spacing: 4px;
}
.modal-body p {
color: #999;
margin: 0 !important;
line-height: 2em;
}
.modal-body p i {
display: block;
margin: 1.5em 0;
color: #212121;
font-weight: 600;
}
.modal-body {
padding:0;
}
.modal-content {
border-radius: 0;
}
button.close {
font-size: 1.2em;
color: #6d0507;
outline: none;
}
.modal-dialog {
width: 845px;
}
.w3_modal_body_left {
padding-left: 0;
}
/*-- //bootstrap-pop-up --*/
/*-- classes --*/
.agile_classes_grid1_left h4{
font-size: 1.3em;
color: #212121;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 3px;
}
.agile_classes_grid1_left p{
color:#999;
line-height:2em;
margin:1em 0 0;
}
.agileits_w3layouts_classes_grid1_right{
width: 80px;
height: 80px;
border-radius: 80px;
text-align: center;
background: #f5232e;
margin: 0 auto;
}
.agileits_w3layouts_classes_grid1_right i{
line-height:2.4em;
font-size:2em;
color:#fff;
}
.agile_classes_grid1{
margin-top:3em;
}
.w3_agile_classes_grid {
padding-top: 5.5em;
}
.w3_agile_classes_grid_middle img {
margin: 0 auto;
}
/*-- //classes --*/
/*-- mail --*/
.w3l_contact_grid_left{
padding:0;
}
.w3l_contact_grid_left span{
color:#f5232e;
font-size: 1.5em;
}
.w3l_contact_grid_right ul li{
list-style-type:none;
color:#999;
}
.w3l_contact_grid_right ul li:first-child{
margin:0 0 1em;
}
.agileits_w3layouts_address{
margin:2em 0;
}
.w3l_contact_grid_right ul li a{
color: #212121;
text-decoration: none;
display: block;
text-decoration:none;
}
.w3l_contact_grid_right ul li a:hover{
color:#5ec05d;
}
.w3_contact_grid input[type="text"],.w3_contact_grid input[type="email"],.w3_contact_grid textarea{
outline: none;
border: 1px solid #dddddd;
width: 100%;
background: none;
color: #999;
font-size: 14px;
padding: 15px;
}
.wthree_contact_grid_left input[type="text"]:nth-child(4) {
margin-top: .5em;
}
.w3_contact_grid textarea{
min-height:175px;
resize:none;
margin:0 0 .2em;
}
.w3_contact_grid input[type="email"]{
margin:.5em 0;
}
.w3_contact_grid input[type="submit"]{
outline: none;
border: none;
width: 100%;
background: #f5232e;
color: #fff;
font-size: 1em;
text-transform: uppercase;
padding: 12px 0px;
}
.w3_contact_grid input[type="submit"]:hover{
background:#27B311;
}
.agileinfo_map{
width:100%;
min-height:400px;
}
/*-- //mail --*/
/*-- icons --*/
ul.bs-glyphicons-list li: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;
}
ul.bs-glyphicons-list li:hover span {
color: #fff;
}
.codes a {
color: #999;
}
.row.fontawesome-icon-list {
margin: 0;
}
.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;
}
.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;
}
.icon-box:hover i.fa {
color:#fff !important;
}
.icon-box:hover a.agile-icon {
color:#fff !important;
}
.codes .bs-glyphicons li {
float: left;
width: 12.5%;
height: 115px;
padding: 10px;
line-height: 1.4;
text-align: center;
font-size: 12px;
list-style-type: none;
}
.codes .bs-glyphicons .glyphicon {
margin-top: 5px;
margin-bottom: 10px;
font-size: 24px;
}
.codes .glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: 400;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #777;
}
.codes .bs-glyphicons .glyphicon-class {
display: block;
text-align: center;
word-wrap: break-word;
}
h3.icon-subheading {
font-size: 25px;
color:#f5232e !important;
margin: 30px 0 15px;
}
h3.agileits-icons-title {
text-align: center;
font-size: 30px;
color: #000;
}
.icons a {
color: #999;
}
.icon-box i {
margin-right: 10px !important;
font-size: 20px !important;
color: #282a2b !important;
}
.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%;
cursor: pointer;
}
.bs-glyphicons .glyphicon {
margin-top: 5px;
margin-bottom: 10px;
font-size: 24px;
color: #282a2b;
}
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: 400;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #777;
}
.bs-glyphicons .glyphicon-class {
display: block;
text-align: center;
word-wrap: break-word;
}
@media (max-width:1080px){
.icon-box{
width: 33.33%;
}
}
@media (max-width:991px){
h3.agileits-icons-title {
font-size: 28px;
}
h3.icon-subheading {
font-size: 22px;
}
.icon-box {
width: 50%;
}
}
@media (max-width:768px){
h3.agileits-icons-title {
font-size: 28px;
}
h3.icon-subheading {
font-size: 25px;
}
.row {
margin-right: 0;
margin-left: 0;
}
.icon-box {
margin: 0;
}
}
@media (max-width: 736px){
.icon-box {
float: left;
}
}
@media (max-width: 640px){
.icon-box {
float: left;
width: 50%;
}
h3.icon-subheading {
font-size: 22px;
}
}
@media (max-width: 480px){
.bs-glyphicons li {
width: 31%;
}
.icon-box {
float: none;
width: 100%;
}
}
@media (max-width: 414px){
h3.agileits-icons-title {
font-size: 23px;
}
h3.icon-subheading {
font-size: 18px;
}
.bs-glyphicons li {
width: 31.33%;
}
}
@media (max-width: 384px){
.icon-box {
float: none;
width: 100%;
}
}
@media (max-width: 375px){
.w3_agileits_icons_page {
margin: 25px 0 0 !important;
}
}
/*-- //icons --*/
/*--Typography--*/
.grid_3.grid_4.w3layouts {
margin: 0;
}
.well {
font-weight: 300;
font-size: 14px;
}
.list-group-item {
font-weight: 300;
font-size: 14px;
}
li.list-group-item1 {
font-size: 14px;
font-weight: 300;
}
.typo p {
margin: 0;
font-size: 14px;
font-weight: 300;
}
.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: #999;
font-size: 0.85em;
margin-bottom: 1em;
font-weight: 300;
}
.grid_4{
background:none;
margin-top:50px;
}
.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, h3.bars {
margin-bottom: 1em;
color:#f5232e;
}
.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: #999;
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;
}
.alert {
font-size: 0.85em;
}
h1.t-button,h2.t-button,h3.t-button,h4.t-button,h5.t-button {
line-height:2em;
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:991px){
.grid_3.grid_5.wthree,.grid_3.grid_5.w3l {
margin-bottom: 0;
padding-bottom: 0;
}
.grid_3.grid_5.agileits {
padding: 0;
}
}
@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: 25px;
}
.well {
font-size: 14px;
margin-bottom: 10px;
}
h2.typoh2 {
font-size: 1.5em;
}
.label {
font-size: 60%;
}
.in-gp-tl {
padding: 0 1em;
}
.in-gp-tb {
padding-right: 1em;
}
.grid_3.grid_5.w3l {
padding: 1.5em 0;
}
}
@media (max-width:480px){
.grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5, h3.hdg, h3.bars {
font-size: 1.2em;
}
.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;
}
.grid_3.grid_4.w3layouts {
margin-top: 0;
}
.grid_3.grid_5.agileinfo {
padding: 1.5em 0;
}
}
@media (max-width: 320px){
.grid_4 {
margin-top: 18px;
}
h3.title {
font-size: 1.6em;
}
.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;
}
.list-group {
margin-bottom: 10px;
}
.well {
padding: 10px;
}
.nav > li > a {
font-size: 14px;
}
table.table.table-striped,.table-bordered,.bs-docs-example {
display: none;
}
}
/*-- //typography --*/
/*-- start-responsive-design --*/
@media (max-width:1366px){
.w3_agile_banner_info h2 {
font-size: 3.5em;
}
.w3_agile_banner_info h2 span:after {
width: 25%;
bottom: 41%;
right: 43.5%;
}
.banner {
min-height: 700px;
}
}
@media (max-width:1080px){
.navbar-brand {
height: 112px;
font-size: .9em;
line-height: 115px;
background: url(../images/1.png) no-repeat 0px 0px;
background-size: 30%;
}
.navbar-nav > li > a {
margin: 0 1.5em;
}
.navbar-right {
margin: 3em 0 0;
}
.w3_agile_banner_info h2 {
font-size: 3em;
}
.w3_agile_banner_info h2 span:after {
right: 42.5%;
}
.banner {
min-height: 620px;
}
.banner-bottom, .statistics, .testimonials, .footer, .service-bottom {
padding: 4em 0;
}
.wthree_banner_bottom_grid1 p {
font-size: 1.5em;
line-height: 1.8em;
}
.wthree_banner_bottom_grid1 {
height: 50px;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 30%;
}
.agileits_grid {
width: 96%;
}
.agileits_grid figure {
height: 248px;
}
figure.effect-layla figcaption::before {
top: 25px;
right: 16px;
bottom: 25px;
left: 16px;
}
.agileits_grid figure figcaption {
padding: 1em;
}
figure.effect-layla figcaption::after {
top: 16px;
right: 25px;
bottom: 16px;
left: 25px;
}
figure.effect-layla h3 {
padding-top:2em;
}
.w3_stats_grid {
padding: 0em;
}
.odometer {
font-size: 2.5em;
}
.w3_stats_grid p {
font-size: 14px;
}
.w3layouts_stats_grid1 {
width: 65px;
height: 65px;
}
.w3layouts_stats_grid1 i {
font-size: 1.5em;
line-height: 2.6em;
}
.w3layouts_statistics_grid_right h4 {
margin-bottom: 1em;
}
.agileits_portfolio_grid:before {
width: 50px;
height: 50px;
line-height: 2.4em;
}
.w3_agileits_testimonials_grid p {
width: 100%;
}
.w3_team_grid1 figure {
height: 278px !important;
}
figure.effect-layla ul {
padding: 6.5em 0 0;
}
.w3_agile_turpis {
width: 90%;
}
.footer h2 {
width: 36%;
}
.footer h2 a {
padding: 0 0 0 1.7em;
font-size: 1.3em;
}
.footer form {
width: 80%;
}
.agileits_w3layouts_nav {
margin: 3em 0;
}
.banner1 {
background-position:0px -170px;
min-height: 210px;
}
.w3ls_services_grid_right_right {
padding-right: 0;
}
.w3ls_services_grid_right_right h4 {
font-size: 1.2em;
}
.service-bottom ul {
width: 57%;
}
.agileits_w3layouts_classes_grid1_right {
width: 65px;
height: 65px;
}
.agileits_w3layouts_classes_grid1_right i {
line-height: 2.5em;
font-size: 1.5em;
}
.agile_classes_grid1_left h4 {
font-size: 1.1em;
letter-spacing:2px;
}
.w3_agile_classes_grid {
padding-top: 3.5em;
}
.w3l_contact_grid_right {
padding: 0;
}
}
@media (max-width:1024px){
.w3_agile_banner_info {
margin: 8em 0 0;
}
}
@media (max-width: 991px){
.w3_agile_banner_info h2 {
font-size: 2.5em;
}
.w3_agile_banner_info h2 span:after {
right: 35.5%;
width: 29%;
}
.banner {
min-height: 560px;
}
.w3_agileits_banner_bottom_grid {
float: left;
width: 50%;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 37%;
}
.agileits_grid figure {
height: 402px;
}
figure.effect-layla h3 {
padding-top: 6em;
}
.w3_agileits_banner_bottom_grid:nth-child(2) {
margin-bottom: 2em;
}
.w3_statistics_grid_left_grid img {
margin: 0 auto;
}
.w3ls_play_icon {
bottom: 46%;
left: 46%;
}
.w3layouts_statistics_grid_right h4 {
margin: 2em 0 1em;
}
.w3_stats_grid {
padding:0 1em;
float: left;
width: 33.33%;
}
.wthree_head {
font-size: 1.8em;
}
.wthree_head:after {
width: 25%;
right: 37%;
}
.w3layouts_team_grid {
float: left;
width: 25%;
padding: 0 .5em;
}
.w3_team_grid1 figure {
height: 215px !important;
}
figure.effect-layla ul {
padding: 4.5em 0 0;
}
.w3layouts_team_grid h4 {
font-size: .9em;
letter-spacing: 2px;
}
.footer h2 {
width: 46%;
}
.footer h3 {
width: 55%;
margin: 1em auto;
}
.footer form {
width: 100%;
}
.agileinfo_services_grid_left_grid_left,.agileinfo_services_grid_left_grid_right {
float: left;
width: 50%;
}
.wthree_services_grid_left_grid img {
margin: 0 auto;
}
.agile_services_grid_right {
margin: 2em 0 0;
}
.w3ls_services_grid_right_right {
margin-top: 2.5em;
}
.service-bottom ul {
width: 72%;
}
.agileits_service_bottom1_left h3 {
font-size: 1.7em;
}
.w3_modal_body_left,.w3_modal_body_right {
float: left;
width: 50%;
}
.w3_agile_classes_grid {
padding-top: 0;
}
.w3_agile_classes_grid_middle {
width: 50%;
margin: 2em auto;
}
.w3l_contact_grid_left {
text-align: center;
}
.w3_contact_grid:nth-child(2) {
margin: 2em 0 0;
}
.wthree_contact_grid_right {
margin-top: .5em;
}
}
@media (max-width: 900px){
.navbar-brand {
height: 102px;
font-size: .8em;
background: url(../images/1.png) no-repeat 0px 0px;
background-size: 30%;
}
.navbar-nav > li > a {
margin: 0 1em;
}
.navbar-right {
margin: 2.7em 0 0;
}
}
@media (max-width: 800px){
.navbar-default .navbar-nav > li > a {
letter-spacing: 0px;
}
.w3_agile_banner_info h2 {
font-size: 2em;
}
.w3_agile_banner_info h2 span:after {
right: 47.5%;
width: 24%;
}
.banner {
min-height: 500px;
}
.w3_agile_banner_info {
margin: 7em 0 0;
}
.banner-bottom, .statistics, .testimonials, .footer, .service-bottom {
padding: 3em 0;
}
.modal-dialog {
width: auto;
}
.w3_modal_body_right h4 {
letter-spacing: 3px;
}
.agileinfo_map {
min-height: 300px;
}
}
@media (max-width: 768px){
.navbar-nav > li > a {
margin: 0 0.7em;
}
.w3_modal_body_right h4 {
font-size: 1.3em;
margin: 1em 0 1em;
}
.banner1 {
background-position: 0px 0px;
}
}
@media (max-width: 767px){
.navbar-toggle {
margin: 3em 0 0;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-default .navbar-toggle {
border-color: #f5232e;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
border: none;
position: absolute;
width: 95.5%;
background:#5ec05d;
z-index: 999;
}
.navbar-right {
margin: 1em 0 0;
}
.navbar-nav {
margin: 0;
text-align: center;
padding:1em 0 0;
}
.navbar-nav > li > a {
margin: 0;
padding: 8px 0;
display: inline-block;
}
.nav > li {
margin:0 0 1em;
}
.navbar-nav .open .dropdown-menu {
background-color: #fff;
}
}
@media (max-width: 736px){
.navbar-toggle {
margin: 2.8em 0 0;
}
.w3_agile_banner_info {
margin: 5em 0 0;
}
.w3_agile_banner_info h2 span:after {
right: 46%;
width: 24%;
}
.banner {
min-height: 450px;
}
.agileits_grid figure {
height: 380px;
}
figure.effect-layla h3 {
padding-top: 5em;
}
.w3_team_grid1 figure {
height: 205px !important;
}
.footer h2 {
width: 47%;
}
.agileits_w3layouts_nav_left ul li {
margin-right: 3em;
}
.agileits_w3layouts_nav_left {
margin-top: .3em;
}
.w3ls_services_grid_right_right {
margin-top: 1.5em;
}
}
@media (max-width: 667px){
.w3_agile_banner_info h2 span:after {
right: 43%;
}
.agileits_grid figure {
height: 340px;
}
figure.effect-layla h3 {
padding-top: 4.5em;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 35%;
}
.w3layouts_statistics_grid_right h4 {
margin: 1em 0;
font-size: 1.3em;
}
.w3layouts_team_grid {
width: 50%;
padding: 0 1em;
}
.w3_team_grid1 figure {
height: 385px !important;
}
figure.effect-layla ul {
padding: 9.5em 0 0;
}
.w3layouts_team_grid:nth-child(2) {
margin-bottom:2em;
}
.footer h2 {
width: 52%;
}
.agileits_w3layouts_nav_left ul li {
margin-right: 2em;
}
.footer form {
padding: 1.5em;
}
.service-bottom ul {
width: 81%;
}
.agileits_service_bottom1_left h3 {
font-size: 1.5em;
}
.w3_modal_body_left, .w3_modal_body_right {
float: none;
width: 100%;
}
.w3_modal_body_left img{
margin:0 auto;
}
.w3_modal_body_right {
padding: 0 2em 2em;
}
.w3_modal_body_right h4 {
letter-spacing: 2px;
}
}
@media (max-width: 640px){
.w3_agile_banner_info h2 span:after {
right: 37.5%;
width: 28%;
}
.agileits_grid figure {
height: 325px;
}
figure.effect-layla h3 {
padding-top: 4em;
}
.w3_team_grid1 figure {
height: 365px !important;
}
.footer h2 a {
font-size: 1.2em;
}
.footer h3 {
width: 65%;
}
.footer input[type="submit"] {
background: url(../images/9.png) no-repeat center center #5ec05d;
background-size: 30%;
}
.banner1 {
min-height: 165px;
}
.service-bottom ul li span {
width: 65%;
}
.service-bottom h3 {
font-size: 1.7em;
}
}
@media (max-width: 600px){
.w3_agile_banner_info h2 span:after {
right: 34.5%;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 33%;
}
.agileits_grid figure {
height: 302px;
}
figure.effect-layla h3 {
padding-top: 3.5em;
}
.w3_team_grid1 figure {
height: 335px !important;
}
figure.effect-layla ul {
padding: 9em 0 0;
}
.footer h2 {
width: 56%;
}
.agileits_w3layouts_nav_left ul li {
margin-right: 1.5em;
}
.agileits_w3layouts_nav_left ul li:last-child {
margin: 0;
}
.agileits_service_bottom1_left h3 {
font-size: 1.3em;
}
.agile_classes_grid1 {
margin-top: 2em;
}
}
@media (max-width: 568px){
.w3_agile_banner_info h2 {
font-size: 1.8em;
}
.w3_agile_banner_info h2 span:after {
right: 36.5%;
}
.banner {
min-height: 400px;
}
.w3_agile_banner_info {
margin: 4em 0 0;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 32%;
}
.agileits_grid figure {
height: 280px;
}
.w3_team_grid1 figure {
height: 310px !important;
}
figure.effect-layla ul {
padding: 7.5em 0 0;
}
.w3_agile_turpis {
width: 100%;
}
.footer h2 a {
font-size: 1.1em;
}
.footer h3 {
font-size: 1.8em;
}
.agileits_w3layouts_nav_right ul li {
margin-left: 0em;
}
}
@media (max-width: 480px){
.navbar-brand {
height: 80px;
font-size: .7em;
background: url(../images/1.png) no-repeat 0px 0px;
background-size: 26%;
line-height: 80px;
}
.navbar-toggle {
margin: 1.8em 0 0;
}
.w3_agile_banner_info h2 span {
padding-left: 2em;
}
.w3_agile_banner_info h2 span:after {
right: 30.5%;
width: 34%;
}
.banner {
background-position: -130px 0px;
}
.banner-bottom, .statistics, .testimonials, .footer, .service-bottom {
padding: 2em 0;
}
.wthree_banner_bottom_grid1 {
height: 43px;
width: 80px;
}
.wthree_banner_bottom_grid1 p {
font-size: 1.3em;
}
.agileits_grid figure {
height: 230px;
}
figure.effect-layla h3 {
padding-top: 2em;
font-size: 1.3em;
}
.w3ls_play_icon {
font-size: 1.1em;
width: 50px;
height: 30px;
}
.navbar-right {
margin: 0;
}
.w3_stats_grid {
padding: 0;
}
.w3_testimonials_grids {
margin: 2em 0 0;
}
.wthree_head {
font-size: 1.5em;
}
.wthree_head:after {
width: 45%;
right: 28%;
}
.wthree_head:before {
width: 18%;
left: 41.5%;
}
.w3_team_grid1 figure {
height: 245px !important;
}
figure.effect-layla ul {
padding: 5.5em 0 0;
}
.footer h2 {
width: 67%;
}
.footer h3 {
width: 75%;
}
.footer input[type="email"] {
width: 83.1%;
}
.agileits_w3layouts_nav {
margin: 2em 0;
}
.agileits_w3layouts_nav_left {
margin-top: 0;
float: none;
text-align: center;
margin-bottom: 1em;
}
.agileits_w3layouts_nav_right {
float: none;
text-align: center;
}
.odometer {
font-size: 2.2em;
}
.w3ls_services_grid_right_right {
padding: 0;
}
.service-bottom ul li span {
width: 56%;
}
.service-bottom ul li i {
left: 42%;
}
.agileits_service_bottom1_left h3 {
font-size: 1.2em;
margin-bottom:1em;
}
.agileits_service_bottom1_left,.agileits_service_bottom1_right {
float: none;
text-align: center;
}
.w3layouts_more {
width: 50%;
margin: 0 auto;
}
.modal-header {
font-size: 1.6em;
letter-spacing: 5px;
}
.agile_classes_grid1_left h4 {
font-size: 1em;
}
.agile_classes_grid1_left {
padding: 0;
}
.wthree_contact_grid_left,.wthree_contact_grid_right {
padding: 0;
}
}
@media (max-width: 414px){
.w3_agile_banner_info h2 {
font-size: 1.6em;
}
.w3_agile_banner_info h2 span:after {
right: 28.5%;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 39.5%;
}
.w3_agileits_banner_bottom_grid {
float: none;
width: 100%;
}
.agileits_grid {
width: 100%;
}
.agileits_grid figure {
height: 400px;
}
.w3_agileits_banner_bottom_grid:nth-child(2),.w3layouts_team_grid:nth-child(2) {
margin: 2em 0;
}
.w3_agileits_banner_bottom_grid:nth-child(3),.w3layouts_team_grid:nth-child(3) {
margin-bottom: 2em;
}
figure.effect-layla h3 {
padding-top: 7em;
}
.w3layouts_statistics_grid_right {
padding: 0;
}
.w3_stats_grid {
float: none;
width: 100%;
}
.w3layouts_stats_grid1 {
margin: 1em auto 0;
}
.w3_stats_grid:nth-child(3) {
margin: 2em 0;
}
.owl-carousel .owl-item img {
visibility: visible;
}
.owl-carousel .owl-item {
opacity: 1;
border: 1px solid #fff;
}
.w3layouts_team_grid {
width: 100%;
float: none;
}
.w3_team_grid1 figure {
height: 450px !important;
}
figure.effect-layla ul {
padding: 11.5em 0 0;
}
.footer h2 {
width: 77%;
}
.footer h3 {
font-size: 1.4em;
}
.footer input[type="submit"] {
background: url(../images/9.png) no-repeat center center #5ec05d;
background-size: 40%;
}
.w3ls_services_grid_right_right h4 {
font-size: 1em;
letter-spacing: 2px;
}
.service-bottom h3 {
font-size: 1.4em;
}
.service-bottom ul li {
font-size: 14px;
}
.service-bottom1 {
padding: 2em 0;
}
.w3_modal_body_right {
padding: 0 1em 2em;
}
}
@media (max-width: 384px){
.w3_agile_banner_info h2 span:after {
right: 18.5%;
width: 40%;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 38.5%;
}
.agileits_grid figure {
height: 390px;
}
.w3layouts_statistics_grid_right h4 {
font-size: 1.2em;
}
.w3_team_grid1 figure {
height: 425px !important;
}
.footer h2 {
width: 84%;
}
.footer h3 {
width: 85%;
}
.footer input[type="submit"] {
background: url(../images/9.png) no-repeat center center #5ec05d;
background-size: 50%;
}
.agileits_w3layouts_nav_left ul li {
margin-right: 1em;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
width: 91.5%;
}
.w3ls_services_grid_right_right h4 {
letter-spacing: 1px;
line-height: 1.5em;
}
.w3ls_services_grid_right_right {
margin-top: 0;
}
.service-bottom h3 {
font-size: 1.2em;
}
.service-bottom p {
margin: 1em 0 2em;
font-size: 14px;
}
.service-bottom ul {
width: 100%;
}
.w3layouts_more {
width: 60%;
}
.w3_contact_grid {
padding: 0;
}
}
@media (max-width: 375px){
.agileits_grid figure {
height: 380px;
}
figure.effect-layla h3 {
padding-top: 6em;
}
.w3_team_grid1 figure {
height: 410px !important;
}
figure.effect-layla ul {
padding: 10.5em 0 0;
}
.footer input[type="email"] {
width: 100%;
margin-bottom: 1em;
}
.footer input[type="submit"] {
width: 20%;
}
.agileits_w3layouts_classes_grid1_right {
width: 50px;
height: 50px;
}
.agileits_w3layouts_classes_grid1_right i {
font-size: 1.2em;
}
}
@media (max-width: 320px){
.navbar-brand {
font-size: .6em;
}
.w3_agile_banner_info h2 {
font-size: 1.3em;
}
.banner {
min-height: 360px;
background-position: -215px 0px;
}
p, ul li, ol li,.nav > li > a,.footer input[type="email"],.w3_contact_grid input[type="text"], .w3_contact_grid input[type="email"], .w3_contact_grid textarea {
font-size: 13px;
}
.navbar-default .navbar-nav > li > a {
letter-spacing: 2px;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 35.5%;
}
.agileits_grid figure {
height: 310px;
}
figure.effect-layla h3 {
padding-top: 4.5em;
}
.wthree_head {
font-size: 1.4em;
}
.wthree_head:after {
width: 65%;
right: 17%;
}
.w3_team_grid1 figure {
height: 330px !important;
}
figure.effect-layla ul {
padding: 8.5em 0 0;
}
.footer h2 a {
font-size: .8em;
background: url(../images/1.png) no-repeat 0px 0px;
background-size: 30%;
line-height: 90px;
}
.footer h3 {
width: 100%;
}
.footer form {
padding: 1em;
}
.footer input[type="submit"] {
width: 25%;
}
.service-bottom h3 {
letter-spacing: 3px;
}
.service-bottom ul li span {
width: 50%;
}
.agileits_service_bottom1_left h3 {
font-size: 1.1em;
}
.w3layouts_more {
width: 70%;
}
.modal-header {
font-size: 1.4em;
padding: 10px;
}
.w3_modal_body_right h4 {
letter-spacing: 1px;
font-size: 1.2em;
}
.modal-body p i {
margin: 0.5em 0;
}
.w3_agile_classes_grid {
padding: 0;
}
.agile_classes_grid1_left h4 {
font-size: .9em;
}
.navbar-toggle {
margin: 1.6em 0 0;
}
}
|
all/dance2/css/style.css
|
html, body{
font-size: 100%;
font-family: 'Open Sans', sans-serif;
background:#ffffff;
margin: 0;
}
p,ul li,ol li{
margin:0;
font-size:14px;
}
h1,h2,h3,h4,h5,h6{
font-family: 'Playfair Display', serif;
margin:0;
}
ul,label{
margin:0;
padding:0;
}
body a:hover{
text-decoration:none;
}
input[type="submit"],input[type="reset"],a,.w3l_banner_bottom_grid1 i,.w3layouts_more a i{
-webkit-transition: 0.5s ease-in;
-moz-transition: 0.5s ease-in;
-ms-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
transition:0.5s ease-in;
}
a:focus{
outline:none;
}
/*-- banner --*/
.banner{
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:800px;
position: relative;
}
.banner1{
background:url(../images/banner.jpg) no-repeat 0px -240px;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
min-height:300px;
position: relative;
}
/*-- nav --*/
.navbar-default {
background: none;
border: none;
}
.navbar {
margin-bottom: 0;
}
.navbar-collapse {
padding: 0;
}
.navbar-right {
margin-right: 0;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color:#f5232e;
background:none;
}
.navbar-default .navbar-nav > .active > a:before{
background:#fff;
}
.navbar-default .navbar-nav > li > a {
font-weight: 600;
letter-spacing: 1px;
}
.navbar-nav > li > a {
margin: 0 2em;
padding:.7em 0;
text-transform: uppercase;
}
.navbar-default .navbar-nav > li > a:hover{
color:#f5232e;
}
.navbar-default .navbar-nav > li > a:focus {
color: #fff;
outline:none;
}
nav.navbar.navbar-default {
background: none;
padding:1em 1em 0;
}
.navbar-right {
margin:3.5em 0 0;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
color:#fff;
background: none;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
}
.navbar-default .navbar-nav > .active.open > a:focus {
background:transparent;
color: #fff;
}
.navbar-default .navbar-brand,.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #fff;
}
.navbar-brand {
height: 120px;
padding: 0 0 0 1.7em;
font-weight: 600;
font-size: 1em;
line-height: 150px;
letter-spacing: 2px;
text-transform: uppercase;
background: url(../images/1.png) no-repeat 0px 0px;
}
.navbar-brand span{
color:#f5232e;
border: 1px solid #fff;
text-align: center;
font-size: .7em;
padding: .3em .5em;
}
.agile_short_dropdown {
border-radius: 0;
background: #ffffff;
text-align: center;
padding:0;
border: none;
}
.agile_short_dropdown li a{
text-transform:uppercase;
color:#212121;
font-size:13px;
font-weight:600;
padding: .8em 0;
}
.agile_short_dropdown li a:before,.agile_short_dropdown li a:after{
display:none;
}
.agile_short_dropdown > li > a:hover{
color: #fff;
text-decoration: none;
background-color:#35e034;
}
.link-effect-8 ul.nav li a {
-moz-transition: ease-out 0.3s 0.1s;
-o-transition: ease-out 0.3s 0.1s;
-webkit-transition: ease-out 0.3s;
-webkit-transition-delay: 0.1s;
transition: ease-out 0.3s 0.1s;
}
.link-effect-8 ul.nav li a::before {
height: 2px;
width: 100%;
background: #797878;
content: "";
position: absolute;
left: 0;
top: 0;
visibility: hidden;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.link-effect-8 ul.nav li a::after {
height: 2px;
width: 100%;
content: "";
position: absolute;
left: 0;
top: 100%;
visibility: hidden;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.link-effect-8 ul.nav li a:hover::before,.navbar-default .navbar-nav > .active > a::before {
visibility: visible;
top: 100%;
background: white;
}
.link-effect-8 ul.nav li a:hover::after,.navbar-default .navbar-nav > .active > a::after {
visibility: visible;
top: 0;
background: white;
}
/*-- //nav --*/
.w3_agile_banner_info{
margin:10em 0 0;
}
.w3_agile_banner_info h2{
font-size:4em;
text-transform:capitalize;
color:#fff;
line-height:1.5em;
}
.w3_agile_banner_info h2 i{
color:#35e034;
}
.w3_agile_banner_info h2 span{
display: block;
padding-left: 3em;
position:relative;
}
.w3_agile_banner_info h2 span:after{
content: '';
background: #f5232e;
height: 2px;
width: 28%;
position: absolute;
bottom: 45%;
right: 36%;
}
.agile_banner_social{
position:absolute;
bottom:5%;
right:5%;
}
.agile_banner_social ul li{
display: block;
margin: 1em 0;
}
.agileits_social_list li a{
width: 30px;
height: 30px;
color: #fff;
text-align: center;
display: inline-block;
font-size: 12px;
border: 2px dotted #f5232e;
border-radius: 25px;
}
.agileits_social_list li a i{
line-height:2.4em;
}
.agileits_social_list li a:hover{
color:#fff;
}
a.w3_agile_facebook:hover{
background:#3b5998;
border-color:#3b5998;
}
a.agile_twitter:hover{
background:#1da1f2;
border-color:#1da1f2;
}
a.w3_agile_dribble:hover{
background:#ea4c89;
border-color:#ea4c89;
}
a.w3_agile_vimeo:hover{
background:#1ab7ea;
border-color:#1ab7ea;
}
/*-- //banner --*/
/*-- banner-bottom --*/
.banner-bottom,.statistics,.testimonials,.footer,.service-bottom{
padding:5em 0;
}
.agileinfo_banner_bottom_grid_main:before,.agileinfo_banner_bottom_grid_main:after{
content: '';
position: absolute;
top: 50%;
width: 34%;
height: 2px;
background: #212121;
}
.agileinfo_banner_bottom_grid_main:before{
left:0%;
}
.agileinfo_banner_bottom_grid_main:after{
right:0%;
}
.wthree_banner_bottom_grid1{
width: 95px;
height: 60px;
border: 2px solid #212121;
border-radius: 50px;
text-align: center;
margin: 0 auto;
}
.agileinfo_banner_bottom_grid_main{
position:relative;
}
.wthree_banner_bottom_grid1 p{
font-size: 1.8em;
color: #f5232e;
line-height: 1.9em;
}
.w3_agileits_banner_bottom_grid{
padding:0;
}
/*-- layla --*/
.agileits_grid {
position: relative;
margin: 1em auto 0;
width: 95%;
}
.agileits_grid figure {
position: relative;
overflow: hidden;
height: 308px;
text-align: center;
}
.agileits_grid:hover figure{
background: #000000;
}
.agileits_grid figure img {
position: relative;
}
.agileits_grid figure figcaption {
padding: 2em;
text-transform: uppercase;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.agileits_grid figure figcaption::before,
.agileits_grid figure figcaption::after {
pointer-events: none;
}
.agileits_grid figure figcaption,
.agileits_grid figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after {
position: absolute;
content: '';
opacity: 0;
}
figure.effect-layla figcaption::before {
top: 50px;
right: 30px;
bottom: 50px;
left: 30px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: scale(0,1);
transform: scale(0,1);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
figure.effect-layla figcaption::after {
top: 30px;
right: 50px;
bottom: 30px;
left: 50px;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
-webkit-transform: scale(1,0);
transform: scale(1,0);
-webkit-transform-origin: 100% 0;
transform-origin: 100% 0;
}
figure.effect-layla h3 {
padding-top: 2.6em;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
font-size: 1.5em;
color: #35e034;
font-weight: 600;
opacity: 0;
}
figure.effect-layla p {
padding: 1em 2em 0;
text-transform: none;
color: #fff;
line-height: 2em;
opacity: 0;
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0);
}
figure.effect-layla ul{
opacity: 0;
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0);
padding: 7.5em 0 0;
}
figure.effect-layla h3 {
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
}
figure.effect-layla img,figure.effect-layla h3,
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after,
figure.effect-layla p,figure.effect-layla ul {
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
}
figure.effect-layla:hover img {
opacity: 0.7;
-webkit-transform:translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
}
figure.effect-layla:hover figcaption::before,
figure.effect-layla:hover figcaption::after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
figure.effect-layla:hover h3,
figure.effect-layla:hover p,figure.effect-layla:hover ul {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
figure.effect-layla:hover figcaption::after,
figure.effect-layla:hover h3,
figure.effect-layla:hover p,
figure.effect-layla:hover img,figure.effect-layla:hover ul {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
/*-- //layla --*/
/*-- //banner-bottom --*/
/*-- statistics --*/
.statistics{
background: url(../images/6.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-attachment:fixed;
}
.w3_statistics_grid_left_grid{
position:relative;
}
.w3ls_play_icon{
position: absolute;
bottom: 45%;
left: 45%;
font-size: 1.5em;
width: 70px;
height: 40px;
background: #f5232e;
color: #fff;
text-align: center;
border-radius: 5px;
}
.w3ls_play_icon i{
line-height:1.6em;
}
.w3ls_play_icon:hover,.w3ls_play_icon:focus{
color:#fff;
}
.w3layouts_statistics_grid_right h4{
font-size: 1.5em;
line-height: 1.5em;
color: #fff;
text-transform: capitalize;
margin-bottom: 2em;
}
.w3_stats_grid {
text-align: center;
}
.w3layouts_stats_grid1{
width:80px;
height:80px;
background:#fff;
border-radius:80px;
margin:2em auto 0;
text-align:center;
}
.w3layouts_stats_grid1 i{
font-size: 2em;
color: #5ec05d;
line-height: 2.5em;
}
/*-- odometer --*/
.odometer{
font-size: 3em;
color: #fff;
font-family: 'Open Sans', sans-serif;
font-weight:600;
}
.w3_stats_grid p{
font-size:1em;
color:#fff;
margin:1em 0 0;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-car {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
*display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-car .odometer-digit .odometer-digit-spacer {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-car .odometer-digit .odometer-digit-spacer {
*display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
text-align: left;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-car .odometer-digit .odometer-ribbon {
display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-car .odometer-digit .odometer-ribbon-inner {
display: block;
-webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-car .odometer-digit .odometer-value {
display: block;
-webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-car .odometer-digit .odometer-value.odometer-last-value {
position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
-moz-transition: -moz-transform 2s;
-ms-transition: -ms-transform 2s;
-o-transition: -o-transform 2s;
transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
-moz-transition: -moz-transform 2s;
-ms-transition: -ms-transform 2s;
-o-transition: -o-transform 2s;
transition: transform 2s;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
padding: 0 0.1em;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
left: 0.09em;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
-webkit-transition-timing-function: linear;
-moz-transition-timing-function: linear;
-ms-transition-timing-function: linear;
-o-transition-timing-function: linear;
transition-timing-function: linear;
}
/*-- //odometer --*/
/*-- portfolio --*/
.agileits_portfolio_grid:before {
content: "\f06e";
font-size: 1.5em;
width: 60px;
height: 60px;
line-height: 2.9em;
background-color: #f5232e;
font-family: FontAwesome;
color: #fff;
text-align: center;
position: absolute;
z-index: 10;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
-moz-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
-ms-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
-moz-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
-ms-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
-o-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
opacity: 0;
filter: alpha(opacity=0);
}
.agileits_portfolio_grid:after {
background-color: rgba(94, 192, 93, 0.44);
content: ' ';
position: absolute;
z-index: 1;
top: 0;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
-webkit-transition: opacity .3s ease;
-moz-transition: opacity .3s ease;
-ms-transition: opacity .3s ease;
-o-transition: opacity .3s ease;
transition: opacity .3s ease;
}
.agileinfo_portfolio_grid:hover .agileits_portfolio_grid:after {
opacity: 1;
}
.agileinfo_portfolio_grid:hover .agileits_portfolio_grid:before {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translateX(-50%) translateY(-50%) scale(1,1);
-moz-transform: translateX(-50%) translateY(-50%) scale(1,1);
-ms-transform: translateX(-50%) translateY(-50%) scale(1,1);
transform: translateX(-50%) translateY(-50%) scale(1,1);
-webkit-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
-moz-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
-ms-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
-o-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
}
/*--flexisel--*/
.flex-slider{
background:#222227;
padding: 70px 0 165px 0;
}
#flexiselDemo1 {
display: none;
}
.nbs-flexisel-container {
position: relative;
max-width: 100%;
}
.nbs-flexisel-ul {
position: relative;
width: 9999px;
margin: 0px;
padding: 0px;
list-style-type: none;
}
.nbs-flexisel-inner {
overflow: hidden;
margin: 0 auto;
padding:0;
}
.nbs-flexisel-item {
float: left;
margin: 0;
padding: 0px;
position: relative;
line-height: 35px;
}
.nbs-flexisel-item > img {
cursor: pointer;
position: relative;
}
/*---- Nav ---*/
.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
width: 40px;
height: 40px;
position: absolute;
cursor: pointer;
z-index: 100;
background:none;
top: -5% !important;
border-radius: 5px;
display:none;
}
.nbs-flexisel-nav-left {
left:91%;
}
.nbs-flexisel-nav-right {
right: 1.2%;
background:none;
}
/*--//flexisel--*/
/*-- //portfolio --*/
/*-- testimonials --*/
.testimonials {
background: url(../images/11.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-attachment: fixed;
}
.wthree_head{
position: relative;
font-size: 2em;
font-weight: 600;
color: #fff;
text-align: center;
padding-bottom:.8em;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom:.5em;
}
.wthree_head:before,.wthree_head:after{
position:absolute;
background:#5ec05d;
height:2px;
content:'';
}
.wthree_head:before{
width: 11%;
bottom: 8%;
left: 44.5%;
}
.wthree_head:after{
width: 18%;
right: 41%;
bottom: 0%;
}
.agileits_w3layouts_para{
text-align:center;
color:#fff;
line-height:2em;
}
.w3_testimonials_grids{
margin:3em 0 0;
}
.w3_agileits_testimonials_grid{
text-align:center;
}
.w3_agileits_testimonials_grid img{
margin:0 auto;
}
.w3_agileits_testimonials_grid h4{
margin:1em 0 1.5em;
color:#fff;
font-size:1em;
}
.w3_agileits_testimonials_grid span{
color:#f5232e;
}
.w3_agileits_testimonials_grid p{
color: #a7a7a7;
line-height: 2em;
width: 80%;
margin: 0 auto;
}
.owl-carousel .owl-item img{
visibility: hidden;
}
.owl-carousel .owl-item.active img {
visibility: visible;
}
.owl-carousel .owl-item{
opacity: 0.4;
padding:1em;
}
.owl-carousel .owl-item.active{
opacity:1;
border: 1px solid #fff;
}
/*-- //testimonials --*/
/*-- team --*/
.agile_head1{
color:#212121;
}
.w3_agile_para{
color:#999;
}
.w3_team_grid1 {
width: 100% !important;
margin: 0 !important;
}
.w3_team_grid1 figure {
height: 353px !important;
}
.w3_team_grid1 ul li{
display:inline-block;
}
.w3layouts_team_grid h4{
font-size: 1em;
color: #212121;
margin: 1em 0 0.5em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 5px;
}
.w3layouts_team_grid p{
color:#f5232e;
}
.w3_agile_turpis{
margin: 2em auto 0;
text-align: center;
color: #999;
line-height: 2em;
width: 70%;
position: relative;
z-index: 1;
}
.w3_agile_turpis:before{
content: "\f10d";
font-family: FontAwesome;
position: absolute;
top: 0%;
left: 5%;
font-size: 5em;
color: #ececec;
z-index: -1;
}
/*-- //team --*/
/*-- footer --*/
.footer{
background: url(../images/16.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-attachment: fixed;
}
.footer h2 {
text-align: center;
width: 32%;
margin: 0 auto;
}
.footer h2 a{
text-decoration: none;
padding: 0 0 0 1.2em;
font-weight: 600;
font-size: 1.5em;
line-height: 115px;
letter-spacing: 2px;
text-transform: uppercase;
background: url(../images/1.png) no-repeat 0px 0px;
color: #fff;
display: block;
text-align: center;
}
.footer h2 a span {
color: #f5232e;
border: 1px solid #fff;
text-align: center;
font-size: .7em;
padding: .3em .5em;
}
.footer h3{
text-align: center;
font-size: 2em;
color: #fff;
margin: 1.5em auto;
letter-spacing: 5px;
width: 40%;
border-top: 1px solid;
border-bottom: 1px solid;
padding: .5em 0;
}
.footer form{
width: 60%;
margin: 0 auto;
padding: 2em;
background: rgba(245, 35, 46, 0.4);
}
.footer input[type="email"] {
outline: none;
padding: 15px;
font-size: 1em;
color: #999;
width: 84.1%;
background: #fff;
border: none;
font-weight: 600;
}
.footer input[type="submit"] {
outline: none;
width: 15%;
background: url(../images/9.png) no-repeat center center #5ec05d;
text-transform: uppercase;
border: none;
padding: 15px 0;
}
.footer input[type="submit"]:hover{
background-color:#f5232e;
}
.agileits_w3layouts_nav_left{
float:left;
margin-top: .5em;
}
.agileits_w3layouts_nav_left ul li{
display:inline-block;
margin-right:4em;
}
.agileits_w3layouts_nav_left ul li a{
color: #fff;
text-decoration: none;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
}
.agileits_w3layouts_nav{
margin:4em 0;
}
.agileits_w3layouts_nav_left ul li.active a,.agileits_w3layouts_nav_left ul li a:hover,.footer p a:hover{
color:#f5232e;
}
.agileits_w3layouts_nav_right{
float:right;
}
.agileits_w3layouts_nav_right ul li{
display: inline-block;
margin-left: 1em;
}
.footer p{
padding:1em 0;
text-align:center;
border-top:1px solid #fff;
border-bottom:1px solid #fff;
color:#fff;
line-height: 2em;
}
.footer p a{
text-decoration:none;
color:#5ec05d;
}
/*-- //footer --*/
/*-- to-top --*/
#toTop {
display: none;
text-decoration: none;
position: fixed;
bottom: 20px;
right: 2%;
overflow: hidden;
z-index: 999;
width: 32px;
height: 32px;
border: none;
text-indent: 100%;
background: url(../images/arrow.png) no-repeat 0px 0px;
}
#toTopHover {
width: 32px;
height: 32px;
display: block;
overflow: hidden;
float: right;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
}
/*-- //to-top --*/
/*-- services --*/
.w3ls_services_grid_right_left img{
margin:0 auto;
}
.agile_services_grid_right{
padding:0;
}
.w3ls_services_grid_right_right h4{
text-transform: capitalize;
font-size: 1.3em;
color: #212121;
font-weight: 600;
padding-bottom: 1em;
position: relative;
letter-spacing: 3px;
}
.w3ls_services_grid_right_right h4 span{
color:#f5232e;
}
.w3ls_services_grid_right_right h4:after{
content:'';
background:#5ec05d;
height:2px;
width:30%;
position:absolute;
bottom:0%;
left:0%;
}
.w3ls_services_grid_right_right p{
color:#999;
line-height:2em;
margin:1em 0 0;
}
.w3_services_grid_right_grid:nth-child(2){
margin:2em 0;
}
.agileinfo_services_grid_left_grid_left {
padding-left: 0;
padding-right: .5em;
}
.agileinfo_services_grid_left_grid_right {
padding-right: 0;
padding-left: .5em;
}
.wthree_services_grid_left_grid {
margin-bottom: 1em;
}
/*-- //services --*/
/*-- service-bottom --*/
.service-bottom{
background: url(../images/6.jpg) no-repeat 0px 0px;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-attachment: fixed;
text-align:center;
}
.service-bottom h3{
font-size: 2em;
letter-spacing: 6px;
color: #fff;
padding-bottom: 1em;
position: relative;
text-transform: uppercase;
}
.service-bottom h3:after{
content: '';
background: #f5232e;
width: 15%;
left: 43%;
position: absolute;
bottom: 0%;
height: 2px;
}
.service-bottom p{
margin:1em 0 3em;
color:#fff;
font-size:1em;
text-transform:capitalize;
font-weight:600;
}
.service-bottom ul{
width:45%;
margin:0 auto;
}
.service-bottom ul li {
list-style-type: none;
margin-bottom: 1em;
color: #fff;
position: relative;
text-align: left;
font-size:1em;
}
.service-bottom ul li span {
width: 70%;
display: inline-block;
}
.service-bottom ul li i {
position: absolute;
left: 50%;
font-style: normal;
}
.service-bottom1{
padding:3em 0;
background:#5ec05d;
}
.agileits_service_bottom1_left{
float:left;
}
.agileits_service_bottom1_right{
float:right;
}
.agileits_service_bottom1_left h3{
font-size:2em;
color:#212121;
text-transform:capitalize;
}
.w3layouts_more a{
padding: 10px 30px;
background: #ffffff;
color: #f5232e;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 3px;
border-bottom: 2px solid #505050;
border-radius: 5px;
display: block;
}
.w3layouts_more a:hover{
background:#f5232e;
color:#fff;
}
/*-- //service-bottom --*/
/*-- bootstrap-pop-up --*/
.modal-header {
font-size: 2em;
color: #fff;
text-align: center;
text-transform: capitalize;
background:#f5232e;
border-bottom: none;
letter-spacing: 10px;
font-family:'Playfair Display', serif;
}
.close {
opacity: 1;
}
.w3_modal_body_right h4{
text-transform: capitalize;
font-size: 1.5em;
color: #212121;
line-height: 1.5em;
margin: 1.5em 0 1em;
letter-spacing: 4px;
}
.modal-body p {
color: #999;
margin: 0 !important;
line-height: 2em;
}
.modal-body p i {
display: block;
margin: 1.5em 0;
color: #212121;
font-weight: 600;
}
.modal-body {
padding:0;
}
.modal-content {
border-radius: 0;
}
button.close {
font-size: 1.2em;
color: #6d0507;
outline: none;
}
.modal-dialog {
width: 845px;
}
.w3_modal_body_left {
padding-left: 0;
}
/*-- //bootstrap-pop-up --*/
/*-- classes --*/
.agile_classes_grid1_left h4{
font-size: 1.3em;
color: #212121;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 3px;
}
.agile_classes_grid1_left p{
color:#999;
line-height:2em;
margin:1em 0 0;
}
.agileits_w3layouts_classes_grid1_right{
width: 80px;
height: 80px;
border-radius: 80px;
text-align: center;
background: #f5232e;
margin: 0 auto;
}
.agileits_w3layouts_classes_grid1_right i{
line-height:2.4em;
font-size:2em;
color:#fff;
}
.agile_classes_grid1{
margin-top:3em;
}
.w3_agile_classes_grid {
padding-top: 5.5em;
}
.w3_agile_classes_grid_middle img {
margin: 0 auto;
}
/*-- //classes --*/
/*-- mail --*/
.w3l_contact_grid_left{
padding:0;
}
.w3l_contact_grid_left span{
color:#f5232e;
font-size: 1.5em;
}
.w3l_contact_grid_right ul li{
list-style-type:none;
color:#999;
}
.w3l_contact_grid_right ul li:first-child{
margin:0 0 1em;
}
.agileits_w3layouts_address{
margin:2em 0;
}
.w3l_contact_grid_right ul li a{
color: #212121;
text-decoration: none;
display: block;
text-decoration:none;
}
.w3l_contact_grid_right ul li a:hover{
color:#5ec05d;
}
.w3_contact_grid input[type="text"],.w3_contact_grid input[type="email"],.w3_contact_grid textarea{
outline: none;
border: 1px solid #dddddd;
width: 100%;
background: none;
color: #999;
font-size: 14px;
padding: 15px;
}
.wthree_contact_grid_left input[type="text"]:nth-child(4) {
margin-top: .5em;
}
.w3_contact_grid textarea{
min-height:175px;
resize:none;
margin:0 0 .2em;
}
.w3_contact_grid input[type="email"]{
margin:.5em 0;
}
.w3_contact_grid input[type="submit"]{
outline: none;
border: none;
width: 100%;
background: #f5232e;
color: #fff;
font-size: 1em;
text-transform: uppercase;
padding: 12px 0px;
}
.w3_contact_grid input[type="submit"]:hover{
background:#27B311;
}
.agileinfo_map{
width:100%;
min-height:400px;
}
/*-- //mail --*/
/*-- icons --*/
ul.bs-glyphicons-list li: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;
}
ul.bs-glyphicons-list li:hover span {
color: #fff;
}
.codes a {
color: #999;
}
.row.fontawesome-icon-list {
margin: 0;
}
.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;
}
.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;
}
.icon-box:hover i.fa {
color:#fff !important;
}
.icon-box:hover a.agile-icon {
color:#fff !important;
}
.codes .bs-glyphicons li {
float: left;
width: 12.5%;
height: 115px;
padding: 10px;
line-height: 1.4;
text-align: center;
font-size: 12px;
list-style-type: none;
}
.codes .bs-glyphicons .glyphicon {
margin-top: 5px;
margin-bottom: 10px;
font-size: 24px;
}
.codes .glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: 400;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #777;
}
.codes .bs-glyphicons .glyphicon-class {
display: block;
text-align: center;
word-wrap: break-word;
}
h3.icon-subheading {
font-size: 25px;
color:#f5232e !important;
margin: 30px 0 15px;
}
h3.agileits-icons-title {
text-align: center;
font-size: 30px;
color: #000;
}
.icons a {
color: #999;
}
.icon-box i {
margin-right: 10px !important;
font-size: 20px !important;
color: #282a2b !important;
}
.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%;
cursor: pointer;
}
.bs-glyphicons .glyphicon {
margin-top: 5px;
margin-bottom: 10px;
font-size: 24px;
color: #282a2b;
}
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: 400;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #777;
}
.bs-glyphicons .glyphicon-class {
display: block;
text-align: center;
word-wrap: break-word;
}
@media (max-width:1080px){
.icon-box{
width: 33.33%;
}
}
@media (max-width:991px){
h3.agileits-icons-title {
font-size: 28px;
}
h3.icon-subheading {
font-size: 22px;
}
.icon-box {
width: 50%;
}
}
@media (max-width:768px){
h3.agileits-icons-title {
font-size: 28px;
}
h3.icon-subheading {
font-size: 25px;
}
.row {
margin-right: 0;
margin-left: 0;
}
.icon-box {
margin: 0;
}
}
@media (max-width: 736px){
.icon-box {
float: left;
}
}
@media (max-width: 640px){
.icon-box {
float: left;
width: 50%;
}
h3.icon-subheading {
font-size: 22px;
}
}
@media (max-width: 480px){
.bs-glyphicons li {
width: 31%;
}
.icon-box {
float: none;
width: 100%;
}
}
@media (max-width: 414px){
h3.agileits-icons-title {
font-size: 23px;
}
h3.icon-subheading {
font-size: 18px;
}
.bs-glyphicons li {
width: 31.33%;
}
}
@media (max-width: 384px){
.icon-box {
float: none;
width: 100%;
}
}
@media (max-width: 375px){
.w3_agileits_icons_page {
margin: 25px 0 0 !important;
}
}
/*-- //icons --*/
/*--Typography--*/
.grid_3.grid_4.w3layouts {
margin: 0;
}
.well {
font-weight: 300;
font-size: 14px;
}
.list-group-item {
font-weight: 300;
font-size: 14px;
}
li.list-group-item1 {
font-size: 14px;
font-weight: 300;
}
.typo p {
margin: 0;
font-size: 14px;
font-weight: 300;
}
.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: #999;
font-size: 0.85em;
margin-bottom: 1em;
font-weight: 300;
}
.grid_4{
background:none;
margin-top:50px;
}
.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, h3.bars {
margin-bottom: 1em;
color:#f5232e;
}
.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: #999;
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;
}
.alert {
font-size: 0.85em;
}
h1.t-button,h2.t-button,h3.t-button,h4.t-button,h5.t-button {
line-height:2em;
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:991px){
.grid_3.grid_5.wthree,.grid_3.grid_5.w3l {
margin-bottom: 0;
padding-bottom: 0;
}
.grid_3.grid_5.agileits {
padding: 0;
}
}
@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: 25px;
}
.well {
font-size: 14px;
margin-bottom: 10px;
}
h2.typoh2 {
font-size: 1.5em;
}
.label {
font-size: 60%;
}
.in-gp-tl {
padding: 0 1em;
}
.in-gp-tb {
padding-right: 1em;
}
.grid_3.grid_5.w3l {
padding: 1.5em 0;
}
}
@media (max-width:480px){
.grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5, h3.hdg, h3.bars {
font-size: 1.2em;
}
.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;
}
.grid_3.grid_4.w3layouts {
margin-top: 0;
}
.grid_3.grid_5.agileinfo {
padding: 1.5em 0;
}
}
@media (max-width: 320px){
.grid_4 {
margin-top: 18px;
}
h3.title {
font-size: 1.6em;
}
.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;
}
.list-group {
margin-bottom: 10px;
}
.well {
padding: 10px;
}
.nav > li > a {
font-size: 14px;
}
table.table.table-striped,.table-bordered,.bs-docs-example {
display: none;
}
}
/*-- //typography --*/
/*-- start-responsive-design --*/
@media (max-width:1366px){
.w3_agile_banner_info h2 {
font-size: 3.5em;
}
.w3_agile_banner_info h2 span:after {
width: 25%;
bottom: 41%;
right: 43.5%;
}
.banner {
min-height: 700px;
}
}
@media (max-width:1080px){
.navbar-brand {
height: 112px;
font-size: .9em;
line-height: 115px;
background: url(../images/1.png) no-repeat 0px 0px;
background-size: 30%;
}
.navbar-nav > li > a {
margin: 0 1.5em;
}
.navbar-right {
margin: 3em 0 0;
}
.w3_agile_banner_info h2 {
font-size: 3em;
}
.w3_agile_banner_info h2 span:after {
right: 42.5%;
}
.banner {
min-height: 620px;
}
.banner-bottom, .statistics, .testimonials, .footer, .service-bottom {
padding: 4em 0;
}
.wthree_banner_bottom_grid1 p {
font-size: 1.5em;
line-height: 1.8em;
}
.wthree_banner_bottom_grid1 {
height: 50px;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 30%;
}
.agileits_grid {
width: 96%;
}
.agileits_grid figure {
height: 248px;
}
figure.effect-layla figcaption::before {
top: 25px;
right: 16px;
bottom: 25px;
left: 16px;
}
.agileits_grid figure figcaption {
padding: 1em;
}
figure.effect-layla figcaption::after {
top: 16px;
right: 25px;
bottom: 16px;
left: 25px;
}
figure.effect-layla h3 {
padding-top:2em;
}
.w3_stats_grid {
padding: 0em;
}
.odometer {
font-size: 2.5em;
}
.w3_stats_grid p {
font-size: 14px;
}
.w3layouts_stats_grid1 {
width: 65px;
height: 65px;
}
.w3layouts_stats_grid1 i {
font-size: 1.5em;
line-height: 2.6em;
}
.w3layouts_statistics_grid_right h4 {
margin-bottom: 1em;
}
.agileits_portfolio_grid:before {
width: 50px;
height: 50px;
line-height: 2.4em;
}
.w3_agileits_testimonials_grid p {
width: 100%;
}
.w3_team_grid1 figure {
height: 278px !important;
}
figure.effect-layla ul {
padding: 6.5em 0 0;
}
.w3_agile_turpis {
width: 90%;
}
.footer h2 {
width: 36%;
}
.footer h2 a {
padding: 0 0 0 1.7em;
font-size: 1.3em;
}
.footer form {
width: 80%;
}
.agileits_w3layouts_nav {
margin: 3em 0;
}
.banner1 {
background-position:0px -170px;
min-height: 210px;
}
.w3ls_services_grid_right_right {
padding-right: 0;
}
.w3ls_services_grid_right_right h4 {
font-size: 1.2em;
}
.service-bottom ul {
width: 57%;
}
.agileits_w3layouts_classes_grid1_right {
width: 65px;
height: 65px;
}
.agileits_w3layouts_classes_grid1_right i {
line-height: 2.5em;
font-size: 1.5em;
}
.agile_classes_grid1_left h4 {
font-size: 1.1em;
letter-spacing:2px;
}
.w3_agile_classes_grid {
padding-top: 3.5em;
}
.w3l_contact_grid_right {
padding: 0;
}
}
@media (max-width:1024px){
.w3_agile_banner_info {
margin: 8em 0 0;
}
}
@media (max-width: 991px){
.w3_agile_banner_info h2 {
font-size: 2.5em;
}
.w3_agile_banner_info h2 span:after {
right: 35.5%;
width: 29%;
}
.banner {
min-height: 560px;
}
.w3_agileits_banner_bottom_grid {
float: left;
width: 50%;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 37%;
}
.agileits_grid figure {
height: 402px;
}
figure.effect-layla h3 {
padding-top: 6em;
}
.w3_agileits_banner_bottom_grid:nth-child(2) {
margin-bottom: 2em;
}
.w3_statistics_grid_left_grid img {
margin: 0 auto;
}
.w3ls_play_icon {
bottom: 46%;
left: 46%;
}
.w3layouts_statistics_grid_right h4 {
margin: 2em 0 1em;
}
.w3_stats_grid {
padding:0 1em;
float: left;
width: 33.33%;
}
.wthree_head {
font-size: 1.8em;
}
.wthree_head:after {
width: 25%;
right: 37%;
}
.w3layouts_team_grid {
float: left;
width: 25%;
padding: 0 .5em;
}
.w3_team_grid1 figure {
height: 215px !important;
}
figure.effect-layla ul {
padding: 4.5em 0 0;
}
.w3layouts_team_grid h4 {
font-size: .9em;
letter-spacing: 2px;
}
.footer h2 {
width: 46%;
}
.footer h3 {
width: 55%;
margin: 1em auto;
}
.footer form {
width: 100%;
}
.agileinfo_services_grid_left_grid_left,.agileinfo_services_grid_left_grid_right {
float: left;
width: 50%;
}
.wthree_services_grid_left_grid img {
margin: 0 auto;
}
.agile_services_grid_right {
margin: 2em 0 0;
}
.w3ls_services_grid_right_right {
margin-top: 2.5em;
}
.service-bottom ul {
width: 72%;
}
.agileits_service_bottom1_left h3 {
font-size: 1.7em;
}
.w3_modal_body_left,.w3_modal_body_right {
float: left;
width: 50%;
}
.w3_agile_classes_grid {
padding-top: 0;
}
.w3_agile_classes_grid_middle {
width: 50%;
margin: 2em auto;
}
.w3l_contact_grid_left {
text-align: center;
}
.w3_contact_grid:nth-child(2) {
margin: 2em 0 0;
}
.wthree_contact_grid_right {
margin-top: .5em;
}
}
@media (max-width: 900px){
.navbar-brand {
height: 102px;
font-size: .8em;
background: url(../images/1.png) no-repeat 0px 0px;
background-size: 30%;
}
.navbar-nav > li > a {
margin: 0 1em;
}
.navbar-right {
margin: 2.7em 0 0;
}
}
@media (max-width: 800px){
.navbar-default .navbar-nav > li > a {
letter-spacing: 0px;
}
.w3_agile_banner_info h2 {
font-size: 2em;
}
.w3_agile_banner_info h2 span:after {
right: 47.5%;
width: 24%;
}
.banner {
min-height: 500px;
}
.w3_agile_banner_info {
margin: 7em 0 0;
}
.banner-bottom, .statistics, .testimonials, .footer, .service-bottom {
padding: 3em 0;
}
.modal-dialog {
width: auto;
}
.w3_modal_body_right h4 {
letter-spacing: 3px;
}
.agileinfo_map {
min-height: 300px;
}
}
@media (max-width: 768px){
.navbar-nav > li > a {
margin: 0 0.7em;
}
.w3_modal_body_right h4 {
font-size: 1.3em;
margin: 1em 0 1em;
}
.banner1 {
background-position: 0px 0px;
}
}
@media (max-width: 767px){
.navbar-toggle {
margin: 3em 0 0;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-default .navbar-toggle {
border-color: #f5232e;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
border: none;
position: absolute;
width: 95.5%;
background:#5ec05d;
z-index: 999;
}
.navbar-right {
margin: 1em 0 0;
}
.navbar-nav {
margin: 0;
text-align: center;
padding:1em 0 0;
}
.navbar-nav > li > a {
margin: 0;
padding: 8px 0;
display: inline-block;
}
.nav > li {
margin:0 0 1em;
}
.navbar-nav .open .dropdown-menu {
background-color: #fff;
}
}
@media (max-width: 736px){
.navbar-toggle {
margin: 2.8em 0 0;
}
.w3_agile_banner_info {
margin: 5em 0 0;
}
.w3_agile_banner_info h2 span:after {
right: 46%;
width: 24%;
}
.banner {
min-height: 450px;
}
.agileits_grid figure {
height: 380px;
}
figure.effect-layla h3 {
padding-top: 5em;
}
.w3_team_grid1 figure {
height: 205px !important;
}
.footer h2 {
width: 47%;
}
.agileits_w3layouts_nav_left ul li {
margin-right: 3em;
}
.agileits_w3layouts_nav_left {
margin-top: .3em;
}
.w3ls_services_grid_right_right {
margin-top: 1.5em;
}
}
@media (max-width: 667px){
.w3_agile_banner_info h2 span:after {
right: 43%;
}
.agileits_grid figure {
height: 340px;
}
figure.effect-layla h3 {
padding-top: 4.5em;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 35%;
}
.w3layouts_statistics_grid_right h4 {
margin: 1em 0;
font-size: 1.3em;
}
.w3layouts_team_grid {
width: 50%;
padding: 0 1em;
}
.w3_team_grid1 figure {
height: 385px !important;
}
figure.effect-layla ul {
padding: 9.5em 0 0;
}
.w3layouts_team_grid:nth-child(2) {
margin-bottom:2em;
}
.footer h2 {
width: 52%;
}
.agileits_w3layouts_nav_left ul li {
margin-right: 2em;
}
.footer form {
padding: 1.5em;
}
.service-bottom ul {
width: 81%;
}
.agileits_service_bottom1_left h3 {
font-size: 1.5em;
}
.w3_modal_body_left, .w3_modal_body_right {
float: none;
width: 100%;
}
.w3_modal_body_left img{
margin:0 auto;
}
.w3_modal_body_right {
padding: 0 2em 2em;
}
.w3_modal_body_right h4 {
letter-spacing: 2px;
}
}
@media (max-width: 640px){
.w3_agile_banner_info h2 span:after {
right: 37.5%;
width: 28%;
}
.agileits_grid figure {
height: 325px;
}
figure.effect-layla h3 {
padding-top: 4em;
}
.w3_team_grid1 figure {
height: 365px !important;
}
.footer h2 a {
font-size: 1.2em;
}
.footer h3 {
width: 65%;
}
.footer input[type="submit"] {
background: url(../images/9.png) no-repeat center center #5ec05d;
background-size: 30%;
}
.banner1 {
min-height: 165px;
}
.service-bottom ul li span {
width: 65%;
}
.service-bottom h3 {
font-size: 1.7em;
}
}
@media (max-width: 600px){
.w3_agile_banner_info h2 span:after {
right: 34.5%;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 33%;
}
.agileits_grid figure {
height: 302px;
}
figure.effect-layla h3 {
padding-top: 3.5em;
}
.w3_team_grid1 figure {
height: 335px !important;
}
figure.effect-layla ul {
padding: 9em 0 0;
}
.footer h2 {
width: 56%;
}
.agileits_w3layouts_nav_left ul li {
margin-right: 1.5em;
}
.agileits_w3layouts_nav_left ul li:last-child {
margin: 0;
}
.agileits_service_bottom1_left h3 {
font-size: 1.3em;
}
.agile_classes_grid1 {
margin-top: 2em;
}
}
@media (max-width: 568px){
.w3_agile_banner_info h2 {
font-size: 1.8em;
}
.w3_agile_banner_info h2 span:after {
right: 36.5%;
}
.banner {
min-height: 400px;
}
.w3_agile_banner_info {
margin: 4em 0 0;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 32%;
}
.agileits_grid figure {
height: 280px;
}
.w3_team_grid1 figure {
height: 310px !important;
}
figure.effect-layla ul {
padding: 7.5em 0 0;
}
.w3_agile_turpis {
width: 100%;
}
.footer h2 a {
font-size: 1.1em;
}
.footer h3 {
font-size: 1.8em;
}
.agileits_w3layouts_nav_right ul li {
margin-left: 0em;
}
}
@media (max-width: 480px){
.navbar-brand {
height: 80px;
font-size: .7em;
background: url(../images/1.png) no-repeat 0px 0px;
background-size: 26%;
line-height: 80px;
}
.navbar-toggle {
margin: 1.8em 0 0;
}
.w3_agile_banner_info h2 span {
padding-left: 2em;
}
.w3_agile_banner_info h2 span:after {
right: 30.5%;
width: 34%;
}
.banner {
background-position: -130px 0px;
}
.banner-bottom, .statistics, .testimonials, .footer, .service-bottom {
padding: 2em 0;
}
.wthree_banner_bottom_grid1 {
height: 43px;
width: 80px;
}
.wthree_banner_bottom_grid1 p {
font-size: 1.3em;
}
.agileits_grid figure {
height: 230px;
}
figure.effect-layla h3 {
padding-top: 2em;
font-size: 1.3em;
}
.w3ls_play_icon {
font-size: 1.1em;
width: 50px;
height: 30px;
}
.navbar-right {
margin: 0;
}
.w3_stats_grid {
padding: 0;
}
.w3_testimonials_grids {
margin: 2em 0 0;
}
.wthree_head {
font-size: 1.5em;
}
.wthree_head:after {
width: 45%;
right: 28%;
}
.wthree_head:before {
width: 18%;
left: 41.5%;
}
.w3_team_grid1 figure {
height: 245px !important;
}
figure.effect-layla ul {
padding: 5.5em 0 0;
}
.footer h2 {
width: 67%;
}
.footer h3 {
width: 75%;
}
.footer input[type="email"] {
width: 83.1%;
}
.agileits_w3layouts_nav {
margin: 2em 0;
}
.agileits_w3layouts_nav_left {
margin-top: 0;
float: none;
text-align: center;
margin-bottom: 1em;
}
.agileits_w3layouts_nav_right {
float: none;
text-align: center;
}
.odometer {
font-size: 2.2em;
}
.w3ls_services_grid_right_right {
padding: 0;
}
.service-bottom ul li span {
width: 56%;
}
.service-bottom ul li i {
left: 42%;
}
.agileits_service_bottom1_left h3 {
font-size: 1.2em;
margin-bottom:1em;
}
.agileits_service_bottom1_left,.agileits_service_bottom1_right {
float: none;
text-align: center;
}
.w3layouts_more {
width: 50%;
margin: 0 auto;
}
.modal-header {
font-size: 1.6em;
letter-spacing: 5px;
}
.agile_classes_grid1_left h4 {
font-size: 1em;
}
.agile_classes_grid1_left {
padding: 0;
}
.wthree_contact_grid_left,.wthree_contact_grid_right {
padding: 0;
}
}
@media (max-width: 414px){
.w3_agile_banner_info h2 {
font-size: 1.6em;
}
.w3_agile_banner_info h2 span:after {
right: 28.5%;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 39.5%;
}
.w3_agileits_banner_bottom_grid {
float: none;
width: 100%;
}
.agileits_grid {
width: 100%;
}
.agileits_grid figure {
height: 400px;
}
.w3_agileits_banner_bottom_grid:nth-child(2),.w3layouts_team_grid:nth-child(2) {
margin: 2em 0;
}
.w3_agileits_banner_bottom_grid:nth-child(3),.w3layouts_team_grid:nth-child(3) {
margin-bottom: 2em;
}
figure.effect-layla h3 {
padding-top: 7em;
}
.w3layouts_statistics_grid_right {
padding: 0;
}
.w3_stats_grid {
float: none;
width: 100%;
}
.w3layouts_stats_grid1 {
margin: 1em auto 0;
}
.w3_stats_grid:nth-child(3) {
margin: 2em 0;
}
.owl-carousel .owl-item img {
visibility: visible;
}
.owl-carousel .owl-item {
opacity: 1;
border: 1px solid #fff;
}
.w3layouts_team_grid {
width: 100%;
float: none;
}
.w3_team_grid1 figure {
height: 450px !important;
}
figure.effect-layla ul {
padding: 11.5em 0 0;
}
.footer h2 {
width: 77%;
}
.footer h3 {
font-size: 1.4em;
}
.footer input[type="submit"] {
background: url(../images/9.png) no-repeat center center #5ec05d;
background-size: 40%;
}
.w3ls_services_grid_right_right h4 {
font-size: 1em;
letter-spacing: 2px;
}
.service-bottom h3 {
font-size: 1.4em;
}
.service-bottom ul li {
font-size: 14px;
}
.service-bottom1 {
padding: 2em 0;
}
.w3_modal_body_right {
padding: 0 1em 2em;
}
}
@media (max-width: 384px){
.w3_agile_banner_info h2 span:after {
right: 18.5%;
width: 40%;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 38.5%;
}
.agileits_grid figure {
height: 390px;
}
.w3layouts_statistics_grid_right h4 {
font-size: 1.2em;
}
.w3_team_grid1 figure {
height: 425px !important;
}
.footer h2 {
width: 84%;
}
.footer h3 {
width: 85%;
}
.footer input[type="submit"] {
background: url(../images/9.png) no-repeat center center #5ec05d;
background-size: 50%;
}
.agileits_w3layouts_nav_left ul li {
margin-right: 1em;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
width: 91.5%;
}
.w3ls_services_grid_right_right h4 {
letter-spacing: 1px;
line-height: 1.5em;
}
.w3ls_services_grid_right_right {
margin-top: 0;
}
.service-bottom h3 {
font-size: 1.2em;
}
.service-bottom p {
margin: 1em 0 2em;
font-size: 14px;
}
.service-bottom ul {
width: 100%;
}
.w3layouts_more {
width: 60%;
}
.w3_contact_grid {
padding: 0;
}
}
@media (max-width: 375px){
.agileits_grid figure {
height: 380px;
}
figure.effect-layla h3 {
padding-top: 6em;
}
.w3_team_grid1 figure {
height: 410px !important;
}
figure.effect-layla ul {
padding: 10.5em 0 0;
}
.footer input[type="email"] {
width: 100%;
margin-bottom: 1em;
}
.footer input[type="submit"] {
width: 20%;
}
.agileits_w3layouts_classes_grid1_right {
width: 50px;
height: 50px;
}
.agileits_w3layouts_classes_grid1_right i {
font-size: 1.2em;
}
}
@media (max-width: 320px){
.navbar-brand {
font-size: .6em;
}
.w3_agile_banner_info h2 {
font-size: 1.3em;
}
.banner {
min-height: 360px;
background-position: -215px 0px;
}
p, ul li, ol li,.nav > li > a,.footer input[type="email"],.w3_contact_grid input[type="text"], .w3_contact_grid input[type="email"], .w3_contact_grid textarea {
font-size: 13px;
}
.navbar-default .navbar-nav > li > a {
letter-spacing: 2px;
}
.agileinfo_banner_bottom_grid_main:before, .agileinfo_banner_bottom_grid_main:after {
width: 35.5%;
}
.agileits_grid figure {
height: 310px;
}
figure.effect-layla h3 {
padding-top: 4.5em;
}
.wthree_head {
font-size: 1.4em;
}
.wthree_head:after {
width: 65%;
right: 17%;
}
.w3_team_grid1 figure {
height: 330px !important;
}
figure.effect-layla ul {
padding: 8.5em 0 0;
}
.footer h2 a {
font-size: .8em;
background: url(../images/1.png) no-repeat 0px 0px;
background-size: 30%;
line-height: 90px;
}
.footer h3 {
width: 100%;
}
.footer form {
padding: 1em;
}
.footer input[type="submit"] {
width: 25%;
}
.service-bottom h3 {
letter-spacing: 3px;
}
.service-bottom ul li span {
width: 50%;
}
.agileits_service_bottom1_left h3 {
font-size: 1.1em;
}
.w3layouts_more {
width: 70%;
}
.modal-header {
font-size: 1.4em;
padding: 10px;
}
.w3_modal_body_right h4 {
letter-spacing: 1px;
font-size: 1.2em;
}
.modal-body p i {
margin: 0.5em 0;
}
.w3_agile_classes_grid {
padding: 0;
}
.agile_classes_grid1_left h4 {
font-size: .9em;
}
.navbar-toggle {
margin: 1.6em 0 0;
}
}
| 0.327131 | 0.047581 |
@name Ink for GMail
@namespace github.com/FaySmash
@version 0.1.0
@description This gives GMail more color back!
@author FaySmash (https://github.com/FaySmash)
@homepageURL https://github.com/FaySmash/Ink-for-Google-Reloaded
@supportURL https://github.com/FaySmash/Ink-for-Google-Reloaded/issues
@license GPL-3.0-or-later
@preprocessor uso
@var color primary-color 'Primary-Color' #DB4437
@var color secondary-color 'Secondary Color' #FFFFFF
@var select sb-position 'Searchbox Position' {
"sb_p_l:Left": `
#aso_search_form_anchor {}
`,
"sb_p_c:Centered": `
#aso_search_form_anchor {
position: absolute !important;
top: 0 !important;
bottom: 0 !important;
left: 235px !important;
right: 315px !important;
margin: auto !important;
}
`
}
==/UserStyle== */
@-moz-document domain("mail.google.com") {
/* ---------------------------------------------------------------------- TOP BAR ---------------------------------------------------------------------- */
/* makes the scroll bar at the left persistent, even when not hovered over the app drawer (ajl aib aZ6) */
.aeN .ajl {
overflow: auto !important;
}
/* adding shadow and adjusting height and color of the bar at the top (#gb) */
#gb {
background-color: /*[[primary-color]]*/
!important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2) !important;
height: 64px !important;
}
/* tints the GMail Logo white and moves it to the left as well as under the parent class */
img.gb_1a {
filter: brightness(1000%);
margin-left: -44px;
z-index: -1
}
/* generates a square which overlapps the GMail Logo */
div.gb_cc {
border-left-width: 40px;
border-left-style: solid;
border-color: /*[[primary-color]]*/
}
/* ---------------------------------------------------------------------- APP DRAWER ---------------------------------------------------------------------- */
/* makes the "new Mail" button edgy */
.z0 > .L3,
.z0 > .L3:hover {
box-shadow: none !important;
border-radius: 0 !important;
margin: auto !important;
padding: 0 !important;
background: none !important;
}
/* makes the Background of the "new Mail" button grey when hovered */
.aic:hover {
background: #fafafb !important;
}
/* makes the App Drawer selector edgy */
.TK .TO,
.n6 .ah9,
.CL {
border-radius: 0 !important;
}
/* ---------------------------------------------------------------------- BUTTONS ---------------------------------------------------------------------- */
/* sets the color of the icons (.gb_Xa svg .gb_oc svg .gb_Pe.gb_lf button.gb_nf svg .gb_Pe.gb_lf button.gb_9e svg) to secondary-color */
.gb_Xa svg,
.gb_oc svg,
.gb_Pe.gb_lf button.gb_nf svg,
.gb_Pe.gb_lf button.gb_9e svg {
opacity: 1.0;
fill: /*[[secondary-color]]*/;
}
/* sets the color of the notification bell */
.gb_Kc .gb_Be {
color: /*[[primary-color]]*/;
background-color: /*[[secondary-color]]*/;
}
/* ---------------------------------------------------------------------- SEARCHBOX ---------------------------------------------------------------------- */
/* sets the position of the searchbox (#container.ytd-searchbox) to be centered */
/*[[sb-position]]*/
/* determines the design of the searchbox (div#container.style-scope.ytd-searchbox) */
/* sets the color of the text in the input field (input.ytd-searchbox) to secondary-color */
#aso_search_form_anchor {
color: /*[[secondary-color]]*/;
border: 0;
outline: none;
background: hsla(0, 0%, 100%, .15) !important;
height: 48px;
max-width: 650px;
border-radius: 3px;
box-shadow: none;
font: 400 16px/48px Roboto, Arial, sans-serif;
}
/* makes the typed text white */
.gb_7e {
color: /*[[secondary-color]]*/
!important;
-webkit-text-fill-color: /*[[secondary-color]]*/
}
/* secondary-color default :#fff */
/* primary-color default: #DB4437 */
}
|
data/usercss/159189.user.css
|
@name Ink for GMail
@namespace github.com/FaySmash
@version 0.1.0
@description This gives GMail more color back!
@author FaySmash (https://github.com/FaySmash)
@homepageURL https://github.com/FaySmash/Ink-for-Google-Reloaded
@supportURL https://github.com/FaySmash/Ink-for-Google-Reloaded/issues
@license GPL-3.0-or-later
@preprocessor uso
@var color primary-color 'Primary-Color' #DB4437
@var color secondary-color 'Secondary Color' #FFFFFF
@var select sb-position 'Searchbox Position' {
"sb_p_l:Left": `
#aso_search_form_anchor {}
`,
"sb_p_c:Centered": `
#aso_search_form_anchor {
position: absolute !important;
top: 0 !important;
bottom: 0 !important;
left: 235px !important;
right: 315px !important;
margin: auto !important;
}
`
}
==/UserStyle== */
@-moz-document domain("mail.google.com") {
/* ---------------------------------------------------------------------- TOP BAR ---------------------------------------------------------------------- */
/* makes the scroll bar at the left persistent, even when not hovered over the app drawer (ajl aib aZ6) */
.aeN .ajl {
overflow: auto !important;
}
/* adding shadow and adjusting height and color of the bar at the top (#gb) */
#gb {
background-color: /*[[primary-color]]*/
!important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2) !important;
height: 64px !important;
}
/* tints the GMail Logo white and moves it to the left as well as under the parent class */
img.gb_1a {
filter: brightness(1000%);
margin-left: -44px;
z-index: -1
}
/* generates a square which overlapps the GMail Logo */
div.gb_cc {
border-left-width: 40px;
border-left-style: solid;
border-color: /*[[primary-color]]*/
}
/* ---------------------------------------------------------------------- APP DRAWER ---------------------------------------------------------------------- */
/* makes the "new Mail" button edgy */
.z0 > .L3,
.z0 > .L3:hover {
box-shadow: none !important;
border-radius: 0 !important;
margin: auto !important;
padding: 0 !important;
background: none !important;
}
/* makes the Background of the "new Mail" button grey when hovered */
.aic:hover {
background: #fafafb !important;
}
/* makes the App Drawer selector edgy */
.TK .TO,
.n6 .ah9,
.CL {
border-radius: 0 !important;
}
/* ---------------------------------------------------------------------- BUTTONS ---------------------------------------------------------------------- */
/* sets the color of the icons (.gb_Xa svg .gb_oc svg .gb_Pe.gb_lf button.gb_nf svg .gb_Pe.gb_lf button.gb_9e svg) to secondary-color */
.gb_Xa svg,
.gb_oc svg,
.gb_Pe.gb_lf button.gb_nf svg,
.gb_Pe.gb_lf button.gb_9e svg {
opacity: 1.0;
fill: /*[[secondary-color]]*/;
}
/* sets the color of the notification bell */
.gb_Kc .gb_Be {
color: /*[[primary-color]]*/;
background-color: /*[[secondary-color]]*/;
}
/* ---------------------------------------------------------------------- SEARCHBOX ---------------------------------------------------------------------- */
/* sets the position of the searchbox (#container.ytd-searchbox) to be centered */
/*[[sb-position]]*/
/* determines the design of the searchbox (div#container.style-scope.ytd-searchbox) */
/* sets the color of the text in the input field (input.ytd-searchbox) to secondary-color */
#aso_search_form_anchor {
color: /*[[secondary-color]]*/;
border: 0;
outline: none;
background: hsla(0, 0%, 100%, .15) !important;
height: 48px;
max-width: 650px;
border-radius: 3px;
box-shadow: none;
font: 400 16px/48px Roboto, Arial, sans-serif;
}
/* makes the typed text white */
.gb_7e {
color: /*[[secondary-color]]*/
!important;
-webkit-text-fill-color: /*[[secondary-color]]*/
}
/* secondary-color default :#fff */
/* primary-color default: #DB4437 */
}
| 0.339609 | 0.162513 |
.col-group:before,
[class*="col-"]:before,
.col-group:after,
[class*="col-"]:after {
content: " ";
display: table;
}
.col-group:after,
[class*="col-"]:after {
clear: both;
}
[class*="col-"]:not(.col-group) {
float: left;
min-height: 1px;
position: relative;
}
.gutter > [class*="col-"]:not(.col-group) {
box-sizing: border-box;
padding: 1.6%;
}
.col-1 {
width: calc((100% / 12) * 1);
}
.col-2 {
width: calc((100% / 12) * 2);
}
.col-3 {
width: calc((100% / 12) * 3);
}
.col-4 {
width: calc((100% / 12) * 4);
}
.col-5 {
width: calc((100% / 12) * 5);
}
.col-6 {
width: calc((100% / 12) * 6);
}
.col-7 {
width: calc((100% / 12) * 7);
}
.col-8 {
width: calc((100% / 12) * 8);
}
.col-9 {
width: calc((100% / 12) * 9);
}
.col-10 {
width: calc((100% / 12) * 10);
}
.col-11 {
width: calc((100% / 12) * 11);
}
.col-12 {
width: calc((100% / 12) * 12);
}
.col-offset-0 {
margin-left: 0;
}
.col-offset-1 {
margin-left: calc((100% / 12) * 1);
}
.col-offset-2 {
margin-left: calc((100% / 12) * 2);
}
.col-offset-3 {
margin-left: calc((100% / 12) * 3);
}
.col-offset-4 {
margin-left: calc((100% / 12) * 4);
}
.col-offset-5 {
margin-left: calc((100% / 12) * 5);
}
.col-offset-6 {
margin-left: calc((100% / 12) * 6);
}
.col-offset-7 {
margin-left: calc((100% / 12) * 7);
}
.col-offset-8 {
margin-left: calc((100% / 12) * 8);
}
.col-offset-9 {
margin-left: calc((100% / 12) * 9);
}
.col-offset-10 {
margin-left: calc((100% / 12) * 10);
}
.col-offset-11 {
margin-left: calc((100% / 12) * 11);
}
.col-offset-12 {
margin-left: 100%;
}
.col-push-0 {
left: 0;
}
.col-push-1 {
left: calc((100% / 12) * 1);
}
.col-push-2 {
left: calc((100% / 12) * 2);
}
.col-push-3 {
left: calc((100% / 12) * 3);
}
.col-push-4 {
left: calc((100% / 12) * 4);
}
.col-push-5 {
left: calc((100% / 12) * 5);
}
.col-push-6 {
left: calc((100% / 12) * 6);
}
.col-push-7 {
left: calc((100% / 12) * 7);
}
.col-push-8 {
left: calc((100% / 12) * 8);
}
.col-push-9 {
left: calc((100% / 12) * 9);
}
.col-push-10 {
left: calc((100% / 12) * 10);
}
.col-push-11 {
left: calc((100% / 12) * 11);
}
.col-push-12 {
left: 100%;
}
.col-pull-0 {
right: 0;
}
.col-pull-1 {
right: calc((100% / 12) * 1);
}
.col-pull-2 {
right: calc((100% / 12) * 2);
}
.col-pull-3 {
right: calc((100% / 12) * 3);
}
.col-pull-4 {
right: calc((100% / 12) * 4);
}
.col-pull-5 {
right: calc((100% / 12) * 5);
}
.col-pull-6 {
right: calc((100% / 12) * 6);
}
.col-pull-7 {
right: calc((100% / 12) * 7);
}
.col-pull-8 {
right: calc((100% / 12) * 8);
}
.col-pull-9 {
right: calc((100% / 12) * 9);
}
.col-pull-10 {
right: calc((100% / 12) * 10);
}
.col-pull-11 {
right: calc((100% / 12) * 11);
}
.col-pull-12 {
right: 100%;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.float-none {
float: none;
}
.show {
display: initial !important;
}
.hide {
display: none !important;
}
.display-block {
display: block !important;
}
.display-inline {
display: inline !important;
}
.display-inline-block {
display: inline-block !important;
}
.display-table {
display: table !important;
}
.visible {
visibility: visible !important;
}
.hidden {
visibility: hidden !important;
}
@media (min-width: 48em) {
.sm-col-1 {
width: calc((100% / 12) * 1);
}
.sm-col-2 {
width: calc((100% / 12) * 2);
}
.sm-col-3 {
width: calc((100% / 12) * 3);
}
.sm-col-4 {
width: calc((100% / 12) * 4);
}
.sm-col-5 {
width: calc((100% / 12) * 5);
}
.sm-col-6 {
width: calc((100% / 12) * 6);
}
.sm-col-7 {
width: calc((100% / 12) * 7);
}
.sm-col-8 {
width: calc((100% / 12) * 8);
}
.sm-col-9 {
width: calc((100% / 12) * 9);
}
.sm-col-10 {
width: calc((100% / 12) * 10);
}
.sm-col-11 {
width: calc((100% / 12) * 11);
}
.sm-col-12 {
width: calc((100% / 12) * 12);
}
.sm-col-offset-0 {
margin-left: 0;
}
.sm-col-offset-1 {
margin-left: calc((100% / 12) * 1);
}
.sm-col-offset-2 {
margin-left: calc((100% / 12) * 2);
}
.sm-col-offset-3 {
margin-left: calc((100% / 12) * 3);
}
.sm-col-offset-4 {
margin-left: calc((100% / 12) * 4);
}
.sm-col-offset-5 {
margin-left: calc((100% / 12) * 5);
}
.sm-col-offset-6 {
margin-left: calc((100% / 12) * 6);
}
.sm-col-offset-7 {
margin-left: calc((100% / 12) * 7);
}
.sm-col-offset-8 {
margin-left: calc((100% / 12) * 8);
}
.sm-col-offset-9 {
margin-left: calc((100% / 12) * 9);
}
.sm-col-offset-10 {
margin-left: calc((100% / 12) * 10);
}
.sm-col-offset-11 {
margin-left: calc((100% / 12) * 11);
}
.sm-col-offset-12 {
margin-left: 100%;
}
.sm-col-push-0 {
left: 0;
}
.sm-col-push-1 {
left: calc((100% / 12) * 1);
}
.sm-col-push-2 {
left: calc((100% / 12) * 2);
}
.sm-col-push-3 {
left: calc((100% / 12) * 3);
}
.sm-col-push-4 {
left: calc((100% / 12) * 4);
}
.sm-col-push-5 {
left: calc((100% / 12) * 5);
}
.sm-col-push-6 {
left: calc((100% / 12) * 6);
}
.sm-col-push-7 {
left: calc((100% / 12) * 7);
}
.sm-col-push-8 {
left: calc((100% / 12) * 8);
}
.sm-col-push-9 {
left: calc((100% / 12) * 9);
}
.sm-col-push-10 {
left: calc((100% / 12) * 10);
}
.sm-col-push-11 {
left: calc((100% / 12) * 11);
}
.sm-col-push-12 {
left: 100%;
}
.sm-col-pull-0 {
right: 0;
}
.sm-col-pull-1 {
right: calc((100% / 12) * 1);
}
.sm-col-pull-2 {
right: calc((100% / 12) * 2);
}
.sm-col-pull-3 {
right: calc((100% / 12) * 3);
}
.sm-col-pull-4 {
right: calc((100% / 12) * 4);
}
.sm-col-pull-5 {
right: calc((100% / 12) * 5);
}
.sm-col-pull-6 {
right: calc((100% / 12) * 6);
}
.sm-col-pull-7 {
right: calc((100% / 12) * 7);
}
.sm-col-pull-8 {
right: calc((100% / 12) * 8);
}
.sm-col-pull-9 {
right: calc((100% / 12) * 9);
}
.sm-col-pull-10 {
right: calc((100% / 12) * 10);
}
.sm-col-pull-11 {
right: calc((100% / 12) * 11);
}
.sm-col-pull-12 {
right: 100%;
}
.sm-text-left {
text-align: left;
}
.sm-text-center {
text-align: center;
}
.sm-text-right {
text-align: right;
}
.sm-float-left {
float: left;
}
.sm-float-right {
float: right;
}
.sm-float-none {
float: none;
}
.sm-show {
display: initial !important;
}
.sm-hide {
display: none !important;
}
.sm-display-block {
display: block !important;
}
.sm-display-inline {
display: inline !important;
}
.sm-display-inline-block {
display: inline-block !important;
}
.sm-display-table {
display: table !important;
}
.sm-visible {
visibility: visible !important;
}
.sm-hidden {
visibility: hidden !important;
}
}
@media (min-width: 62em) {
.md-col-1 {
width: calc((100% / 12) * 1);
}
.md-col-2 {
width: calc((100% / 12) * 2);
}
.md-col-3 {
width: calc((100% / 12) * 3);
}
.md-col-4 {
width: calc((100% / 12) * 4);
}
.md-col-5 {
width: calc((100% / 12) * 5);
}
.md-col-6 {
width: calc((100% / 12) * 6);
}
.md-col-7 {
width: calc((100% / 12) * 7);
}
.md-col-8 {
width: calc((100% / 12) * 8);
}
.md-col-9 {
width: calc((100% / 12) * 9);
}
.md-col-10 {
width: calc((100% / 12) * 10);
}
.md-col-11 {
width: calc((100% / 12) * 11);
}
.md-col-12 {
width: calc((100% / 12) * 12);
}
.md-col-offset-0 {
margin-left: 0;
}
.md-col-offset-1 {
margin-left: calc((100% / 12) * 1);
}
.md-col-offset-2 {
margin-left: calc((100% / 12) * 2);
}
.md-col-offset-3 {
margin-left: calc((100% / 12) * 3);
}
.md-col-offset-4 {
margin-left: calc((100% / 12) * 4);
}
.md-col-offset-5 {
margin-left: calc((100% / 12) * 5);
}
.md-col-offset-6 {
margin-left: calc((100% / 12) * 6);
}
.md-col-offset-7 {
margin-left: calc((100% / 12) * 7);
}
.md-col-offset-8 {
margin-left: calc((100% / 12) * 8);
}
.md-col-offset-9 {
margin-left: calc((100% / 12) * 9);
}
.md-col-offset-10 {
margin-left: calc((100% / 12) * 10);
}
.md-col-offset-11 {
margin-left: calc((100% / 12) * 11);
}
.md-col-offset-12 {
margin-left: 100%;
}
.md-col-push-0 {
left: 0;
}
.md-col-push-1 {
left: calc((100% / 12) * 1);
}
.md-col-push-2 {
left: calc((100% / 12) * 2);
}
.md-col-push-3 {
left: calc((100% / 12) * 3);
}
.md-col-push-4 {
left: calc((100% / 12) * 4);
}
.md-col-push-5 {
left: calc((100% / 12) * 5);
}
.md-col-push-6 {
left: calc((100% / 12) * 6);
}
.md-col-push-7 {
left: calc((100% / 12) * 7);
}
.md-col-push-8 {
left: calc((100% / 12) * 8);
}
.md-col-push-9 {
left: calc((100% / 12) * 9);
}
.md-col-push-10 {
left: calc((100% / 12) * 10);
}
.md-col-push-11 {
left: calc((100% / 12) * 11);
}
.md-col-push-12 {
left: 100%;
}
.md-col-pull-0 {
right: 0;
}
.md-col-pull-1 {
right: calc((100% / 12) * 1);
}
.md-col-pull-2 {
right: calc((100% / 12) * 2);
}
.md-col-pull-3 {
right: calc((100% / 12) * 3);
}
.md-col-pull-4 {
right: calc((100% / 12) * 4);
}
.md-col-pull-5 {
right: calc((100% / 12) * 5);
}
.md-col-pull-6 {
right: calc((100% / 12) * 6);
}
.md-col-pull-7 {
right: calc((100% / 12) * 7);
}
.md-col-pull-8 {
right: calc((100% / 12) * 8);
}
.md-col-pull-9 {
right: calc((100% / 12) * 9);
}
.md-col-pull-10 {
right: calc((100% / 12) * 10);
}
.md-col-pull-11 {
right: calc((100% / 12) * 11);
}
.md-col-pull-12 {
right: 100%;
}
.md-text-left {
text-align: left;
}
.md-text-center {
text-align: center;
}
.md-text-right {
text-align: right;
}
.md-float-left {
float: left;
}
.md-float-right {
float: right;
}
.md-float-none {
float: none;
}
.md-show {
display: initial !important;
}
.md-hide {
display: none !important;
}
.md-display-block {
display: block !important;
}
.md-display-inline {
display: inline !important;
}
.md-display-inline-block {
display: inline-block !important;
}
.md-display-table {
display: table !important;
}
.md-visible {
visibility: visible !important;
}
.md-hidden {
visibility: hidden !important;
}
}
@media (min-width: 75em) {
.lg-col-1 {
width: calc((100% / 12) * 1);
}
.lg-col-2 {
width: calc((100% / 12) * 2);
}
.lg-col-3 {
width: calc((100% / 12) * 3);
}
.lg-col-4 {
width: calc((100% / 12) * 4);
}
.lg-col-5 {
width: calc((100% / 12) * 5);
}
.lg-col-6 {
width: calc((100% / 12) * 6);
}
.lg-col-7 {
width: calc((100% / 12) * 7);
}
.lg-col-8 {
width: calc((100% / 12) * 8);
}
.lg-col-9 {
width: calc((100% / 12) * 9);
}
.lg-col-10 {
width: calc((100% / 12) * 10);
}
.lg-col-11 {
width: calc((100% / 12) * 11);
}
.lg-col-12 {
width: calc((100% / 12) * 12);
}
.lg-col-offset-0 {
margin-left: 0;
}
.lg-col-offset-1 {
margin-left: calc((100% / 12) * 1);
}
.lg-col-offset-2 {
margin-left: calc((100% / 12) * 2);
}
.lg-col-offset-3 {
margin-left: calc((100% / 12) * 3);
}
.lg-col-offset-4 {
margin-left: calc((100% / 12) * 4);
}
.lg-col-offset-5 {
margin-left: calc((100% / 12) * 5);
}
.lg-col-offset-6 {
margin-left: calc((100% / 12) * 6);
}
.lg-col-offset-7 {
margin-left: calc((100% / 12) * 7);
}
.lg-col-offset-8 {
margin-left: calc((100% / 12) * 8);
}
.lg-col-offset-9 {
margin-left: calc((100% / 12) * 9);
}
.lg-col-offset-10 {
margin-left: calc((100% / 12) * 10);
}
.lg-col-offset-11 {
margin-left: calc((100% / 12) * 11);
}
.lg-col-offset-12 {
margin-left: 100%;
}
.lg-col-push-0 {
left: 0;
}
.lg-col-push-1 {
left: calc((100% / 12) * 1);
}
.lg-col-push-2 {
left: calc((100% / 12) * 2);
}
.lg-col-push-3 {
left: calc((100% / 12) * 3);
}
.lg-col-push-4 {
left: calc((100% / 12) * 4);
}
.lg-col-push-5 {
left: calc((100% / 12) * 5);
}
.lg-col-push-6 {
left: calc((100% / 12) * 6);
}
.lg-col-push-7 {
left: calc((100% / 12) * 7);
}
.lg-col-push-8 {
left: calc((100% / 12) * 8);
}
.lg-col-push-9 {
left: calc((100% / 12) * 9);
}
.lg-col-push-10 {
left: calc((100% / 12) * 10);
}
.lg-col-push-11 {
left: calc((100% / 12) * 11);
}
.lg-col-push-12 {
left: 100%;
}
.lg-col-pull-0 {
right: 0;
}
.lg-col-pull-1 {
right: calc((100% / 12) * 1);
}
.lg-col-pull-2 {
right: calc((100% / 12) * 2);
}
.lg-col-pull-3 {
right: calc((100% / 12) * 3);
}
.lg-col-pull-4 {
right: calc((100% / 12) * 4);
}
.lg-col-pull-5 {
right: calc((100% / 12) * 5);
}
.lg-col-pull-6 {
right: calc((100% / 12) * 6);
}
.lg-col-pull-7 {
right: calc((100% / 12) * 7);
}
.lg-col-pull-8 {
right: calc((100% / 12) * 8);
}
.lg-col-pull-9 {
right: calc((100% / 12) * 9);
}
.lg-col-pull-10 {
right: calc((100% / 12) * 10);
}
.lg-col-pull-11 {
right: calc((100% / 12) * 11);
}
.lg-col-pull-12 {
right: 100%;
}
.lg-text-left {
text-align: left;
}
.lg-text-center {
text-align: center;
}
.lg-text-right {
text-align: right;
}
.lg-float-left {
float: left;
}
.lg-float-right {
float: right;
}
.lg-float-none {
float: none;
}
.lg-show {
display: initial !important;
}
.lg-hide {
display: none !important;
}
.lg-display-block {
display: block !important;
}
.lg-display-inline {
display: inline !important;
}
.lg-display-inline-block {
display: inline-block !important;
}
.lg-display-table {
display: table !important;
}
.lg-visible {
visibility: visible !important;
}
.lg-hidden {
visibility: hidden !important;
}
}
|
dist/gridup.css
|
.col-group:before,
[class*="col-"]:before,
.col-group:after,
[class*="col-"]:after {
content: " ";
display: table;
}
.col-group:after,
[class*="col-"]:after {
clear: both;
}
[class*="col-"]:not(.col-group) {
float: left;
min-height: 1px;
position: relative;
}
.gutter > [class*="col-"]:not(.col-group) {
box-sizing: border-box;
padding: 1.6%;
}
.col-1 {
width: calc((100% / 12) * 1);
}
.col-2 {
width: calc((100% / 12) * 2);
}
.col-3 {
width: calc((100% / 12) * 3);
}
.col-4 {
width: calc((100% / 12) * 4);
}
.col-5 {
width: calc((100% / 12) * 5);
}
.col-6 {
width: calc((100% / 12) * 6);
}
.col-7 {
width: calc((100% / 12) * 7);
}
.col-8 {
width: calc((100% / 12) * 8);
}
.col-9 {
width: calc((100% / 12) * 9);
}
.col-10 {
width: calc((100% / 12) * 10);
}
.col-11 {
width: calc((100% / 12) * 11);
}
.col-12 {
width: calc((100% / 12) * 12);
}
.col-offset-0 {
margin-left: 0;
}
.col-offset-1 {
margin-left: calc((100% / 12) * 1);
}
.col-offset-2 {
margin-left: calc((100% / 12) * 2);
}
.col-offset-3 {
margin-left: calc((100% / 12) * 3);
}
.col-offset-4 {
margin-left: calc((100% / 12) * 4);
}
.col-offset-5 {
margin-left: calc((100% / 12) * 5);
}
.col-offset-6 {
margin-left: calc((100% / 12) * 6);
}
.col-offset-7 {
margin-left: calc((100% / 12) * 7);
}
.col-offset-8 {
margin-left: calc((100% / 12) * 8);
}
.col-offset-9 {
margin-left: calc((100% / 12) * 9);
}
.col-offset-10 {
margin-left: calc((100% / 12) * 10);
}
.col-offset-11 {
margin-left: calc((100% / 12) * 11);
}
.col-offset-12 {
margin-left: 100%;
}
.col-push-0 {
left: 0;
}
.col-push-1 {
left: calc((100% / 12) * 1);
}
.col-push-2 {
left: calc((100% / 12) * 2);
}
.col-push-3 {
left: calc((100% / 12) * 3);
}
.col-push-4 {
left: calc((100% / 12) * 4);
}
.col-push-5 {
left: calc((100% / 12) * 5);
}
.col-push-6 {
left: calc((100% / 12) * 6);
}
.col-push-7 {
left: calc((100% / 12) * 7);
}
.col-push-8 {
left: calc((100% / 12) * 8);
}
.col-push-9 {
left: calc((100% / 12) * 9);
}
.col-push-10 {
left: calc((100% / 12) * 10);
}
.col-push-11 {
left: calc((100% / 12) * 11);
}
.col-push-12 {
left: 100%;
}
.col-pull-0 {
right: 0;
}
.col-pull-1 {
right: calc((100% / 12) * 1);
}
.col-pull-2 {
right: calc((100% / 12) * 2);
}
.col-pull-3 {
right: calc((100% / 12) * 3);
}
.col-pull-4 {
right: calc((100% / 12) * 4);
}
.col-pull-5 {
right: calc((100% / 12) * 5);
}
.col-pull-6 {
right: calc((100% / 12) * 6);
}
.col-pull-7 {
right: calc((100% / 12) * 7);
}
.col-pull-8 {
right: calc((100% / 12) * 8);
}
.col-pull-9 {
right: calc((100% / 12) * 9);
}
.col-pull-10 {
right: calc((100% / 12) * 10);
}
.col-pull-11 {
right: calc((100% / 12) * 11);
}
.col-pull-12 {
right: 100%;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.float-none {
float: none;
}
.show {
display: initial !important;
}
.hide {
display: none !important;
}
.display-block {
display: block !important;
}
.display-inline {
display: inline !important;
}
.display-inline-block {
display: inline-block !important;
}
.display-table {
display: table !important;
}
.visible {
visibility: visible !important;
}
.hidden {
visibility: hidden !important;
}
@media (min-width: 48em) {
.sm-col-1 {
width: calc((100% / 12) * 1);
}
.sm-col-2 {
width: calc((100% / 12) * 2);
}
.sm-col-3 {
width: calc((100% / 12) * 3);
}
.sm-col-4 {
width: calc((100% / 12) * 4);
}
.sm-col-5 {
width: calc((100% / 12) * 5);
}
.sm-col-6 {
width: calc((100% / 12) * 6);
}
.sm-col-7 {
width: calc((100% / 12) * 7);
}
.sm-col-8 {
width: calc((100% / 12) * 8);
}
.sm-col-9 {
width: calc((100% / 12) * 9);
}
.sm-col-10 {
width: calc((100% / 12) * 10);
}
.sm-col-11 {
width: calc((100% / 12) * 11);
}
.sm-col-12 {
width: calc((100% / 12) * 12);
}
.sm-col-offset-0 {
margin-left: 0;
}
.sm-col-offset-1 {
margin-left: calc((100% / 12) * 1);
}
.sm-col-offset-2 {
margin-left: calc((100% / 12) * 2);
}
.sm-col-offset-3 {
margin-left: calc((100% / 12) * 3);
}
.sm-col-offset-4 {
margin-left: calc((100% / 12) * 4);
}
.sm-col-offset-5 {
margin-left: calc((100% / 12) * 5);
}
.sm-col-offset-6 {
margin-left: calc((100% / 12) * 6);
}
.sm-col-offset-7 {
margin-left: calc((100% / 12) * 7);
}
.sm-col-offset-8 {
margin-left: calc((100% / 12) * 8);
}
.sm-col-offset-9 {
margin-left: calc((100% / 12) * 9);
}
.sm-col-offset-10 {
margin-left: calc((100% / 12) * 10);
}
.sm-col-offset-11 {
margin-left: calc((100% / 12) * 11);
}
.sm-col-offset-12 {
margin-left: 100%;
}
.sm-col-push-0 {
left: 0;
}
.sm-col-push-1 {
left: calc((100% / 12) * 1);
}
.sm-col-push-2 {
left: calc((100% / 12) * 2);
}
.sm-col-push-3 {
left: calc((100% / 12) * 3);
}
.sm-col-push-4 {
left: calc((100% / 12) * 4);
}
.sm-col-push-5 {
left: calc((100% / 12) * 5);
}
.sm-col-push-6 {
left: calc((100% / 12) * 6);
}
.sm-col-push-7 {
left: calc((100% / 12) * 7);
}
.sm-col-push-8 {
left: calc((100% / 12) * 8);
}
.sm-col-push-9 {
left: calc((100% / 12) * 9);
}
.sm-col-push-10 {
left: calc((100% / 12) * 10);
}
.sm-col-push-11 {
left: calc((100% / 12) * 11);
}
.sm-col-push-12 {
left: 100%;
}
.sm-col-pull-0 {
right: 0;
}
.sm-col-pull-1 {
right: calc((100% / 12) * 1);
}
.sm-col-pull-2 {
right: calc((100% / 12) * 2);
}
.sm-col-pull-3 {
right: calc((100% / 12) * 3);
}
.sm-col-pull-4 {
right: calc((100% / 12) * 4);
}
.sm-col-pull-5 {
right: calc((100% / 12) * 5);
}
.sm-col-pull-6 {
right: calc((100% / 12) * 6);
}
.sm-col-pull-7 {
right: calc((100% / 12) * 7);
}
.sm-col-pull-8 {
right: calc((100% / 12) * 8);
}
.sm-col-pull-9 {
right: calc((100% / 12) * 9);
}
.sm-col-pull-10 {
right: calc((100% / 12) * 10);
}
.sm-col-pull-11 {
right: calc((100% / 12) * 11);
}
.sm-col-pull-12 {
right: 100%;
}
.sm-text-left {
text-align: left;
}
.sm-text-center {
text-align: center;
}
.sm-text-right {
text-align: right;
}
.sm-float-left {
float: left;
}
.sm-float-right {
float: right;
}
.sm-float-none {
float: none;
}
.sm-show {
display: initial !important;
}
.sm-hide {
display: none !important;
}
.sm-display-block {
display: block !important;
}
.sm-display-inline {
display: inline !important;
}
.sm-display-inline-block {
display: inline-block !important;
}
.sm-display-table {
display: table !important;
}
.sm-visible {
visibility: visible !important;
}
.sm-hidden {
visibility: hidden !important;
}
}
@media (min-width: 62em) {
.md-col-1 {
width: calc((100% / 12) * 1);
}
.md-col-2 {
width: calc((100% / 12) * 2);
}
.md-col-3 {
width: calc((100% / 12) * 3);
}
.md-col-4 {
width: calc((100% / 12) * 4);
}
.md-col-5 {
width: calc((100% / 12) * 5);
}
.md-col-6 {
width: calc((100% / 12) * 6);
}
.md-col-7 {
width: calc((100% / 12) * 7);
}
.md-col-8 {
width: calc((100% / 12) * 8);
}
.md-col-9 {
width: calc((100% / 12) * 9);
}
.md-col-10 {
width: calc((100% / 12) * 10);
}
.md-col-11 {
width: calc((100% / 12) * 11);
}
.md-col-12 {
width: calc((100% / 12) * 12);
}
.md-col-offset-0 {
margin-left: 0;
}
.md-col-offset-1 {
margin-left: calc((100% / 12) * 1);
}
.md-col-offset-2 {
margin-left: calc((100% / 12) * 2);
}
.md-col-offset-3 {
margin-left: calc((100% / 12) * 3);
}
.md-col-offset-4 {
margin-left: calc((100% / 12) * 4);
}
.md-col-offset-5 {
margin-left: calc((100% / 12) * 5);
}
.md-col-offset-6 {
margin-left: calc((100% / 12) * 6);
}
.md-col-offset-7 {
margin-left: calc((100% / 12) * 7);
}
.md-col-offset-8 {
margin-left: calc((100% / 12) * 8);
}
.md-col-offset-9 {
margin-left: calc((100% / 12) * 9);
}
.md-col-offset-10 {
margin-left: calc((100% / 12) * 10);
}
.md-col-offset-11 {
margin-left: calc((100% / 12) * 11);
}
.md-col-offset-12 {
margin-left: 100%;
}
.md-col-push-0 {
left: 0;
}
.md-col-push-1 {
left: calc((100% / 12) * 1);
}
.md-col-push-2 {
left: calc((100% / 12) * 2);
}
.md-col-push-3 {
left: calc((100% / 12) * 3);
}
.md-col-push-4 {
left: calc((100% / 12) * 4);
}
.md-col-push-5 {
left: calc((100% / 12) * 5);
}
.md-col-push-6 {
left: calc((100% / 12) * 6);
}
.md-col-push-7 {
left: calc((100% / 12) * 7);
}
.md-col-push-8 {
left: calc((100% / 12) * 8);
}
.md-col-push-9 {
left: calc((100% / 12) * 9);
}
.md-col-push-10 {
left: calc((100% / 12) * 10);
}
.md-col-push-11 {
left: calc((100% / 12) * 11);
}
.md-col-push-12 {
left: 100%;
}
.md-col-pull-0 {
right: 0;
}
.md-col-pull-1 {
right: calc((100% / 12) * 1);
}
.md-col-pull-2 {
right: calc((100% / 12) * 2);
}
.md-col-pull-3 {
right: calc((100% / 12) * 3);
}
.md-col-pull-4 {
right: calc((100% / 12) * 4);
}
.md-col-pull-5 {
right: calc((100% / 12) * 5);
}
.md-col-pull-6 {
right: calc((100% / 12) * 6);
}
.md-col-pull-7 {
right: calc((100% / 12) * 7);
}
.md-col-pull-8 {
right: calc((100% / 12) * 8);
}
.md-col-pull-9 {
right: calc((100% / 12) * 9);
}
.md-col-pull-10 {
right: calc((100% / 12) * 10);
}
.md-col-pull-11 {
right: calc((100% / 12) * 11);
}
.md-col-pull-12 {
right: 100%;
}
.md-text-left {
text-align: left;
}
.md-text-center {
text-align: center;
}
.md-text-right {
text-align: right;
}
.md-float-left {
float: left;
}
.md-float-right {
float: right;
}
.md-float-none {
float: none;
}
.md-show {
display: initial !important;
}
.md-hide {
display: none !important;
}
.md-display-block {
display: block !important;
}
.md-display-inline {
display: inline !important;
}
.md-display-inline-block {
display: inline-block !important;
}
.md-display-table {
display: table !important;
}
.md-visible {
visibility: visible !important;
}
.md-hidden {
visibility: hidden !important;
}
}
@media (min-width: 75em) {
.lg-col-1 {
width: calc((100% / 12) * 1);
}
.lg-col-2 {
width: calc((100% / 12) * 2);
}
.lg-col-3 {
width: calc((100% / 12) * 3);
}
.lg-col-4 {
width: calc((100% / 12) * 4);
}
.lg-col-5 {
width: calc((100% / 12) * 5);
}
.lg-col-6 {
width: calc((100% / 12) * 6);
}
.lg-col-7 {
width: calc((100% / 12) * 7);
}
.lg-col-8 {
width: calc((100% / 12) * 8);
}
.lg-col-9 {
width: calc((100% / 12) * 9);
}
.lg-col-10 {
width: calc((100% / 12) * 10);
}
.lg-col-11 {
width: calc((100% / 12) * 11);
}
.lg-col-12 {
width: calc((100% / 12) * 12);
}
.lg-col-offset-0 {
margin-left: 0;
}
.lg-col-offset-1 {
margin-left: calc((100% / 12) * 1);
}
.lg-col-offset-2 {
margin-left: calc((100% / 12) * 2);
}
.lg-col-offset-3 {
margin-left: calc((100% / 12) * 3);
}
.lg-col-offset-4 {
margin-left: calc((100% / 12) * 4);
}
.lg-col-offset-5 {
margin-left: calc((100% / 12) * 5);
}
.lg-col-offset-6 {
margin-left: calc((100% / 12) * 6);
}
.lg-col-offset-7 {
margin-left: calc((100% / 12) * 7);
}
.lg-col-offset-8 {
margin-left: calc((100% / 12) * 8);
}
.lg-col-offset-9 {
margin-left: calc((100% / 12) * 9);
}
.lg-col-offset-10 {
margin-left: calc((100% / 12) * 10);
}
.lg-col-offset-11 {
margin-left: calc((100% / 12) * 11);
}
.lg-col-offset-12 {
margin-left: 100%;
}
.lg-col-push-0 {
left: 0;
}
.lg-col-push-1 {
left: calc((100% / 12) * 1);
}
.lg-col-push-2 {
left: calc((100% / 12) * 2);
}
.lg-col-push-3 {
left: calc((100% / 12) * 3);
}
.lg-col-push-4 {
left: calc((100% / 12) * 4);
}
.lg-col-push-5 {
left: calc((100% / 12) * 5);
}
.lg-col-push-6 {
left: calc((100% / 12) * 6);
}
.lg-col-push-7 {
left: calc((100% / 12) * 7);
}
.lg-col-push-8 {
left: calc((100% / 12) * 8);
}
.lg-col-push-9 {
left: calc((100% / 12) * 9);
}
.lg-col-push-10 {
left: calc((100% / 12) * 10);
}
.lg-col-push-11 {
left: calc((100% / 12) * 11);
}
.lg-col-push-12 {
left: 100%;
}
.lg-col-pull-0 {
right: 0;
}
.lg-col-pull-1 {
right: calc((100% / 12) * 1);
}
.lg-col-pull-2 {
right: calc((100% / 12) * 2);
}
.lg-col-pull-3 {
right: calc((100% / 12) * 3);
}
.lg-col-pull-4 {
right: calc((100% / 12) * 4);
}
.lg-col-pull-5 {
right: calc((100% / 12) * 5);
}
.lg-col-pull-6 {
right: calc((100% / 12) * 6);
}
.lg-col-pull-7 {
right: calc((100% / 12) * 7);
}
.lg-col-pull-8 {
right: calc((100% / 12) * 8);
}
.lg-col-pull-9 {
right: calc((100% / 12) * 9);
}
.lg-col-pull-10 {
right: calc((100% / 12) * 10);
}
.lg-col-pull-11 {
right: calc((100% / 12) * 11);
}
.lg-col-pull-12 {
right: 100%;
}
.lg-text-left {
text-align: left;
}
.lg-text-center {
text-align: center;
}
.lg-text-right {
text-align: right;
}
.lg-float-left {
float: left;
}
.lg-float-right {
float: right;
}
.lg-float-none {
float: none;
}
.lg-show {
display: initial !important;
}
.lg-hide {
display: none !important;
}
.lg-display-block {
display: block !important;
}
.lg-display-inline {
display: inline !important;
}
.lg-display-inline-block {
display: inline-block !important;
}
.lg-display-table {
display: table !important;
}
.lg-visible {
visibility: visible !important;
}
.lg-hidden {
visibility: hidden !important;
}
}
| 0.645343 | 0.220773 |
.comments__html {
margin: 20px 0;
}
.comments__html-title {
border-bottom: 3px solid #F5F5F5;
padding-bottom: 5px;
margin-bottom: 10px;
}
.comments__html-title span {
border-bottom: 3px solid #D73C3C;
padding-bottom: 7px;
font-size: 18px;
color: #3C3B3C;
}
.comments__html-title span .iconfont {
color: #F44D4D;
font-size: 20px;
}
.comments__html-title .num {
border-bottom: none;
float: right;
font-size: 14px;
}
.comments__html-title .num b {
color: red;
}
.comments__html-list-item {
padding: 5px 0px;
position: relative;
}
.comments__html-list-item-pc {
float: left;
width: 50px;
height: 50px;
padding-top: 8px;
margin-right: 15px;
box-sizing: content-box;
}
.comments__html-list-item-pc img {
width: 100%;
height: 100%;
object-fit: cover;
flex: 1;
border-radius: 50%;
}
.comments__html-list-item-text {
float: left;
width: calc(100% - 65px);
}
.comments__html-list-item-text-name {
line-height: 30px;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
font-size: 14px;
color: #000;
}
.comments__html-list-item-text-des {
line-height: 25px;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 10;
overflow: hidden;
font-size: 14px;
color: #666;
}
.comments__html-list-item-text-btns {
line-height: 30px;
color: #999;
font-size: 12px;
}
.comments__html-list-item-text-btns .item {
float: right;
margin-left: 20px;
cursor: pointer;
vertical-align: middle;
}
.comments__html-list-item-text-btns .item.item1.active {
position: relative;
color: #000;
}
.comments__html-list-item-text-btns .item.item1.active::after {
content: '+1';
position: absolute;
top: -20px;
font-size: 10px;
left: 50%;
margin-left: -5px;
opacity: 0;
-webkit-animation: praise 2.5s;
}
.comments__html-list-item-text-btns .item.item2.active {
position: relative;
color: red;
}
.comments__html-list-item-text-btns .item.item2.active::after {
content: '+1';
position: absolute;
top: -20px;
font-size: 10px;
left: 50%;
margin-left: -5px;
opacity: 0;
-webkit-animation: praise 2.5s;
}
.comments__html-list-item::before {
content: '';
height: 1px;
position: absolute;
bottom: 0;
left: -100%;
right: 0;
background: #eaeaea;
transform: scale(0.333);
-webkit-transform: scale(0.333);
width: 300%;
}
.comments__html-list-item:last-child::before {
height: 0px;
}
@-webkit-keyframes praise {
0% {
top: -10px;
opacity: 0;
transform: scale(1);
}
50% {
top: -25px;
opacity: 1;
transform: scale(1.5);
}
100% {
top: -45px;
opacity: 0;
transform: scale(1);
}
}
@media screen and (max-width: 450px) {
.comments__html .comments__html-list-item-pc {
width: 35px;
height: 35px;
}
}
|
public/web/css/common/comments.css
|
.comments__html {
margin: 20px 0;
}
.comments__html-title {
border-bottom: 3px solid #F5F5F5;
padding-bottom: 5px;
margin-bottom: 10px;
}
.comments__html-title span {
border-bottom: 3px solid #D73C3C;
padding-bottom: 7px;
font-size: 18px;
color: #3C3B3C;
}
.comments__html-title span .iconfont {
color: #F44D4D;
font-size: 20px;
}
.comments__html-title .num {
border-bottom: none;
float: right;
font-size: 14px;
}
.comments__html-title .num b {
color: red;
}
.comments__html-list-item {
padding: 5px 0px;
position: relative;
}
.comments__html-list-item-pc {
float: left;
width: 50px;
height: 50px;
padding-top: 8px;
margin-right: 15px;
box-sizing: content-box;
}
.comments__html-list-item-pc img {
width: 100%;
height: 100%;
object-fit: cover;
flex: 1;
border-radius: 50%;
}
.comments__html-list-item-text {
float: left;
width: calc(100% - 65px);
}
.comments__html-list-item-text-name {
line-height: 30px;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
font-size: 14px;
color: #000;
}
.comments__html-list-item-text-des {
line-height: 25px;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 10;
overflow: hidden;
font-size: 14px;
color: #666;
}
.comments__html-list-item-text-btns {
line-height: 30px;
color: #999;
font-size: 12px;
}
.comments__html-list-item-text-btns .item {
float: right;
margin-left: 20px;
cursor: pointer;
vertical-align: middle;
}
.comments__html-list-item-text-btns .item.item1.active {
position: relative;
color: #000;
}
.comments__html-list-item-text-btns .item.item1.active::after {
content: '+1';
position: absolute;
top: -20px;
font-size: 10px;
left: 50%;
margin-left: -5px;
opacity: 0;
-webkit-animation: praise 2.5s;
}
.comments__html-list-item-text-btns .item.item2.active {
position: relative;
color: red;
}
.comments__html-list-item-text-btns .item.item2.active::after {
content: '+1';
position: absolute;
top: -20px;
font-size: 10px;
left: 50%;
margin-left: -5px;
opacity: 0;
-webkit-animation: praise 2.5s;
}
.comments__html-list-item::before {
content: '';
height: 1px;
position: absolute;
bottom: 0;
left: -100%;
right: 0;
background: #eaeaea;
transform: scale(0.333);
-webkit-transform: scale(0.333);
width: 300%;
}
.comments__html-list-item:last-child::before {
height: 0px;
}
@-webkit-keyframes praise {
0% {
top: -10px;
opacity: 0;
transform: scale(1);
}
50% {
top: -25px;
opacity: 1;
transform: scale(1.5);
}
100% {
top: -45px;
opacity: 0;
transform: scale(1);
}
}
@media screen and (max-width: 450px) {
.comments__html .comments__html-list-item-pc {
width: 35px;
height: 35px;
}
}
| 0.432902 | 0.051391 |
*{
padding: 0;
margin: 0;
font-family: "PingFangSC-Regular","Microsoft Yahei",sans-serif;
}
body {
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: #fff;
}
a{
color: #000;
text-decoration: none;
cursor: pointer;
}
a:hover{
font-size: 15px;
color: #E0555A;
}
ul{
list-style: none;
}
ul li{
display: inline-block;
}
header{
position: absolute;
top: 0;
z-index: 30;
font-size:15px;
line-height: 34px;
width: 100%;
background-color:#fff;
height: 60px;
}
.title{
float: left;
text-align: left;
font-size: 24px;
height: 60px;
line-height: 60px;
margin-left: 1.2em;
}
header nav{
float: right;
margin-right: 40px;
text-align: center;
height: 60px;
}
.userinfo ul li{
margin: 0 15px;
float: left;
height: 38px;
font-size: 20px;
line-height: 60px;
color:#000;
}
.userinfo ul li a{
color:#000;
}
.userinfo ul li a:hover{
font-size:20px;
color: red;
}
main{
display: block;
position: absolute;
width: 100%;
height: 91%;
overflow: hidden;
z-index: 1;
padding-top:60px ;
background:#F2F2F2;
}
.select{
width:200px;
height:100%;
float: left;
z-index: 30;
}
.select h3{
margin-left:50px;
margin-top:30px;
}
/*------------------------------------------------------*/
.accordion {
width: 100%;
max-width: 360px;
margin:10px auto 20px;
background: #FFF;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.accordion .link {
text-align:center;
cursor: pointer;
display: block;
padding: 15px;
color: #4D4D4D;
font-size: 15px;
font-weight: 700;
border-bottom: 1px solid #CCC;
position: relative;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.accordion li{
text-align:center;
width:100%;
}
.accordion li:last-child .link {
border-bottom: 0;
}
.accordion li.open i.select_down {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
/*--------------------------- Submenu-----------------------------*/
.submenu {
display: none;
background: #444359;
font-size: 16px;
}
.submenu li {
font-size:15px;
text-align:center;
border-bottom: 1px solid #4b4a5e;
}
.submenu li a {
display: block;
text-decoration: none;
color: #d9d9d9;
padding: 12px;
-webkit-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.submenu li a:hover {
background-color: #E0555A;
color:#fff;
}
/*------------------------------------------------------*/
.result{
position: absolute;
left: 220px;
margin:30px 60px 20px;
width:75%;
height: 560px;
background-color:#fff;
}
.welcome{
width: 100%;
text-align: center;
font-size:30px;
margin:200px 0;
}
footer{
display: block;
font-size: 15px;
text-align: right;
position: absolute;
right: 20px;
bottom: 20px;
z-index: 1;
line-height: 30px;
color: #fff;
}
footer .copyright{
margin-right: 60px;
color: #000;
}
/*------------------------------- 动态输出 ------------------------*/
.all{
margin:20px 60px;
}
.all div{
border:1px solid #000;
line-height: 2.1em;
}
.all div:not(:first-child){
border-top: none;
}
.all div span{
display: inline-table;
width: 130px;
text-align: center;
}
.all div span:not(:last-child){
border-right: 1px solid #000;
}
#all_sc div span{
width:125px;
}
.d_form{
width: 300px;
margin: 30px auto;
font-weight: 300;
}
.d_form h3{
font-weight: 600;
font-size: 1.5em;
margin-bottom: 1.2em;
}
.d_form p{
display: block;
font-size: 1em;
line-height: 1em;
margin-bottom: 1em;
}
.d_form input{
display: block;
border: 1px solid #666;
background-color: #fff;
height: 1.6em;
width: 90%;
padding: 0.5em 1em;
margin-bottom: 1em;
}
.d_form .radio{
display: inline-block;
width: 100%;
float:left;
margin-bottom: 10px;
}
.d_form .radio input{
float: left;
width: 20%;
}
.d_form .radio span{
float: left;
}
#submit{
color: #fff;
background-color: #333;
border: none;
line-height: 1em;
padding: 0.5em 0;
width: 100%;
height: 2.5em;
text-align: center;
cursor: pointer;
margin-top: 1.5em;
}
.error{
width: 100%;
height: 100%;
text-align: center;
}
.error div{
margin:24% auto;
font-size:30px;
text-align: center;
font-weight: bold;
}
|
code/WebContent/css/user&admin.css
|
*{
padding: 0;
margin: 0;
font-family: "PingFangSC-Regular","Microsoft Yahei",sans-serif;
}
body {
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: #fff;
}
a{
color: #000;
text-decoration: none;
cursor: pointer;
}
a:hover{
font-size: 15px;
color: #E0555A;
}
ul{
list-style: none;
}
ul li{
display: inline-block;
}
header{
position: absolute;
top: 0;
z-index: 30;
font-size:15px;
line-height: 34px;
width: 100%;
background-color:#fff;
height: 60px;
}
.title{
float: left;
text-align: left;
font-size: 24px;
height: 60px;
line-height: 60px;
margin-left: 1.2em;
}
header nav{
float: right;
margin-right: 40px;
text-align: center;
height: 60px;
}
.userinfo ul li{
margin: 0 15px;
float: left;
height: 38px;
font-size: 20px;
line-height: 60px;
color:#000;
}
.userinfo ul li a{
color:#000;
}
.userinfo ul li a:hover{
font-size:20px;
color: red;
}
main{
display: block;
position: absolute;
width: 100%;
height: 91%;
overflow: hidden;
z-index: 1;
padding-top:60px ;
background:#F2F2F2;
}
.select{
width:200px;
height:100%;
float: left;
z-index: 30;
}
.select h3{
margin-left:50px;
margin-top:30px;
}
/*------------------------------------------------------*/
.accordion {
width: 100%;
max-width: 360px;
margin:10px auto 20px;
background: #FFF;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.accordion .link {
text-align:center;
cursor: pointer;
display: block;
padding: 15px;
color: #4D4D4D;
font-size: 15px;
font-weight: 700;
border-bottom: 1px solid #CCC;
position: relative;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.accordion li{
text-align:center;
width:100%;
}
.accordion li:last-child .link {
border-bottom: 0;
}
.accordion li.open i.select_down {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
/*--------------------------- Submenu-----------------------------*/
.submenu {
display: none;
background: #444359;
font-size: 16px;
}
.submenu li {
font-size:15px;
text-align:center;
border-bottom: 1px solid #4b4a5e;
}
.submenu li a {
display: block;
text-decoration: none;
color: #d9d9d9;
padding: 12px;
-webkit-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.submenu li a:hover {
background-color: #E0555A;
color:#fff;
}
/*------------------------------------------------------*/
.result{
position: absolute;
left: 220px;
margin:30px 60px 20px;
width:75%;
height: 560px;
background-color:#fff;
}
.welcome{
width: 100%;
text-align: center;
font-size:30px;
margin:200px 0;
}
footer{
display: block;
font-size: 15px;
text-align: right;
position: absolute;
right: 20px;
bottom: 20px;
z-index: 1;
line-height: 30px;
color: #fff;
}
footer .copyright{
margin-right: 60px;
color: #000;
}
/*------------------------------- 动态输出 ------------------------*/
.all{
margin:20px 60px;
}
.all div{
border:1px solid #000;
line-height: 2.1em;
}
.all div:not(:first-child){
border-top: none;
}
.all div span{
display: inline-table;
width: 130px;
text-align: center;
}
.all div span:not(:last-child){
border-right: 1px solid #000;
}
#all_sc div span{
width:125px;
}
.d_form{
width: 300px;
margin: 30px auto;
font-weight: 300;
}
.d_form h3{
font-weight: 600;
font-size: 1.5em;
margin-bottom: 1.2em;
}
.d_form p{
display: block;
font-size: 1em;
line-height: 1em;
margin-bottom: 1em;
}
.d_form input{
display: block;
border: 1px solid #666;
background-color: #fff;
height: 1.6em;
width: 90%;
padding: 0.5em 1em;
margin-bottom: 1em;
}
.d_form .radio{
display: inline-block;
width: 100%;
float:left;
margin-bottom: 10px;
}
.d_form .radio input{
float: left;
width: 20%;
}
.d_form .radio span{
float: left;
}
#submit{
color: #fff;
background-color: #333;
border: none;
line-height: 1em;
padding: 0.5em 0;
width: 100%;
height: 2.5em;
text-align: center;
cursor: pointer;
margin-top: 1.5em;
}
.error{
width: 100%;
height: 100%;
text-align: center;
}
.error div{
margin:24% auto;
font-size:30px;
text-align: center;
font-weight: bold;
}
| 0.2227 | 0.061565 |
.land_list_table thead th {
background-color: #e8e8e8;
}
.table-custom th {
text-align: center;
font-size: 12px;
}
.table-custom td {
text-align: center;
font-size: 12px;
}
.modal-header {
padding: 10px 15px;
}
.modal-title {font-size: 14px;}
.modal-dialog form {
display: flex;
}
.modal-body {
padding: 10px 15px;
}
.modal label {
font-size: 12px;
font-weight: 600;
margin-bottom: 2px;
}
.modal .form-group {
margin-bottom: 5px;
}
.modal .form-control-sm {
font-size: 12px;
}
.modal select.form-control-sm,
.modal input.form-control-sm {
height: 32px !important;
}
.form-group .row {
margin-left: -2px;
margin-right: -2px;
}
.form-group .row .col {
padding-left: 2px;
padding-right: 2px;
}
.checkbox-custom {
margin-bottom: 4px;
}
.checkbox-custom label {
margin-bottom: 0;
margin-right: 10px;
line-height: 35px;
font-weight: 400 !important;
}
.checkbox-custom label input {
margin-right: 4px;
}
.rent_area {
display: flex;
justify-content: space-between;
}
.rent_number {
width: 24%;
display: flex;
}
.rent_number input[type="text"]:nth-child(1) {
width: 100px;
}
.rent_tel {
margin-right: -15px !important;
margin-left: -15px !important;
}
.rent_tel input[type="text"]:nth-child(1) {
width: calc(80px - 4px);
margin-right: 4px;
}
.rent_num {
display: flex;
}
/*modal img*/
.modal_img_upload {
width: 35%;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
outline: 0;
}
.add_img_prev, .mod_img_prev {
margin-bottom: 5px;
display: block;
width: 100%;
max-width: 100%;
border-radius: 0;
}
.modIMG {
position: relative;
}
.modIMG img {
width: 200px;
}
.modDelImgBtn {
position: absolute;
top: 0;
right: 0;
}
.modImgBtn {
position: absolute;
top: 0;
right: 17px;
}
.pop_table th, .pop_table td {
font-size: 12px;
font-weight: 400;
}
.pop_table thead th {
background-color: #f0f3f5;
border-width: 1px;
}
.pop_table tbody th {
font-size: 11px;
text-align: left;
color: #757575;
}
.pop_table tbody td {
text-align: right;
border-right: 1px solid #ccc;
}
.pop_table tbody td:last-child {
border-right: 0;
}
.pop_none_br tbody td {
border-right: 0;
}
.pop_table tfoot td {
text-align: left;
}
.pop_table .custom_tb th {
background: none;
color: #757575;
}
/*building Modal*/
#buildingModal .modal-body {
padding: 0;
}
#buildingModal .card-body {
padding: 0;
}
.floorApiTarget_header {
margin:0;
}
.floorApiTarget_header thead th {
}
#buildingModal .floorApiTarget {
height:215px;
overflow: auto;
}
#buildingModal .floorApiTarget_table thead th {
border-top: none;
}
.floorApiTarget_wrapper {
height: 258px;
overflow: auto;
}
|
css/custom.css
|
.land_list_table thead th {
background-color: #e8e8e8;
}
.table-custom th {
text-align: center;
font-size: 12px;
}
.table-custom td {
text-align: center;
font-size: 12px;
}
.modal-header {
padding: 10px 15px;
}
.modal-title {font-size: 14px;}
.modal-dialog form {
display: flex;
}
.modal-body {
padding: 10px 15px;
}
.modal label {
font-size: 12px;
font-weight: 600;
margin-bottom: 2px;
}
.modal .form-group {
margin-bottom: 5px;
}
.modal .form-control-sm {
font-size: 12px;
}
.modal select.form-control-sm,
.modal input.form-control-sm {
height: 32px !important;
}
.form-group .row {
margin-left: -2px;
margin-right: -2px;
}
.form-group .row .col {
padding-left: 2px;
padding-right: 2px;
}
.checkbox-custom {
margin-bottom: 4px;
}
.checkbox-custom label {
margin-bottom: 0;
margin-right: 10px;
line-height: 35px;
font-weight: 400 !important;
}
.checkbox-custom label input {
margin-right: 4px;
}
.rent_area {
display: flex;
justify-content: space-between;
}
.rent_number {
width: 24%;
display: flex;
}
.rent_number input[type="text"]:nth-child(1) {
width: 100px;
}
.rent_tel {
margin-right: -15px !important;
margin-left: -15px !important;
}
.rent_tel input[type="text"]:nth-child(1) {
width: calc(80px - 4px);
margin-right: 4px;
}
.rent_num {
display: flex;
}
/*modal img*/
.modal_img_upload {
width: 35%;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
outline: 0;
}
.add_img_prev, .mod_img_prev {
margin-bottom: 5px;
display: block;
width: 100%;
max-width: 100%;
border-radius: 0;
}
.modIMG {
position: relative;
}
.modIMG img {
width: 200px;
}
.modDelImgBtn {
position: absolute;
top: 0;
right: 0;
}
.modImgBtn {
position: absolute;
top: 0;
right: 17px;
}
.pop_table th, .pop_table td {
font-size: 12px;
font-weight: 400;
}
.pop_table thead th {
background-color: #f0f3f5;
border-width: 1px;
}
.pop_table tbody th {
font-size: 11px;
text-align: left;
color: #757575;
}
.pop_table tbody td {
text-align: right;
border-right: 1px solid #ccc;
}
.pop_table tbody td:last-child {
border-right: 0;
}
.pop_none_br tbody td {
border-right: 0;
}
.pop_table tfoot td {
text-align: left;
}
.pop_table .custom_tb th {
background: none;
color: #757575;
}
/*building Modal*/
#buildingModal .modal-body {
padding: 0;
}
#buildingModal .card-body {
padding: 0;
}
.floorApiTarget_header {
margin:0;
}
.floorApiTarget_header thead th {
}
#buildingModal .floorApiTarget {
height:215px;
overflow: auto;
}
#buildingModal .floorApiTarget_table thead th {
border-top: none;
}
.floorApiTarget_wrapper {
height: 258px;
overflow: auto;
}
| 0.38318 | 0.128143 |
.rtl {
direction: rtl;
unicode-bidi: embed;
}
.rtl .pull-left {
float: right;
}
.rtl .pull-right {
float: left;
}
.rtl table.list thead th a {
background-position: 0% 50%;
padding-right: 3px;
padding-left: 15px;
}
.rtl table.list thead th,
.rtl table.list caption,
.rtl .dialog th,
.rtl .tip_box th {
text-align: right;
}
.rtl .dialog h3 {
padding-right: inherit;
padding-left: 3em;
}
.rtl .dialog a.close {
right: auto;
left: 1em;
}
.rtl #nav .inactive li,
.rtl #sub_nav li {
text-align: right;
}
.rtl #nav .inactive li a,
.rtl #sub_nav li a {
background-position: 100% 50%;
padding-left: 0;
padding-right: 24px;
}
.rtl #nav li.inactive > ul {
left: auto;
right: -1px;
}
.rtl #sub_nav li + li > a {
margin-left: 0;
margin-right: 10px;
}
.rtl .tip_close {
right: auto;
left: 0.5em;
}
.rtl .tip_content h1 {
padding-right: 0;
padding-left: 1.5em;
}
.rtl #msg_notice,
.rtl #warning_bar,
.rtl #msg_warning,
.rtl #msg_error,
.rtl .error-banner {
background-position: 99% 50%;
background-position: calc(100% - 10px) 50%;
padding-left: 10px;
padding-right: 36px;
}
.rtl .form_table th, .rtl div.section-break {
text-align: right;
}
.rtl .flush-right {
text-align: left;
}
.rtl .flush-left {
text-align: right;
}
.rtl .draft-saved {
right: initial;
left: 0.5em;
}
.rtl #sequences .manage-buttons {
margin-right: initial;
margin-left: 60px;
}
.rtl .row-item .button-group {
right: initial;
left: 0;
}
.rtl .row-item .button-group div {
padding-left: 9px;
padding-right: 12px;
}
.rtl .row-item .delete {
border-left: none;
border-right: 1px solid rgba(0,0,0,0.7);
}
.rtl [class^="icon-"].pull-left, [class*=" icon-"].pull-right {
margin-right: 0;
margin-left: 0.3em;
}
.rtl ul.tabs {
padding-left: 4px;
padding-right: 20px;
text-align:right;
}
.rtl #response_options ul.tabs {
padding-right:190px;
padding-left: 4px;
}
.rtl .action-button i.icon-caret-down {
border-left: none;
border-right: 1px solid #aaa;
margin-left: 0;
margin-right: 5px;
padding-left: 0;
padding-right: 5px;
}
.rtl .action-dropdown ul {
text-align: right;
}
.rtl .file {
padding-left: initial;
padding-right: 20px;
margin-right: initial;
margin-left: 20px;
background: url(../scp/images/icons/file.gif) 100% 50% no-repeat;
}
.rtl .floating-options {
right: auto;
left: 0;
padding-right: initial;
padding-left: 5px;
}
.rtl .quicknote .header .header-right {
right: auto;
left: 1em;
}
.rtl .quicknote .header .options {
border-right: 1px solid rgba(0,0,0,0.2);
border-left: none;
padding-right: 10px;
padding-left: initial;
margin-right: 5px;
margin-left: initial;
}
.rtl i.note-type {
border-left: 1px solid rgba(0, 0, 0, 0.2);
border-right: none;
padding-left: 8px;
padding-right: initial;
}
.rtl .left-tabs {
margin-left: auto;
margin-right: 45px;
}
|
Starter-artifacts/Resources/LAMP-lift-and-shift-starter/osticket-master/css/rtl.css
|
.rtl {
direction: rtl;
unicode-bidi: embed;
}
.rtl .pull-left {
float: right;
}
.rtl .pull-right {
float: left;
}
.rtl table.list thead th a {
background-position: 0% 50%;
padding-right: 3px;
padding-left: 15px;
}
.rtl table.list thead th,
.rtl table.list caption,
.rtl .dialog th,
.rtl .tip_box th {
text-align: right;
}
.rtl .dialog h3 {
padding-right: inherit;
padding-left: 3em;
}
.rtl .dialog a.close {
right: auto;
left: 1em;
}
.rtl #nav .inactive li,
.rtl #sub_nav li {
text-align: right;
}
.rtl #nav .inactive li a,
.rtl #sub_nav li a {
background-position: 100% 50%;
padding-left: 0;
padding-right: 24px;
}
.rtl #nav li.inactive > ul {
left: auto;
right: -1px;
}
.rtl #sub_nav li + li > a {
margin-left: 0;
margin-right: 10px;
}
.rtl .tip_close {
right: auto;
left: 0.5em;
}
.rtl .tip_content h1 {
padding-right: 0;
padding-left: 1.5em;
}
.rtl #msg_notice,
.rtl #warning_bar,
.rtl #msg_warning,
.rtl #msg_error,
.rtl .error-banner {
background-position: 99% 50%;
background-position: calc(100% - 10px) 50%;
padding-left: 10px;
padding-right: 36px;
}
.rtl .form_table th, .rtl div.section-break {
text-align: right;
}
.rtl .flush-right {
text-align: left;
}
.rtl .flush-left {
text-align: right;
}
.rtl .draft-saved {
right: initial;
left: 0.5em;
}
.rtl #sequences .manage-buttons {
margin-right: initial;
margin-left: 60px;
}
.rtl .row-item .button-group {
right: initial;
left: 0;
}
.rtl .row-item .button-group div {
padding-left: 9px;
padding-right: 12px;
}
.rtl .row-item .delete {
border-left: none;
border-right: 1px solid rgba(0,0,0,0.7);
}
.rtl [class^="icon-"].pull-left, [class*=" icon-"].pull-right {
margin-right: 0;
margin-left: 0.3em;
}
.rtl ul.tabs {
padding-left: 4px;
padding-right: 20px;
text-align:right;
}
.rtl #response_options ul.tabs {
padding-right:190px;
padding-left: 4px;
}
.rtl .action-button i.icon-caret-down {
border-left: none;
border-right: 1px solid #aaa;
margin-left: 0;
margin-right: 5px;
padding-left: 0;
padding-right: 5px;
}
.rtl .action-dropdown ul {
text-align: right;
}
.rtl .file {
padding-left: initial;
padding-right: 20px;
margin-right: initial;
margin-left: 20px;
background: url(../scp/images/icons/file.gif) 100% 50% no-repeat;
}
.rtl .floating-options {
right: auto;
left: 0;
padding-right: initial;
padding-left: 5px;
}
.rtl .quicknote .header .header-right {
right: auto;
left: 1em;
}
.rtl .quicknote .header .options {
border-right: 1px solid rgba(0,0,0,0.2);
border-left: none;
padding-right: 10px;
padding-left: initial;
margin-right: 5px;
margin-left: initial;
}
.rtl i.note-type {
border-left: 1px solid rgba(0, 0, 0, 0.2);
border-right: none;
padding-left: 8px;
padding-right: initial;
}
.rtl .left-tabs {
margin-left: auto;
margin-right: 45px;
}
| 0.535584 | 0.13187 |
.list-group-item-header {
text-decoration: underline;
font-weight: bold;
}
html {
overflow-x: initial !important;
}
body {
text-align: center;
font-family: "Roboto", sans-serif !important;
height: 100vh;
overflow-x: hidden;
}
.card-header {
background-color: #212529d5 !important;
}
.nav-link.p-0 {
color: rgba(255, 255, 255, 0.829) !important;
/* edff27 */
font-size: 0.9em;
}
.card-header:hover {
border-color: rgb(45, 143, 221);
color: rgba(23, 196, 226, 0.952) !important;
box-shadow: 0 0.5em 0.5em -0.4em rgb(45, 143, 221);
font-weight: bold;
transform: translateY(-0.25em);
}
.btn.btn-primary.view-course:hover {
background-color: #03bbf3;
color: white;
font-weight: 500;
cursor: pointer;
}
.card-img-top:hover {
transform: scale(1.02);
}
.navbar-brand {
transition: all 0.2s ease-out;
}
.navbar-brand.hover-effect:hover {
color: #14a9d6 !important;
}
.nav-link {
transition: all 0.2s ease-out;
}
.css-button-sliding-to-left--green {
min-width: 80px;
height: 40px;
color: #212529d5;
padding: 5px 10px;
/* font-weight: bold; */
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
border-radius: 5px;
z-index: 0;
background: #212529d5;
overflow: hidden;
border: 2px solid #57cc99;
color: #57cc99;
}
.css-button-sliding-to-left--green:hover {
color: #212529d5;
}
.css-button-sliding-to-left--green:hover:after {
width: 100%;
}
.css-button-sliding-to-left--green:after {
content: "";
position: absolute;
z-index: -1;
transition: all 0.3s ease;
left: 0;
top: 0;
width: 0;
height: 100%;
background: #57cc99;
}
.nav-link.hover-effect:hover {
background-color: rgb(20, 162, 206) !important;
}
.nav-link.active {
background-color: rgb(11, 116, 148);
}
.main-body {
background-image: url("../images/background1.png"), url("../images/background2.png");
background-repeat: no-repeat, no-repeat;
background-size: cover, cover;
background-position: top, top;
}
td input[type="checkbox"] {
margin: auto;
}
@media (max-width: 992px) {
.col.mb-4 {
text-align: center !important;
}
.btn-nav {
margin-top: 1em;
}
}
@media (min-width: 992px) {
.nav-link,
.nav-link.active,
.d-flex.nav-link {
border-radius: 25px 10px 25px 10px;
}
.nav-link.hover-effect:hover,
.navbar-brand.hover-effect:hover,
.d-flex.nav-link.hover-effect:hover,
.navbar-brand.hover-effect:hover {
transform: scale(1.05);
}
}
@media (min-width: 992px) {
.rounded-lg-3 {
border-radius: 0.3rem;
}
}
.icon-new-addded {
vertical-align: -.125em;
fill: white;
}
.feature-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 4rem;
height: 4rem;
margin-bottom: 1rem;
font-size: 2rem;
color: #fff;
border-radius: .75rem;
}
.icon-link {
display: inline-flex;
align-items: center;
}
.icon-link > .icon-new-addded {
margin-top: .125rem;
margin-left: .125rem;
transition: transform .25s ease-in-out;
fill: currentColor;
}
.icon-link:hover > .icon-new-addded {
transform: translate(.25rem);
}
.icon-square {
display: inline-flex;
align-items: center;
justify-content: center;
width: 3rem;
height: 3rem;
font-size: 1.5rem;
border-radius: .75rem;
}
.rounded-4 {
border-radius: .5rem;
}
.rounded-5 {
border-radius: 1rem;
}
.text-shadow-1 {
text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
}
.text-shadow-2 {
text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25);
}
.text-shadow-3 {
text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25);
}
.card-cover {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.header {
position: relative;
background-color: black;
height: 30vh;
min-height: 25rem;
width: 100%;
overflow: hidden;
padding: 0;
}
.header video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: 0;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.header .container-fluid {
position: relative;
z-index: 2;
}
.header .overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: black;
opacity: 0.5;
z-index: 1;
}
@media (pointer: coarse) and (hover: none) {
.header {
background: url("https://source.unsplash.com/XT5OInaElMw/1600x900") black no-repeat center center scroll;
}
.header video {
display: none;
}
}
|
assets/css/styles.css
|
.list-group-item-header {
text-decoration: underline;
font-weight: bold;
}
html {
overflow-x: initial !important;
}
body {
text-align: center;
font-family: "Roboto", sans-serif !important;
height: 100vh;
overflow-x: hidden;
}
.card-header {
background-color: #212529d5 !important;
}
.nav-link.p-0 {
color: rgba(255, 255, 255, 0.829) !important;
/* edff27 */
font-size: 0.9em;
}
.card-header:hover {
border-color: rgb(45, 143, 221);
color: rgba(23, 196, 226, 0.952) !important;
box-shadow: 0 0.5em 0.5em -0.4em rgb(45, 143, 221);
font-weight: bold;
transform: translateY(-0.25em);
}
.btn.btn-primary.view-course:hover {
background-color: #03bbf3;
color: white;
font-weight: 500;
cursor: pointer;
}
.card-img-top:hover {
transform: scale(1.02);
}
.navbar-brand {
transition: all 0.2s ease-out;
}
.navbar-brand.hover-effect:hover {
color: #14a9d6 !important;
}
.nav-link {
transition: all 0.2s ease-out;
}
.css-button-sliding-to-left--green {
min-width: 80px;
height: 40px;
color: #212529d5;
padding: 5px 10px;
/* font-weight: bold; */
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
border-radius: 5px;
z-index: 0;
background: #212529d5;
overflow: hidden;
border: 2px solid #57cc99;
color: #57cc99;
}
.css-button-sliding-to-left--green:hover {
color: #212529d5;
}
.css-button-sliding-to-left--green:hover:after {
width: 100%;
}
.css-button-sliding-to-left--green:after {
content: "";
position: absolute;
z-index: -1;
transition: all 0.3s ease;
left: 0;
top: 0;
width: 0;
height: 100%;
background: #57cc99;
}
.nav-link.hover-effect:hover {
background-color: rgb(20, 162, 206) !important;
}
.nav-link.active {
background-color: rgb(11, 116, 148);
}
.main-body {
background-image: url("../images/background1.png"), url("../images/background2.png");
background-repeat: no-repeat, no-repeat;
background-size: cover, cover;
background-position: top, top;
}
td input[type="checkbox"] {
margin: auto;
}
@media (max-width: 992px) {
.col.mb-4 {
text-align: center !important;
}
.btn-nav {
margin-top: 1em;
}
}
@media (min-width: 992px) {
.nav-link,
.nav-link.active,
.d-flex.nav-link {
border-radius: 25px 10px 25px 10px;
}
.nav-link.hover-effect:hover,
.navbar-brand.hover-effect:hover,
.d-flex.nav-link.hover-effect:hover,
.navbar-brand.hover-effect:hover {
transform: scale(1.05);
}
}
@media (min-width: 992px) {
.rounded-lg-3 {
border-radius: 0.3rem;
}
}
.icon-new-addded {
vertical-align: -.125em;
fill: white;
}
.feature-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 4rem;
height: 4rem;
margin-bottom: 1rem;
font-size: 2rem;
color: #fff;
border-radius: .75rem;
}
.icon-link {
display: inline-flex;
align-items: center;
}
.icon-link > .icon-new-addded {
margin-top: .125rem;
margin-left: .125rem;
transition: transform .25s ease-in-out;
fill: currentColor;
}
.icon-link:hover > .icon-new-addded {
transform: translate(.25rem);
}
.icon-square {
display: inline-flex;
align-items: center;
justify-content: center;
width: 3rem;
height: 3rem;
font-size: 1.5rem;
border-radius: .75rem;
}
.rounded-4 {
border-radius: .5rem;
}
.rounded-5 {
border-radius: 1rem;
}
.text-shadow-1 {
text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
}
.text-shadow-2 {
text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25);
}
.text-shadow-3 {
text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25);
}
.card-cover {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.header {
position: relative;
background-color: black;
height: 30vh;
min-height: 25rem;
width: 100%;
overflow: hidden;
padding: 0;
}
.header video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: 0;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.header .container-fluid {
position: relative;
z-index: 2;
}
.header .overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: black;
opacity: 0.5;
z-index: 1;
}
@media (pointer: coarse) and (hover: none) {
.header {
background: url("https://source.unsplash.com/XT5OInaElMw/1600x900") black no-repeat center center scroll;
}
.header video {
display: none;
}
}
| 0.57069 | 0.092811 |
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
:root {
--primary-color: hsl(185, 75%, 39%);
--secondary-color: #333;
--bg-color: #fff;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
position: relative;
overflow: hidden;
}
h1 {
font-size: 1rem;
}
body {
background: var(--primary-color);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: "Kumbh Sans", sans-serif;
color: var(--secondary-color);
}
a {
text-decoration: none;
color: var(--bg-color);
}
.top,
.bottom {
position: absolute;
}
.top {
bottom: 50%;
right: 50%;
}
.bottom {
top: 50%;
left: 50%;
}
.container {
background-color: var(--bg-color);
min-width: 20rem;
min-height: 22rem;
border-radius: 10px;
position: relative;
box-shadow: 2px 2px 100px rgba(0, 0, 0, 0.2);
}
.profile {
width: 90px;
height: auto;
border-radius: 50px;
position: absolute;
top: 80px;
left: 120px;
border: 5px solid var(--bg-color);
}
.profile--header {
background-image: url("./images/bg-pattern-card.svg");
width: 20rem;
height: 8rem;
border-radius: 10px 10px 0 0;
}
.user {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 70px 0 20px 0;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.user--details {
display: flex;
align-items: center;
font-size: 15px;
}
.user--loc {
margin-top: 15px;
font-size: 12px;
}
.user--engage {
display: flex;
justify-content: space-evenly;
margin-top: -10px;
}
.user--analytics {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.user--analytics > h4 {
font-weight: 600;
}
.user--analytics > p {
font-size: 10px;
font-weight: 300;
margin-top: 5px;
letter-spacing: 1px;
}
.attribution {
position: absolute;
bottom: 1rem;
width: 60vh;
text-align: center;
margin: 0 auto;
color: var(--bg-color);
}
@media (max-height: 620px), (max-width: 420px) {
.attribution {
display: none;
}
}
|
style.css
|
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
:root {
--primary-color: hsl(185, 75%, 39%);
--secondary-color: #333;
--bg-color: #fff;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
position: relative;
overflow: hidden;
}
h1 {
font-size: 1rem;
}
body {
background: var(--primary-color);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: "Kumbh Sans", sans-serif;
color: var(--secondary-color);
}
a {
text-decoration: none;
color: var(--bg-color);
}
.top,
.bottom {
position: absolute;
}
.top {
bottom: 50%;
right: 50%;
}
.bottom {
top: 50%;
left: 50%;
}
.container {
background-color: var(--bg-color);
min-width: 20rem;
min-height: 22rem;
border-radius: 10px;
position: relative;
box-shadow: 2px 2px 100px rgba(0, 0, 0, 0.2);
}
.profile {
width: 90px;
height: auto;
border-radius: 50px;
position: absolute;
top: 80px;
left: 120px;
border: 5px solid var(--bg-color);
}
.profile--header {
background-image: url("./images/bg-pattern-card.svg");
width: 20rem;
height: 8rem;
border-radius: 10px 10px 0 0;
}
.user {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 70px 0 20px 0;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.user--details {
display: flex;
align-items: center;
font-size: 15px;
}
.user--loc {
margin-top: 15px;
font-size: 12px;
}
.user--engage {
display: flex;
justify-content: space-evenly;
margin-top: -10px;
}
.user--analytics {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.user--analytics > h4 {
font-weight: 600;
}
.user--analytics > p {
font-size: 10px;
font-weight: 300;
margin-top: 5px;
letter-spacing: 1px;
}
.attribution {
position: absolute;
bottom: 1rem;
width: 60vh;
text-align: center;
margin: 0 auto;
color: var(--bg-color);
}
@media (max-height: 620px), (max-width: 420px) {
.attribution {
display: none;
}
}
| 0.510741 | 0.092729 |
* {
outline: none !important;
border-radius: 0rem !important;
}
.btn {
transition: all 200ms ease-in-out;
}
.col {
max-width: 350px;
margin: 0 auto;
float: none;
}
.logo {
display: block;
max-width: 150px;
margin: 0 auto;
}
.logo img {
width: 100%;
}
header {
background-color: #f30709;
padding: 0.6rem;
}
section {
color: #DDD;
background-color: #050507;
padding: 0.5rem 0rem 1rem;
font-size: 0.8rem;
text-align: center;
}
section select {
max-width: 300px;
margin: 0 auto;
}
section select option[disabled] {
font-size: small;
color: #DDD;
}
main {
font-size: 0.9rem;
}
main .row {
padding-top: 8rem;
padding-bottom: 8rem;
}
.card-block, ul, .card-text {
font-size: 0.8rem;
}
.nlcard-reverse, .nlcard-front {
border: none;
}
#card-demo-1 {
background-color: #3e4152;
}
#card-demo-2 {
background-color: #2d303f;
}
#card-demo-3 {
background-color: #272a39;
}
#card-demo-4 {
background-color: #2d303f;
}
#card-demo-5 {
background-color: #3e4152;
}
#card-demo-6 {
background-color: #2d303f;
}
#card-demo-7 {
background-color: #3e4152;
}
#card-demo-8 {
background-color: #2d303f;
}
#card-demo-9 {
background-color: #272a39;
}
#card-demo-1 .nlcard-reverse {
background-color: #f30709;
}
#card-demo-1 .nlcard-reverse .card-block {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
display: table;
}
#card-demo-1 .nlcard-reverse .close {
padding: .7rem 1rem;
font-size: 1.8rem;
}
#card-demo-2 .nlcard-front .btn {
color: #FFF;
background-color: #3e4152;
border-color: #3e4152;
}
#card-demo-2 .nlcard-front .btn:hover, #card-demo-2 .nlcard-front .btn:focus, #card-demo-2 .nlcard-front .btn:active, #card-demo-2 .nlcard-front .btn.active, .open > #card-demo-2 .nlcard-front .btn.dropdown-toggle {
color: #FFF;
background-color: #272a39;
border-color: #272a39;
}
#card-demo-2 .nlcard-front .btn:active, #card-demo-2 .nlcard-front .btn.active, .open > #card-demo-2 .nlcard-front .btn.dropdown-toggle {
background-image: none;
}
#card-demo-2 .nlcard-front .btn.disabled, #card-demo-2 .nlcard-front .btn.disabled:hover, #card-demo-2 .nlcard-front .btn.disabled:focus, #card-demo-2 .nlcard-front .btn.disabled:active, #card-demo-2 .nlcard-front .btn.disabled.active, #card-demo-2 .nlcard-front .btn[disabled], #card-demo-2 .nlcard-front .btn[disabled]:hover, #card-demo-2 .nlcard-front .btn[disabled]:focus, #card-demo-2 .nlcard-front .btn[disabled]:active, #card-demo-2 .nlcard-front .btn[disabled].active, fieldset[disabled] #card-demo-2 .nlcard-front .btn, fieldset[disabled] #card-demo-2 .nlcard-front .btn:hover, fieldset[disabled] #card-demo-2 .nlcard-front .btn:focus, fieldset[disabled] #card-demo-2 .nlcard-front .btn:active, fieldset[disabled] #card-demo-2 .nlcard-front .btn.active {
background-color: #3e4152;
border-color: #3e4152;
}
#card-demo-2 .nlcard-reverse .btn {
color: #FFF;
background-color: transparent;
border-color: #FFF;
}
#card-demo-2 .nlcard-reverse .btn:hover, #card-demo-2 .nlcard-reverse .btn:focus, #card-demo-2 .nlcard-reverse .btn:active, #card-demo-2 .nlcard-reverse .btn.active, .open > #card-demo-2 .nlcard-reverse .btn.dropdown-toggle {
color: #FFF;
background-color: #050507;
border-color: #050507;
}
#card-demo-2 .nlcard-reverse .btn:active, #card-demo-2 .nlcard-reverse .btn.active, .open > #card-demo-2 .nlcard-reverse .btn.dropdown-toggle {
background-image: none;
}
#card-demo-2 .nlcard-reverse .btn.disabled, #card-demo-2 .nlcard-reverse .btn.disabled:hover, #card-demo-2 .nlcard-reverse .btn.disabled:focus, #card-demo-2 .nlcard-reverse .btn.disabled:active, #card-demo-2 .nlcard-reverse .btn.disabled.active, #card-demo-2 .nlcard-reverse .btn[disabled], #card-demo-2 .nlcard-reverse .btn[disabled]:hover, #card-demo-2 .nlcard-reverse .btn[disabled]:focus, #card-demo-2 .nlcard-reverse .btn[disabled]:active, #card-demo-2 .nlcard-reverse .btn[disabled].active, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn:hover, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn:focus, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn:active, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn.active {
background-color: transparent;
border-color: #FFF;
}
#card-demo-2 .nlcard-reverse .card-img {
max-width: none;
max-height: 100%;
}
#card-demo-2 .nlcard-reverse [data-toggle="nlcard-closer"] {
width: calc(100% - 2.5rem);
position: absolute;
bottom: 1.25rem;
left: 1.25rem;
right: 1.25rem;
}
#card-demo-3 .nlcard-front .btn {
color: #FFF;
background-color: #1e9fb5;
border-color: #1e9fb5;
}
#card-demo-3 .nlcard-front .btn:hover, #card-demo-3 .nlcard-front .btn:focus, #card-demo-3 .nlcard-front .btn:active, #card-demo-3 .nlcard-front .btn.active, .open > #card-demo-3 .nlcard-front .btn.dropdown-toggle {
color: #FFF;
background-color: #51b5c5;
border-color: #51b5c5;
}
#card-demo-3 .nlcard-front .btn:active, #card-demo-3 .nlcard-front .btn.active, .open > #card-demo-3 .nlcard-front .btn.dropdown-toggle {
background-image: none;
}
#card-demo-3 .nlcard-front .btn.disabled, #card-demo-3 .nlcard-front .btn.disabled:hover, #card-demo-3 .nlcard-front .btn.disabled:focus, #card-demo-3 .nlcard-front .btn.disabled:active, #card-demo-3 .nlcard-front .btn.disabled.active, #card-demo-3 .nlcard-front .btn[disabled], #card-demo-3 .nlcard-front .btn[disabled]:hover, #card-demo-3 .nlcard-front .btn[disabled]:focus, #card-demo-3 .nlcard-front .btn[disabled]:active, #card-demo-3 .nlcard-front .btn[disabled].active, fieldset[disabled] #card-demo-3 .nlcard-front .btn, fieldset[disabled] #card-demo-3 .nlcard-front .btn:hover, fieldset[disabled] #card-demo-3 .nlcard-front .btn:focus, fieldset[disabled] #card-demo-3 .nlcard-front .btn:active, fieldset[disabled] #card-demo-3 .nlcard-front .btn.active {
background-color: #1e9fb5;
border-color: #1e9fb5;
}
#card-demo-3 .nlcard-reverse .card-img {
max-width: none;
max-height: 100%;
}
#card-demo-3 .nlcard-reverse .btn {
color: #1e9fb5;
background-color: transparent;
border-color: #1e9fb5;
}
#card-demo-3 .nlcard-reverse .btn:hover, #card-demo-3 .nlcard-reverse .btn:focus, #card-demo-3 .nlcard-reverse .btn:active, #card-demo-3 .nlcard-reverse .btn.active, .open > #card-demo-3 .nlcard-reverse .btn.dropdown-toggle {
color: #FFF;
background-color: #1e9fb5;
border-color: #1e9fb5;
}
#card-demo-3 .nlcard-reverse .btn:active, #card-demo-3 .nlcard-reverse .btn.active, .open > #card-demo-3 .nlcard-reverse .btn.dropdown-toggle {
background-image: none;
}
#card-demo-3 .nlcard-reverse .btn.disabled, #card-demo-3 .nlcard-reverse .btn.disabled:hover, #card-demo-3 .nlcard-reverse .btn.disabled:focus, #card-demo-3 .nlcard-reverse .btn.disabled:active, #card-demo-3 .nlcard-reverse .btn.disabled.active, #card-demo-3 .nlcard-reverse .btn[disabled], #card-demo-3 .nlcard-reverse .btn[disabled]:hover, #card-demo-3 .nlcard-reverse .btn[disabled]:focus, #card-demo-3 .nlcard-reverse .btn[disabled]:active, #card-demo-3 .nlcard-reverse .btn[disabled].active, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn:hover, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn:focus, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn:active, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn.active {
background-color: transparent;
border-color: #1e9fb5;
}
#card-demo-4 .nlcard-front {
height: 420px;
border: none;
background-image: url("../img/red.jpg");
background-size: cover;
background-position: center;
}
#card-demo-4 .nlcard-front .card-text, #card-demo-4 .nlcard-front .text-muted, #card-demo-4 .nlcard-front h4 {
color: #FFF;
background-color: #3e4152;
display: table;
padding: 3px;
}
#card-demo-5 .nlcard-reverse {
color: #666;
text-align: center;
}
#card-demo-5 .nlcard-reverse .card-img {
max-width: none;
height: 100%;
margin-left: -50%;
}
|
_snippets/next-level-cards/demo/css/demo_page.css
|
* {
outline: none !important;
border-radius: 0rem !important;
}
.btn {
transition: all 200ms ease-in-out;
}
.col {
max-width: 350px;
margin: 0 auto;
float: none;
}
.logo {
display: block;
max-width: 150px;
margin: 0 auto;
}
.logo img {
width: 100%;
}
header {
background-color: #f30709;
padding: 0.6rem;
}
section {
color: #DDD;
background-color: #050507;
padding: 0.5rem 0rem 1rem;
font-size: 0.8rem;
text-align: center;
}
section select {
max-width: 300px;
margin: 0 auto;
}
section select option[disabled] {
font-size: small;
color: #DDD;
}
main {
font-size: 0.9rem;
}
main .row {
padding-top: 8rem;
padding-bottom: 8rem;
}
.card-block, ul, .card-text {
font-size: 0.8rem;
}
.nlcard-reverse, .nlcard-front {
border: none;
}
#card-demo-1 {
background-color: #3e4152;
}
#card-demo-2 {
background-color: #2d303f;
}
#card-demo-3 {
background-color: #272a39;
}
#card-demo-4 {
background-color: #2d303f;
}
#card-demo-5 {
background-color: #3e4152;
}
#card-demo-6 {
background-color: #2d303f;
}
#card-demo-7 {
background-color: #3e4152;
}
#card-demo-8 {
background-color: #2d303f;
}
#card-demo-9 {
background-color: #272a39;
}
#card-demo-1 .nlcard-reverse {
background-color: #f30709;
}
#card-demo-1 .nlcard-reverse .card-block {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
display: table;
}
#card-demo-1 .nlcard-reverse .close {
padding: .7rem 1rem;
font-size: 1.8rem;
}
#card-demo-2 .nlcard-front .btn {
color: #FFF;
background-color: #3e4152;
border-color: #3e4152;
}
#card-demo-2 .nlcard-front .btn:hover, #card-demo-2 .nlcard-front .btn:focus, #card-demo-2 .nlcard-front .btn:active, #card-demo-2 .nlcard-front .btn.active, .open > #card-demo-2 .nlcard-front .btn.dropdown-toggle {
color: #FFF;
background-color: #272a39;
border-color: #272a39;
}
#card-demo-2 .nlcard-front .btn:active, #card-demo-2 .nlcard-front .btn.active, .open > #card-demo-2 .nlcard-front .btn.dropdown-toggle {
background-image: none;
}
#card-demo-2 .nlcard-front .btn.disabled, #card-demo-2 .nlcard-front .btn.disabled:hover, #card-demo-2 .nlcard-front .btn.disabled:focus, #card-demo-2 .nlcard-front .btn.disabled:active, #card-demo-2 .nlcard-front .btn.disabled.active, #card-demo-2 .nlcard-front .btn[disabled], #card-demo-2 .nlcard-front .btn[disabled]:hover, #card-demo-2 .nlcard-front .btn[disabled]:focus, #card-demo-2 .nlcard-front .btn[disabled]:active, #card-demo-2 .nlcard-front .btn[disabled].active, fieldset[disabled] #card-demo-2 .nlcard-front .btn, fieldset[disabled] #card-demo-2 .nlcard-front .btn:hover, fieldset[disabled] #card-demo-2 .nlcard-front .btn:focus, fieldset[disabled] #card-demo-2 .nlcard-front .btn:active, fieldset[disabled] #card-demo-2 .nlcard-front .btn.active {
background-color: #3e4152;
border-color: #3e4152;
}
#card-demo-2 .nlcard-reverse .btn {
color: #FFF;
background-color: transparent;
border-color: #FFF;
}
#card-demo-2 .nlcard-reverse .btn:hover, #card-demo-2 .nlcard-reverse .btn:focus, #card-demo-2 .nlcard-reverse .btn:active, #card-demo-2 .nlcard-reverse .btn.active, .open > #card-demo-2 .nlcard-reverse .btn.dropdown-toggle {
color: #FFF;
background-color: #050507;
border-color: #050507;
}
#card-demo-2 .nlcard-reverse .btn:active, #card-demo-2 .nlcard-reverse .btn.active, .open > #card-demo-2 .nlcard-reverse .btn.dropdown-toggle {
background-image: none;
}
#card-demo-2 .nlcard-reverse .btn.disabled, #card-demo-2 .nlcard-reverse .btn.disabled:hover, #card-demo-2 .nlcard-reverse .btn.disabled:focus, #card-demo-2 .nlcard-reverse .btn.disabled:active, #card-demo-2 .nlcard-reverse .btn.disabled.active, #card-demo-2 .nlcard-reverse .btn[disabled], #card-demo-2 .nlcard-reverse .btn[disabled]:hover, #card-demo-2 .nlcard-reverse .btn[disabled]:focus, #card-demo-2 .nlcard-reverse .btn[disabled]:active, #card-demo-2 .nlcard-reverse .btn[disabled].active, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn:hover, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn:focus, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn:active, fieldset[disabled] #card-demo-2 .nlcard-reverse .btn.active {
background-color: transparent;
border-color: #FFF;
}
#card-demo-2 .nlcard-reverse .card-img {
max-width: none;
max-height: 100%;
}
#card-demo-2 .nlcard-reverse [data-toggle="nlcard-closer"] {
width: calc(100% - 2.5rem);
position: absolute;
bottom: 1.25rem;
left: 1.25rem;
right: 1.25rem;
}
#card-demo-3 .nlcard-front .btn {
color: #FFF;
background-color: #1e9fb5;
border-color: #1e9fb5;
}
#card-demo-3 .nlcard-front .btn:hover, #card-demo-3 .nlcard-front .btn:focus, #card-demo-3 .nlcard-front .btn:active, #card-demo-3 .nlcard-front .btn.active, .open > #card-demo-3 .nlcard-front .btn.dropdown-toggle {
color: #FFF;
background-color: #51b5c5;
border-color: #51b5c5;
}
#card-demo-3 .nlcard-front .btn:active, #card-demo-3 .nlcard-front .btn.active, .open > #card-demo-3 .nlcard-front .btn.dropdown-toggle {
background-image: none;
}
#card-demo-3 .nlcard-front .btn.disabled, #card-demo-3 .nlcard-front .btn.disabled:hover, #card-demo-3 .nlcard-front .btn.disabled:focus, #card-demo-3 .nlcard-front .btn.disabled:active, #card-demo-3 .nlcard-front .btn.disabled.active, #card-demo-3 .nlcard-front .btn[disabled], #card-demo-3 .nlcard-front .btn[disabled]:hover, #card-demo-3 .nlcard-front .btn[disabled]:focus, #card-demo-3 .nlcard-front .btn[disabled]:active, #card-demo-3 .nlcard-front .btn[disabled].active, fieldset[disabled] #card-demo-3 .nlcard-front .btn, fieldset[disabled] #card-demo-3 .nlcard-front .btn:hover, fieldset[disabled] #card-demo-3 .nlcard-front .btn:focus, fieldset[disabled] #card-demo-3 .nlcard-front .btn:active, fieldset[disabled] #card-demo-3 .nlcard-front .btn.active {
background-color: #1e9fb5;
border-color: #1e9fb5;
}
#card-demo-3 .nlcard-reverse .card-img {
max-width: none;
max-height: 100%;
}
#card-demo-3 .nlcard-reverse .btn {
color: #1e9fb5;
background-color: transparent;
border-color: #1e9fb5;
}
#card-demo-3 .nlcard-reverse .btn:hover, #card-demo-3 .nlcard-reverse .btn:focus, #card-demo-3 .nlcard-reverse .btn:active, #card-demo-3 .nlcard-reverse .btn.active, .open > #card-demo-3 .nlcard-reverse .btn.dropdown-toggle {
color: #FFF;
background-color: #1e9fb5;
border-color: #1e9fb5;
}
#card-demo-3 .nlcard-reverse .btn:active, #card-demo-3 .nlcard-reverse .btn.active, .open > #card-demo-3 .nlcard-reverse .btn.dropdown-toggle {
background-image: none;
}
#card-demo-3 .nlcard-reverse .btn.disabled, #card-demo-3 .nlcard-reverse .btn.disabled:hover, #card-demo-3 .nlcard-reverse .btn.disabled:focus, #card-demo-3 .nlcard-reverse .btn.disabled:active, #card-demo-3 .nlcard-reverse .btn.disabled.active, #card-demo-3 .nlcard-reverse .btn[disabled], #card-demo-3 .nlcard-reverse .btn[disabled]:hover, #card-demo-3 .nlcard-reverse .btn[disabled]:focus, #card-demo-3 .nlcard-reverse .btn[disabled]:active, #card-demo-3 .nlcard-reverse .btn[disabled].active, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn:hover, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn:focus, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn:active, fieldset[disabled] #card-demo-3 .nlcard-reverse .btn.active {
background-color: transparent;
border-color: #1e9fb5;
}
#card-demo-4 .nlcard-front {
height: 420px;
border: none;
background-image: url("../img/red.jpg");
background-size: cover;
background-position: center;
}
#card-demo-4 .nlcard-front .card-text, #card-demo-4 .nlcard-front .text-muted, #card-demo-4 .nlcard-front h4 {
color: #FFF;
background-color: #3e4152;
display: table;
padding: 3px;
}
#card-demo-5 .nlcard-reverse {
color: #666;
text-align: center;
}
#card-demo-5 .nlcard-reverse .card-img {
max-width: none;
height: 100%;
margin-left: -50%;
}
| 0.319227 | 0.05175 |
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
.bg-deserve{
background-image: url('/img/bg-deserve.png');
background-position: center left;
background-repeat: no-repeat;
background-size: cover;
background-color: #e6b1a4;
}
.square{
width: 400px;
height: 400px;
}
@media screen and (max-width: 1440px) {
.square{
width: 300px;
height: 300px;
}
}
@media screen and (max-width: 1024px) {
.square{
width: 200px;
height: 200px;
}
}
strong{
font-weight: bold;
}
.quote {
background-image: url('/img/quote.png');
background-repeat: no-repeat;
background-size: contain;
width: 40px;
height: 40px;
display: inline-block;
z-index: -1;
position: absolute;
top: 0px;
left: 0px;
}
.invert {
transform: rotateX(-180deg);
transform: rotateZ(-180deg);
bottom: 0;
top: inherit;
bottom: -10px;
left: inherit;
margin-left: -20px;
}
.enroll{
top: 66px;
right: 10px;
background-image: url('/img/enroll-button.png');
background-position: center;
background-repeat: no-repeat;
background-size: 150%;
}
.menu, .nav-container{
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.submenu::before{
content: '';
background-image: url('/img/arrow-sub-menu.png');
width: 15px;
height: 15px;
display: inline-block;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
vertical-align: text-top;
position: absolute;
right: -20px;
top: 20px;
}
.submenu{
position: relative;
}
.submenu ul {
@apply tw-invisible tw-absolute tw-z-10 tw-bg-white tw-mt-4 tw-border tw-text-left tw-opacity-0;
left: -80px;
min-width: 200px;
transition: all 0.3s ease;
}
.submenu ul li{
@apply tw-capitalize tw-py-3 tw-px-4 tw-border-b;
}
.submenu ul li:hover{
@apply tw-text-blue-dark;
}
nav ul .submenu:hover > ul {
visibility: visible;
opacity: 1;
}
@media screen and (max-width: 700px) {
.no-br br{
display: none;
}
}
@media screen and (max-width: 768px) {
.submenu ul {
@apply tw-invisible tw-absolute tw-z-10 tw-bg-white tw-mt-4 tw-border tw-text-left tw-opacity-0;
left: inherit;
min-width: inherit;
transition: none;
}
nav ul .submenu:hover > ul {
position: relative;
border: none;
}
.submenu::before{
right: 10px;
}
}
.pink .swiper-button-next{
background-image: url('/img/arrow-pink.png') !important;
}
.pink .swiper-button-prev{
background-image: url('/img/arrow-pink.png') !important;
transform: rotateZ(180deg);
}
.yellow .swiper-button-next{
background-image: url('/img/arrow-yellow.png') !important;
}
.yellow .swiper-button-prev{
background-image: url('/img/arrow-yellow.png') !important;
transform: rotateZ(180deg);
}
.disc-yellow li::before {
content: ""; /* Add content: \2022 is the CSS Code/unicode for a bullet */
background: #f2bd31; /* Change the color */
font-weight: bold; /* If you want it to be bold */
display: inline-block; /* Needed to add space between the bullet and the text */
margin-right: 0.8em; /* Also needed for space (tweak if needed) */
width: 15px;
height: 15px;
border-radius: 50%;
}
.start-program-button {
width: 250px;
text-align: center;
}
.btn-hcg-shadow{
box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.5);
}
|
resources/css/main.css
|
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
.bg-deserve{
background-image: url('/img/bg-deserve.png');
background-position: center left;
background-repeat: no-repeat;
background-size: cover;
background-color: #e6b1a4;
}
.square{
width: 400px;
height: 400px;
}
@media screen and (max-width: 1440px) {
.square{
width: 300px;
height: 300px;
}
}
@media screen and (max-width: 1024px) {
.square{
width: 200px;
height: 200px;
}
}
strong{
font-weight: bold;
}
.quote {
background-image: url('/img/quote.png');
background-repeat: no-repeat;
background-size: contain;
width: 40px;
height: 40px;
display: inline-block;
z-index: -1;
position: absolute;
top: 0px;
left: 0px;
}
.invert {
transform: rotateX(-180deg);
transform: rotateZ(-180deg);
bottom: 0;
top: inherit;
bottom: -10px;
left: inherit;
margin-left: -20px;
}
.enroll{
top: 66px;
right: 10px;
background-image: url('/img/enroll-button.png');
background-position: center;
background-repeat: no-repeat;
background-size: 150%;
}
.menu, .nav-container{
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.submenu::before{
content: '';
background-image: url('/img/arrow-sub-menu.png');
width: 15px;
height: 15px;
display: inline-block;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
vertical-align: text-top;
position: absolute;
right: -20px;
top: 20px;
}
.submenu{
position: relative;
}
.submenu ul {
@apply tw-invisible tw-absolute tw-z-10 tw-bg-white tw-mt-4 tw-border tw-text-left tw-opacity-0;
left: -80px;
min-width: 200px;
transition: all 0.3s ease;
}
.submenu ul li{
@apply tw-capitalize tw-py-3 tw-px-4 tw-border-b;
}
.submenu ul li:hover{
@apply tw-text-blue-dark;
}
nav ul .submenu:hover > ul {
visibility: visible;
opacity: 1;
}
@media screen and (max-width: 700px) {
.no-br br{
display: none;
}
}
@media screen and (max-width: 768px) {
.submenu ul {
@apply tw-invisible tw-absolute tw-z-10 tw-bg-white tw-mt-4 tw-border tw-text-left tw-opacity-0;
left: inherit;
min-width: inherit;
transition: none;
}
nav ul .submenu:hover > ul {
position: relative;
border: none;
}
.submenu::before{
right: 10px;
}
}
.pink .swiper-button-next{
background-image: url('/img/arrow-pink.png') !important;
}
.pink .swiper-button-prev{
background-image: url('/img/arrow-pink.png') !important;
transform: rotateZ(180deg);
}
.yellow .swiper-button-next{
background-image: url('/img/arrow-yellow.png') !important;
}
.yellow .swiper-button-prev{
background-image: url('/img/arrow-yellow.png') !important;
transform: rotateZ(180deg);
}
.disc-yellow li::before {
content: ""; /* Add content: \2022 is the CSS Code/unicode for a bullet */
background: #f2bd31; /* Change the color */
font-weight: bold; /* If you want it to be bold */
display: inline-block; /* Needed to add space between the bullet and the text */
margin-right: 0.8em; /* Also needed for space (tweak if needed) */
width: 15px;
height: 15px;
border-radius: 50%;
}
.start-program-button {
width: 250px;
text-align: center;
}
.btn-hcg-shadow{
box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.5);
}
| 0.430387 | 0.068694 |
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&display=swap");
:root {
--main-color: #fc302b;
--font: "Space Grotesk", sans-serif;
--border-color: #08090a;
}
*, *:before, *:after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #fff;
}
body {
background: #15181A;
font-family: "Open Sans", Helvetica, Arial, sans-serif;
color: #fff !important;
}
#roof {
display: flex;
position: relative;
top: 0px;
left: 0px;
width: 100%;
height: 50px;
background: black;
z-index: 1;
justify-content: space-evenly;
color: #fff;
font-size: 20px;
padding-left: 200px;
padding-right: 200px;
}
.logo_img {
color: var(--main-color);
width: 35px;
float: left;
margin-top: 7px;
}
#logo > p {
color: var(--main-color);
font-size: 35px;
width: fit-content;
float: right;
margin: 0 0 0 10px;
font-weight: bold;
}
#roof > div:nth-child(2), #roof > div:nth-child(4), #roof > div:nth-child(5), #roof > div:nth-child(6) {
padding-top: 10px;
}
.vision {
display: block;
}
/* Made select menu for desktop */
#profile-top {
height: 50px;
width: 85px;
margin-top: 20px;
cursor: pointer;
}
#profile-top > img {
height: 50px;
}
ul {
display: block;
margin: 0px;
padding: 0;
list-style: none;
}
ul:after {
display: block;
content: ' ';
clear: both;
float: none;
}
ul.menu > li {
float: left;
position: relative;
}
ul.menu > li > a {
display: block;
padding: 10px;
color: #fff;
/*background-color: #da570f;*/
text-decoration: none;
}
ul.menu > li > a:first-child {
padding-top: 5px;
}
ul.menu > li > a:hover {
/*background-color: #eb9316;*/
}
ul.submenu {
display: none;
position: absolute;
width: 200px;
top: 10px;
left: 0px;
background-color: #24406f;
}
ul.submenu > li {
display: block;
}
ul.submenu > li:first-child {
background: black;
padding-left: 15px;
padding-bottom: 15px;
}
ul.submenu > li > img {
height: 40px;
margin-left: 10px;
}
ul.submenu > li > a {
display: block;
padding: 10px;
color: #fff;
/*background-color: #da570f;*/
text-decoration: none;
}
ul.submenu > li > a:hover {
text-decoration: underline;
/*background-color: #eb9316;*/
}
ul.menu > li:hover > ul.submenu {
display: block;
}
ul.menu > li > a > img {
height: 40px;
}
#catalog a:first-child {
margin: 5px;
}
#profile img {
height: 50px;
}
details {
position: relative;
color: #6b7280;
display: flex;
flex-direction: column;
}
details div {
background-color: #1e1e27;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
padding: 1.25rem;
border-radius: 8px;
position: absolute;
max-height: calc(100vh - 100px);
width: 400px;
max-width: calc(100vw - 2rem);
right: 0;
overflow: auto;
transform-origin: 100% 0%;
color: #95a3b9;
}
details div::-webkit-scrollbar {
width: 15px;
background-color: #1e1e27;
}
details div::-webkit-scrollbar-thumb {
width: 5px;
border-radius: 99em;
background-color: #95a3b9;
border: 5px solid #1e1e27;
}
details div > * + * {
margin-top: 0.75em;
}
details div p > code {
font-size: 1rem;
font-family: monospace;
}
details div pre {
white-space: pre-line;
border: 1px solid #95a3b9;
border-radius: 6px;
font-family: monospace;
padding: 0.75em;
font-size: 0.875rem;
color: #fff;
}
details[open] div {
-webkit-animation: scale 0.25s ease;
animation: scale 0.25s ease;
}
summary {
display: inline-flex;
margin-left: auto;
margin-right: auto;
justify-content: center;
align-items: center;
font-weight: 600;
color: #fff;
list-style: none;
text-align: center;
cursor: pointer;
transition: 0.15s ease;
position: relative;
}
summary::-webkit-details-marker {
display: none;
}
summary svg {
position: absolute;
right: 1.25em;
top: 50%;
transform: translateY(-50%);
width: 1.5em;
height: 1.5em;
}
@-webkit-keyframes scale {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes scale {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
#body {
width: 1200px;
display: block;
margin-left: auto;
margin-right: auto;
}
#level1 {
display: block;
position: relative;
margin-top: 50px;
height: 420px;
}
#user__photo {
display: block;
position: relative;
float: left;
width: 300px;
margin-right: 50px;
}
#user__photo > img {
width: 300px;
}
#info > table {
margin-bottom: 14px;
}
#info p {
font-size: 25px;
line-height: 50px;
margin-bottom: 0px;
}
#info * {
border: none;
}
#info td:nth-child(2n+1) {
width: 4%;
}
#profile a {
line-height: 40px;
cursor: pointer;
}
#profile a:hover {
color: var(--main-color);
}
#deliveries, #deliveries > table:last-child, #existence, #existence > table {
width: 100%;
margin-bottom: 30px;
}
#deliveries > table {
width: 100%;
margin-bottom: -1px;
}
#deliveries > table:last-child {
position: relative;
left: 0px;
transition: width .3s ease;
float: right;
}
td, th {
width: 25%;
height: 40px;
font-size: 20px;
}
th {
text-align: center;
}
td {
padding-left: 10px;
}
table * {
border: 2px solid #6c6b6b;
}
table details {
float: right;
border: none;
}
table details * {
border: none;
top: 6px;
}
table details div {
top: -200px !important;
transform-origin: 0% 100%;
left: -32px;
}
h2 {
float: left;
margin-right: 20px;
}
.wrapper {
perspective: 800px;
}
.div-btn {
display: inline-block;
position: relative;
height: 40px;
width: 200px;
transform-style: preserve-3d;
transition: transform 300ms ease-in-out;
transform: translateZ(-50px);
margin-top: -2px;
}
.hover {
transform: rotateX(-90deg) translateY(50px);
}
.side {
position: absolute;
backface-visibility: hidden;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
/*font-size: 2em;
font-weight: bold;*/
}
.default-side {
/*background-color: #1d8434;
color: white;*/
transform: translateZ(16px);
}
.div-btn > div:first-child {
top: 0px;
}
.hover-side {
/*color: white;
background-color: #154e0b;*/
transform: rotateX(90deg) translateZ(20px);
}
.group {
display: flex;
position: absolute;
width: 0px;
float: left;
transition: width .3s ease;
flex-direction: column;
justify-content: space-around;
padding-top: 0px !important;
overflow: hidden;
}
.but {
height: 40px;
width: 50px;
padding-top: 0px !important;
}
input[type=checkbox] {
position: absolute;
opacity: 0;
height: 20px;
width: 20px;
margin-left: 15px;
margin-top: 10px;
cursor: pointer;
}
.label {
position: relative;
margin-right: 1em;
padding-left: 2em;
padding-right: 1em;
line-height: 2;
cursor: pointer;
left: 13px;
top: -13px;
}
.label:before {
box-sizing: border-box;
content: "";
position: absolute;
top: 0.3em;
left: 0;
display: block;
width: 1.4em;
height: 1.4em;
border: 2px solid white;
border-radius: 0.25em;
z-index: -1;
}
/* Checked */
input[type=checkbox]:checked + .label {
padding-left: 1em;
color: #8e44ad;
}
input[type=checkbox]:checked + .label:before{
background: white;
}
/* Transition */
.label,
.label::before {
transition: 0.25s all ease;
}
.wrapper > .btn-success {
height: 37.6471px;
position: relative;
z-index: -1;
top: -16px;
left: -180px;
transition: left .3s ease-in-out;
width: 170px;
}
.swal2-actions > button {
margin: 10px;
}
#modal, #create, #wait, #edit {
display: none;
}
.pr {
display: block;
height: 40px;
text-align: left;
padding-top: 7px;
margin: 5px;
}
.pr p {
font-size: 25px;
margin-bottom: 0px;
float: left;
}
.btn-del, .sum {
display: block;
width: 40px;
height: 40px;
margin-right: 5px;
float: right;
background: none;
border: none;
}
.sum {
border: 3px solid #000;
border-radius: 5px;
font-size: 25px;
width: 60px;
text-align: center;
}
textarea {
resize: none;
}
.max {
width: 58px;
display: block;
position: relative;
right: -341px;
top: -14px;
font-size: 12px;
}
.sand-top, .sand-bottom, .sand-clock {
will-change: transform;
transform-origin: 50% 30px;
}
.sand-clock {
-webkit-animation: clock 3s 1.25s ease-in-out infinite;
animation: clock 3s 1.25s ease-in-out infinite;
transform-origin: 50% 50%;
width: 80px;
height: 130px;
}
.sand-top {
-webkit-animation: clock-sand-top 3s ease-in-out infinite;
animation: clock-sand-top 3s ease-in-out infinite;
}
.sand-bottom {
-webkit-animation: clock-sand-bottom 3s ease-in-out infinite;
animation: clock-sand-bottom 3s ease-in-out infinite;
transform: scale(0);
}
@-webkit-keyframes clock {
20%, 50% {
transform: rotate(180deg);
}
70%, 100% {
transform: rotate(360deg);
}
}
@keyframes clock {
20%, 50% {
transform: rotate(180deg);
}
70%, 100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes clock-sand-top {
0% {
transform: scale(1);
}
50% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes clock-sand-top {
0% {
transform: scale(1);
}
50% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@-webkit-keyframes clock-sand-bottom {
0% {
transform: scale(0);
}
50% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
@keyframes clock-sand-bottom {
0% {
transform: scale(0);
}
50% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
.wait__text {
margin-top: 30px;
margin-bottom: 0px;
}
.swal2-container.swal2-center>.swal2-popup {
/*background: #15172b;*/
max-height: calc(100vh - 50px);
}
.swal2-html-container {
max-height: 370px;
}
.answer {
padding-top: 10px;
overflow: hidden;
}
.form {
background-color: #15172b;
border-radius: 20px;
box-sizing: border-box;
padding: 10px 20px;
}
.input-container {
position: relative;
width: 100%;
}
.ic2 {
margin-top: 20px;
}
.input {
background-color: #303245;
border-radius: 12px;
border: 0;
box-sizing: border-box;
color: #eee;
font-size: 18px;
height: 50px;
margin-bottom: 10px;
outline: 0;
padding: 4px 20px 0;
width: 100%;
}
.cut {
background-color: #15172b;
border-radius: 10px;
height: 20px;
left: 25px;
position: absolute;
top: -20px;
transform: translateY(0);
transition: transform 200ms;
width: 76px;
}
.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
transform: translateY(8px);
}
.placeholder__text {
color: #65657b;
font-family: sans-serif;
left: 20px;
line-height: 14px;
pointer-events: none;
position: absolute;
transform-origin: 0 50%;
transition: transform 200ms, color 200ms;
top: 20px;
}
.input:focus ~ .placeholder__text ,
.input:not(:placeholder-shown) ~ .placeholder__text {
transform: translateY(-30px) translateX(10px) scale(0.75);
}
.input:not(:placeholder-shown) ~ .placeholder__text {
color: #808097;
}
.input:focus ~ .placeholder__text {
color: #dc2f55;
}
#error {
margin-bottom: 15px;
text-align: left;
color: red;
padding-left: 20px;
}
form > .ic1 {
margin-top: 15px;
}
#display {
padding-top: 10px;
}
.result {
height: 40px;
text-align: left;
padding-top: 12px;
padding-left: 12px;
cursor: pointer;
}
.result:hover {
background-color: #303245;
}
|
css/styleProfile.css
|
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&display=swap");
:root {
--main-color: #fc302b;
--font: "Space Grotesk", sans-serif;
--border-color: #08090a;
}
*, *:before, *:after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #fff;
}
body {
background: #15181A;
font-family: "Open Sans", Helvetica, Arial, sans-serif;
color: #fff !important;
}
#roof {
display: flex;
position: relative;
top: 0px;
left: 0px;
width: 100%;
height: 50px;
background: black;
z-index: 1;
justify-content: space-evenly;
color: #fff;
font-size: 20px;
padding-left: 200px;
padding-right: 200px;
}
.logo_img {
color: var(--main-color);
width: 35px;
float: left;
margin-top: 7px;
}
#logo > p {
color: var(--main-color);
font-size: 35px;
width: fit-content;
float: right;
margin: 0 0 0 10px;
font-weight: bold;
}
#roof > div:nth-child(2), #roof > div:nth-child(4), #roof > div:nth-child(5), #roof > div:nth-child(6) {
padding-top: 10px;
}
.vision {
display: block;
}
/* Made select menu for desktop */
#profile-top {
height: 50px;
width: 85px;
margin-top: 20px;
cursor: pointer;
}
#profile-top > img {
height: 50px;
}
ul {
display: block;
margin: 0px;
padding: 0;
list-style: none;
}
ul:after {
display: block;
content: ' ';
clear: both;
float: none;
}
ul.menu > li {
float: left;
position: relative;
}
ul.menu > li > a {
display: block;
padding: 10px;
color: #fff;
/*background-color: #da570f;*/
text-decoration: none;
}
ul.menu > li > a:first-child {
padding-top: 5px;
}
ul.menu > li > a:hover {
/*background-color: #eb9316;*/
}
ul.submenu {
display: none;
position: absolute;
width: 200px;
top: 10px;
left: 0px;
background-color: #24406f;
}
ul.submenu > li {
display: block;
}
ul.submenu > li:first-child {
background: black;
padding-left: 15px;
padding-bottom: 15px;
}
ul.submenu > li > img {
height: 40px;
margin-left: 10px;
}
ul.submenu > li > a {
display: block;
padding: 10px;
color: #fff;
/*background-color: #da570f;*/
text-decoration: none;
}
ul.submenu > li > a:hover {
text-decoration: underline;
/*background-color: #eb9316;*/
}
ul.menu > li:hover > ul.submenu {
display: block;
}
ul.menu > li > a > img {
height: 40px;
}
#catalog a:first-child {
margin: 5px;
}
#profile img {
height: 50px;
}
details {
position: relative;
color: #6b7280;
display: flex;
flex-direction: column;
}
details div {
background-color: #1e1e27;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
padding: 1.25rem;
border-radius: 8px;
position: absolute;
max-height: calc(100vh - 100px);
width: 400px;
max-width: calc(100vw - 2rem);
right: 0;
overflow: auto;
transform-origin: 100% 0%;
color: #95a3b9;
}
details div::-webkit-scrollbar {
width: 15px;
background-color: #1e1e27;
}
details div::-webkit-scrollbar-thumb {
width: 5px;
border-radius: 99em;
background-color: #95a3b9;
border: 5px solid #1e1e27;
}
details div > * + * {
margin-top: 0.75em;
}
details div p > code {
font-size: 1rem;
font-family: monospace;
}
details div pre {
white-space: pre-line;
border: 1px solid #95a3b9;
border-radius: 6px;
font-family: monospace;
padding: 0.75em;
font-size: 0.875rem;
color: #fff;
}
details[open] div {
-webkit-animation: scale 0.25s ease;
animation: scale 0.25s ease;
}
summary {
display: inline-flex;
margin-left: auto;
margin-right: auto;
justify-content: center;
align-items: center;
font-weight: 600;
color: #fff;
list-style: none;
text-align: center;
cursor: pointer;
transition: 0.15s ease;
position: relative;
}
summary::-webkit-details-marker {
display: none;
}
summary svg {
position: absolute;
right: 1.25em;
top: 50%;
transform: translateY(-50%);
width: 1.5em;
height: 1.5em;
}
@-webkit-keyframes scale {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes scale {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
#body {
width: 1200px;
display: block;
margin-left: auto;
margin-right: auto;
}
#level1 {
display: block;
position: relative;
margin-top: 50px;
height: 420px;
}
#user__photo {
display: block;
position: relative;
float: left;
width: 300px;
margin-right: 50px;
}
#user__photo > img {
width: 300px;
}
#info > table {
margin-bottom: 14px;
}
#info p {
font-size: 25px;
line-height: 50px;
margin-bottom: 0px;
}
#info * {
border: none;
}
#info td:nth-child(2n+1) {
width: 4%;
}
#profile a {
line-height: 40px;
cursor: pointer;
}
#profile a:hover {
color: var(--main-color);
}
#deliveries, #deliveries > table:last-child, #existence, #existence > table {
width: 100%;
margin-bottom: 30px;
}
#deliveries > table {
width: 100%;
margin-bottom: -1px;
}
#deliveries > table:last-child {
position: relative;
left: 0px;
transition: width .3s ease;
float: right;
}
td, th {
width: 25%;
height: 40px;
font-size: 20px;
}
th {
text-align: center;
}
td {
padding-left: 10px;
}
table * {
border: 2px solid #6c6b6b;
}
table details {
float: right;
border: none;
}
table details * {
border: none;
top: 6px;
}
table details div {
top: -200px !important;
transform-origin: 0% 100%;
left: -32px;
}
h2 {
float: left;
margin-right: 20px;
}
.wrapper {
perspective: 800px;
}
.div-btn {
display: inline-block;
position: relative;
height: 40px;
width: 200px;
transform-style: preserve-3d;
transition: transform 300ms ease-in-out;
transform: translateZ(-50px);
margin-top: -2px;
}
.hover {
transform: rotateX(-90deg) translateY(50px);
}
.side {
position: absolute;
backface-visibility: hidden;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
/*font-size: 2em;
font-weight: bold;*/
}
.default-side {
/*background-color: #1d8434;
color: white;*/
transform: translateZ(16px);
}
.div-btn > div:first-child {
top: 0px;
}
.hover-side {
/*color: white;
background-color: #154e0b;*/
transform: rotateX(90deg) translateZ(20px);
}
.group {
display: flex;
position: absolute;
width: 0px;
float: left;
transition: width .3s ease;
flex-direction: column;
justify-content: space-around;
padding-top: 0px !important;
overflow: hidden;
}
.but {
height: 40px;
width: 50px;
padding-top: 0px !important;
}
input[type=checkbox] {
position: absolute;
opacity: 0;
height: 20px;
width: 20px;
margin-left: 15px;
margin-top: 10px;
cursor: pointer;
}
.label {
position: relative;
margin-right: 1em;
padding-left: 2em;
padding-right: 1em;
line-height: 2;
cursor: pointer;
left: 13px;
top: -13px;
}
.label:before {
box-sizing: border-box;
content: "";
position: absolute;
top: 0.3em;
left: 0;
display: block;
width: 1.4em;
height: 1.4em;
border: 2px solid white;
border-radius: 0.25em;
z-index: -1;
}
/* Checked */
input[type=checkbox]:checked + .label {
padding-left: 1em;
color: #8e44ad;
}
input[type=checkbox]:checked + .label:before{
background: white;
}
/* Transition */
.label,
.label::before {
transition: 0.25s all ease;
}
.wrapper > .btn-success {
height: 37.6471px;
position: relative;
z-index: -1;
top: -16px;
left: -180px;
transition: left .3s ease-in-out;
width: 170px;
}
.swal2-actions > button {
margin: 10px;
}
#modal, #create, #wait, #edit {
display: none;
}
.pr {
display: block;
height: 40px;
text-align: left;
padding-top: 7px;
margin: 5px;
}
.pr p {
font-size: 25px;
margin-bottom: 0px;
float: left;
}
.btn-del, .sum {
display: block;
width: 40px;
height: 40px;
margin-right: 5px;
float: right;
background: none;
border: none;
}
.sum {
border: 3px solid #000;
border-radius: 5px;
font-size: 25px;
width: 60px;
text-align: center;
}
textarea {
resize: none;
}
.max {
width: 58px;
display: block;
position: relative;
right: -341px;
top: -14px;
font-size: 12px;
}
.sand-top, .sand-bottom, .sand-clock {
will-change: transform;
transform-origin: 50% 30px;
}
.sand-clock {
-webkit-animation: clock 3s 1.25s ease-in-out infinite;
animation: clock 3s 1.25s ease-in-out infinite;
transform-origin: 50% 50%;
width: 80px;
height: 130px;
}
.sand-top {
-webkit-animation: clock-sand-top 3s ease-in-out infinite;
animation: clock-sand-top 3s ease-in-out infinite;
}
.sand-bottom {
-webkit-animation: clock-sand-bottom 3s ease-in-out infinite;
animation: clock-sand-bottom 3s ease-in-out infinite;
transform: scale(0);
}
@-webkit-keyframes clock {
20%, 50% {
transform: rotate(180deg);
}
70%, 100% {
transform: rotate(360deg);
}
}
@keyframes clock {
20%, 50% {
transform: rotate(180deg);
}
70%, 100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes clock-sand-top {
0% {
transform: scale(1);
}
50% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes clock-sand-top {
0% {
transform: scale(1);
}
50% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@-webkit-keyframes clock-sand-bottom {
0% {
transform: scale(0);
}
50% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
@keyframes clock-sand-bottom {
0% {
transform: scale(0);
}
50% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
.wait__text {
margin-top: 30px;
margin-bottom: 0px;
}
.swal2-container.swal2-center>.swal2-popup {
/*background: #15172b;*/
max-height: calc(100vh - 50px);
}
.swal2-html-container {
max-height: 370px;
}
.answer {
padding-top: 10px;
overflow: hidden;
}
.form {
background-color: #15172b;
border-radius: 20px;
box-sizing: border-box;
padding: 10px 20px;
}
.input-container {
position: relative;
width: 100%;
}
.ic2 {
margin-top: 20px;
}
.input {
background-color: #303245;
border-radius: 12px;
border: 0;
box-sizing: border-box;
color: #eee;
font-size: 18px;
height: 50px;
margin-bottom: 10px;
outline: 0;
padding: 4px 20px 0;
width: 100%;
}
.cut {
background-color: #15172b;
border-radius: 10px;
height: 20px;
left: 25px;
position: absolute;
top: -20px;
transform: translateY(0);
transition: transform 200ms;
width: 76px;
}
.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
transform: translateY(8px);
}
.placeholder__text {
color: #65657b;
font-family: sans-serif;
left: 20px;
line-height: 14px;
pointer-events: none;
position: absolute;
transform-origin: 0 50%;
transition: transform 200ms, color 200ms;
top: 20px;
}
.input:focus ~ .placeholder__text ,
.input:not(:placeholder-shown) ~ .placeholder__text {
transform: translateY(-30px) translateX(10px) scale(0.75);
}
.input:not(:placeholder-shown) ~ .placeholder__text {
color: #808097;
}
.input:focus ~ .placeholder__text {
color: #dc2f55;
}
#error {
margin-bottom: 15px;
text-align: left;
color: red;
padding-left: 20px;
}
form > .ic1 {
margin-top: 15px;
}
#display {
padding-top: 10px;
}
.result {
height: 40px;
text-align: left;
padding-top: 12px;
padding-left: 12px;
cursor: pointer;
}
.result:hover {
background-color: #303245;
}
| 0.232049 | 0.078219 |
html {
font-size: 100%;
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
background: #fafafa;
font-family: 'Kalpurush', sans-serif;
font-size: 1rem;
font-weight: 300;
line-height: 1.3;
}
h1, h2, h3, h4, h5, h6, p, span, a, ul, li {
margin: 0;
padding: 0;
}
a, a:visited, a:hover {
text-decoration: none;
color: black;
cursor: pointer;
}
hr {
border: 1px solid rgba(128, 128, 128, 0.3);
}
ul {
list-style-type: none;
}
.container {
max-width: 73.125rem;
margin: 0 auto;
}
.flex {
display: flex;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-d-c {
flex-direction: column;
}
.flex-jc-sb {
justify-content: space-between;
}
.flex-jc-c {
justify-content: center;
}
.flex-ai-c {
align-items: center;
}
.flex-as-c {
align-self: center;
}
.button {
display: block;
background-color: transparent;
border: 1px solid #004D40;
color: #243C6E;
border-radius: 0px;
text-align: center;
margin: 10px auto;
padding: 10px 20px;
cursor: pointer;
}
.button:hover {
color: #fff;
background-color: #004D40;
}
.header__first {
background: white;
padding: 10px;
}
@media (max-width: 991px) {
.header__first > div {
flex: 1 0 100%;
}
}
@media (max-width: 991px) {
.header__logo {
order: 3;
}
.header__logo img {
display: block;
margin: 0 auto;
}
}
.header__name .bangla {
font-weight: bold;
color: #333;
font-size: 28px;
}
.header__name .english {
font-weight: bold;
color: #333;
font-size: 28px;
}
@media (max-width: 991px) {
.header__name {
order: 4;
text-align: center;
}
}
@media (max-width: 991px) {
.header__language {
order: 1;
text-align: right;
}
}
.header__email a {
font-size: 14px;
font-family: 'Oswald', sans-serif;
font-weight: bold;
}
@media (max-width: 991px) {
.header__email {
order: 2;
text-align: right;
}
}
.header__navbar {
background: #f0f0f0;
font-weight: bold;
}
.header__navbar .nav {
list-style-type: none;
padding-left: 0;
margin: 0;
}
@media (max-width: 991px) {
.header__navbar .nav-item {
flex: 1 0 100%;
text-align: center;
}
}
.header__navbar .nav-link {
display: inline-block;
padding: 10px 20px;
color: #333;
transition: .5s ease-in-out;
}
.header__navbar .nav-link:hover {
background: white;
}
.header__navbar .nav li:first-child {
background: white;
}
.header__navbar .dropdown {
position: relative;
}
.header__navbar .dropdown:hover .dropdown-content {
visibility: visible;
}
.header__navbar .dropdown-content {
visibility: hidden;
background: #f0f0f0;
position: absolute;
min-width: 150px;
box-shadow: 0 0 5px 0 #333;
z-index: 1;
}
.header__navbar .dropdown-link {
display: block;
padding: 10px;
}
.header__navbar .dropdown-link:hover {
background: white;
}
.header .notice-up {
height: 1rem;
background: white;
}
.header__notice .text {
flex: 1 0 10%;
text-align: center;
background: #004d40;
color: white;
font-weight: bold;
}
.header__notice .text p {
margin: 0;
padding: 8px;
}
@media (max-width: 991px) {
.header__notice .text {
flex: 1 0 20%;
}
}
.header__notice .payment {
flex: 1 0 90%;
background: #f0f0f0;
padding: 7px 10px;
}
@media (max-width: 991px) {
.header__notice .payment {
flex: 1 0 80%;
}
}
.hero {
padding: 24px 0;
}
.hero__main > div:not(:last-child) {
margin-right: 30px;
}
@media (max-width: 991px) {
.hero .first {
flex: 1 0 100%;
}
}
.hero .first > div {
padding: 15px;
background-color: #004d40;
color: white;
text-align: center;
font-size: 18px;
font-weight: bold;
}
.hero .first > div a {
color: white;
}
@media (max-width: 991px) {
.hero .first > div {
flex: 1 0 92%;
margin: 15px 4%;
}
}
.hero .second {
flex: 1 0 50%;
}
.hero .second img {
width: 100%;
min-height: 358px;
}
@media (max-width: 991px) {
.hero .second {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.hero .third {
flex: 1 0 30%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
text-align: center;
padding: 16px;
}
.hero .third img {
height: 120px;
width: 120px;
border-radius: 50%;
}
@media (max-width: 991px) {
.hero .third {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.info__heading {
font-family: 'Oswald', sans-serif;
text-align: center;
margin: 30px 0px;
font-size: 32px;
font-weight: bold;
}
.info__list > div {
flex: 1 0 48%;
}
@media (max-width: 991px) {
.info__list > div {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.info__list > div:first-child {
margin-right: 2%;
}
.info .title {
background: #004d40;
padding: 10px;
color: white;
border: 0;
}
.info .upper-list {
border: 1px solid #ddd;
}
.info .upper-list > li {
padding: 13px 15px;
color: #666;
}
.info .upper-list > li:not(:last-child) {
border-bottom: 1px solid #ddd;
}
.info .inner-list {
margin-right: 15px;
text-align: center;
font-size: 18px;
}
.info .inner-list li {
padding: 2px 15px;
}
.info .inner-list li:first-child {
background: #004d40;
color: white;
}
.info .inner-list li:last-child {
background: #f0f0f0;
color: #333;
}
.branch {
padding: 20px 0;
}
.branch__title {
text-align: center;
margin-bottom: 20px;
font-family: "Oswald", sans-serif;
font-size: 32px;
font-weight: bold;
}
.branch__description > div {
flex: 1 0 32%;
}
.branch__description > div:not(:last-child) {
margin-right: 2%;
}
@media (max-width: 991px) {
.branch__description > div {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.branch img {
width: 100%;
}
.branch h3 {
text-align: center;
padding: 10px 0;
font-family: "Oswald", sans-serif;
}
.gallery {
padding: 20px 0;
}
.gallery__description > div {
flex: 1 0 32%;
}
.gallery__description > div:not(:last-child) {
margin-right: 2%;
}
@media (max-width: 991px) {
.gallery__description > div {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.gallery img {
width: 100%;
}
.gallery iframe {
width: 100%;
height: 207px;
}
.gallery h3 {
text-align: center;
padding: 10px 0;
font-family: "Oswald", sans-serif;
}
.about {
background: #004d40;
color: white;
padding: 50px 0;
}
.about__main > div {
flex: 1 0 22%;
}
@media (max-width: 991px) {
.about__main > div {
flex: 1 0 92%;
margin: 30px 4%;
}
}
.about__main > div:not(:last-child) {
margin-right: 4%;
}
.about h3 {
border-bottom: 1px solid white;
margin-bottom: 6px;
}
.about .fab {
font-size: 24px;
float: left;
margin-right: 10px;
}
.about .far, .about .fas {
margin-right: 10px;
}
.about a {
display: block;
color: white;
padding: 4px 0;
}
.about ul li {
padding: 5px;
}
.about ul li::after {
content: "";
display: block;
clear: both;
}
.about p {
padding: 5px;
}
.footer p {
text-align: center;
padding: 10px 0;
}
/*# sourceMappingURL=style.css.map */
|
dist/style.css
|
html {
font-size: 100%;
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
background: #fafafa;
font-family: 'Kalpurush', sans-serif;
font-size: 1rem;
font-weight: 300;
line-height: 1.3;
}
h1, h2, h3, h4, h5, h6, p, span, a, ul, li {
margin: 0;
padding: 0;
}
a, a:visited, a:hover {
text-decoration: none;
color: black;
cursor: pointer;
}
hr {
border: 1px solid rgba(128, 128, 128, 0.3);
}
ul {
list-style-type: none;
}
.container {
max-width: 73.125rem;
margin: 0 auto;
}
.flex {
display: flex;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-d-c {
flex-direction: column;
}
.flex-jc-sb {
justify-content: space-between;
}
.flex-jc-c {
justify-content: center;
}
.flex-ai-c {
align-items: center;
}
.flex-as-c {
align-self: center;
}
.button {
display: block;
background-color: transparent;
border: 1px solid #004D40;
color: #243C6E;
border-radius: 0px;
text-align: center;
margin: 10px auto;
padding: 10px 20px;
cursor: pointer;
}
.button:hover {
color: #fff;
background-color: #004D40;
}
.header__first {
background: white;
padding: 10px;
}
@media (max-width: 991px) {
.header__first > div {
flex: 1 0 100%;
}
}
@media (max-width: 991px) {
.header__logo {
order: 3;
}
.header__logo img {
display: block;
margin: 0 auto;
}
}
.header__name .bangla {
font-weight: bold;
color: #333;
font-size: 28px;
}
.header__name .english {
font-weight: bold;
color: #333;
font-size: 28px;
}
@media (max-width: 991px) {
.header__name {
order: 4;
text-align: center;
}
}
@media (max-width: 991px) {
.header__language {
order: 1;
text-align: right;
}
}
.header__email a {
font-size: 14px;
font-family: 'Oswald', sans-serif;
font-weight: bold;
}
@media (max-width: 991px) {
.header__email {
order: 2;
text-align: right;
}
}
.header__navbar {
background: #f0f0f0;
font-weight: bold;
}
.header__navbar .nav {
list-style-type: none;
padding-left: 0;
margin: 0;
}
@media (max-width: 991px) {
.header__navbar .nav-item {
flex: 1 0 100%;
text-align: center;
}
}
.header__navbar .nav-link {
display: inline-block;
padding: 10px 20px;
color: #333;
transition: .5s ease-in-out;
}
.header__navbar .nav-link:hover {
background: white;
}
.header__navbar .nav li:first-child {
background: white;
}
.header__navbar .dropdown {
position: relative;
}
.header__navbar .dropdown:hover .dropdown-content {
visibility: visible;
}
.header__navbar .dropdown-content {
visibility: hidden;
background: #f0f0f0;
position: absolute;
min-width: 150px;
box-shadow: 0 0 5px 0 #333;
z-index: 1;
}
.header__navbar .dropdown-link {
display: block;
padding: 10px;
}
.header__navbar .dropdown-link:hover {
background: white;
}
.header .notice-up {
height: 1rem;
background: white;
}
.header__notice .text {
flex: 1 0 10%;
text-align: center;
background: #004d40;
color: white;
font-weight: bold;
}
.header__notice .text p {
margin: 0;
padding: 8px;
}
@media (max-width: 991px) {
.header__notice .text {
flex: 1 0 20%;
}
}
.header__notice .payment {
flex: 1 0 90%;
background: #f0f0f0;
padding: 7px 10px;
}
@media (max-width: 991px) {
.header__notice .payment {
flex: 1 0 80%;
}
}
.hero {
padding: 24px 0;
}
.hero__main > div:not(:last-child) {
margin-right: 30px;
}
@media (max-width: 991px) {
.hero .first {
flex: 1 0 100%;
}
}
.hero .first > div {
padding: 15px;
background-color: #004d40;
color: white;
text-align: center;
font-size: 18px;
font-weight: bold;
}
.hero .first > div a {
color: white;
}
@media (max-width: 991px) {
.hero .first > div {
flex: 1 0 92%;
margin: 15px 4%;
}
}
.hero .second {
flex: 1 0 50%;
}
.hero .second img {
width: 100%;
min-height: 358px;
}
@media (max-width: 991px) {
.hero .second {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.hero .third {
flex: 1 0 30%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
text-align: center;
padding: 16px;
}
.hero .third img {
height: 120px;
width: 120px;
border-radius: 50%;
}
@media (max-width: 991px) {
.hero .third {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.info__heading {
font-family: 'Oswald', sans-serif;
text-align: center;
margin: 30px 0px;
font-size: 32px;
font-weight: bold;
}
.info__list > div {
flex: 1 0 48%;
}
@media (max-width: 991px) {
.info__list > div {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.info__list > div:first-child {
margin-right: 2%;
}
.info .title {
background: #004d40;
padding: 10px;
color: white;
border: 0;
}
.info .upper-list {
border: 1px solid #ddd;
}
.info .upper-list > li {
padding: 13px 15px;
color: #666;
}
.info .upper-list > li:not(:last-child) {
border-bottom: 1px solid #ddd;
}
.info .inner-list {
margin-right: 15px;
text-align: center;
font-size: 18px;
}
.info .inner-list li {
padding: 2px 15px;
}
.info .inner-list li:first-child {
background: #004d40;
color: white;
}
.info .inner-list li:last-child {
background: #f0f0f0;
color: #333;
}
.branch {
padding: 20px 0;
}
.branch__title {
text-align: center;
margin-bottom: 20px;
font-family: "Oswald", sans-serif;
font-size: 32px;
font-weight: bold;
}
.branch__description > div {
flex: 1 0 32%;
}
.branch__description > div:not(:last-child) {
margin-right: 2%;
}
@media (max-width: 991px) {
.branch__description > div {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.branch img {
width: 100%;
}
.branch h3 {
text-align: center;
padding: 10px 0;
font-family: "Oswald", sans-serif;
}
.gallery {
padding: 20px 0;
}
.gallery__description > div {
flex: 1 0 32%;
}
.gallery__description > div:not(:last-child) {
margin-right: 2%;
}
@media (max-width: 991px) {
.gallery__description > div {
flex: 1 0 92%;
margin: 30px 4% !important;
}
}
.gallery img {
width: 100%;
}
.gallery iframe {
width: 100%;
height: 207px;
}
.gallery h3 {
text-align: center;
padding: 10px 0;
font-family: "Oswald", sans-serif;
}
.about {
background: #004d40;
color: white;
padding: 50px 0;
}
.about__main > div {
flex: 1 0 22%;
}
@media (max-width: 991px) {
.about__main > div {
flex: 1 0 92%;
margin: 30px 4%;
}
}
.about__main > div:not(:last-child) {
margin-right: 4%;
}
.about h3 {
border-bottom: 1px solid white;
margin-bottom: 6px;
}
.about .fab {
font-size: 24px;
float: left;
margin-right: 10px;
}
.about .far, .about .fas {
margin-right: 10px;
}
.about a {
display: block;
color: white;
padding: 4px 0;
}
.about ul li {
padding: 5px;
}
.about ul li::after {
content: "";
display: block;
clear: both;
}
.about p {
padding: 5px;
}
.footer p {
text-align: center;
padding: 10px 0;
}
/*# sourceMappingURL=style.css.map */
| 0.598077 | 0.09451 |
html, body {
box-sizing: border-box;
font-family: Helvetica, sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
*, *:before, *:after {
box-sizing: inherit;
user-select: none;
}
canvas {
position: absolute;
width: 100%;
height: 100%;
}
.btn {
position: absolute;
font-weight: 500;
border: 0;
border-radius: 5px;
font-size: 1.5em;
padding: 1.5em;
text-decoration: none;
z-index: 1;
}
.btn__game--short {
background-color: #FFF;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
color: #000;
bottom: 330px;
left: 50%;
-webkit-transform: translate(-50%);
-ms-transform: translate(-50%);
transform: translate(-50%);
}
.btn__game--long {
background-color: #FFF;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
color: #000;
bottom: 200px;
left: 50%;
-webkit-transform: translate(-50%);
-ms-transform: translate(-50%);
transform: translate(-50%);
}
.btn__game--selected {
background-color: #000;
color: #FFF;
}
.btn--reset {
background-color: #DDDDDD;
color: #000;
padding: 1em 1.5em;
bottom:50px;
left: 50%;
-webkit-transform: translate(-50%);
-ms-transform: translate(-50%);
transform: translate(-50%);
}
.btn--undo {
background-color: #DDDDDD;
color: #000;
padding: 1em 1.5em;
bottom:50px;
left: 50%;
-webkit-transform: translate(-50%);
-ms-transform: translate(-50%);
transform: translate(-50%);
}
.scoreboard {
position: relative;
height: 100%;
}
.actions {
position: absolute;
left: 40%;
width: 20%;
height: 100%;
}
.player {
position: absolute;
top: 0;
bottom: 0;
}
.player--blue {
cursor: pointer;
background-color: rgb(64, 159, 255);
right: 50%;
left: 0;
}
.player--red {
cursor: pointer;
background-color: rgb(230, 80, 80);
right: 0;
left: 50%;
}
.serve {
display: none;
transition-property: left;
transition-duration: 0.5s;
font-size: 4em;
position: absolute;
top: 60%;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.serve--blue .serve {
display: block;
left: 25%;
}
.serve--red .serve {
display: block;
left: 75%;
}
.score {
font-size: 15em;
font-weight: bold;
position: absolute;
top: 40%;
left: 50%;
-webkit-transform: translate(-50%, -40%);
-ms-transform: translate(-50%, -40%);
transform: translate(-50%, -40%);
}
|
client/style/main.css
|
html, body {
box-sizing: border-box;
font-family: Helvetica, sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
*, *:before, *:after {
box-sizing: inherit;
user-select: none;
}
canvas {
position: absolute;
width: 100%;
height: 100%;
}
.btn {
position: absolute;
font-weight: 500;
border: 0;
border-radius: 5px;
font-size: 1.5em;
padding: 1.5em;
text-decoration: none;
z-index: 1;
}
.btn__game--short {
background-color: #FFF;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
color: #000;
bottom: 330px;
left: 50%;
-webkit-transform: translate(-50%);
-ms-transform: translate(-50%);
transform: translate(-50%);
}
.btn__game--long {
background-color: #FFF;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
color: #000;
bottom: 200px;
left: 50%;
-webkit-transform: translate(-50%);
-ms-transform: translate(-50%);
transform: translate(-50%);
}
.btn__game--selected {
background-color: #000;
color: #FFF;
}
.btn--reset {
background-color: #DDDDDD;
color: #000;
padding: 1em 1.5em;
bottom:50px;
left: 50%;
-webkit-transform: translate(-50%);
-ms-transform: translate(-50%);
transform: translate(-50%);
}
.btn--undo {
background-color: #DDDDDD;
color: #000;
padding: 1em 1.5em;
bottom:50px;
left: 50%;
-webkit-transform: translate(-50%);
-ms-transform: translate(-50%);
transform: translate(-50%);
}
.scoreboard {
position: relative;
height: 100%;
}
.actions {
position: absolute;
left: 40%;
width: 20%;
height: 100%;
}
.player {
position: absolute;
top: 0;
bottom: 0;
}
.player--blue {
cursor: pointer;
background-color: rgb(64, 159, 255);
right: 50%;
left: 0;
}
.player--red {
cursor: pointer;
background-color: rgb(230, 80, 80);
right: 0;
left: 50%;
}
.serve {
display: none;
transition-property: left;
transition-duration: 0.5s;
font-size: 4em;
position: absolute;
top: 60%;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.serve--blue .serve {
display: block;
left: 25%;
}
.serve--red .serve {
display: block;
left: 75%;
}
.score {
font-size: 15em;
font-weight: bold;
position: absolute;
top: 40%;
left: 50%;
-webkit-transform: translate(-50%, -40%);
-ms-transform: translate(-50%, -40%);
transform: translate(-50%, -40%);
}
| 0.553626 | 0.070977 |
.btn {
font-family: "Open Sans", sans-serif;
font-weight: bold;
font-size: 15px;
color: #eeeeff;
margin: 2px;
cursor: pointer;
box-shadow: 1px 1px 3px #7777;
padding: 10px 5em 10px 5em;
border: none;
border-radius: 5px;
transition: 0.2s ease-in-out;
transition-property: filter;
}
.btn:hover {
filter: brightness(115%);
}
.btn.btn-blue {
background-color: #0275d8;
}
.btn.btn-red {
background-color: #e84118;
}
.btn.btn-green {
background-color: #27ae60;
}
.btn.btn-yellow {
background-color: #f7b731;
color: #333333;
}
.btn.btn-purple {
background-color: #8e44ad;
}
.btn-outline {
font-family: "Open Sans", sans-serif;
font-weight: bold;
font-size: 15px;
color: #333333;
cursor: pointer;
padding: 10px 5em 10px 5em;
border-radius: 5px;
margin: 2px;
background: transparent;
transition: 0.2s ease-in-out;
transition-property: color, background-color, box-shadow;
}
.btn-outline:hover {
color: #eeeeff;
box-shadow: 1px 1px 3px #7777;
}
.btn-outline.btn-blue {
border: 2px solid #0275d8;
}
.btn-outline.btn-blue:hover {
background-color: #0275d8;
}
.btn-outline.btn-red {
border: 2px solid #e84118;
}
.btn-outline.btn-red:hover {
background-color: #e84118;
}
.btn-outline.btn-green {
border: 2px solid #27ae60;
}
.btn-outline.btn-green:hover {
background-color: #27ae60;
}
.btn-outline.btn-yellow {
border: 2px solid #f7b731;
transition: 0.2s ease-in-out;
transition-property: color, background-color;
}
.btn-outline.btn-yellow:hover {
background-color: #f7b731;
color: #333333;
}
.btn-outline.btn-purple {
border: 2px solid #8e44ad;
}
.btn-outline.btn-purple:hover {
background-color: #8e44ad;
}
.input {
transition: box-shadow 0.2s ease-in-out;
font-family: "Open Sans", sans-serif;
color: #8898aa;
box-shadow: 1px 1px 3px #7777;
padding: 10px 20px 10px 20px;
margin: 2px;
border: none;
border-radius: 5px;
background-color: #eeeeff;
}
.input:focus {
outline: none;
}
.input.combo:focus {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.input.combo option {
background-color: #eeeeff;
padding: 15px 20px 15px 20px;
}
.input.combo option:last-of-type {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.input.file {
position: relative;
cursor: pointer;
width: 350px;
padding-left: 155px;
}
.input.file::file-selector-button {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
height: 100%;
width: 150px;
background: #eeeeff;
border: none;
filter: brightness(90%);
box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
clip-path: inset(0 -30px 0 0);
}
.small.btn, .small.btn-outline {
padding: 5px 2.5em 5px 2.5em;
font-size: 13px;
}
/*# sourceMappingURL=nice-components.css.map */
|
build/nice-components.css
|
.btn {
font-family: "Open Sans", sans-serif;
font-weight: bold;
font-size: 15px;
color: #eeeeff;
margin: 2px;
cursor: pointer;
box-shadow: 1px 1px 3px #7777;
padding: 10px 5em 10px 5em;
border: none;
border-radius: 5px;
transition: 0.2s ease-in-out;
transition-property: filter;
}
.btn:hover {
filter: brightness(115%);
}
.btn.btn-blue {
background-color: #0275d8;
}
.btn.btn-red {
background-color: #e84118;
}
.btn.btn-green {
background-color: #27ae60;
}
.btn.btn-yellow {
background-color: #f7b731;
color: #333333;
}
.btn.btn-purple {
background-color: #8e44ad;
}
.btn-outline {
font-family: "Open Sans", sans-serif;
font-weight: bold;
font-size: 15px;
color: #333333;
cursor: pointer;
padding: 10px 5em 10px 5em;
border-radius: 5px;
margin: 2px;
background: transparent;
transition: 0.2s ease-in-out;
transition-property: color, background-color, box-shadow;
}
.btn-outline:hover {
color: #eeeeff;
box-shadow: 1px 1px 3px #7777;
}
.btn-outline.btn-blue {
border: 2px solid #0275d8;
}
.btn-outline.btn-blue:hover {
background-color: #0275d8;
}
.btn-outline.btn-red {
border: 2px solid #e84118;
}
.btn-outline.btn-red:hover {
background-color: #e84118;
}
.btn-outline.btn-green {
border: 2px solid #27ae60;
}
.btn-outline.btn-green:hover {
background-color: #27ae60;
}
.btn-outline.btn-yellow {
border: 2px solid #f7b731;
transition: 0.2s ease-in-out;
transition-property: color, background-color;
}
.btn-outline.btn-yellow:hover {
background-color: #f7b731;
color: #333333;
}
.btn-outline.btn-purple {
border: 2px solid #8e44ad;
}
.btn-outline.btn-purple:hover {
background-color: #8e44ad;
}
.input {
transition: box-shadow 0.2s ease-in-out;
font-family: "Open Sans", sans-serif;
color: #8898aa;
box-shadow: 1px 1px 3px #7777;
padding: 10px 20px 10px 20px;
margin: 2px;
border: none;
border-radius: 5px;
background-color: #eeeeff;
}
.input:focus {
outline: none;
}
.input.combo:focus {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.input.combo option {
background-color: #eeeeff;
padding: 15px 20px 15px 20px;
}
.input.combo option:last-of-type {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.input.file {
position: relative;
cursor: pointer;
width: 350px;
padding-left: 155px;
}
.input.file::file-selector-button {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
height: 100%;
width: 150px;
background: #eeeeff;
border: none;
filter: brightness(90%);
box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
clip-path: inset(0 -30px 0 0);
}
.small.btn, .small.btn-outline {
padding: 5px 2.5em 5px 2.5em;
font-size: 13px;
}
/*# sourceMappingURL=nice-components.css.map */
| 0.36727 | 0.07024 |
body {
display: flex;
flex-direction: column;
line-height: 1.3;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1%;
background-color: #13293d;
color: #fff;
}
/* Change font size of headings */
h1 {
font-size: 200%;
}
/* Change the margin */
h2 {
margin: 2% 0;
font-size: 150%;
}
nav ul {
display: flex;
justify-content: space-between;
min-width: 300px;
}
nav a {
color: #b9c6ae;
font-weight: bold;
text-decoration: none;
}
main {
display: flex;
flex: 1 1 0;
max-width: 1200px;
margin: 2% auto;
}
section {
flex: 1 1 0;
padding-right: 5%;
}
article {
border-bottom: 1px solid #d8a47f;
}
article p {
margin: 2% 0;
font-size: 110%;
}
/* Change the margin specifically */
article ul {
margin-left: 5%;
margin-bottom: 2%;
font-size: 110%;
list-style: circle;
}
/* Implement font stacks */
.one {
font-family: 'Helvetica', 'Arial', sans-serif;
font-weight: 900;
font-style: oblique;
}
.two {
font-family: 'Times New Roman', Times, serif;
font-weight: 500;
font-style: italic;
}
.three {
font-family: 'Menlo', 'Lucida Console', monospace;
font-weight: 100;
font-style: normal;
}
/* Using DevTools, change the following properties to demonstrate the differences */
.four {
/* Change font family: serif, sans-serif, monospace, cursive */
font-family: serif;
/* Change font weight: bold, 100-900 */
font-weight: 100;
/* Change the font style: normal, italic, oblique */
font-style: normal;
/* Transform the text: uppercase, lowercase, capitalize */
text-transform: none;
/* Set text decorations on fonts: underline, overline, line-through */
text-decoration: none;
}
aside {
width: 25%;
}
aside h2 {
font-size: 150%;
}
input,
button {
width: 100%;
margin: 2% 0;
padding: 1%;
}
footer {
display: flex;
justify-content: center;
padding: 2%;
background-color: #13293d;
color: #fff;
}
@media screen and (max-width: 768px) {
header,
main {
flex-direction: column;
}
section {
padding-right: 0;
}
aside {
width: 100%;
text-align: center;
}
}
|
02-Advanced-CSS/01-Activities/13-Ins_Typography/assets/css/style.css
|
body {
display: flex;
flex-direction: column;
line-height: 1.3;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1%;
background-color: #13293d;
color: #fff;
}
/* Change font size of headings */
h1 {
font-size: 200%;
}
/* Change the margin */
h2 {
margin: 2% 0;
font-size: 150%;
}
nav ul {
display: flex;
justify-content: space-between;
min-width: 300px;
}
nav a {
color: #b9c6ae;
font-weight: bold;
text-decoration: none;
}
main {
display: flex;
flex: 1 1 0;
max-width: 1200px;
margin: 2% auto;
}
section {
flex: 1 1 0;
padding-right: 5%;
}
article {
border-bottom: 1px solid #d8a47f;
}
article p {
margin: 2% 0;
font-size: 110%;
}
/* Change the margin specifically */
article ul {
margin-left: 5%;
margin-bottom: 2%;
font-size: 110%;
list-style: circle;
}
/* Implement font stacks */
.one {
font-family: 'Helvetica', 'Arial', sans-serif;
font-weight: 900;
font-style: oblique;
}
.two {
font-family: 'Times New Roman', Times, serif;
font-weight: 500;
font-style: italic;
}
.three {
font-family: 'Menlo', 'Lucida Console', monospace;
font-weight: 100;
font-style: normal;
}
/* Using DevTools, change the following properties to demonstrate the differences */
.four {
/* Change font family: serif, sans-serif, monospace, cursive */
font-family: serif;
/* Change font weight: bold, 100-900 */
font-weight: 100;
/* Change the font style: normal, italic, oblique */
font-style: normal;
/* Transform the text: uppercase, lowercase, capitalize */
text-transform: none;
/* Set text decorations on fonts: underline, overline, line-through */
text-decoration: none;
}
aside {
width: 25%;
}
aside h2 {
font-size: 150%;
}
input,
button {
width: 100%;
margin: 2% 0;
padding: 1%;
}
footer {
display: flex;
justify-content: center;
padding: 2%;
background-color: #13293d;
color: #fff;
}
@media screen and (max-width: 768px) {
header,
main {
flex-direction: column;
}
section {
padding-right: 0;
}
aside {
width: 100%;
text-align: center;
}
}
| 0.565059 | 0.082734 |
@import "vendor/__vendor-dir";
/* = Table of Contents =
* Base
* Grouping
* Layout
* Typography
* Page Specific
* Media Queries
* Print Styles
*/
/* = Base = */
a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
cite,
code,
dd,
div,
dl,
dt,
em,
fieldset,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
label,
li,
nav,
object,
ol,
p,
pre,
section,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
ul,
video {
border: 0;
font: inherit;
font-size: 100%;
margin: 0;
outline: 0;
padding: 0;
vertical-align: baseline;
}
article,
aside,
footer,
header,
nav,
section {
display: block;
}
audio,
canvas,
video {
display: inline-block;
}
* {
box-sizing: border-box;
}
html {
color: #414141;
font-family: "canada-type-gibson", "Gibson", Arial, sans-serif;
font-weight: 300;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
background: #FFF;
font-size: 18px;
line-height: 1.5;
min-width: 310px;
}
img {
-ms-interpolation-mode: bicubic;
max-width: 100%;
vertical-align: middle;
}
::-moz-selection {
background: #FF4500;
color: #FFF;
text-shadow: none;
}
::selection {
background: #FF4500;
color: #FFF;
text-shadow: none;
}
nav ul {
list-style: none;
margin-bottom: 0;
padding-left: 0;
}
nav ul:before,
nav ul:after {
content: "";
display: table;
}
nav ul:after {
clear: both;
}
/* = Grouping = */
.group:before,
.group:after,
.container:before,
.container:after {
content: "";
display: table;
}
.group:after,
.container:after {
clear: both;
}
/* + Columns = */
.columns > hr {
display: none;
border: none;
}
@media only screen and (min-width: 600px) {
.columns {
display: table;
table-layout: fixed;
width: 100%;
}
.columns > * {
display: table-cell;
vertical-align: top;
}
.columns > hr {
display: table-cell;
width: 1rem;
}
}
/* = Layout = */
.container {
padding-left: 16px;
padding-right: 16px;
}
.header_container {
width: 100%;
z-index: 5;
}
header.primary {
background: #FFF;
box-shadow: 0 0 8px rgba(0,0,0,0.3);
padding: 16px;
position: relative;
}
header.primary .branding {
background: #FFF;
max-width: 180px;
position: relative;
text-align: center;
text-size: 2em;
}
header.primary .branding a {
display: block;
margin-top: 3px;
transition: opacity 200ms linear;
}
header.primary .branding a:hover,
header.primary .branding a:focus {
opacity: 0.7;
}
nav.primary ul {
text-align: center;
}
nav.primary li {
display: inline-block;
font-size: 1.1em;
margin-bottom: 0;
margin-left: 0.35em;
}
nav.primary li:first-child {
margin-left: 0;
}
nav.primary li a {
color: #333;
display: block;
}
nav.primary li a:hover,
nav.primary li a:focus {
color: #005B9A;
}
nav.primary .active a {
color: #005B9A;
}
nav.primary .active a:hover,
nav.primary .active a:focus {
color: #117E99;
}
.heading {
background: #071159;
color: #FFF;
overflow: hidden;
width: 100%;
z-index: 4;
}
body .heading h1:before {
background-repeat: no-repeat;
content: "";
display: block;
-webkit-filter: grayscale(0.4);
filter: grayscale(0.4);
height: 100%;
left: -40px;
opacity: 0.4;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.heading h1 {
font-size: 2.8em;
margin: 0 auto;
max-width: 1100px;
padding: 1em 16px;
position: relative;
z-index: 2;
}
.torso {
margin-bottom: 3em;
}
.main .intro {
padding-top: 1.4em;
}
.main h2 {
border-top: 1px solid #E4E4E4;
color: #FF4500;
font-size: 2.2em;
margin-bottom: 0.1em;
margin-top: 1.4em;
padding-top: 1.4em;
}
.main a:focus {
background-color: rgba(3,148,212,0.2);
}
aside.primary {
display: none;
}
aside.primary nav > ul > li {
border-top: 1px solid #E5E5E5;
margin-top: 1em;
padding-top: 1em;
}
aside.primary nav li a {
display: block;
}
aside.primary nav li a:focus {
background-color: rgba(3,148,212,0.1);
box-shadow: -4px 0 0 rgba(3,148,212,0.1);
}
aside.primary nav li a:active {
background-color: transparent;
box-shadow: none;
}
aside.primary nav > ul li a:hover {
color: #555;
}
aside.primary nav > ul > li > a {
font-size: 1.1em;
font-weight: 400;
}
aside.primary nav ul ul {
margin: 0;
}
aside.primary nav > ul li li a {
color: #414141;
font-size: 0.9em;
}
aside.primary nav > ul li li a:hover,
aside.primary nav > ul li li a:focus {
color: #777;
}
aside.primary nav > ul li li {
margin: 0;
}
aside.primary nav > ul > li:first-child {
border-top: none;
}
footer.primary {
background: #071159;
color: #FFF;
font-size: 0.9em;
padding: 8em 0 12em;
}
footer.primary a {
color: #f0f0f0;
text-decoration: underline;
}
footer.primary img {
display: inline-block;
margin-bottom: 1.5em;
max-width: 60%;
}
.footer_container {
width: 33rem;
padding-left: 3em;
padding-right: 3em;
float:left;
margin-top:-1em;
margin-left:3em;
}
.footer_container img {
min-width: 50%;
margin-top:-0.6em;
}
/* = Typography = */
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 600;
margin-bottom: 0.2em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
margin-top: 0;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 2.2em;
}
h3 {
font-size: 1.7em;
font-weight: 400;
}
h4 {
font-size: 1.4em;
font-weight: 400;
}
h5 {
font-size: 1em;
font-weight: 400;
}
h6 {
font-size: 0.9em;
}
.intro {
color: #181818;
font-size: 1.6em;
line-height: 1.4;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: 400;
}
i,
em {
font-style: italic;
}
blockquote,
pre {
color: #888;
margin-bottom: 1.5em;
}
blockquote {
border-left: 1px solid #EAEAEA;
font-style: italic;
margin-left: 2em;
margin-right: 1em;
padding-left: 1em;
padding-right: 1em;
}
pre,
code {
font-family: Menlo, "Ubuntu Mono", Consolas, "Courier New", monospace;
font-size: 0.9em;
}
pre {
white-space: pre-wrap;
white-space: pre;
word-wrap: break-word;
}
p {
margin-bottom: 1.5em;
}
hr {
border: 0;
border-top: 1px solid #BBB;
display: block;
height: 0;
margin: 2em 0 3em;
width: 100%;
}
a {
color: #005B9A;
text-decoration: none;
transition: color 200ms;
}
a:hover,
a:focus {
color: #FF4500;
outline: 0;
}
.button {
-webkit-appearance: none;
background: linear-gradient(to bottom, #005B9A 0%,#0174B5 100%);
background: #005B9A;
border: none;
border-radius: 3px;
color: #FFF;
display: inline-block;
font-size: 18px;
padding: 0.2em 0.8em;
text-align: center;
}
.button:hover {
background: #0084B8;
}
ol,
ul,
dl {
margin-bottom: 1.5em;
}
dt {
background: #727272;
color: #FFF;
display: inline-block;
font-size: 0.9em;
font-weight: 400;
line-height: 1.5;
margin-bottom: 0.2em;
padding: 0.3em 0.8em;
position: relative;
text-transform: uppercase;
}
dt:after {
border-left: 14px solid transparent;
border-top: 14px solid #727272;
content: "";
left: 12px;
position: absolute;
top: 2em;
}
dd {
margin: 0 0 1.8em 2em;
overflow-wrap: break-word;
word-wrap: break-word;
}
h2 + dl {
margin-top: 0.8em;
}
h3 + dl {
margin-top: 0.4em;
}
ul ul {
margin: 0.5em 0 0;
}
ol,
ul {
padding-left: 2em;
}
ol li,
ol dt,
ol dd,
ul li,
ul dt,
ul dd {
margin-bottom: 0.5em;
}
ul {
list-style: disc;
}
dt,
dd {
vertical-align: top;
}
pre,
code {
overflow: auto;
white-space: pre;
word-wrap: normal;
}
sup,
sub {
font-size: 80%;
}
sup {
vertical-align: top;
}
sub {
vertical-align: bottom;
}
/* = Page Specific = */
/* == Homepage == */
body.homepage {
background-attachment: fixed;
background-color: #222;
background-image: linear-gradient(rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)),url(/img/bg_home.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: 100%;
padding: 20px 0 100px;
text-align: center;
}
body.homepage header.primary,
body.homepage footer.primary {
background: none;
box-shadow: none;
padding: 0;
}
body.homepage header.primary .branding {
background: none;
float: none;
margin: 0 auto;
max-width: none;
width: 90%;
}
body.homepage .branding a:hover,
body.homepage .branding a:focus {
opacity: 0.5;
}
body.homepage .branding h1 {
background: rgba(0,0,0,0.6);
margin: 0 auto 0.6em;
padding: 14px;
width: 90%;
}
body.homepage h2.intro {
color: #CCC;
font-weight: 400;
line-height: 1.4;
}
body.homepage nav.primary {
float: none;
margin: 8em auto 10em;
width: 90%;
}
body.homepage nav.primary ul {
float: none;
text-align: center;
}
body.homepage nav.primary li {
display: inline-block;
margin-left: 0.8em;
margin-top: 1em;
vertical-align: top;
}
body.homepage nav.primary li:first-child {
margin-left: 0;
}
body.homepage nav.primary li a {
-webkit-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
}
body.homepage nav.primary li a,
.front,
.back {
height: 300px;
width: 274px;
}
body.homepage nav.primary li a:hover .flipper,
body.homepage nav.primary li a:focus .flipper {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.flipper {
position: relative;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
transition: 400ms;
}
.front,
.back {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
box-shadow: 0 0 6px 2px rgba(0,0,0,0.8);
left: 0;
position: absolute;
top: 0;
}
.front {
background: rgba(0,0,0,0.8);
color: #FFF;
padding: 50px 20px 40px;
z-index: 2;
}
.back {
background-color: rgba(0,0,0,0.8);
color: #5E5E5E;
padding: 20px;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
z-index: 4;
}
.front h3,
.back h3 {
font-size: 22px;
font-weight: 400;
margin-bottom: 18px;
}
.back h3 {
color: #FF4500;
font-size: 24px;
}
.front img,
.back img {
display: inline-block;
margin-bottom: 15px;
}
.back p {
font-size: 15px;
line-height: 1.2;
margin-bottom: 0.8em;
}
body.homepage footer.primary {
font-size: 13px;
padding: 0;
text-align: center;
text-shadow: 1px 1px 12px #000;
}
body.homepage footer.primary img {
display: inline-block;
float: none;
margin-bottom: 0.4em;
width: 64px;
}
/* == headings == */
body.about .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
body.in-person .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
body.online .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
body.case-studies .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
body.contributing .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
/* = Tables = */
table {
border-collapse: collapse;
border-spacing: 0;
margin-bottom: 1.5em;
width: 100%;
}
table caption {
font-size: 0.75em;
margin-bottom: 0.75em;
}
table td,
table th {
padding: 0.5em 1em;
text-align: left;
vertical-align: top;
}
table th {
background: #555;
border: 1px solid #555;
color: #FFF;
font-weight: 400;
text-transform: uppercase;
}
table td {
border: 1px solid #E3E3E3;
}
table tr:nth-child(even) td {
background: #F3F3F3;
}
td.supported,
table tr:nth-child(even) td.supported {
background: #005B9A;
color: white;
font-weight: 400;
}
tr:first-child th:first-child {
background: #444;
}
/* = Media Queries = */
@media only screen and (max-width: 479px) {
body.homepage nav.primary {
margin: 2em auto;
}
nav.primary li,
body.homepage nav.primary li {
display: block;
float: none;
margin-bottom: 0.8em;
margin-left: 0;
text-align: center;
}
body.homepage nav.primary li a,
.front {
height: auto;
position: static;
width: 100%;
}
body.homepage nav.primary li a:hover .flipper {
-webkit-transform: none;
transform: none;
}
.front {
padding: 1em 0;
}
.front h3 {
margin: 0;
}
.front img,
.back {
display: none;
}
}
@media only screen and (min-width: 768px) {
body {
font-size: 18px;
}
header.primary .branding {
float: left;
margin-bottom: 0;
}
nav.primary {
float: right;
}
.jump {
display: none;
}
.container {
margin-left: auto;
margin-right: auto;
max-width: 1100px;
}
footer.primary p {
margin: 0;
}
footer.primary img {
margin-bottom: 1em;
}
body.homepage header.primary .branding {
max-width: 480px;
}
body.homepage .branding h1 {
max-width: 400px;
}
body.homepage h2.intro {
font-size: 1.9em;
}
}
@media only screen and (min-width: 1024px) {
body {
font-size: 18px;
}
.header_container {
left: 0;
position: absolute;
top: 0;
}
header.primary {
padding: 30px;
}
header.primary .branding a {
display: block;
margin-top: 3px;
}
.heading {
height: 14em;
padding: 0;
}
.heading h1 {
font-weight: 3.5em;
padding: 130px 30px;
}
.container {
padding-left: 30px;
padding-right: 30px;
}
nav.primary li {
margin-left: 1.4em;
}
.torso {
margin-bottom: 0;
padding-bottom: 0;
position: relative;
}
.main {
margin-right: 270px;
padding-bottom: 3em;
}
aside.primary {
background: #FFF;
box-shadow: -4px -4px 6px rgba(70,70,70,0.1);
display: block;
float: right;
height: 100%;
padding: 0 16px;
position: absolute;
right: 0;
top: -24px;
width: 250px;
}
footer.primary {
text-align: left;
}
footer.primary img {
display: block;
float: left;
margin-right: 2em;
}
body.homepage footer.primary {
width: 100%;
}
}
@media only screen and (min-height: 1000px) {
body.homepage footer.primary {
}
}
@media print {
* {
background: transparent !important;
box-shadow: none !important;
color: #000 !important;
/* Black prints faster: h5bp.com/s */
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #888;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
@page {
margin: 0.5cm;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
figure img { border: 1px solid #999999;}
figure figcaption { font-style: italic; font-size: 0.85em; text-align: center;}
.needscontent {
padding: 1em;
margin: 1em;
font-size: bigger;
border: 4px dotted #fbce78;
}
.needscontent:before {
content: "Needs Update: ";
font-style: italic;
font-weight: bold;
color: #41322f;
background-color: #fbce78;
}
.reading, .templates {
margin: 0 3em 0 3em;
background-color: #F4ECE6;
padding: 0.25em 1em 0.25em 1em;
color: #41322f;
}
}
|
css/styles.css
|
@import "vendor/__vendor-dir";
/* = Table of Contents =
* Base
* Grouping
* Layout
* Typography
* Page Specific
* Media Queries
* Print Styles
*/
/* = Base = */
a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
cite,
code,
dd,
div,
dl,
dt,
em,
fieldset,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
label,
li,
nav,
object,
ol,
p,
pre,
section,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
ul,
video {
border: 0;
font: inherit;
font-size: 100%;
margin: 0;
outline: 0;
padding: 0;
vertical-align: baseline;
}
article,
aside,
footer,
header,
nav,
section {
display: block;
}
audio,
canvas,
video {
display: inline-block;
}
* {
box-sizing: border-box;
}
html {
color: #414141;
font-family: "canada-type-gibson", "Gibson", Arial, sans-serif;
font-weight: 300;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
background: #FFF;
font-size: 18px;
line-height: 1.5;
min-width: 310px;
}
img {
-ms-interpolation-mode: bicubic;
max-width: 100%;
vertical-align: middle;
}
::-moz-selection {
background: #FF4500;
color: #FFF;
text-shadow: none;
}
::selection {
background: #FF4500;
color: #FFF;
text-shadow: none;
}
nav ul {
list-style: none;
margin-bottom: 0;
padding-left: 0;
}
nav ul:before,
nav ul:after {
content: "";
display: table;
}
nav ul:after {
clear: both;
}
/* = Grouping = */
.group:before,
.group:after,
.container:before,
.container:after {
content: "";
display: table;
}
.group:after,
.container:after {
clear: both;
}
/* + Columns = */
.columns > hr {
display: none;
border: none;
}
@media only screen and (min-width: 600px) {
.columns {
display: table;
table-layout: fixed;
width: 100%;
}
.columns > * {
display: table-cell;
vertical-align: top;
}
.columns > hr {
display: table-cell;
width: 1rem;
}
}
/* = Layout = */
.container {
padding-left: 16px;
padding-right: 16px;
}
.header_container {
width: 100%;
z-index: 5;
}
header.primary {
background: #FFF;
box-shadow: 0 0 8px rgba(0,0,0,0.3);
padding: 16px;
position: relative;
}
header.primary .branding {
background: #FFF;
max-width: 180px;
position: relative;
text-align: center;
text-size: 2em;
}
header.primary .branding a {
display: block;
margin-top: 3px;
transition: opacity 200ms linear;
}
header.primary .branding a:hover,
header.primary .branding a:focus {
opacity: 0.7;
}
nav.primary ul {
text-align: center;
}
nav.primary li {
display: inline-block;
font-size: 1.1em;
margin-bottom: 0;
margin-left: 0.35em;
}
nav.primary li:first-child {
margin-left: 0;
}
nav.primary li a {
color: #333;
display: block;
}
nav.primary li a:hover,
nav.primary li a:focus {
color: #005B9A;
}
nav.primary .active a {
color: #005B9A;
}
nav.primary .active a:hover,
nav.primary .active a:focus {
color: #117E99;
}
.heading {
background: #071159;
color: #FFF;
overflow: hidden;
width: 100%;
z-index: 4;
}
body .heading h1:before {
background-repeat: no-repeat;
content: "";
display: block;
-webkit-filter: grayscale(0.4);
filter: grayscale(0.4);
height: 100%;
left: -40px;
opacity: 0.4;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.heading h1 {
font-size: 2.8em;
margin: 0 auto;
max-width: 1100px;
padding: 1em 16px;
position: relative;
z-index: 2;
}
.torso {
margin-bottom: 3em;
}
.main .intro {
padding-top: 1.4em;
}
.main h2 {
border-top: 1px solid #E4E4E4;
color: #FF4500;
font-size: 2.2em;
margin-bottom: 0.1em;
margin-top: 1.4em;
padding-top: 1.4em;
}
.main a:focus {
background-color: rgba(3,148,212,0.2);
}
aside.primary {
display: none;
}
aside.primary nav > ul > li {
border-top: 1px solid #E5E5E5;
margin-top: 1em;
padding-top: 1em;
}
aside.primary nav li a {
display: block;
}
aside.primary nav li a:focus {
background-color: rgba(3,148,212,0.1);
box-shadow: -4px 0 0 rgba(3,148,212,0.1);
}
aside.primary nav li a:active {
background-color: transparent;
box-shadow: none;
}
aside.primary nav > ul li a:hover {
color: #555;
}
aside.primary nav > ul > li > a {
font-size: 1.1em;
font-weight: 400;
}
aside.primary nav ul ul {
margin: 0;
}
aside.primary nav > ul li li a {
color: #414141;
font-size: 0.9em;
}
aside.primary nav > ul li li a:hover,
aside.primary nav > ul li li a:focus {
color: #777;
}
aside.primary nav > ul li li {
margin: 0;
}
aside.primary nav > ul > li:first-child {
border-top: none;
}
footer.primary {
background: #071159;
color: #FFF;
font-size: 0.9em;
padding: 8em 0 12em;
}
footer.primary a {
color: #f0f0f0;
text-decoration: underline;
}
footer.primary img {
display: inline-block;
margin-bottom: 1.5em;
max-width: 60%;
}
.footer_container {
width: 33rem;
padding-left: 3em;
padding-right: 3em;
float:left;
margin-top:-1em;
margin-left:3em;
}
.footer_container img {
min-width: 50%;
margin-top:-0.6em;
}
/* = Typography = */
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 600;
margin-bottom: 0.2em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
margin-top: 0;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 2.2em;
}
h3 {
font-size: 1.7em;
font-weight: 400;
}
h4 {
font-size: 1.4em;
font-weight: 400;
}
h5 {
font-size: 1em;
font-weight: 400;
}
h6 {
font-size: 0.9em;
}
.intro {
color: #181818;
font-size: 1.6em;
line-height: 1.4;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: 400;
}
i,
em {
font-style: italic;
}
blockquote,
pre {
color: #888;
margin-bottom: 1.5em;
}
blockquote {
border-left: 1px solid #EAEAEA;
font-style: italic;
margin-left: 2em;
margin-right: 1em;
padding-left: 1em;
padding-right: 1em;
}
pre,
code {
font-family: Menlo, "Ubuntu Mono", Consolas, "Courier New", monospace;
font-size: 0.9em;
}
pre {
white-space: pre-wrap;
white-space: pre;
word-wrap: break-word;
}
p {
margin-bottom: 1.5em;
}
hr {
border: 0;
border-top: 1px solid #BBB;
display: block;
height: 0;
margin: 2em 0 3em;
width: 100%;
}
a {
color: #005B9A;
text-decoration: none;
transition: color 200ms;
}
a:hover,
a:focus {
color: #FF4500;
outline: 0;
}
.button {
-webkit-appearance: none;
background: linear-gradient(to bottom, #005B9A 0%,#0174B5 100%);
background: #005B9A;
border: none;
border-radius: 3px;
color: #FFF;
display: inline-block;
font-size: 18px;
padding: 0.2em 0.8em;
text-align: center;
}
.button:hover {
background: #0084B8;
}
ol,
ul,
dl {
margin-bottom: 1.5em;
}
dt {
background: #727272;
color: #FFF;
display: inline-block;
font-size: 0.9em;
font-weight: 400;
line-height: 1.5;
margin-bottom: 0.2em;
padding: 0.3em 0.8em;
position: relative;
text-transform: uppercase;
}
dt:after {
border-left: 14px solid transparent;
border-top: 14px solid #727272;
content: "";
left: 12px;
position: absolute;
top: 2em;
}
dd {
margin: 0 0 1.8em 2em;
overflow-wrap: break-word;
word-wrap: break-word;
}
h2 + dl {
margin-top: 0.8em;
}
h3 + dl {
margin-top: 0.4em;
}
ul ul {
margin: 0.5em 0 0;
}
ol,
ul {
padding-left: 2em;
}
ol li,
ol dt,
ol dd,
ul li,
ul dt,
ul dd {
margin-bottom: 0.5em;
}
ul {
list-style: disc;
}
dt,
dd {
vertical-align: top;
}
pre,
code {
overflow: auto;
white-space: pre;
word-wrap: normal;
}
sup,
sub {
font-size: 80%;
}
sup {
vertical-align: top;
}
sub {
vertical-align: bottom;
}
/* = Page Specific = */
/* == Homepage == */
body.homepage {
background-attachment: fixed;
background-color: #222;
background-image: linear-gradient(rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)),url(/img/bg_home.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: 100%;
padding: 20px 0 100px;
text-align: center;
}
body.homepage header.primary,
body.homepage footer.primary {
background: none;
box-shadow: none;
padding: 0;
}
body.homepage header.primary .branding {
background: none;
float: none;
margin: 0 auto;
max-width: none;
width: 90%;
}
body.homepage .branding a:hover,
body.homepage .branding a:focus {
opacity: 0.5;
}
body.homepage .branding h1 {
background: rgba(0,0,0,0.6);
margin: 0 auto 0.6em;
padding: 14px;
width: 90%;
}
body.homepage h2.intro {
color: #CCC;
font-weight: 400;
line-height: 1.4;
}
body.homepage nav.primary {
float: none;
margin: 8em auto 10em;
width: 90%;
}
body.homepage nav.primary ul {
float: none;
text-align: center;
}
body.homepage nav.primary li {
display: inline-block;
margin-left: 0.8em;
margin-top: 1em;
vertical-align: top;
}
body.homepage nav.primary li:first-child {
margin-left: 0;
}
body.homepage nav.primary li a {
-webkit-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
}
body.homepage nav.primary li a,
.front,
.back {
height: 300px;
width: 274px;
}
body.homepage nav.primary li a:hover .flipper,
body.homepage nav.primary li a:focus .flipper {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.flipper {
position: relative;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
transition: 400ms;
}
.front,
.back {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
box-shadow: 0 0 6px 2px rgba(0,0,0,0.8);
left: 0;
position: absolute;
top: 0;
}
.front {
background: rgba(0,0,0,0.8);
color: #FFF;
padding: 50px 20px 40px;
z-index: 2;
}
.back {
background-color: rgba(0,0,0,0.8);
color: #5E5E5E;
padding: 20px;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
z-index: 4;
}
.front h3,
.back h3 {
font-size: 22px;
font-weight: 400;
margin-bottom: 18px;
}
.back h3 {
color: #FF4500;
font-size: 24px;
}
.front img,
.back img {
display: inline-block;
margin-bottom: 15px;
}
.back p {
font-size: 15px;
line-height: 1.2;
margin-bottom: 0.8em;
}
body.homepage footer.primary {
font-size: 13px;
padding: 0;
text-align: center;
text-shadow: 1px 1px 12px #000;
}
body.homepage footer.primary img {
display: inline-block;
float: none;
margin-bottom: 0.4em;
width: 64px;
}
/* == headings == */
body.about .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
body.in-person .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
body.online .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
body.case-studies .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
body.contributing .heading h1:before {
background-image: url(/img/watermark_carpentryconnect.png);
left: -100px;
}
/* = Tables = */
table {
border-collapse: collapse;
border-spacing: 0;
margin-bottom: 1.5em;
width: 100%;
}
table caption {
font-size: 0.75em;
margin-bottom: 0.75em;
}
table td,
table th {
padding: 0.5em 1em;
text-align: left;
vertical-align: top;
}
table th {
background: #555;
border: 1px solid #555;
color: #FFF;
font-weight: 400;
text-transform: uppercase;
}
table td {
border: 1px solid #E3E3E3;
}
table tr:nth-child(even) td {
background: #F3F3F3;
}
td.supported,
table tr:nth-child(even) td.supported {
background: #005B9A;
color: white;
font-weight: 400;
}
tr:first-child th:first-child {
background: #444;
}
/* = Media Queries = */
@media only screen and (max-width: 479px) {
body.homepage nav.primary {
margin: 2em auto;
}
nav.primary li,
body.homepage nav.primary li {
display: block;
float: none;
margin-bottom: 0.8em;
margin-left: 0;
text-align: center;
}
body.homepage nav.primary li a,
.front {
height: auto;
position: static;
width: 100%;
}
body.homepage nav.primary li a:hover .flipper {
-webkit-transform: none;
transform: none;
}
.front {
padding: 1em 0;
}
.front h3 {
margin: 0;
}
.front img,
.back {
display: none;
}
}
@media only screen and (min-width: 768px) {
body {
font-size: 18px;
}
header.primary .branding {
float: left;
margin-bottom: 0;
}
nav.primary {
float: right;
}
.jump {
display: none;
}
.container {
margin-left: auto;
margin-right: auto;
max-width: 1100px;
}
footer.primary p {
margin: 0;
}
footer.primary img {
margin-bottom: 1em;
}
body.homepage header.primary .branding {
max-width: 480px;
}
body.homepage .branding h1 {
max-width: 400px;
}
body.homepage h2.intro {
font-size: 1.9em;
}
}
@media only screen and (min-width: 1024px) {
body {
font-size: 18px;
}
.header_container {
left: 0;
position: absolute;
top: 0;
}
header.primary {
padding: 30px;
}
header.primary .branding a {
display: block;
margin-top: 3px;
}
.heading {
height: 14em;
padding: 0;
}
.heading h1 {
font-weight: 3.5em;
padding: 130px 30px;
}
.container {
padding-left: 30px;
padding-right: 30px;
}
nav.primary li {
margin-left: 1.4em;
}
.torso {
margin-bottom: 0;
padding-bottom: 0;
position: relative;
}
.main {
margin-right: 270px;
padding-bottom: 3em;
}
aside.primary {
background: #FFF;
box-shadow: -4px -4px 6px rgba(70,70,70,0.1);
display: block;
float: right;
height: 100%;
padding: 0 16px;
position: absolute;
right: 0;
top: -24px;
width: 250px;
}
footer.primary {
text-align: left;
}
footer.primary img {
display: block;
float: left;
margin-right: 2em;
}
body.homepage footer.primary {
width: 100%;
}
}
@media only screen and (min-height: 1000px) {
body.homepage footer.primary {
}
}
@media print {
* {
background: transparent !important;
box-shadow: none !important;
color: #000 !important;
/* Black prints faster: h5bp.com/s */
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #888;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
@page {
margin: 0.5cm;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
figure img { border: 1px solid #999999;}
figure figcaption { font-style: italic; font-size: 0.85em; text-align: center;}
.needscontent {
padding: 1em;
margin: 1em;
font-size: bigger;
border: 4px dotted #fbce78;
}
.needscontent:before {
content: "Needs Update: ";
font-style: italic;
font-weight: bold;
color: #41322f;
background-color: #fbce78;
}
.reading, .templates {
margin: 0 3em 0 3em;
background-color: #F4ECE6;
padding: 0.25em 1em 0.25em 1em;
color: #41322f;
}
}
| 0.437583 | 0.05498 |
body {
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
overflow-y: hidden;
}
body::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
body::-webkit-scrollbar
{
width: 10px;
background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb
{
background-color: #F90;
background-image: -webkit-linear-gradient(45deg,
rgba(255, 255, 255, .2) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, .2) 50%,
rgba(255, 255, 255, .2) 75%,
transparent 75%,
transparent)
}
a {
color: #00B7FF;
}
#headBox {
height: 60px;
/*display: inline-block;*/
}
#chatBox {
width: calc(100% - 197px);
display: inline-block;
margin-right: 5px;
height: 70vh;
}
#roomBox {
position: fixed;
right: 0px;
top: 60px;
width: calc(192px);
display: inline-block;
height: 70vh;
}
#msgWindow {
display: inline-block;
white-space: pre;
overflow-y: auto;
overflow-x: hidden;
width: 100%;
height: calc(100% - 34px);
}
#msg {
width: 100%;
display:inline-block;
}
#roomWindow {
white-space: pre;
overflow-y: auto;
overflow-x: hidden;
width: 100%;
height: calc(100% - 68px);
}
#newRoom {
width: 100%;
}
#newinput{
width: 100%;
}
#sendmsg {
width: 64px;
}
.shadow {
/*box-shadow: 2px 2px 4px 1px #000000;*/
padding-top: 10px;
padding-right: 15px;
padding-bottom: 10px;
padding-left: 15px;
border: gray inset;
}
.allMsg {
max-width: 75vw !important;
white-space: pre-wrap;
word-break: break-all;
}
.userSpan {
font-size: 9pt;
background-color: #FFFFCC;
width: 100px;
max-width: 100px;
min-width: 100px;
}
.privTag {
color:green;
}
.privMsg {
font-style:italic;
white-space: pre-wrap;
}
.sysMsg {
font-style: italic;
color: grey;
white-space: pre-wrap;
}
.tipSpan {
width: 50px;
}
.round-left {
border-radius: 5px 0 0 5px !important;
}
.round-right {
border-radius: 0 5px 5px 0 !important;
}
.mono {
font-size: 9pt !important;
font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
}
#openSettings {
position:absolute;
margin-top: 4;
margin-right: 4;
top:0;
right: 0;
}
|
public/stylesheets/chat.css
|
body {
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
overflow-y: hidden;
}
body::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
body::-webkit-scrollbar
{
width: 10px;
background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb
{
background-color: #F90;
background-image: -webkit-linear-gradient(45deg,
rgba(255, 255, 255, .2) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, .2) 50%,
rgba(255, 255, 255, .2) 75%,
transparent 75%,
transparent)
}
a {
color: #00B7FF;
}
#headBox {
height: 60px;
/*display: inline-block;*/
}
#chatBox {
width: calc(100% - 197px);
display: inline-block;
margin-right: 5px;
height: 70vh;
}
#roomBox {
position: fixed;
right: 0px;
top: 60px;
width: calc(192px);
display: inline-block;
height: 70vh;
}
#msgWindow {
display: inline-block;
white-space: pre;
overflow-y: auto;
overflow-x: hidden;
width: 100%;
height: calc(100% - 34px);
}
#msg {
width: 100%;
display:inline-block;
}
#roomWindow {
white-space: pre;
overflow-y: auto;
overflow-x: hidden;
width: 100%;
height: calc(100% - 68px);
}
#newRoom {
width: 100%;
}
#newinput{
width: 100%;
}
#sendmsg {
width: 64px;
}
.shadow {
/*box-shadow: 2px 2px 4px 1px #000000;*/
padding-top: 10px;
padding-right: 15px;
padding-bottom: 10px;
padding-left: 15px;
border: gray inset;
}
.allMsg {
max-width: 75vw !important;
white-space: pre-wrap;
word-break: break-all;
}
.userSpan {
font-size: 9pt;
background-color: #FFFFCC;
width: 100px;
max-width: 100px;
min-width: 100px;
}
.privTag {
color:green;
}
.privMsg {
font-style:italic;
white-space: pre-wrap;
}
.sysMsg {
font-style: italic;
color: grey;
white-space: pre-wrap;
}
.tipSpan {
width: 50px;
}
.round-left {
border-radius: 5px 0 0 5px !important;
}
.round-right {
border-radius: 0 5px 5px 0 !important;
}
.mono {
font-size: 9pt !important;
font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
}
#openSettings {
position:absolute;
margin-top: 4;
margin-right: 4;
top:0;
right: 0;
}
| 0.281603 | 0.055823 |
* {
margin : 0;
padding : 0;
box-sizing : border-box;
font-family: monospace;
font-size : 25px;
}
body {
background: rgb(151, 151, 151);
width : auto;
}
#container {
display : flex;
flex-flow : column;
justify-content: center;
align-items : center;
width : 100vw;
height : 100vh;
}
#calculator_box {
width : 56%;
height : 60vh;
background : rgb(194, 194, 194);
border-radius: 30px;
border : 2px white solid;
box-shadow : 15px 15px 15px rgba(0, 0, 0, 0.2), -15px -15px 15px rgba(255, 255, 255, 0.103);
}
input {
outline : 0;
width : 100%;
height : 15%;
border : 1px solid black;
border-radius: 30px 30px 0 0;
padding : 20px;
}
input:focus {
color: cornflowerblue;
}
h1 {
margin-bottom: 20px;
}
#calculator_content {
display : grid;
grid-template-columns: 70% 20% 10%;
width : 100%;
height : 85%;
/* background : chartreuse; */
border-radius : 0 0 30px 30px;
}
#buttons1 {
display : grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows : repeat(4, 1fr);
gap : 2px;
border-right : 1px solid black;
text-align : center;
}
#buttons1 button {
display : flex;
flex-flow : row nowrap;
justify-content: center;
align-items : center;
background : transparent;
background : white;
text-align : center;
cursor : pointer;
}
#buttons2 {
display : grid;
grid-template-rows: repeat(5, 1fr);
gap : 2px 0;
}
#buttons2 button {
background: white;
text-align: center;
cursor : pointer;
}
#btn0 {
border-radius: 0 0 0 30px;
}
#slider {
background-color: rgb(0, 0, 0);
border-radius : 0 0 30px 0;
display : flex;
flex-flow : column;
justify-content : center;
align-items : center;
width : 100%;
height : 100%;
padding : 20px 2px;
position : relative;
overflow : hidden;
transition : transform 500ms;
}
#slider * {
color : white;
cursor : pointer;
font-size : smaller;
border-radius: 0 0 30px 0;
width : 100%;
height : 100%;
position : absolute;
z-index : 5;
}
#slider p {
transition : transform 500ms;
writing-mode: vertical-rl;
transform : translate(25px, 10px);
font-size : 15px;
z-index : 4;
}
.icon {
transition: 500ms transform;
}
#slider.active {
transform: translate(25px, 10px);
}
#item1.active {
transform: translate(0px, 10px);
}
.icon.active {
transform: rotate(180deg);
}
@media screen and (max-width:630px) {
#calculator_box {
width : 80%;
height: 60vh;
}
}
@media screen and (max-width:370px) {
#calculator_box {
width : 100%;
height: 70vh;
}
p {
display: none;
}
}
|
style.css
|
* {
margin : 0;
padding : 0;
box-sizing : border-box;
font-family: monospace;
font-size : 25px;
}
body {
background: rgb(151, 151, 151);
width : auto;
}
#container {
display : flex;
flex-flow : column;
justify-content: center;
align-items : center;
width : 100vw;
height : 100vh;
}
#calculator_box {
width : 56%;
height : 60vh;
background : rgb(194, 194, 194);
border-radius: 30px;
border : 2px white solid;
box-shadow : 15px 15px 15px rgba(0, 0, 0, 0.2), -15px -15px 15px rgba(255, 255, 255, 0.103);
}
input {
outline : 0;
width : 100%;
height : 15%;
border : 1px solid black;
border-radius: 30px 30px 0 0;
padding : 20px;
}
input:focus {
color: cornflowerblue;
}
h1 {
margin-bottom: 20px;
}
#calculator_content {
display : grid;
grid-template-columns: 70% 20% 10%;
width : 100%;
height : 85%;
/* background : chartreuse; */
border-radius : 0 0 30px 30px;
}
#buttons1 {
display : grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows : repeat(4, 1fr);
gap : 2px;
border-right : 1px solid black;
text-align : center;
}
#buttons1 button {
display : flex;
flex-flow : row nowrap;
justify-content: center;
align-items : center;
background : transparent;
background : white;
text-align : center;
cursor : pointer;
}
#buttons2 {
display : grid;
grid-template-rows: repeat(5, 1fr);
gap : 2px 0;
}
#buttons2 button {
background: white;
text-align: center;
cursor : pointer;
}
#btn0 {
border-radius: 0 0 0 30px;
}
#slider {
background-color: rgb(0, 0, 0);
border-radius : 0 0 30px 0;
display : flex;
flex-flow : column;
justify-content : center;
align-items : center;
width : 100%;
height : 100%;
padding : 20px 2px;
position : relative;
overflow : hidden;
transition : transform 500ms;
}
#slider * {
color : white;
cursor : pointer;
font-size : smaller;
border-radius: 0 0 30px 0;
width : 100%;
height : 100%;
position : absolute;
z-index : 5;
}
#slider p {
transition : transform 500ms;
writing-mode: vertical-rl;
transform : translate(25px, 10px);
font-size : 15px;
z-index : 4;
}
.icon {
transition: 500ms transform;
}
#slider.active {
transform: translate(25px, 10px);
}
#item1.active {
transform: translate(0px, 10px);
}
.icon.active {
transform: rotate(180deg);
}
@media screen and (max-width:630px) {
#calculator_box {
width : 80%;
height: 60vh;
}
}
@media screen and (max-width:370px) {
#calculator_box {
width : 100%;
height: 70vh;
}
p {
display: none;
}
}
| 0.364325 | 0.108898 |
.myContainer{
padding-left: 8%;
padding-right: 8%;
}
.dPageTitle{
align-content: center;
vertical-align: middle;
width: 100%;
height: 175px;
padding-top: 15px; padding-bottom: 15px;
text-align: center;
}
.dPageTitle > h1{
margin-top: 50px;
font-family: "Sofia";
color: black;
}
.dPageTitle > h4{
font-style: italic;
font-size: medium;
font-weight: bold;
font-family: "Sofia";
}
.dPageImage{
align-self: center;
}
.dPageImage > img {
border-style: solid;
border-width: 3px;
border-color: darkcyan;
border-radius: 10px;
box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.32);
}
.dPageIngredients{
border-radius: 20px;
border-style: solid;
border-width: 2px;
border-color: darkcyan;
align-self: center;
background-image: url("https://img.freepik.com/free-photo/seamless-wood-texture-background_105762-62.jpg?size=626&ext=jpg");
margin-top: 10px; margin-bottom: 10px;
box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.32);
}
.dPageIngredients > ul{
justify-content: space-around;
align-items: center;
list-style: disc;
font-family: 'Times New Roman', Times, serif;
justify-content: center;
margin: 10px 4px 10px 20px;
}
.dPageIngredients > ul > li {
color: black;
font-weight: bolder;
font-size: large;
}
.dPageInstructions{
margin-top: 15px;
width: 100%;
border-radius: 20px;
flex-wrap: wrap;
padding: 50px 10px 50px 10px;
display: flex;
}
.dPageInsText {
padding: 20px 20px 20px 20px;
width: 60%;
height: 100%;
font-size: x-large;
}
.myCheckBox{
display: flex;
}
.myCheckBox > input {
margin-right: 7px;
margin-top: 7px;
}
/*---------------------------------------------------------------task--------------------------------------------------*/
.my-todo-component {
max-width: 500px;
margin: auto;
padding: 1rem;
background: #eee;
border-radius: 5px;
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.32);
}
.my-todo-component ul {
margin: 0;
padding: 0;
}
.my-todo-component .close{
color: red;
}
/* ______________________________________________________________END____________________________________________________ */
|
src/css/myDetailRecipe.css
|
.myContainer{
padding-left: 8%;
padding-right: 8%;
}
.dPageTitle{
align-content: center;
vertical-align: middle;
width: 100%;
height: 175px;
padding-top: 15px; padding-bottom: 15px;
text-align: center;
}
.dPageTitle > h1{
margin-top: 50px;
font-family: "Sofia";
color: black;
}
.dPageTitle > h4{
font-style: italic;
font-size: medium;
font-weight: bold;
font-family: "Sofia";
}
.dPageImage{
align-self: center;
}
.dPageImage > img {
border-style: solid;
border-width: 3px;
border-color: darkcyan;
border-radius: 10px;
box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.32);
}
.dPageIngredients{
border-radius: 20px;
border-style: solid;
border-width: 2px;
border-color: darkcyan;
align-self: center;
background-image: url("https://img.freepik.com/free-photo/seamless-wood-texture-background_105762-62.jpg?size=626&ext=jpg");
margin-top: 10px; margin-bottom: 10px;
box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.32);
}
.dPageIngredients > ul{
justify-content: space-around;
align-items: center;
list-style: disc;
font-family: 'Times New Roman', Times, serif;
justify-content: center;
margin: 10px 4px 10px 20px;
}
.dPageIngredients > ul > li {
color: black;
font-weight: bolder;
font-size: large;
}
.dPageInstructions{
margin-top: 15px;
width: 100%;
border-radius: 20px;
flex-wrap: wrap;
padding: 50px 10px 50px 10px;
display: flex;
}
.dPageInsText {
padding: 20px 20px 20px 20px;
width: 60%;
height: 100%;
font-size: x-large;
}
.myCheckBox{
display: flex;
}
.myCheckBox > input {
margin-right: 7px;
margin-top: 7px;
}
/*---------------------------------------------------------------task--------------------------------------------------*/
.my-todo-component {
max-width: 500px;
margin: auto;
padding: 1rem;
background: #eee;
border-radius: 5px;
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.32);
}
.my-todo-component ul {
margin: 0;
padding: 0;
}
.my-todo-component .close{
color: red;
}
/* ______________________________________________________________END____________________________________________________ */
| 0.387806 | 0.10079 |
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:100');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,700');
/* CSS Document */
*{
padding:0;
margin:0;
font-family:roboto;
box-sizing: border-box
}
/*=========MENU===========*/
.logo{
height: 70px;
width: 200px;
float: left;
}
.header{
display:grid;
display:flex;
flex-direction:row;
background-color:black;
}
nav{
display:inline;
float:left;
color:white;
font-size: 20px;
text-align: center;
}
.item:hover{
display: grid;
background-color: #ff0080;
width:140px;
height:80px;
display:flex;
justify-content:center;
align-items:center;
}
.item{
display:grid;
width:140px;
height:80px;
display:flex;
justify-content:center;
align-items:center;
transition: all 600ms;
}
a{
padding: 0px 10px;
display: inline;
color:white;
text-decoration: none;
}
section{
background-image:url(../img/destaque-iweb-14jan.jpg);
background-repeat:no-repeat;
background-size:cover;
display:grid;
display:flex;
justify-content:center;
align-items:center;
height:680px;
}
h2{
font-size:38px;
color:#ed145b;
text-transform:uppercase;
margin-left:50px;
}
p{
font-size:18px;
color:white;
text-align:justify;
}
article{
display:inline-block;
display:flex;
justify-content:center;
align-items:center;
background-color:rgba(0,0,0,0.6);
width:100%;
height:100%;
}
aside{
display:flex;
justify-content:flex-start;
align-items:center;
background-color:rgba(0,0,0,0.6);
width:100%;
height:100%;
}
input{
width:350px;
height:30px;
background-color: transparent;
}
span{
font-size:18px;
color:white;
text-transform:uppercase;
}
option{
font-weight:600;
}
textarea{
width:350px;
height:100px;
background:transparent;
}
button {
background-color: #ed145b;
color:white;
font-weight: bolder;
font-size: 16px;
width:120px;
height:40px;
text-align: center;
cursor: pointer;
padding: 8px 25px;
text-transform: uppercase;
transition: all 400ms;
}
button:hover{
background: none;
color: #ed145b;
}
.buttonright{
display:flex;
justify-content:flex-end;
}
footer{
background-color:black;
color:white;
text-align:center;
border:2px solid #ed145b;
PADDING:5px
}
|
css/estilo_contato.css
|
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:100');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,700');
/* CSS Document */
*{
padding:0;
margin:0;
font-family:roboto;
box-sizing: border-box
}
/*=========MENU===========*/
.logo{
height: 70px;
width: 200px;
float: left;
}
.header{
display:grid;
display:flex;
flex-direction:row;
background-color:black;
}
nav{
display:inline;
float:left;
color:white;
font-size: 20px;
text-align: center;
}
.item:hover{
display: grid;
background-color: #ff0080;
width:140px;
height:80px;
display:flex;
justify-content:center;
align-items:center;
}
.item{
display:grid;
width:140px;
height:80px;
display:flex;
justify-content:center;
align-items:center;
transition: all 600ms;
}
a{
padding: 0px 10px;
display: inline;
color:white;
text-decoration: none;
}
section{
background-image:url(../img/destaque-iweb-14jan.jpg);
background-repeat:no-repeat;
background-size:cover;
display:grid;
display:flex;
justify-content:center;
align-items:center;
height:680px;
}
h2{
font-size:38px;
color:#ed145b;
text-transform:uppercase;
margin-left:50px;
}
p{
font-size:18px;
color:white;
text-align:justify;
}
article{
display:inline-block;
display:flex;
justify-content:center;
align-items:center;
background-color:rgba(0,0,0,0.6);
width:100%;
height:100%;
}
aside{
display:flex;
justify-content:flex-start;
align-items:center;
background-color:rgba(0,0,0,0.6);
width:100%;
height:100%;
}
input{
width:350px;
height:30px;
background-color: transparent;
}
span{
font-size:18px;
color:white;
text-transform:uppercase;
}
option{
font-weight:600;
}
textarea{
width:350px;
height:100px;
background:transparent;
}
button {
background-color: #ed145b;
color:white;
font-weight: bolder;
font-size: 16px;
width:120px;
height:40px;
text-align: center;
cursor: pointer;
padding: 8px 25px;
text-transform: uppercase;
transition: all 400ms;
}
button:hover{
background: none;
color: #ed145b;
}
.buttonright{
display:flex;
justify-content:flex-end;
}
footer{
background-color:black;
color:white;
text-align:center;
border:2px solid #ed145b;
PADDING:5px
}
| 0.212722 | 0.040731 |
@import url(css.css);
@font-face {
font-family: 'exo_2.0black';
src: url('../font/exo2.0-black.eot');
src: url('../font/exo2.0-black.eot') format('embedded-opentype'),
url('../font/exo2.0-black.woff') format('woff'),
url('../font/exo2.0-black.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0black_italic';
src: url('../font/exo2.0-blackitalic.eot');
src: url('../font/exo2.0-blackitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-blackitalic.woff') format('woff'),
url('../font/exo2.0-blackitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0bold';
src: url('../font/exo2.0-bold.eot');
src: url('../font/exo2.0-bold.eot') format('embedded-opentype'),
url('../font/exo2.0-bold.woff') format('woff'),
url('../font/exo2.0-bold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0bold_italic';
src: url('../font/exo2.0-bolditalic.eot');
src: url('../font/exo2.0-bolditalic.eot') format('embedded-opentype'),
url('../font/exo2.0-bolditalic.woff') format('woff'),
url('../font/exo2.0-bolditalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0extra_bold';
src: url('../font/exo2.0-extrabold.eot');
src: url('../font/exo2.0-extrabold.eot') format('embedded-opentype'),
url('../font/exo2.0-extrabold.woff') format('woff'),
url('../font/exo2.0-extrabold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0extra_bold_italic';
src: url('../font/exo2.0-extrabolditalic.eot');
src: url('../font/exo2.0-extrabolditalic.eot') format('embedded-opentype'),
url('../font/exo2.0-extrabolditalic.woff') format('woff'),
url('../font/exo2.0-extrabolditalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0extra_light';
src: url('../font/exo2.0-extralight.eot');
src: url('../font/exo2.0-extralight.eot') format('embedded-opentype'),
url('../font/exo2.0-extralight.woff') format('woff'),
url('../font/exo2.0-extralight.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0extra_light_italic';
src: url('../font/exo2.0-extralightitalic.eot');
src: url('../font/exo2.0-extralightitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-extralightitalic.woff') format('woff'),
url('../font/exo2.0-extralightitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0italic';
src: url('../font/exo2.0-italic.eot');
src: url('../font/exo2.0-italic.eot') format('embedded-opentype'),
url('../font/exo2.0-italic.woff') format('woff'),
url('../font/exo2.0-italic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0light';
src: url('../font/exo2.0-light.eot');
src: url('../font/exo2.0-light.eot') format('embedded-opentype'),
url('../font/exo2.0-light.woff') format('woff'),
url('../font/exo2.0-light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0light_italic';
src: url('../font/exo2.0-lightitalic.eot');
src: url('../font/exo2.0-lightitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-lightitalic.woff') format('woff'),
url('../font/exo2.0-lightitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0medium';
src: url('../font/exo2.0-medium.eot');
src: url('../font/exo2.0-medium.eot') format('embedded-opentype'),
url('../font/exo2.0-medium.woff') format('woff'),
url('../font/exo2.0-medium.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0medium_italic';
src: url('../font/exo2.0-mediumitalic.eot');
src: url('../font/exo2.0-mediumitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-mediumitalic.woff') format('woff'),
url('../font/exo2.0-mediumitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0regular';
src: url('../font/exo2.0-regular.eot');
src: url('../font/exo2.0-regular.eot') format('embedded-opentype'),
url('../font/exo2.0-regular.woff') format('woff'),
url('../font/exo2.0-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0semi_bold';
src: url('../font/exo2.0-semibold.eot');
src: url('../font/exo2.0-semibold.eot') format('embedded-opentype'),
url('../font/exo2.0-semibold.woff') format('woff'),
url('../font/exo2.0-semibold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0semi_bold_italic';
src: url('../font/exo2.0-semibolditalic.eot');
src: url('../font/exo2.0-semibolditalic.eot') format('embedded-opentype'),
url('../font/exo2.0-semibolditalic.woff') format('woff'),
url('../font/exo2.0-semibolditalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0thin';
src: url('../font/exo2.0-thin.eot');
src: url('../font/exo2.0-thin.eot') format('embedded-opentype'),
url('../font/exo2.0-thin.woff') format('woff'),
url('../font/exo2.0-thin.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0thin_italic';
src: url('../font/exo2.0-thinitalic.eot');
src: url('../font/exo2.0-thinitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-thinitalic.woff') format('woff'),
url('../font/exo2.0-thinitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'FontAwesome';
src: url('../font/fontawesome-webfont.eot');
src: url('../font/fontawesome-webfont.eot') format('embedded-opentype'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('http://bein.pp.ua/demo/html/CPT/fonts/fontawesome-webfont.svg?v=4.1.0') format('svg');
font-weight: normal;
font-style: normal;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeSpeed;
line-height:1;
height: 100%;
}
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
.title {
font-size: 3em;
font-family: Open Sans;
color:#555;
text-align: center;
height:2em;
line-height: 2em;
font-weight: 100;
text-transform: uppercase;
}
/* Colorful Pricing Tables*/
.wrapper-colorful {
position:relative;
width:100%;
height: 100%;
margin:0em auto;
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
overflow:hidden;
}
.wrapper-colorful ul {
position: relative;
width:25%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
overflow:hidden;
-webkit-animation: start 0.5s ease forwards;
-moz-animation: start 0.5s ease forwards;
-mos-animation: start 0.5s ease forwards;
-o-animation: start 0.5s ease forwards;
animation: start 0.5s ease forwards;
-webkit-transform: scale(1,0);
-moz-transform: scale(1,0);
-mos-transform: scale(1,0);
-o-transform: scale(1,0);
transform: scale(1,0);
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.wrapper-colorful .basic{
-webkit-animation-delay:0s;
-moz-animation-delay:0s;
-mos-animation-delay:0s;
-o-animation-delay:0s;
animation-delay:0s;
border-right:1px solid #fff;
}
.wrapper-colorful .premium{
-webkit-animation-delay:0.15s;
-moz-animation-delay:0.15s;
-mos-animation-delay:0.15s;
-o-animation-delay:0.15s;
animation-delay:0.15s;
border-right:1px solid #fff;
}
.wrapper-colorful .plus{
-webkit-animation-delay:0.3s;
-moz-animation-delay:0.3s;
-mos-animation-delay:0.3s;
-o-animation-delay:0.3s;
animation-delay:0.3s;
border-right:1px solid #fff;
}
.wrapper-colorful .business{
-webkit-animation-delay:0.45s;
-moz-animation-delay:0.45s;
-mos-animation-delay:0.45s;
-o-animation-delay:0.45s;
animation-delay:0.45s;
}
.wrapper-colorful ul li{
-webkit-animation: start-li 0.5s ease forwards;
-moz-animation: start-li 0.5s ease forwards;
-mos-animation: start-li 0.5s ease forwards;
-o-animation: start-li 0.5s ease forwards;
animation: start-li 0.5s ease forwards;
-webkit-transform: translateX(-200%);
-moz-transform: translateX(-200%);
-mos-transform: translateX(-200%);
-o-transform: translateX(-200%);
transform: translateX(-200%);
}
.wrapper-colorful .basic li:nth-child(1){
-webkit-animation-delay:0.1s;
-moz-animation-delay:0.1s;
-mos-animation-delay:0.1s;
-o-animation-delay:0.1s;
animation-delay:0.1s;
}
.wrapper-colorful .basic li:nth-child(2), .wrapper-colorful .premium li:nth-child(1){
-webkit-animation-delay:0.2s;
-moz-animation-delay:0.2s;
-mos-animation-delay:0.2s;
-o-animation-delay:0.2s;
animation-delay:0.2s;
}
.wrapper-colorful .basic li:nth-child(3), .wrapper-colorful .premium li:nth-child(2), .wrapper-colorful .plus li:nth-child(1){
-webkit-animation-delay:0.3s;
-moz-animation-delay:0.3s;
-mos-animation-delay:0.3s;
-o-animation-delay:0.3s;
animation-delay:0.3s;
}
.wrapper-colorful .basic li:nth-child(4), .wrapper-colorful .premium li:nth-child(3), .wrapper-colorful .plus li:nth-child(2), .wrapper-colorful .business li:nth-child(1){
-webkit-animation-delay:0.4s;
-moz-animation-delay:0.4s;
-mos-animation-delay:0.4s;
-o-animation-delay:0.4s;
animation-delay:0.4s;
}
.wrapper-colorful .basic li:nth-child(5), .wrapper-colorful .premium li:nth-child(4), .wrapper-colorful .plus li:nth-child(3), .wrapper-colorful .business li:nth-child(2){
-webkit-animation-delay:0.5s;
-moz-animation-delay:0.5s;
-mos-animation-delay:0.5s;
-o-animation-delay:0.5s;
animation-delay:0.5s;
}
.wrapper-colorful .basic li:nth-child(6), .wrapper-colorful .premium li:nth-child(5), .wrapper-colorful .plus li:nth-child(4), .wrapper-colorful .business li:nth-child(3){
-webkit-animation-delay:0.6s;
-moz-animation-delay:0.6s;
-mos-animation-delay:0.6s;
-o-animation-delay:0.6s;
animation-delay:0.6s;
}
.wrapper-colorful .basic li:nth-child(7), .wrapper-colorful .premium li:nth-child(6), .wrapper-colorful .plus li:nth-child(5), .wrapper-colorful .business li:nth-child(4){
-webkit-animation-delay:0.7s;
-moz-animation-delay:0.7s;
-mos-animation-delay:0.7s;
-o-animation-delay:0.7s;
animation-delay:0.7s;
}
.wrapper-colorful .basic li:nth-child(8), .wrapper-colorful .premium li:nth-child(7), .wrapper-colorful .plus li:nth-child(6), .wrapper-colorful .business li:nth-child(5){
-webkit-animation-delay:0.8s;
-moz-animation-delay:0.8s;
-mos-animation-delay:0.8s;
-o-animation-delay:0.8s;
animation-delay:0.8s;
}
.wrapper-colorful .basic li:nth-child(9), .wrapper-colorful .premium li:nth-child(8), .wrapper-colorful .plus li:nth-child(7), .wrapper-colorful .business li:nth-child(6){
-webkit-animation-delay:0.9s;
-moz-animation-delay:0.9s;
-mos-animation-delay:0.9s;
-o-animation-delay:0.9s;
animation-delay:0.9s;
}
.wrapper-colorful .basic li:nth-child(10), .wrapper-colorful .premium li:nth-child(9), .wrapper-colorful .plus li:nth-child(8), .wrapper-colorful .business li:nth-child(7){
-webkit-animation-delay:1s;
-moz-animation-delay:1s;
-mos-animation-delay:1s;
-o-animation-delay:1s;
animation-delay:1s;
}
.wrapper-colorful .basic li:nth-child(11), .wrapper-colorful .premium li:nth-child(10), .wrapper-colorful .plus li:nth-child(9), .wrapper-colorful .business li:nth-child(8){
-webkit-animation-delay:1.1s;
-moz-animation-delay:1.1s;
-mos-animation-delay:1.1s;
-o-animation-delay:1.1s;
animation-delay:1.1s;
}
.wrapper-colorful .basic li:nth-child(12), .wrapper-colorful .premium li:nth-child(11), .wrapper-colorful .plus li:nth-child(10), .wrapper-colorful .business li:nth-child(9){
-webkit-animation-delay:1.2s;
-moz-animation-delay:1.2s;
-mos-animation-delay:1.2s;
-o-animation-delay:1.2s;
animation-delay:1.2s;
}
.wrapper-colorful .premium li:nth-child(12), .wrapper-colorful .plus li:nth-child(11), .wrapper-colorful .business li:nth-child(10){
-webkit-animation-delay:1.3s;
-moz-animation-delay:1.3s;
-mos-animation-delay:1.3s;
-o-animation-delay:1.3s;
animation-delay:1.3s;
}
.wrapper-colorful .plus li:nth-child(12), .wrapper-colorful .business li:nth-child(11){
-webkit-animation-delay:1.4s;
-moz-animation-delay:1.4s;
-mos-animation-delay:1.4s;
-o-animation-delay:1.4s;
animation-delay:1.4s;
}
.wrapper-colorful .business li:nth-child(12){
-webkit-animation-delay:1.5s;
-moz-animation-delay:1.5s;
-mos-animation-delay:1.5s;
-o-animation-delay:1.5s;
animation-delay:1.5s;
}
@-webkit-keyframes start{
0% {-webkit-transform: scale(1,0);}
100% {-webkit-transform: scale(1,1);}
}
@-moz-keyframes start{
0% {-moz-transform: scale(1,0);}
100% {-moz-transform: scale(1,1);}
}
@-mos-keyframes start{
0% {-mos-transform: scale(1,0);}
100% {-mos-transform: scale(1,1);}
}
@-o-keyframes start{
0% {-o-transform: scale(1,0);}
100% {-o-transform: scale(1,1);}
}
@keyframes start{
0% {transform: scale(1,0);}
100% {transform: scale(1,1);}
}
@-webkit-keyframes start-li{
0% {-webkit-transform: translateX(-200%);}
100% {-webkit-transform: translateX(0%);}
}
@-moz-keyframes start-li{
0% {-moz-transform: translateX(-200%);}
100% {-moz-transform: translateX(0%);}
}
@-mos-keyframes start-li{
0% {-mos-transform: translateX(-200%);}
100% {-mos-transform: translateX(0%);}
}
@-o-keyframes start-li{
0% {-o-transform: translateX(-200%);}
100% {-o-transform: translateX(0%);}
}
@keyframes start-li{
0% {transform: translateX(-200%);}
100% {transform: translateX(0%);}
}
.wrapper-colorful ul li{
color:#eee;
text-align: center;
overflow:hidden;
}
/* mobile */
@media screen and (max-width:1100px){
.wrapper-colorful {width: 100%;}
.wrapper-colorful ul {
position: relative;
width:50%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
}
@media screen and (max-width:560px){
.wrapper-colorful {width: 100%;}
.wrapper-colorful ul {
position: relative;
width:100%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
.wrapper-colorful ul:hover{
-webkit-transform: scale(1,1);
-moz-transform: scale(1,1);
-mos-transform: scale(1,1);
-o-transform: scale(1,1);
transform: scale(1,1);
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
z-index:5;
}
}
.wrapper-colorful .basic{
position: relative;
background: #005C5A;
}
.wrapper-colorful .premium{
position: relative;
background: #199C7B;
}
.wrapper-colorful .plus{
position: relative;
background: #F37100;
}
.wrapper-colorful .business{
position: relative;
background: #ED4D13;
}
.wrapper-colorful ul .icon{
position: relative;
height:10em;
width: 10em;
background:rgba(255, 255, 255, 0.15);
margin:1em auto;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
z-index:2;
}
.wrapper-colorful .basic .icon:before{
position: absolute;
top: .8em;
bottom: 0;
left: -0.15em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful .premium .icon:before{
position: absolute;
top: .9em;
bottom: 0;
left: 0.05em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful .plus .icon:before{
position: absolute;
top: .75em;
bottom: 0;
left: 0em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful .business .icon:before{
position: absolute;
top: .75em;
bottom: 0;
left: -0.1em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful .basic:hover .icon:before{
color: #005C5A;
}
.wrapper-colorful .premium:hover .icon:before{
color: #199C7B;
}
.wrapper-colorful .plus:hover .icon:before{
color: #F37100;
}
.wrapper-colorful .business:hover .icon:before{
color: #ED4D13;
}
.wrapper-colorful ul .icon:after{
position: absolute;
content: '';
top:0;
left:0;
width: 100%;
height: 100%;
background: #f2f2f2;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
-webkit-transform: scale(0,0);
-moz-transform: scale(0,0);
-mos-transform: scale(0,0);
-o-transform: scale(0,0);
transform: scale(0,0);
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
z-index:-1;
}
.wrapper-colorful ul:hover .icon:after{
-webkit-transform: scale(1,1);
-moz-transform: scale(1,1);
-mos-transform: scale(1,1);
-o-transform: scale(1,1);
transform: scale(1,1);
}
.wrapper-colorful ul .name{
height:2em;
line-height: 2em;
-webkit-transition: all 0.25s ease 0.15s;
-moz-transition: all 0.25s ease 0.15s;
-mos-transition: all 0.25s ease 0.15s;
-o-transition: all 0.25s ease 0.15s;
transition: all 0.25s ease 0.15s;
}
.wrapper-colorful ul:hover .name{
-webkit-box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
-moz-box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
}
.wrapper-colorful ul .name h1{
text-transform: uppercase;
font-weight: 300;
font-size: 2em;
color: rgba(255, 255, 255, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul:hover .name h1{
color: rgba(255, 255, 255, 1);
}
.wrapper-colorful ul .price-col{
height:1.5em;
line-height: 1.25em;
font-size: 4em;
font-family: 'exo_2.0extra_light';
color: rgba(255, 255, 255, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul .price-col .cost{
position: relative;
width: 100%;
height:100%;
-webkit-box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul:hover .price-col .cost{
position: relative;
-webkit-box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
-moz-box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
}
.wrapper-colorful .basic:hover .price-col .cost{
color: #005C5A;
}
.wrapper-colorful .premium:hover .price-col .cost{
color: #199C7B;
}
.wrapper-colorful .plus:hover .price-col .cost{
color: #F37100;
}
.wrapper-colorful .business:hover .price-col .cost{
color: #ED4D13;
}
.wrapper-colorful ul .price-col .cost .valuta{
position:relative;
font-size: 0.5em;
font-weight: 400;
display: inline-table;
vertical-align: super;
}
.wrapper-colorful ul .price-col .cost .mounthly{
position:relative;
font-size: 0.5em;
font-weight: 300;
display: inline-table;
text-transform: uppercase
}
.wrapper-colorful ul .description-range{
height:2em;
line-height: 2em;
}
.wrapper-colorful ul .description-range:after{
position: absolute;
content: '';
width: 0%;
height:32px;
background: rgba(255, 255, 255, 0.15);
left:0%;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul .description-range:hover:after{
width: 100%;
}
.wrapper-colorful .description-range:before{
position:absolute;
font-family: FontAwesome;
font-weight: normal;
width:2em;
font-size: 1em;
left: -1.5em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
/*'\f1d9'是纸飞机的图片*/
.wrapper-colorful .description-range:hover:before{
left: 1em;
}
.wrapper-colorful .description-range:nth-child(3):before {
content: '\f0a0';
}
.wrapper-colorful .description-range:nth-child(4):before {
content: '\f006';
}
.wrapper-colorful .description-range:nth-child(5):before {
content: '\f006';
}
.wrapper-colorful .description-range:nth-child(6):before {
content: '\f006';
}
.wrapper-colorful .description-range:nth-child(7):before {
content: '\f006';
}
.wrapper-colorful .description-range:nth-child(8):before {
content:'\f006';
}
.wrapper-colorful .description-range:nth-child(9):before {
content: '\f006';
}
.wrapper-colorful .description-range:before {
content: '\f006';
}
.wrapper-colorful ul .purchase{
height: 3em;
line-height: 3em;
}
.wrapper-colorful ul .purchase a{
position: relative;
padding:0.5em;
border:4px solid #efefef;
color: #fff;
text-decoration: none;
z-index: 1;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
.wrapper-colorful ul .purchase a{
color:#fff;
background:#005C5A;
-webkit-box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
}
.wrapper-colorful .premium .purchase a{
color:#fff;
background:#199C7B;
}
.wrapper-colorful .plus .purchase a{
color:#fff;
background:#F37100;
}
.wrapper-colorful .business .purchase a{
color:#fff;
background:#ED4D13;
}
.wrapper-colorful ul .purchase a:hover{
color:#005C5A;
-webkit-box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
}
.wrapper-colorful .premium .purchase a:hover{
color:#199C7B;
}
.wrapper-colorful .plus .purchase a:hover{
color:#F37100;
}
.wrapper-colorful .business .purchase a:hover{
color:#ED4D13;
}
.wrapper-colorful ul .purchase:before{
position: absolute;
content: '';
background: #efefef;
width: 50%;
height:1em;
bottom:1em;
left:25%;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul:hover .purchase:before{
position: absolute;
content: '';
background: #efefef;
width: 90%;
height:1em;
left:5%;
}
/* Colorful-2 Pricing Tables with IMG*/
.wrapper-colorful-bg {
position:relative;
width:100%;
height: 100%;
margin:0em auto;
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background: url('../image/bg2.jpg') center center no-repeat;
-moz-background-size: cover; /* Firefox 漕 4.0 */
-webkit-background-size: cover; /* Safari ?Chrome */
-o-background-size: cover; /* Opera 漕 忮瘃梃 10.53 */
background-size: cover; /* CSS3 */
}
.wrapper-colorful-bg ul {
position: relative;
width:25%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
overflow:hidden;
}
.wrapper-colorful-bg .basic{
-webkit-animation-delay:0s;
-moz-animation-delay:0s;
-mos-animation-delay:0s;
-o-animation-delay:0s;
animation-delay:0s;
}
.wrapper-colorful-bg .premium{
-webkit-animation-delay:0.15s;
-moz-animation-delay:0.15s;
-mos-animation-delay:0.15s;
-o-animation-delay:0.15s;
animation-delay:0.15s;
}
.wrapper-colorful-bg .plus{
-webkit-animation-delay:0.3s;
-moz-animation-delay:0.3s;
-mos-animation-delay:0.3s;
-o-animation-delay:0.3s;
animation-delay:0.3s;
}
.wrapper-colorful-bg .business{
-webkit-animation-delay:0.45s;
-moz-animation-delay:0.45s;
-mos-animation-delay:0.45s;
-o-animation-delay:0.45s;
animation-delay:0.45s;
}
.wrapper-colorful-bg ul li{
-webkit-animation: start-li 0.5s ease forwards;
-moz-animation: start-li 0.5s ease forwards;
-mos-animation: start-li 0.5s ease forwards;
-o-animation: start-li 0.5s ease forwards;
animation: start-li 0.5s ease forwards;
-webkit-transform: translateX(-200%);
-moz-transform: translateX(-200%);
-mos-transform: translateX(-200%);
-o-transform: translateX(-200%);
transform: translateX(-200%);
}
.wrapper-colorful-bg .basic li:nth-child(1){
-webkit-animation-delay:0.1s;
-moz-animation-delay:0.1s;
-mos-animation-delay:0.1s;
-o-animation-delay:0.1s;
animation-delay:0.1s;
}
.wrapper-colorful-bg .basic li:nth-child(2), .wrapper-colorful-bg .premium li:nth-child(1){
-webkit-animation-delay:0.2s;
-moz-animation-delay:0.2s;
-mos-animation-delay:0.2s;
-o-animation-delay:0.2s;
animation-delay:0.2s;
}
.wrapper-colorful-bg .basic li:nth-child(3), .wrapper-colorful-bg .premium li:nth-child(2), .wrapper-colorful-bg .plus li:nth-child(1){
-webkit-animation-delay:0.3s;
-moz-animation-delay:0.3s;
-mos-animation-delay:0.3s;
-o-animation-delay:0.3s;
animation-delay:0.3s;
}
.wrapper-colorful-bg .basic li:nth-child(4), .wrapper-colorful-bg .premium li:nth-child(3), .wrapper-colorful-bg .plus li:nth-child(2), .wrapper-colorful-bg .business li:nth-child(1){
-webkit-animation-delay:0.4s;
-moz-animation-delay:0.4s;
-mos-animation-delay:0.4s;
-o-animation-delay:0.4s;
animation-delay:0.4s;
}
.wrapper-colorful-bg .basic li:nth-child(5), .wrapper-colorful-bg .premium li:nth-child(4), .wrapper-colorful-bg .plus li:nth-child(3), .wrapper-colorful-bg .business li:nth-child(2){
-webkit-animation-delay:0.5s;
-moz-animation-delay:0.5s;
-mos-animation-delay:0.5s;
-o-animation-delay:0.5s;
animation-delay:0.5s;
}
.wrapper-colorful-bg .basic li:nth-child(6), .wrapper-colorful-bg .premium li:nth-child(5), .wrapper-colorful-bg .plus li:nth-child(4), .wrapper-colorful-bg .business li:nth-child(3){
-webkit-animation-delay:0.6s;
-moz-animation-delay:0.6s;
-mos-animation-delay:0.6s;
-o-animation-delay:0.6s;
animation-delay:0.6s;
}
.wrapper-colorful-bg .basic li:nth-child(7), .wrapper-colorful-bg .premium li:nth-child(6), .wrapper-colorful-bg .plus li:nth-child(5), .wrapper-colorful-bg .business li:nth-child(4){
-webkit-animation-delay:0.7s;
-moz-animation-delay:0.7s;
-mos-animation-delay:0.7s;
-o-animation-delay:0.7s;
animation-delay:0.7s;
}
.wrapper-colorful-bg .basic li:nth-child(8), .wrapper-colorful-bg .premium li:nth-child(7), .wrapper-colorful-bg .plus li:nth-child(6), .wrapper-colorful-bg .business li:nth-child(5){
-webkit-animation-delay:0.8s;
-moz-animation-delay:0.8s;
-mos-animation-delay:0.8s;
-o-animation-delay:0.8s;
animation-delay:0.8s;
}
.wrapper-colorful-bg .basic li:nth-child(9), .wrapper-colorful-bg .premium li:nth-child(8), .wrapper-colorful-bg .plus li:nth-child(7), .wrapper-colorful-bg .business li:nth-child(6){
-webkit-animation-delay:0.9s;
-moz-animation-delay:0.9s;
-mos-animation-delay:0.9s;
-o-animation-delay:0.9s;
animation-delay:0.9s;
}
.wrapper-colorful-bg .basic li:nth-child(10), .wrapper-colorful-bg .premium li:nth-child(9), .wrapper-colorful-bg .plus li:nth-child(8), .wrapper-colorful-bg .business li:nth-child(7){
-webkit-animation-delay:1s;
-moz-animation-delay:1s;
-mos-animation-delay:1s;
-o-animation-delay:1s;
animation-delay:1s;
}
.wrapper-colorful-bg .basic li:nth-child(11), .wrapper-colorful-bg .premium li:nth-child(10), .wrapper-colorful-bg .plus li:nth-child(9), .wrapper-colorful-bg .business li:nth-child(8){
-webkit-animation-delay:1.1s;
-moz-animation-delay:1.1s;
-mos-animation-delay:1.1s;
-o-animation-delay:1.1s;
animation-delay:1.1s;
}
.wrapper-colorful-bg .basic li:nth-child(12), .wrapper-colorful-bg .premium li:nth-child(11), .wrapper-colorful-bg .plus li:nth-child(10), .wrapper-colorful-bg .business li:nth-child(9){
-webkit-animation-delay:1.2s;
-moz-animation-delay:1.2s;
-mos-animation-delay:1.2s;
-o-animation-delay:1.2s;
animation-delay:1.2s;
}
.wrapper-colorful-bg .premium li:nth-child(12), .wrapper-colorful-bg .plus li:nth-child(11), .wrapper-colorful-bg .business li:nth-child(10){
-webkit-animation-delay:1.3s;
-moz-animation-delay:1.3s;
-mos-animation-delay:1.3s;
-o-animation-delay:1.3s;
animation-delay:1.3s;
}
.wrapper-colorful-bg.plus li:nth-child(12), .wrapper-colorful-bg .business li:nth-child(11){
-webkit-animation-delay:1.4s;
-moz-animation-delay:1.4s;
-mos-animation-delay:1.4s;
-o-animation-delay:1.4s;
animation-delay:1.4s;
}
.wrapper-colorful-bg .business li:nth-child(12){
-webkit-animation-delay:1.5s;
-moz-animation-delay:1.5s;
-mos-animation-delay:1.5s;
-o-animation-delay:1.5s;
animation-delay:1.5s;
}
@-webkit-keyframes start{
0% {-webkit-transform: translateY(-100%);}
100% {-webkit-transform: translateY(0%);}
}
@-moz-keyframes start{
0% {-moz-transform: translateY(-100%);}
100% {-moz-transform: translateY(0%);}
}
@-mos-keyframes start{
0% {-mos-transform: translateY(-100%);}
100% {-mos-transform: translateY(0%);}
}
@-o-keyframes start{
0% {-o-transform: translateY(-100%);}
100% {-o-transform: translateY(0%);}
}
@keyframes start{
0% {transform: translateY(-100%);}
100% {transform: translateY(0%);}
}
@-webkit-keyframes start-li{
0% {-webkit-transform: translateX(-200%);}
100% {-webkit-transform: translateX(0%);}
}
@-moz-keyframes start-li{
0% {-moz-transform: translateX(-200%);}
100% {-moz-transform: translateX(0%);}
}
@-mos-keyframes start-li{
0% {-mos-transform: translateX(-200%);}
100% {-mos-transform: translateX(0%);}
}
@-o-keyframes start-li{
0% {-o-transform: translateX(-200%);}
100% {-o-transform: translateX(0%);}
}
@keyframes start-li{
0% {transform: translateX(-200%);}
100% {transform: translateX(0%);}
}
.wrapper-colorful-bg ul li{
color:#eee;
text-align: center;
overflow:hidden;
}
/* mobile */
@media screen and (max-width:1100px){
.wrapper-colorful-bg {width: 100%;}
.wrapper-colorful-bg ul {
position: relative;
width:50%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
}
@media screen and (max-width:560px){
.wrapper-colorful-bg {width: 100%;}
.wrapper-colorful-bg ul {
position: relative;
width:100%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
}
.wrapper-colorful-bg .basic{
position: relative;
background: rgba(0, 92, 90, 0.75);
}
.wrapper-colorful-bg .premium{
position: relative;
background: rgba(25, 156, 123, 0.75);
}
.wrapper-colorful-bg .plus{
position: relative;
background: rgba(243, 113, 0, 0.75);
}
.wrapper-colorful-bg .business{
position: relative;
background: rgba(237, 77, 19, 0.75);
}
.wrapper-colorful-bg ul .icon{
position: relative;
height:10em;
width: 10em;
background:rgba(255, 255, 255, 0.15);
margin:1em auto;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
z-index:2;
color:rgba(255, 255, 255, 0.5);
}
.wrapper-colorful-bg .basic .icon:before{
position: absolute;
top: .8em;
bottom: 0;
left: -0.15em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful-bg .premium .icon:before{
position: absolute;
top: .9em;
bottom: 0;
left: 0.05em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful-bg .plus .icon:before{
position: absolute;
top: .75em;
bottom: 0;
left: 0em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful-bg .business .icon:before{
position: absolute;
top: .75em;
bottom: 0;
left: -0.1em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful-bg .basic:hover .icon:before{
color: #005C5A;
}
.wrapper-colorful-bg .premium:hover .icon:before{
color: #199C7B;
}
.wrapper-colorful-bg .plus:hover .icon:before{
color: #F37100;
}
.wrapper-colorful-bg .business:hover .icon:before{
color: #ED4D13;
}
.wrapper-colorful-bg ul .icon:after{
position: absolute;
content: '';
top:0;
left:0;
width: 100%;
height: 100%;
background: rgba(242, 242, 242, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
-webkit-transform: scale(0,0);
-moz-transform: scale(0,0);
-mos-transform: scale(0,0);
-o-transform: scale(0,0);
transform: scale(0,0);
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
z-index:-1;
}
.wrapper-colorful-bg ul:hover .icon:after{
-webkit-transform: scale(1,1);
-moz-transform: scale(1,1);
-mos-transform: scale(1,1);
-o-transform: scale(1,1);
transform: scale(1,1);
}
.wrapper-colorful-bg ul .name{
height:2em;
line-height: 2em;
-webkit-transition: all 0.25s ease 0.15s;
-moz-transition: all 0.25s ease 0.15s;
-mos-transition: all 0.25s ease 0.15s;
-o-transition: all 0.25s ease 0.15s;
transition: all 0.25s ease 0.15s;
}
.wrapper-colorful-bg ul:hover .name{
-webkit-box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
-moz-box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
}
.wrapper-colorful-bg ul .name h1{
text-transform: uppercase;
font-weight: 300;
font-size: 2em;
color: rgba(255, 255, 255, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul:hover .name h1{
color: rgba(255, 255, 255, 1);
}
.wrapper-colorful-bg ul .price-col{
height:1.5em;
line-height: 1.25em;
font-size: 4em;
font-family: 'exo_2.0extra_light';
color: rgba(255, 255, 255, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul .price-col .cost{
position: relative;
width: 100%;
height:100%;
-webkit-box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul:hover .price-col .cost{
position: relative;
-webkit-box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
-moz-box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
}
.wrapper-colorful-bg .basic:hover .price-col .cost{
color: #005C5A;
}
.wrapper-colorful-bg .premium:hover .price-col .cost{
color: #199C7B;
}
.wrapper-colorful-bg .plus:hover .price-col .cost{
color: #F37100;
}
.wrapper-colorful-bg .business:hover .price-col .cost{
color: #ED4D13;
}
.wrapper-colorful-bg ul .price-col .cost .valuta{
position:relative;
font-size: 0.5em;
font-weight: 400;
display: inline-table;
vertical-align: super;
}
.wrapper-colorful-bg ul .price-col .cost .mounthly{
position:relative;
font-size: 0.5em;
font-weight: 300;
display: inline-table;
text-transform: uppercase
}
.wrapper-colorful-bg ul .description-range{
height:2em;
line-height: 2em;
}
.wrapper-colorful-bg ul .description-range:after{
position: absolute;
content: '';
width: 0%;
height:32px;
background: rgba(255, 255, 255, 0.15);
left:0%;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul .description-range:hover:after{
width: 100%;
}
.wrapper-colorful-bg .description-range:before{
position:absolute;
font-family: FontAwesome;
font-weight: normal;
width:2em;
font-size: 1em;
left: -1.5em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg .description-range:hover:before{
left: 1em;
}
.wrapper-colorful-bg .description-range:nth-child(3):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:nth-child(4):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:nth-child(5):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:nth-child(6):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:nth-child(7):before {
content:'\f006';
}
.wrapper-colorful-bg .description-range:nth-child(8):before {
content:'\f006';
}
.wrapper-colorful-bg .description-range:nth-child(9):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:before {
content: '\f006';
}
.wrapper-colorful-bg ul .purchase{
height: 3em;
line-height: 3em;
}
.wrapper-colorful-bg ul .purchase a{
position: relative;
padding:0.5em;
border:4px solid rgba(239, 239, 239, 0.5);;
color: #fff;
text-decoration: none;
z-index: 1;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
.wrapper-colorful-bg .basic .purchase a{
color:#fff;
background:#005C5A;
-webkit-box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
}
.wrapper-colorful-bg .premium .purchase a{
color:#fff;
background:#199C7B;
}
.wrapper-colorful-bg .plus .purchase a{
color:#fff;
background:#F37100;
}
.wrapper-colorful-bg .business .purchase a{
color:#fff;
background:#ED4D13;
}
.wrapper-colorful-bg ul .purchase a:hover{
color:#005C5A;
-webkit-box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
}
.wrapper-colorful-bg .premium .purchase a:hover{
color:#199C7B;
}
.wrapper-colorful-bg .plus .purchase a:hover{
color:#F37100;
}
.wrapper-colorful-bg .business .purchase a:hover{
color:#ED4D13;
}
.wrapper-colorful-bg ul .purchase:before{
position: absolute;
content: '';
background: rgba(239, 239, 239, 0.5);;
width: 50%;
height:1em;
bottom:1em;
left:25%;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul:hover .purchase:before{
position: absolute;
content: '';
width: 90%;
height:1em;
left:5%;
}
|
wenKu2/css/colorfultpt.css
|
@import url(css.css);
@font-face {
font-family: 'exo_2.0black';
src: url('../font/exo2.0-black.eot');
src: url('../font/exo2.0-black.eot') format('embedded-opentype'),
url('../font/exo2.0-black.woff') format('woff'),
url('../font/exo2.0-black.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0black_italic';
src: url('../font/exo2.0-blackitalic.eot');
src: url('../font/exo2.0-blackitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-blackitalic.woff') format('woff'),
url('../font/exo2.0-blackitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0bold';
src: url('../font/exo2.0-bold.eot');
src: url('../font/exo2.0-bold.eot') format('embedded-opentype'),
url('../font/exo2.0-bold.woff') format('woff'),
url('../font/exo2.0-bold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0bold_italic';
src: url('../font/exo2.0-bolditalic.eot');
src: url('../font/exo2.0-bolditalic.eot') format('embedded-opentype'),
url('../font/exo2.0-bolditalic.woff') format('woff'),
url('../font/exo2.0-bolditalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0extra_bold';
src: url('../font/exo2.0-extrabold.eot');
src: url('../font/exo2.0-extrabold.eot') format('embedded-opentype'),
url('../font/exo2.0-extrabold.woff') format('woff'),
url('../font/exo2.0-extrabold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0extra_bold_italic';
src: url('../font/exo2.0-extrabolditalic.eot');
src: url('../font/exo2.0-extrabolditalic.eot') format('embedded-opentype'),
url('../font/exo2.0-extrabolditalic.woff') format('woff'),
url('../font/exo2.0-extrabolditalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0extra_light';
src: url('../font/exo2.0-extralight.eot');
src: url('../font/exo2.0-extralight.eot') format('embedded-opentype'),
url('../font/exo2.0-extralight.woff') format('woff'),
url('../font/exo2.0-extralight.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0extra_light_italic';
src: url('../font/exo2.0-extralightitalic.eot');
src: url('../font/exo2.0-extralightitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-extralightitalic.woff') format('woff'),
url('../font/exo2.0-extralightitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0italic';
src: url('../font/exo2.0-italic.eot');
src: url('../font/exo2.0-italic.eot') format('embedded-opentype'),
url('../font/exo2.0-italic.woff') format('woff'),
url('../font/exo2.0-italic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0light';
src: url('../font/exo2.0-light.eot');
src: url('../font/exo2.0-light.eot') format('embedded-opentype'),
url('../font/exo2.0-light.woff') format('woff'),
url('../font/exo2.0-light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0light_italic';
src: url('../font/exo2.0-lightitalic.eot');
src: url('../font/exo2.0-lightitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-lightitalic.woff') format('woff'),
url('../font/exo2.0-lightitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0medium';
src: url('../font/exo2.0-medium.eot');
src: url('../font/exo2.0-medium.eot') format('embedded-opentype'),
url('../font/exo2.0-medium.woff') format('woff'),
url('../font/exo2.0-medium.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0medium_italic';
src: url('../font/exo2.0-mediumitalic.eot');
src: url('../font/exo2.0-mediumitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-mediumitalic.woff') format('woff'),
url('../font/exo2.0-mediumitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0regular';
src: url('../font/exo2.0-regular.eot');
src: url('../font/exo2.0-regular.eot') format('embedded-opentype'),
url('../font/exo2.0-regular.woff') format('woff'),
url('../font/exo2.0-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0semi_bold';
src: url('../font/exo2.0-semibold.eot');
src: url('../font/exo2.0-semibold.eot') format('embedded-opentype'),
url('../font/exo2.0-semibold.woff') format('woff'),
url('../font/exo2.0-semibold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0semi_bold_italic';
src: url('../font/exo2.0-semibolditalic.eot');
src: url('../font/exo2.0-semibolditalic.eot') format('embedded-opentype'),
url('../font/exo2.0-semibolditalic.woff') format('woff'),
url('../font/exo2.0-semibolditalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0thin';
src: url('../font/exo2.0-thin.eot');
src: url('../font/exo2.0-thin.eot') format('embedded-opentype'),
url('../font/exo2.0-thin.woff') format('woff'),
url('../font/exo2.0-thin.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2.0thin_italic';
src: url('../font/exo2.0-thinitalic.eot');
src: url('../font/exo2.0-thinitalic.eot') format('embedded-opentype'),
url('../font/exo2.0-thinitalic.woff') format('woff'),
url('../font/exo2.0-thinitalic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'FontAwesome';
src: url('../font/fontawesome-webfont.eot');
src: url('../font/fontawesome-webfont.eot') format('embedded-opentype'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('http://bein.pp.ua/demo/html/CPT/fonts/fontawesome-webfont.svg?v=4.1.0') format('svg');
font-weight: normal;
font-style: normal;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeSpeed;
line-height:1;
height: 100%;
}
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
.title {
font-size: 3em;
font-family: Open Sans;
color:#555;
text-align: center;
height:2em;
line-height: 2em;
font-weight: 100;
text-transform: uppercase;
}
/* Colorful Pricing Tables*/
.wrapper-colorful {
position:relative;
width:100%;
height: 100%;
margin:0em auto;
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
overflow:hidden;
}
.wrapper-colorful ul {
position: relative;
width:25%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
overflow:hidden;
-webkit-animation: start 0.5s ease forwards;
-moz-animation: start 0.5s ease forwards;
-mos-animation: start 0.5s ease forwards;
-o-animation: start 0.5s ease forwards;
animation: start 0.5s ease forwards;
-webkit-transform: scale(1,0);
-moz-transform: scale(1,0);
-mos-transform: scale(1,0);
-o-transform: scale(1,0);
transform: scale(1,0);
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.wrapper-colorful .basic{
-webkit-animation-delay:0s;
-moz-animation-delay:0s;
-mos-animation-delay:0s;
-o-animation-delay:0s;
animation-delay:0s;
border-right:1px solid #fff;
}
.wrapper-colorful .premium{
-webkit-animation-delay:0.15s;
-moz-animation-delay:0.15s;
-mos-animation-delay:0.15s;
-o-animation-delay:0.15s;
animation-delay:0.15s;
border-right:1px solid #fff;
}
.wrapper-colorful .plus{
-webkit-animation-delay:0.3s;
-moz-animation-delay:0.3s;
-mos-animation-delay:0.3s;
-o-animation-delay:0.3s;
animation-delay:0.3s;
border-right:1px solid #fff;
}
.wrapper-colorful .business{
-webkit-animation-delay:0.45s;
-moz-animation-delay:0.45s;
-mos-animation-delay:0.45s;
-o-animation-delay:0.45s;
animation-delay:0.45s;
}
.wrapper-colorful ul li{
-webkit-animation: start-li 0.5s ease forwards;
-moz-animation: start-li 0.5s ease forwards;
-mos-animation: start-li 0.5s ease forwards;
-o-animation: start-li 0.5s ease forwards;
animation: start-li 0.5s ease forwards;
-webkit-transform: translateX(-200%);
-moz-transform: translateX(-200%);
-mos-transform: translateX(-200%);
-o-transform: translateX(-200%);
transform: translateX(-200%);
}
.wrapper-colorful .basic li:nth-child(1){
-webkit-animation-delay:0.1s;
-moz-animation-delay:0.1s;
-mos-animation-delay:0.1s;
-o-animation-delay:0.1s;
animation-delay:0.1s;
}
.wrapper-colorful .basic li:nth-child(2), .wrapper-colorful .premium li:nth-child(1){
-webkit-animation-delay:0.2s;
-moz-animation-delay:0.2s;
-mos-animation-delay:0.2s;
-o-animation-delay:0.2s;
animation-delay:0.2s;
}
.wrapper-colorful .basic li:nth-child(3), .wrapper-colorful .premium li:nth-child(2), .wrapper-colorful .plus li:nth-child(1){
-webkit-animation-delay:0.3s;
-moz-animation-delay:0.3s;
-mos-animation-delay:0.3s;
-o-animation-delay:0.3s;
animation-delay:0.3s;
}
.wrapper-colorful .basic li:nth-child(4), .wrapper-colorful .premium li:nth-child(3), .wrapper-colorful .plus li:nth-child(2), .wrapper-colorful .business li:nth-child(1){
-webkit-animation-delay:0.4s;
-moz-animation-delay:0.4s;
-mos-animation-delay:0.4s;
-o-animation-delay:0.4s;
animation-delay:0.4s;
}
.wrapper-colorful .basic li:nth-child(5), .wrapper-colorful .premium li:nth-child(4), .wrapper-colorful .plus li:nth-child(3), .wrapper-colorful .business li:nth-child(2){
-webkit-animation-delay:0.5s;
-moz-animation-delay:0.5s;
-mos-animation-delay:0.5s;
-o-animation-delay:0.5s;
animation-delay:0.5s;
}
.wrapper-colorful .basic li:nth-child(6), .wrapper-colorful .premium li:nth-child(5), .wrapper-colorful .plus li:nth-child(4), .wrapper-colorful .business li:nth-child(3){
-webkit-animation-delay:0.6s;
-moz-animation-delay:0.6s;
-mos-animation-delay:0.6s;
-o-animation-delay:0.6s;
animation-delay:0.6s;
}
.wrapper-colorful .basic li:nth-child(7), .wrapper-colorful .premium li:nth-child(6), .wrapper-colorful .plus li:nth-child(5), .wrapper-colorful .business li:nth-child(4){
-webkit-animation-delay:0.7s;
-moz-animation-delay:0.7s;
-mos-animation-delay:0.7s;
-o-animation-delay:0.7s;
animation-delay:0.7s;
}
.wrapper-colorful .basic li:nth-child(8), .wrapper-colorful .premium li:nth-child(7), .wrapper-colorful .plus li:nth-child(6), .wrapper-colorful .business li:nth-child(5){
-webkit-animation-delay:0.8s;
-moz-animation-delay:0.8s;
-mos-animation-delay:0.8s;
-o-animation-delay:0.8s;
animation-delay:0.8s;
}
.wrapper-colorful .basic li:nth-child(9), .wrapper-colorful .premium li:nth-child(8), .wrapper-colorful .plus li:nth-child(7), .wrapper-colorful .business li:nth-child(6){
-webkit-animation-delay:0.9s;
-moz-animation-delay:0.9s;
-mos-animation-delay:0.9s;
-o-animation-delay:0.9s;
animation-delay:0.9s;
}
.wrapper-colorful .basic li:nth-child(10), .wrapper-colorful .premium li:nth-child(9), .wrapper-colorful .plus li:nth-child(8), .wrapper-colorful .business li:nth-child(7){
-webkit-animation-delay:1s;
-moz-animation-delay:1s;
-mos-animation-delay:1s;
-o-animation-delay:1s;
animation-delay:1s;
}
.wrapper-colorful .basic li:nth-child(11), .wrapper-colorful .premium li:nth-child(10), .wrapper-colorful .plus li:nth-child(9), .wrapper-colorful .business li:nth-child(8){
-webkit-animation-delay:1.1s;
-moz-animation-delay:1.1s;
-mos-animation-delay:1.1s;
-o-animation-delay:1.1s;
animation-delay:1.1s;
}
.wrapper-colorful .basic li:nth-child(12), .wrapper-colorful .premium li:nth-child(11), .wrapper-colorful .plus li:nth-child(10), .wrapper-colorful .business li:nth-child(9){
-webkit-animation-delay:1.2s;
-moz-animation-delay:1.2s;
-mos-animation-delay:1.2s;
-o-animation-delay:1.2s;
animation-delay:1.2s;
}
.wrapper-colorful .premium li:nth-child(12), .wrapper-colorful .plus li:nth-child(11), .wrapper-colorful .business li:nth-child(10){
-webkit-animation-delay:1.3s;
-moz-animation-delay:1.3s;
-mos-animation-delay:1.3s;
-o-animation-delay:1.3s;
animation-delay:1.3s;
}
.wrapper-colorful .plus li:nth-child(12), .wrapper-colorful .business li:nth-child(11){
-webkit-animation-delay:1.4s;
-moz-animation-delay:1.4s;
-mos-animation-delay:1.4s;
-o-animation-delay:1.4s;
animation-delay:1.4s;
}
.wrapper-colorful .business li:nth-child(12){
-webkit-animation-delay:1.5s;
-moz-animation-delay:1.5s;
-mos-animation-delay:1.5s;
-o-animation-delay:1.5s;
animation-delay:1.5s;
}
@-webkit-keyframes start{
0% {-webkit-transform: scale(1,0);}
100% {-webkit-transform: scale(1,1);}
}
@-moz-keyframes start{
0% {-moz-transform: scale(1,0);}
100% {-moz-transform: scale(1,1);}
}
@-mos-keyframes start{
0% {-mos-transform: scale(1,0);}
100% {-mos-transform: scale(1,1);}
}
@-o-keyframes start{
0% {-o-transform: scale(1,0);}
100% {-o-transform: scale(1,1);}
}
@keyframes start{
0% {transform: scale(1,0);}
100% {transform: scale(1,1);}
}
@-webkit-keyframes start-li{
0% {-webkit-transform: translateX(-200%);}
100% {-webkit-transform: translateX(0%);}
}
@-moz-keyframes start-li{
0% {-moz-transform: translateX(-200%);}
100% {-moz-transform: translateX(0%);}
}
@-mos-keyframes start-li{
0% {-mos-transform: translateX(-200%);}
100% {-mos-transform: translateX(0%);}
}
@-o-keyframes start-li{
0% {-o-transform: translateX(-200%);}
100% {-o-transform: translateX(0%);}
}
@keyframes start-li{
0% {transform: translateX(-200%);}
100% {transform: translateX(0%);}
}
.wrapper-colorful ul li{
color:#eee;
text-align: center;
overflow:hidden;
}
/* mobile */
@media screen and (max-width:1100px){
.wrapper-colorful {width: 100%;}
.wrapper-colorful ul {
position: relative;
width:50%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
}
@media screen and (max-width:560px){
.wrapper-colorful {width: 100%;}
.wrapper-colorful ul {
position: relative;
width:100%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
.wrapper-colorful ul:hover{
-webkit-transform: scale(1,1);
-moz-transform: scale(1,1);
-mos-transform: scale(1,1);
-o-transform: scale(1,1);
transform: scale(1,1);
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
z-index:5;
}
}
.wrapper-colorful .basic{
position: relative;
background: #005C5A;
}
.wrapper-colorful .premium{
position: relative;
background: #199C7B;
}
.wrapper-colorful .plus{
position: relative;
background: #F37100;
}
.wrapper-colorful .business{
position: relative;
background: #ED4D13;
}
.wrapper-colorful ul .icon{
position: relative;
height:10em;
width: 10em;
background:rgba(255, 255, 255, 0.15);
margin:1em auto;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
z-index:2;
}
.wrapper-colorful .basic .icon:before{
position: absolute;
top: .8em;
bottom: 0;
left: -0.15em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful .premium .icon:before{
position: absolute;
top: .9em;
bottom: 0;
left: 0.05em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful .plus .icon:before{
position: absolute;
top: .75em;
bottom: 0;
left: 0em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful .business .icon:before{
position: absolute;
top: .75em;
bottom: 0;
left: -0.1em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful .basic:hover .icon:before{
color: #005C5A;
}
.wrapper-colorful .premium:hover .icon:before{
color: #199C7B;
}
.wrapper-colorful .plus:hover .icon:before{
color: #F37100;
}
.wrapper-colorful .business:hover .icon:before{
color: #ED4D13;
}
.wrapper-colorful ul .icon:after{
position: absolute;
content: '';
top:0;
left:0;
width: 100%;
height: 100%;
background: #f2f2f2;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
-webkit-transform: scale(0,0);
-moz-transform: scale(0,0);
-mos-transform: scale(0,0);
-o-transform: scale(0,0);
transform: scale(0,0);
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
z-index:-1;
}
.wrapper-colorful ul:hover .icon:after{
-webkit-transform: scale(1,1);
-moz-transform: scale(1,1);
-mos-transform: scale(1,1);
-o-transform: scale(1,1);
transform: scale(1,1);
}
.wrapper-colorful ul .name{
height:2em;
line-height: 2em;
-webkit-transition: all 0.25s ease 0.15s;
-moz-transition: all 0.25s ease 0.15s;
-mos-transition: all 0.25s ease 0.15s;
-o-transition: all 0.25s ease 0.15s;
transition: all 0.25s ease 0.15s;
}
.wrapper-colorful ul:hover .name{
-webkit-box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
-moz-box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
}
.wrapper-colorful ul .name h1{
text-transform: uppercase;
font-weight: 300;
font-size: 2em;
color: rgba(255, 255, 255, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul:hover .name h1{
color: rgba(255, 255, 255, 1);
}
.wrapper-colorful ul .price-col{
height:1.5em;
line-height: 1.25em;
font-size: 4em;
font-family: 'exo_2.0extra_light';
color: rgba(255, 255, 255, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul .price-col .cost{
position: relative;
width: 100%;
height:100%;
-webkit-box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul:hover .price-col .cost{
position: relative;
-webkit-box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
-moz-box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
}
.wrapper-colorful .basic:hover .price-col .cost{
color: #005C5A;
}
.wrapper-colorful .premium:hover .price-col .cost{
color: #199C7B;
}
.wrapper-colorful .plus:hover .price-col .cost{
color: #F37100;
}
.wrapper-colorful .business:hover .price-col .cost{
color: #ED4D13;
}
.wrapper-colorful ul .price-col .cost .valuta{
position:relative;
font-size: 0.5em;
font-weight: 400;
display: inline-table;
vertical-align: super;
}
.wrapper-colorful ul .price-col .cost .mounthly{
position:relative;
font-size: 0.5em;
font-weight: 300;
display: inline-table;
text-transform: uppercase
}
.wrapper-colorful ul .description-range{
height:2em;
line-height: 2em;
}
.wrapper-colorful ul .description-range:after{
position: absolute;
content: '';
width: 0%;
height:32px;
background: rgba(255, 255, 255, 0.15);
left:0%;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul .description-range:hover:after{
width: 100%;
}
.wrapper-colorful .description-range:before{
position:absolute;
font-family: FontAwesome;
font-weight: normal;
width:2em;
font-size: 1em;
left: -1.5em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
/*'\f1d9'是纸飞机的图片*/
.wrapper-colorful .description-range:hover:before{
left: 1em;
}
.wrapper-colorful .description-range:nth-child(3):before {
content: '\f0a0';
}
.wrapper-colorful .description-range:nth-child(4):before {
content: '\f006';
}
.wrapper-colorful .description-range:nth-child(5):before {
content: '\f006';
}
.wrapper-colorful .description-range:nth-child(6):before {
content: '\f006';
}
.wrapper-colorful .description-range:nth-child(7):before {
content: '\f006';
}
.wrapper-colorful .description-range:nth-child(8):before {
content:'\f006';
}
.wrapper-colorful .description-range:nth-child(9):before {
content: '\f006';
}
.wrapper-colorful .description-range:before {
content: '\f006';
}
.wrapper-colorful ul .purchase{
height: 3em;
line-height: 3em;
}
.wrapper-colorful ul .purchase a{
position: relative;
padding:0.5em;
border:4px solid #efefef;
color: #fff;
text-decoration: none;
z-index: 1;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
.wrapper-colorful ul .purchase a{
color:#fff;
background:#005C5A;
-webkit-box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
}
.wrapper-colorful .premium .purchase a{
color:#fff;
background:#199C7B;
}
.wrapper-colorful .plus .purchase a{
color:#fff;
background:#F37100;
}
.wrapper-colorful .business .purchase a{
color:#fff;
background:#ED4D13;
}
.wrapper-colorful ul .purchase a:hover{
color:#005C5A;
-webkit-box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
}
.wrapper-colorful .premium .purchase a:hover{
color:#199C7B;
}
.wrapper-colorful .plus .purchase a:hover{
color:#F37100;
}
.wrapper-colorful .business .purchase a:hover{
color:#ED4D13;
}
.wrapper-colorful ul .purchase:before{
position: absolute;
content: '';
background: #efefef;
width: 50%;
height:1em;
bottom:1em;
left:25%;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful ul:hover .purchase:before{
position: absolute;
content: '';
background: #efefef;
width: 90%;
height:1em;
left:5%;
}
/* Colorful-2 Pricing Tables with IMG*/
.wrapper-colorful-bg {
position:relative;
width:100%;
height: 100%;
margin:0em auto;
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background: url('../image/bg2.jpg') center center no-repeat;
-moz-background-size: cover; /* Firefox 漕 4.0 */
-webkit-background-size: cover; /* Safari ?Chrome */
-o-background-size: cover; /* Opera 漕 忮瘃梃 10.53 */
background-size: cover; /* CSS3 */
}
.wrapper-colorful-bg ul {
position: relative;
width:25%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
overflow:hidden;
}
.wrapper-colorful-bg .basic{
-webkit-animation-delay:0s;
-moz-animation-delay:0s;
-mos-animation-delay:0s;
-o-animation-delay:0s;
animation-delay:0s;
}
.wrapper-colorful-bg .premium{
-webkit-animation-delay:0.15s;
-moz-animation-delay:0.15s;
-mos-animation-delay:0.15s;
-o-animation-delay:0.15s;
animation-delay:0.15s;
}
.wrapper-colorful-bg .plus{
-webkit-animation-delay:0.3s;
-moz-animation-delay:0.3s;
-mos-animation-delay:0.3s;
-o-animation-delay:0.3s;
animation-delay:0.3s;
}
.wrapper-colorful-bg .business{
-webkit-animation-delay:0.45s;
-moz-animation-delay:0.45s;
-mos-animation-delay:0.45s;
-o-animation-delay:0.45s;
animation-delay:0.45s;
}
.wrapper-colorful-bg ul li{
-webkit-animation: start-li 0.5s ease forwards;
-moz-animation: start-li 0.5s ease forwards;
-mos-animation: start-li 0.5s ease forwards;
-o-animation: start-li 0.5s ease forwards;
animation: start-li 0.5s ease forwards;
-webkit-transform: translateX(-200%);
-moz-transform: translateX(-200%);
-mos-transform: translateX(-200%);
-o-transform: translateX(-200%);
transform: translateX(-200%);
}
.wrapper-colorful-bg .basic li:nth-child(1){
-webkit-animation-delay:0.1s;
-moz-animation-delay:0.1s;
-mos-animation-delay:0.1s;
-o-animation-delay:0.1s;
animation-delay:0.1s;
}
.wrapper-colorful-bg .basic li:nth-child(2), .wrapper-colorful-bg .premium li:nth-child(1){
-webkit-animation-delay:0.2s;
-moz-animation-delay:0.2s;
-mos-animation-delay:0.2s;
-o-animation-delay:0.2s;
animation-delay:0.2s;
}
.wrapper-colorful-bg .basic li:nth-child(3), .wrapper-colorful-bg .premium li:nth-child(2), .wrapper-colorful-bg .plus li:nth-child(1){
-webkit-animation-delay:0.3s;
-moz-animation-delay:0.3s;
-mos-animation-delay:0.3s;
-o-animation-delay:0.3s;
animation-delay:0.3s;
}
.wrapper-colorful-bg .basic li:nth-child(4), .wrapper-colorful-bg .premium li:nth-child(3), .wrapper-colorful-bg .plus li:nth-child(2), .wrapper-colorful-bg .business li:nth-child(1){
-webkit-animation-delay:0.4s;
-moz-animation-delay:0.4s;
-mos-animation-delay:0.4s;
-o-animation-delay:0.4s;
animation-delay:0.4s;
}
.wrapper-colorful-bg .basic li:nth-child(5), .wrapper-colorful-bg .premium li:nth-child(4), .wrapper-colorful-bg .plus li:nth-child(3), .wrapper-colorful-bg .business li:nth-child(2){
-webkit-animation-delay:0.5s;
-moz-animation-delay:0.5s;
-mos-animation-delay:0.5s;
-o-animation-delay:0.5s;
animation-delay:0.5s;
}
.wrapper-colorful-bg .basic li:nth-child(6), .wrapper-colorful-bg .premium li:nth-child(5), .wrapper-colorful-bg .plus li:nth-child(4), .wrapper-colorful-bg .business li:nth-child(3){
-webkit-animation-delay:0.6s;
-moz-animation-delay:0.6s;
-mos-animation-delay:0.6s;
-o-animation-delay:0.6s;
animation-delay:0.6s;
}
.wrapper-colorful-bg .basic li:nth-child(7), .wrapper-colorful-bg .premium li:nth-child(6), .wrapper-colorful-bg .plus li:nth-child(5), .wrapper-colorful-bg .business li:nth-child(4){
-webkit-animation-delay:0.7s;
-moz-animation-delay:0.7s;
-mos-animation-delay:0.7s;
-o-animation-delay:0.7s;
animation-delay:0.7s;
}
.wrapper-colorful-bg .basic li:nth-child(8), .wrapper-colorful-bg .premium li:nth-child(7), .wrapper-colorful-bg .plus li:nth-child(6), .wrapper-colorful-bg .business li:nth-child(5){
-webkit-animation-delay:0.8s;
-moz-animation-delay:0.8s;
-mos-animation-delay:0.8s;
-o-animation-delay:0.8s;
animation-delay:0.8s;
}
.wrapper-colorful-bg .basic li:nth-child(9), .wrapper-colorful-bg .premium li:nth-child(8), .wrapper-colorful-bg .plus li:nth-child(7), .wrapper-colorful-bg .business li:nth-child(6){
-webkit-animation-delay:0.9s;
-moz-animation-delay:0.9s;
-mos-animation-delay:0.9s;
-o-animation-delay:0.9s;
animation-delay:0.9s;
}
.wrapper-colorful-bg .basic li:nth-child(10), .wrapper-colorful-bg .premium li:nth-child(9), .wrapper-colorful-bg .plus li:nth-child(8), .wrapper-colorful-bg .business li:nth-child(7){
-webkit-animation-delay:1s;
-moz-animation-delay:1s;
-mos-animation-delay:1s;
-o-animation-delay:1s;
animation-delay:1s;
}
.wrapper-colorful-bg .basic li:nth-child(11), .wrapper-colorful-bg .premium li:nth-child(10), .wrapper-colorful-bg .plus li:nth-child(9), .wrapper-colorful-bg .business li:nth-child(8){
-webkit-animation-delay:1.1s;
-moz-animation-delay:1.1s;
-mos-animation-delay:1.1s;
-o-animation-delay:1.1s;
animation-delay:1.1s;
}
.wrapper-colorful-bg .basic li:nth-child(12), .wrapper-colorful-bg .premium li:nth-child(11), .wrapper-colorful-bg .plus li:nth-child(10), .wrapper-colorful-bg .business li:nth-child(9){
-webkit-animation-delay:1.2s;
-moz-animation-delay:1.2s;
-mos-animation-delay:1.2s;
-o-animation-delay:1.2s;
animation-delay:1.2s;
}
.wrapper-colorful-bg .premium li:nth-child(12), .wrapper-colorful-bg .plus li:nth-child(11), .wrapper-colorful-bg .business li:nth-child(10){
-webkit-animation-delay:1.3s;
-moz-animation-delay:1.3s;
-mos-animation-delay:1.3s;
-o-animation-delay:1.3s;
animation-delay:1.3s;
}
.wrapper-colorful-bg.plus li:nth-child(12), .wrapper-colorful-bg .business li:nth-child(11){
-webkit-animation-delay:1.4s;
-moz-animation-delay:1.4s;
-mos-animation-delay:1.4s;
-o-animation-delay:1.4s;
animation-delay:1.4s;
}
.wrapper-colorful-bg .business li:nth-child(12){
-webkit-animation-delay:1.5s;
-moz-animation-delay:1.5s;
-mos-animation-delay:1.5s;
-o-animation-delay:1.5s;
animation-delay:1.5s;
}
@-webkit-keyframes start{
0% {-webkit-transform: translateY(-100%);}
100% {-webkit-transform: translateY(0%);}
}
@-moz-keyframes start{
0% {-moz-transform: translateY(-100%);}
100% {-moz-transform: translateY(0%);}
}
@-mos-keyframes start{
0% {-mos-transform: translateY(-100%);}
100% {-mos-transform: translateY(0%);}
}
@-o-keyframes start{
0% {-o-transform: translateY(-100%);}
100% {-o-transform: translateY(0%);}
}
@keyframes start{
0% {transform: translateY(-100%);}
100% {transform: translateY(0%);}
}
@-webkit-keyframes start-li{
0% {-webkit-transform: translateX(-200%);}
100% {-webkit-transform: translateX(0%);}
}
@-moz-keyframes start-li{
0% {-moz-transform: translateX(-200%);}
100% {-moz-transform: translateX(0%);}
}
@-mos-keyframes start-li{
0% {-mos-transform: translateX(-200%);}
100% {-mos-transform: translateX(0%);}
}
@-o-keyframes start-li{
0% {-o-transform: translateX(-200%);}
100% {-o-transform: translateX(0%);}
}
@keyframes start-li{
0% {transform: translateX(-200%);}
100% {transform: translateX(0%);}
}
.wrapper-colorful-bg ul li{
color:#eee;
text-align: center;
overflow:hidden;
}
/* mobile */
@media screen and (max-width:1100px){
.wrapper-colorful-bg {width: 100%;}
.wrapper-colorful-bg ul {
position: relative;
width:50%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
}
@media screen and (max-width:560px){
.wrapper-colorful-bg {width: 100%;}
.wrapper-colorful-bg ul {
position: relative;
width:100%;
min-width: 15.25em;
list-style: none;
float: left;
font-family: Open Sans;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
}
.wrapper-colorful-bg .basic{
position: relative;
background: rgba(0, 92, 90, 0.75);
}
.wrapper-colorful-bg .premium{
position: relative;
background: rgba(25, 156, 123, 0.75);
}
.wrapper-colorful-bg .plus{
position: relative;
background: rgba(243, 113, 0, 0.75);
}
.wrapper-colorful-bg .business{
position: relative;
background: rgba(237, 77, 19, 0.75);
}
.wrapper-colorful-bg ul .icon{
position: relative;
height:10em;
width: 10em;
background:rgba(255, 255, 255, 0.15);
margin:1em auto;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
z-index:2;
color:rgba(255, 255, 255, 0.5);
}
.wrapper-colorful-bg .basic .icon:before{
position: absolute;
top: .8em;
bottom: 0;
left: -0.15em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful-bg .premium .icon:before{
position: absolute;
top: .9em;
bottom: 0;
left: 0.05em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful-bg .plus .icon:before{
position: absolute;
top: .75em;
bottom: 0;
left: 0em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful-bg .business .icon:before{
position: absolute;
top: .75em;
bottom: 0;
left: -0.1em;
right: 0;
margin: auto;
content:'\f087';
font-family: FontAwesome;
font-size: 4em;
}
.wrapper-colorful-bg .basic:hover .icon:before{
color: #005C5A;
}
.wrapper-colorful-bg .premium:hover .icon:before{
color: #199C7B;
}
.wrapper-colorful-bg .plus:hover .icon:before{
color: #F37100;
}
.wrapper-colorful-bg .business:hover .icon:before{
color: #ED4D13;
}
.wrapper-colorful-bg ul .icon:after{
position: absolute;
content: '';
top:0;
left:0;
width: 100%;
height: 100%;
background: rgba(242, 242, 242, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
-webkit-transform: scale(0,0);
-moz-transform: scale(0,0);
-mos-transform: scale(0,0);
-o-transform: scale(0,0);
transform: scale(0,0);
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
z-index:-1;
}
.wrapper-colorful-bg ul:hover .icon:after{
-webkit-transform: scale(1,1);
-moz-transform: scale(1,1);
-mos-transform: scale(1,1);
-o-transform: scale(1,1);
transform: scale(1,1);
}
.wrapper-colorful-bg ul .name{
height:2em;
line-height: 2em;
-webkit-transition: all 0.25s ease 0.15s;
-moz-transition: all 0.25s ease 0.15s;
-mos-transition: all 0.25s ease 0.15s;
-o-transition: all 0.25s ease 0.15s;
transition: all 0.25s ease 0.15s;
}
.wrapper-colorful-bg ul:hover .name{
-webkit-box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
-moz-box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
box-shadow: inset 0px -2em 0px 0px rgba(239, 239, 239, 0.25);
}
.wrapper-colorful-bg ul .name h1{
text-transform: uppercase;
font-weight: 300;
font-size: 2em;
color: rgba(255, 255, 255, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul:hover .name h1{
color: rgba(255, 255, 255, 1);
}
.wrapper-colorful-bg ul .price-col{
height:1.5em;
line-height: 1.25em;
font-size: 4em;
font-family: 'exo_2.0extra_light';
color: rgba(255, 255, 255, 0.75);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul .price-col .cost{
position: relative;
width: 100%;
height:100%;
-webkit-box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px -0em 0px 0px rgba(239, 239, 239, 1);
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul:hover .price-col .cost{
position: relative;
-webkit-box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
-moz-box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
box-shadow: inset 0px -1.5em 0px 0px rgba(239, 239, 239, 0.75);
}
.wrapper-colorful-bg .basic:hover .price-col .cost{
color: #005C5A;
}
.wrapper-colorful-bg .premium:hover .price-col .cost{
color: #199C7B;
}
.wrapper-colorful-bg .plus:hover .price-col .cost{
color: #F37100;
}
.wrapper-colorful-bg .business:hover .price-col .cost{
color: #ED4D13;
}
.wrapper-colorful-bg ul .price-col .cost .valuta{
position:relative;
font-size: 0.5em;
font-weight: 400;
display: inline-table;
vertical-align: super;
}
.wrapper-colorful-bg ul .price-col .cost .mounthly{
position:relative;
font-size: 0.5em;
font-weight: 300;
display: inline-table;
text-transform: uppercase
}
.wrapper-colorful-bg ul .description-range{
height:2em;
line-height: 2em;
}
.wrapper-colorful-bg ul .description-range:after{
position: absolute;
content: '';
width: 0%;
height:32px;
background: rgba(255, 255, 255, 0.15);
left:0%;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul .description-range:hover:after{
width: 100%;
}
.wrapper-colorful-bg .description-range:before{
position:absolute;
font-family: FontAwesome;
font-weight: normal;
width:2em;
font-size: 1em;
left: -1.5em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg .description-range:hover:before{
left: 1em;
}
.wrapper-colorful-bg .description-range:nth-child(3):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:nth-child(4):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:nth-child(5):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:nth-child(6):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:nth-child(7):before {
content:'\f006';
}
.wrapper-colorful-bg .description-range:nth-child(8):before {
content:'\f006';
}
.wrapper-colorful-bg .description-range:nth-child(9):before {
content: '\f006';
}
.wrapper-colorful-bg .description-range:before {
content: '\f006';
}
.wrapper-colorful-bg ul .purchase{
height: 3em;
line-height: 3em;
}
.wrapper-colorful-bg ul .purchase a{
position: relative;
padding:0.5em;
border:4px solid rgba(239, 239, 239, 0.5);;
color: #fff;
text-decoration: none;
z-index: 1;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-mos-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
.wrapper-colorful-bg .basic .purchase a{
color:#fff;
background:#005C5A;
-webkit-box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px 0px 0px 0px rgba(239, 239, 239, 1);
}
.wrapper-colorful-bg .premium .purchase a{
color:#fff;
background:#199C7B;
}
.wrapper-colorful-bg .plus .purchase a{
color:#fff;
background:#F37100;
}
.wrapper-colorful-bg .business .purchase a{
color:#fff;
background:#ED4D13;
}
.wrapper-colorful-bg ul .purchase a:hover{
color:#005C5A;
-webkit-box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
-moz-box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
box-shadow: inset 0px -40px 0px 0px rgba(239, 239, 239, 1);
}
.wrapper-colorful-bg .premium .purchase a:hover{
color:#199C7B;
}
.wrapper-colorful-bg .plus .purchase a:hover{
color:#F37100;
}
.wrapper-colorful-bg .business .purchase a:hover{
color:#ED4D13;
}
.wrapper-colorful-bg ul .purchase:before{
position: absolute;
content: '';
background: rgba(239, 239, 239, 0.5);;
width: 50%;
height:1em;
bottom:1em;
left:25%;
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-mos-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.wrapper-colorful-bg ul:hover .purchase:before{
position: absolute;
content: '';
width: 90%;
height:1em;
left:5%;
}
| 0.278649 | 0.078184 |
@import 'tachyons';
/* http://www.developerdrive.com/2017/09/using-postcss-with-images/ */
/* custom properties */
:root {
--font-mono: 'Fira Mono';
--font-sans: 'Source Sans Pro';
--font-serif: 'PT Serif';
}
@custom-selector :--heading h1, h2, h3, h4, h5, h6;
:--heading,
.override-sans-serif {
font-family: var(--font-sans), -apple-system, BlinkMacSystemFont, avenir next,
avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial,
sans-serif;
}
p,
.override-serif {
font-family: var(--font-serif), serif, georgia, times, serif;
}
code,
.override-code {
font-family: var(--font-mono);
}
body {
margin: 0;
}
pre {
tab-size: 4;
}
.js-modal {
position: fixed;
top: 0;
left: 0;
overflow-y: auto;
}
.js-modal-content {
font-family: var(--font-mono);
width: 720px;
max-width: 90%;
margin: 50px auto;
overflow-y: auto;
}
/* uncss:ignore */
.hide {
opacity: 0;
visibility: hidden;
overflow: hidden;
}
/* uncss:ignore */
.noscroll {
overflow: hidden;
}
/* uncss:ignore */
.blur {
filter: blur(3px) grayscale(1);
}
.filter-animate,
.filter-animate:hover,
.filter-animate:focus {
transition: filter 0.15s ease-in-out;
}
.all-animate,
.all-animate:hover,
.all-animate:focus {
transition: all 0.15s ease-in-out;
}
.hover-b--gray:hover {
border-color: var(--gray, gray);
}
input {
width: 0;
color: transparent;
}
input:focus {
width: 100%;
padding-left: 0.5rem;
cursor: auto;
color: gray;
}
.sticky {
position: sticky;
}
.html code:before {
content: 'HTML';
}
.css code:before {
content: 'CSS';
}
.html code:before,
.css code:before {
float: right;
color: rgba(0, 0, 0, 0.1);
text-align: center;
font-size: 0.75em;
margin-top: -25px;
margin-right: -20px;
font-weight: 700;
}
@media only print {
a:before,
abbr:before {
font-weight: 700;
}
a[href],
abbr[title] {
text-decoration: none;
}
a:after {
content: ' (' attr(href) ') ';
font-weight: lighter;
font-family: 'Fira Mono';
font-size: x-small;
}
abbr:after {
content: ' (' attr(title) ') ';
font-weight: lighter;
font-family: 'Fira Mono';
font-size: x-small;
}
pre {
overflow-x: visible;
white-space: pre-wrap;
}
article aside button,
.js-intro-bttn,
#authorCard,
#banner,
header,
footer,
aside,
form {
display: none;
}
article {
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
}
|
src/css/styles.css
|
@import 'tachyons';
/* http://www.developerdrive.com/2017/09/using-postcss-with-images/ */
/* custom properties */
:root {
--font-mono: 'Fira Mono';
--font-sans: 'Source Sans Pro';
--font-serif: 'PT Serif';
}
@custom-selector :--heading h1, h2, h3, h4, h5, h6;
:--heading,
.override-sans-serif {
font-family: var(--font-sans), -apple-system, BlinkMacSystemFont, avenir next,
avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial,
sans-serif;
}
p,
.override-serif {
font-family: var(--font-serif), serif, georgia, times, serif;
}
code,
.override-code {
font-family: var(--font-mono);
}
body {
margin: 0;
}
pre {
tab-size: 4;
}
.js-modal {
position: fixed;
top: 0;
left: 0;
overflow-y: auto;
}
.js-modal-content {
font-family: var(--font-mono);
width: 720px;
max-width: 90%;
margin: 50px auto;
overflow-y: auto;
}
/* uncss:ignore */
.hide {
opacity: 0;
visibility: hidden;
overflow: hidden;
}
/* uncss:ignore */
.noscroll {
overflow: hidden;
}
/* uncss:ignore */
.blur {
filter: blur(3px) grayscale(1);
}
.filter-animate,
.filter-animate:hover,
.filter-animate:focus {
transition: filter 0.15s ease-in-out;
}
.all-animate,
.all-animate:hover,
.all-animate:focus {
transition: all 0.15s ease-in-out;
}
.hover-b--gray:hover {
border-color: var(--gray, gray);
}
input {
width: 0;
color: transparent;
}
input:focus {
width: 100%;
padding-left: 0.5rem;
cursor: auto;
color: gray;
}
.sticky {
position: sticky;
}
.html code:before {
content: 'HTML';
}
.css code:before {
content: 'CSS';
}
.html code:before,
.css code:before {
float: right;
color: rgba(0, 0, 0, 0.1);
text-align: center;
font-size: 0.75em;
margin-top: -25px;
margin-right: -20px;
font-weight: 700;
}
@media only print {
a:before,
abbr:before {
font-weight: 700;
}
a[href],
abbr[title] {
text-decoration: none;
}
a:after {
content: ' (' attr(href) ') ';
font-weight: lighter;
font-family: 'Fira Mono';
font-size: x-small;
}
abbr:after {
content: ' (' attr(title) ') ';
font-weight: lighter;
font-family: 'Fira Mono';
font-size: x-small;
}
pre {
overflow-x: visible;
white-space: pre-wrap;
}
article aside button,
.js-intro-bttn,
#authorCard,
#banner,
header,
footer,
aside,
form {
display: none;
}
article {
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
}
| 0.387806 | 0.089058 |
:root {
/* Color */
--color-white: #ffffff;
--color-light-white: #eeeeee;
--color-dark-white: #bdbdbd;
--color-pink: #fe918d;
--color-dark-pink: #ff6863;
--color-dark-grey: #4d4d4d;
--color-grey: #616161;
--color-light-grey: #7c7979;
--color-blue: #73aace;
--color-light-blue: #a7b4c2;
--color-orange: #feb546;
--color-black: #000000;
--color-light-pink: #ffc594;
/* Font size */
--font-large: 3rem;
--font-medium: 1.8rem;
--font-regular: 1.2rem;
--font-small: 1rem;
--font-micro: 0.8rem;
/* Font weight */
--weight-bold: 700;
--weight-semi-bold: 600;
--weight-regular: 400;
/* Size */
--size-border-radius: 0.3rem;
/* Animation */
--animation-duration: 300ms;
}
/* Universal selector */
* {
box-sizing: border-box;
}
/* -----CSS--------- */
body {
margin: 0;
font-family: 'Open Sans', sans-serif;
cursor: default;
}
a {
text-decoration: none;
color: var(--color-white);
}
ul {
list-style: none;
padding-left: 0;
}
button {
background-color: transparent;
cursor: pointer;
border: none;
outline: none;
}
h1 {
font-size: var(--font-large);
font-weight: var(--weight-bold);
color: var(--color-black);
margin: 1rem 0;
}
h2 {
font-size: var(--font-medium);
font-weight: var(--weight-semi-bold);
color: var(--color-black);
margin: 0.5rem 0;
}
h3 {
font-size: var(--font-regular);
font-weight: var(--weight-regular);
color: var(--color-black);
margin: 0.5rem 0;
}
p {
font-size: var(--font-regular);
font-weight: var(--weight-regular);
color: var(--color-black);
margin: 0.25rem 0;
}
/* Navbar */
header {
background: center/cover no-repeat url(./images/bg.png);
}
#navbar {
display: flex;
justify-content: space-between;
align-items: center;
color: var(--color-white);
position: fixed;
top: 0;
width: 100%;
transition: all var(--animation-duration) ease-in;
z-index: 1;
}
.navbar--visible {
background-color: var(--color-light-blue);
opacity: 0.97;
}
.navbar__logo {
display: flex;
align-items: center;
font-size: var(--font-medium);
}
.navbar__profile__name {
color: var(--color-white);
}
.logo__img {
width: 1em;
border-radius: var(--size-border-radius);
margin: 0 0.3rem;
}
.navbar__bars {
font-size: 2rem;
color: var(--color-white);
position: fixed;
right: 0.5rem;
display: none;
}
.navbar__menu {
display: flex;
}
.navbar__menu__item {
padding: 0.5rem 0.25rem;
margin: 0 0.5rem;
cursor: pointer;
border: 1px solid transparent;
border-radius: var(--size-border-radius);
}
.navbar__menu__item:hover {
color: var(--color-dark-pink);
border-color: var(--color-white);
}
.navbar__menu__item--active {
border: 1px solid var(--color-white);
color: var(--color-dark-pink);
}
/* Home */
#home {
text-align: center;
padding: 2.5em;
padding-top: 8rem;
margin: auto;
max-width: 60rem;
transition: opacity var(--animation-duration) ease-in;
}
.home--opacity {
opacity: 0.2;
}
.home__profile {
width: 15rem;
height: 15rem;
border-radius: 50%;
border: 1px solid var(--color-light-white);
}
.home__title,
.home__description {
color: var(--color-light-white);
}
.home__contact {
font-size: var(--font-regular);
font-weight: var(--weight-bold);
margin: 1.5em;
padding: 0.5em 0.75em;
border: 2px solid var(--color-white);
color: var(--color-white);
border-radius: var(--size-border-radius);
}
.home__contact:hover {
color: var(--color-dark-pink);
}
/* Sections */
.section {
text-align: center;
padding: 3rem;
margin: auto;
}
.section--container {
max-width: 60rem;
margin: auto;
}
/* About */
.about__stacks {
display: flex;
justify-content: space-around;
margin: 5em 0;
}
.stack__icon {
width: 10rem;
height: 10rem;
font-size: 5rem;
line-height: 10rem;
margin: auto;
color: var(--color-blue);
border: 1px solid var(--color-blue);
border-radius: 50%;
margin-bottom: 1rem;
}
.stack__icon i {
transition: transform var(--animation-duration) ease-in;
}
.stack__icon:hover i {
color: var(--color-dark-pink);
transform: scale(1.2);
}
.stack__title,
.stack__description {
color: var(--color-dark-grey);
}
.stack__description {
font-size: var(--font-small);
}
.school {
display: flex;
align-items: center;
justify-content: center;
margin: auto;
}
.school__logo {
width: 4rem;
height: 3rem;
}
.school__description {
margin: 0 1rem;
text-align: left;
}
.school__name,
.school__period {
color: var(--color-dark-grey);
}
.school__name {
font-size: var(--font-small);
}
.school__period {
font-size: var(--font-micro);
}
/* Skill */
#skills {
background-color: var(--color-light-blue);
}
.skillset {
display: flex;
background-color: var(--color-light-grey);
color: var(--color-light-white);
margin: 1.5rem 0;
}
.skillset__title {
color: var(--color-light-white);
}
.skill {
margin-bottom: 1em;
}
.skillset__left {
flex-basis: 60%;
background-color: var(--color-dark-grey);
padding: 1em 2.5em;
}
.skill__bar {
width: 100%;
height: 3px;
background-color: var(--color-grey);
}
.skill__value {
width: 50%;
height: 3px;
background-color: var(--color-orange);
}
.skillset__right {
flex-basis: 40%;
}
.tools {
background-color: var(--color-grey);
margin: 0;
}
.skill__description {
display: flex;
justify-content: space-between;
}
.tools,
.etc {
padding: 1.5em;
}
/* Projects */
.category__btn {
border: 1px solid var(--color-dark-white);
border-radius: var(--size-border-radius);
font-size: var(--font-regular);
padding: 0.5rem 3rem;
}
.category__btn.active,
.category__btn:hover {
background-color: var(--color-dark-pink);
color: var(--color-white);
}
.category__count {
display: inline-block;
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
background-color: var(--color-orange);
color: var(--color-white);
border: 1px solid;
line-height: 1.5rem;
}
.projects {
display: flex;
flex-wrap: wrap;
justify-content: center;
opacity: 1;
transition: all var(--animation-duration) ease-out;
}
.projects.animation-delay {
opacity: 0;
transform: translateY(2rem);
}
.project {
width: 15rem;
height: 13rem;
margin: 0.5em;
background-color: var(--color-light-white);
position: relative;
justify-content: center;
align-items: center;
display: flex;
}
.project--visibility {
display: none;
}
.project__img {
max-width: 100%;
max-height: 100%;
}
.project__description {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-black);
display: flex;
flex-direction: column;
justify-content: center;
opacity: 0;
transition: opacity var(--animation-duration) ease-in,
transform var(--animation-duration) ease-in;
transform: translateY(0.5rem);
}
.project__description:hover {
opacity: 0.8;
transform: translateY(0);
}
.project__description h3 {
color: var(--color-orange);
}
.project__description h3::after {
content: '';
display: block;
width: 50%;
height: 2px;
background-color: var(--color-white);
margin: auto;
margin-top: 0.3em;
}
.project__links {
color: var(--color-blue);
}
/* demo */
#demo {
background-color: var(--color-light-blue);
padding: 4.5em 4.5em;
position: relative;
}
.demo__title {
text-align: center;
margin-bottom: 2rem;
}
.demo__videos {
display: flex;
justify-content: center;
}
.demo__video__list {
margin: 0.5rem;
flex: 1 1 33%;
position: relative;
}
.demo__video__img {
border-radius: var(--size-border-radius);
width: 100%;
height: 100%;
transition: all var(--animation-duration) ease-in;
}
.demo__video__title {
position: absolute;
opacity: 0;
left: 0;
top: 0;
width: 100%;
height: 100%;
left: 1px;
color: var(--color-white);
border-radius: var(--size-border-radius);
cursor: pointer;
padding: 0.2rem 0.5rem;
transition: all var(--animation-duration) linear;
}
.demo__video__title:hover {
opacity: 0.7;
background-color: var(--color-black);
}
.demo__video__modal {
display: none;
position: fixed;
padding-top: 10rem;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.85);
left: 0;
top: 0;
transition: all var(--animation-duration) linear;
animation: fadeIn 1s;
z-index: 1;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.demo__video__style {
display: flex;
flex-direction: column;
align-items: center;
}
.close {
color: rgb(182, 184, 181);
font-size: 3.5rem;
align-self: right;
width: 720px;
margin: auto;
text-align: right;
line-height: 0.8;
}
.demo__video__close:hover,
.demo__video__close:focus {
color: var(--color-white);
text-decoration: none;
cursor: pointer;
}
/* Contact */
#contact {
background-color: var(--color-light-pink);
}
.contact__title,
.contact__email {
color: var(--color-white);
}
.contact__title {
margin: 2rem 0;
}
.contact__links {
font-size: 5rem;
}
.contact__links i {
transition: transform, color var(--animation-duration) ease-in,
transform var(--animation-duration) ease-in;
}
.contact__links i:hover {
color: var(--color-light-blue);
transform: scale(1.2);
}
/* move up */
.up-arrow {
position: fixed;
bottom: 3rem;
right: 3rem;
font-size: 2.5rem;
opacity: 0;
pointer-events: none;
transition: opacity var(--animation-duration) ease-in;
}
.up-arrow--visible {
display: block;
opacity: 1;
cursor: pointer;
pointer-events: auto;
}
.up-arrow i {
background-color: var(--color-dark-pink);
color: var(--color-white);
border-radius: 50%;
padding: 0.5rem;
}
/* media */
@media screen and (max-width: 769px) {
#navbar {
flex-direction: column;
padding: 0.5em 0.2em;
}
.navbar-bg {
background-color: var(--color-light-blue);
}
.navbar__logo {
align-self: start;
}
.navbar__bars {
display: block;
}
.navbar__menu {
flex-direction: column;
display: none;
width: 100%;
}
.nabar__menu--visible {
display: block;
}
.navbar__menu__item {
width: 90%;
text-align: center;
}
.section {
padding: 1em;
padding-top: 3.5em;
}
.about__stacks {
flex-direction: column;
margin-top: 2re;
margin-bottom: 1em;
}
.stack {
margin-bottom: 1.5rem;
}
.skillset {
flex-direction: column;
}
.project {
flex-grow: 1;
}
.project__category {
display: flex;
flex-direction: column;
}
.demo__videos {
flex-direction: column;
}
.up-arrow {
font-size: 2rem;
}
}
|
stlyes.css
|
:root {
/* Color */
--color-white: #ffffff;
--color-light-white: #eeeeee;
--color-dark-white: #bdbdbd;
--color-pink: #fe918d;
--color-dark-pink: #ff6863;
--color-dark-grey: #4d4d4d;
--color-grey: #616161;
--color-light-grey: #7c7979;
--color-blue: #73aace;
--color-light-blue: #a7b4c2;
--color-orange: #feb546;
--color-black: #000000;
--color-light-pink: #ffc594;
/* Font size */
--font-large: 3rem;
--font-medium: 1.8rem;
--font-regular: 1.2rem;
--font-small: 1rem;
--font-micro: 0.8rem;
/* Font weight */
--weight-bold: 700;
--weight-semi-bold: 600;
--weight-regular: 400;
/* Size */
--size-border-radius: 0.3rem;
/* Animation */
--animation-duration: 300ms;
}
/* Universal selector */
* {
box-sizing: border-box;
}
/* -----CSS--------- */
body {
margin: 0;
font-family: 'Open Sans', sans-serif;
cursor: default;
}
a {
text-decoration: none;
color: var(--color-white);
}
ul {
list-style: none;
padding-left: 0;
}
button {
background-color: transparent;
cursor: pointer;
border: none;
outline: none;
}
h1 {
font-size: var(--font-large);
font-weight: var(--weight-bold);
color: var(--color-black);
margin: 1rem 0;
}
h2 {
font-size: var(--font-medium);
font-weight: var(--weight-semi-bold);
color: var(--color-black);
margin: 0.5rem 0;
}
h3 {
font-size: var(--font-regular);
font-weight: var(--weight-regular);
color: var(--color-black);
margin: 0.5rem 0;
}
p {
font-size: var(--font-regular);
font-weight: var(--weight-regular);
color: var(--color-black);
margin: 0.25rem 0;
}
/* Navbar */
header {
background: center/cover no-repeat url(./images/bg.png);
}
#navbar {
display: flex;
justify-content: space-between;
align-items: center;
color: var(--color-white);
position: fixed;
top: 0;
width: 100%;
transition: all var(--animation-duration) ease-in;
z-index: 1;
}
.navbar--visible {
background-color: var(--color-light-blue);
opacity: 0.97;
}
.navbar__logo {
display: flex;
align-items: center;
font-size: var(--font-medium);
}
.navbar__profile__name {
color: var(--color-white);
}
.logo__img {
width: 1em;
border-radius: var(--size-border-radius);
margin: 0 0.3rem;
}
.navbar__bars {
font-size: 2rem;
color: var(--color-white);
position: fixed;
right: 0.5rem;
display: none;
}
.navbar__menu {
display: flex;
}
.navbar__menu__item {
padding: 0.5rem 0.25rem;
margin: 0 0.5rem;
cursor: pointer;
border: 1px solid transparent;
border-radius: var(--size-border-radius);
}
.navbar__menu__item:hover {
color: var(--color-dark-pink);
border-color: var(--color-white);
}
.navbar__menu__item--active {
border: 1px solid var(--color-white);
color: var(--color-dark-pink);
}
/* Home */
#home {
text-align: center;
padding: 2.5em;
padding-top: 8rem;
margin: auto;
max-width: 60rem;
transition: opacity var(--animation-duration) ease-in;
}
.home--opacity {
opacity: 0.2;
}
.home__profile {
width: 15rem;
height: 15rem;
border-radius: 50%;
border: 1px solid var(--color-light-white);
}
.home__title,
.home__description {
color: var(--color-light-white);
}
.home__contact {
font-size: var(--font-regular);
font-weight: var(--weight-bold);
margin: 1.5em;
padding: 0.5em 0.75em;
border: 2px solid var(--color-white);
color: var(--color-white);
border-radius: var(--size-border-radius);
}
.home__contact:hover {
color: var(--color-dark-pink);
}
/* Sections */
.section {
text-align: center;
padding: 3rem;
margin: auto;
}
.section--container {
max-width: 60rem;
margin: auto;
}
/* About */
.about__stacks {
display: flex;
justify-content: space-around;
margin: 5em 0;
}
.stack__icon {
width: 10rem;
height: 10rem;
font-size: 5rem;
line-height: 10rem;
margin: auto;
color: var(--color-blue);
border: 1px solid var(--color-blue);
border-radius: 50%;
margin-bottom: 1rem;
}
.stack__icon i {
transition: transform var(--animation-duration) ease-in;
}
.stack__icon:hover i {
color: var(--color-dark-pink);
transform: scale(1.2);
}
.stack__title,
.stack__description {
color: var(--color-dark-grey);
}
.stack__description {
font-size: var(--font-small);
}
.school {
display: flex;
align-items: center;
justify-content: center;
margin: auto;
}
.school__logo {
width: 4rem;
height: 3rem;
}
.school__description {
margin: 0 1rem;
text-align: left;
}
.school__name,
.school__period {
color: var(--color-dark-grey);
}
.school__name {
font-size: var(--font-small);
}
.school__period {
font-size: var(--font-micro);
}
/* Skill */
#skills {
background-color: var(--color-light-blue);
}
.skillset {
display: flex;
background-color: var(--color-light-grey);
color: var(--color-light-white);
margin: 1.5rem 0;
}
.skillset__title {
color: var(--color-light-white);
}
.skill {
margin-bottom: 1em;
}
.skillset__left {
flex-basis: 60%;
background-color: var(--color-dark-grey);
padding: 1em 2.5em;
}
.skill__bar {
width: 100%;
height: 3px;
background-color: var(--color-grey);
}
.skill__value {
width: 50%;
height: 3px;
background-color: var(--color-orange);
}
.skillset__right {
flex-basis: 40%;
}
.tools {
background-color: var(--color-grey);
margin: 0;
}
.skill__description {
display: flex;
justify-content: space-between;
}
.tools,
.etc {
padding: 1.5em;
}
/* Projects */
.category__btn {
border: 1px solid var(--color-dark-white);
border-radius: var(--size-border-radius);
font-size: var(--font-regular);
padding: 0.5rem 3rem;
}
.category__btn.active,
.category__btn:hover {
background-color: var(--color-dark-pink);
color: var(--color-white);
}
.category__count {
display: inline-block;
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
background-color: var(--color-orange);
color: var(--color-white);
border: 1px solid;
line-height: 1.5rem;
}
.projects {
display: flex;
flex-wrap: wrap;
justify-content: center;
opacity: 1;
transition: all var(--animation-duration) ease-out;
}
.projects.animation-delay {
opacity: 0;
transform: translateY(2rem);
}
.project {
width: 15rem;
height: 13rem;
margin: 0.5em;
background-color: var(--color-light-white);
position: relative;
justify-content: center;
align-items: center;
display: flex;
}
.project--visibility {
display: none;
}
.project__img {
max-width: 100%;
max-height: 100%;
}
.project__description {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-black);
display: flex;
flex-direction: column;
justify-content: center;
opacity: 0;
transition: opacity var(--animation-duration) ease-in,
transform var(--animation-duration) ease-in;
transform: translateY(0.5rem);
}
.project__description:hover {
opacity: 0.8;
transform: translateY(0);
}
.project__description h3 {
color: var(--color-orange);
}
.project__description h3::after {
content: '';
display: block;
width: 50%;
height: 2px;
background-color: var(--color-white);
margin: auto;
margin-top: 0.3em;
}
.project__links {
color: var(--color-blue);
}
/* demo */
#demo {
background-color: var(--color-light-blue);
padding: 4.5em 4.5em;
position: relative;
}
.demo__title {
text-align: center;
margin-bottom: 2rem;
}
.demo__videos {
display: flex;
justify-content: center;
}
.demo__video__list {
margin: 0.5rem;
flex: 1 1 33%;
position: relative;
}
.demo__video__img {
border-radius: var(--size-border-radius);
width: 100%;
height: 100%;
transition: all var(--animation-duration) ease-in;
}
.demo__video__title {
position: absolute;
opacity: 0;
left: 0;
top: 0;
width: 100%;
height: 100%;
left: 1px;
color: var(--color-white);
border-radius: var(--size-border-radius);
cursor: pointer;
padding: 0.2rem 0.5rem;
transition: all var(--animation-duration) linear;
}
.demo__video__title:hover {
opacity: 0.7;
background-color: var(--color-black);
}
.demo__video__modal {
display: none;
position: fixed;
padding-top: 10rem;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.85);
left: 0;
top: 0;
transition: all var(--animation-duration) linear;
animation: fadeIn 1s;
z-index: 1;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.demo__video__style {
display: flex;
flex-direction: column;
align-items: center;
}
.close {
color: rgb(182, 184, 181);
font-size: 3.5rem;
align-self: right;
width: 720px;
margin: auto;
text-align: right;
line-height: 0.8;
}
.demo__video__close:hover,
.demo__video__close:focus {
color: var(--color-white);
text-decoration: none;
cursor: pointer;
}
/* Contact */
#contact {
background-color: var(--color-light-pink);
}
.contact__title,
.contact__email {
color: var(--color-white);
}
.contact__title {
margin: 2rem 0;
}
.contact__links {
font-size: 5rem;
}
.contact__links i {
transition: transform, color var(--animation-duration) ease-in,
transform var(--animation-duration) ease-in;
}
.contact__links i:hover {
color: var(--color-light-blue);
transform: scale(1.2);
}
/* move up */
.up-arrow {
position: fixed;
bottom: 3rem;
right: 3rem;
font-size: 2.5rem;
opacity: 0;
pointer-events: none;
transition: opacity var(--animation-duration) ease-in;
}
.up-arrow--visible {
display: block;
opacity: 1;
cursor: pointer;
pointer-events: auto;
}
.up-arrow i {
background-color: var(--color-dark-pink);
color: var(--color-white);
border-radius: 50%;
padding: 0.5rem;
}
/* media */
@media screen and (max-width: 769px) {
#navbar {
flex-direction: column;
padding: 0.5em 0.2em;
}
.navbar-bg {
background-color: var(--color-light-blue);
}
.navbar__logo {
align-self: start;
}
.navbar__bars {
display: block;
}
.navbar__menu {
flex-direction: column;
display: none;
width: 100%;
}
.nabar__menu--visible {
display: block;
}
.navbar__menu__item {
width: 90%;
text-align: center;
}
.section {
padding: 1em;
padding-top: 3.5em;
}
.about__stacks {
flex-direction: column;
margin-top: 2re;
margin-bottom: 1em;
}
.stack {
margin-bottom: 1.5rem;
}
.skillset {
flex-direction: column;
}
.project {
flex-grow: 1;
}
.project__category {
display: flex;
flex-direction: column;
}
.demo__videos {
flex-direction: column;
}
.up-arrow {
font-size: 2rem;
}
}
| 0.423696 | 0.085786 |
* {
margin: 0;
}
html {
height: 100%;
}
body {
width: 80%;
min-width: 900px;
background-image: url("../img/bg/bg-y.jpg");
background-repeat: repeat;
margin: 15px auto;
font-family: Arial, "MS Trebuchet", sans-serif;
height: 100%;
overflow: auto;
}
p {
margin: 0 0 10px 0;
color: #000;
}
p, li{
line-height: 20px;
}
.clear {
clear : both;
}
a {
text-decoration: none;
font-size: 100%;
font-style: normal;
vertical-align: baseline;
outline: 0;
}
/*-- шапка сайта --*/
header#page_header{
width: 100%;
height: 150px;
background-image: url("../img/bg/bg-net.png");
background-repeat: no-repeat;
background-size: 100% 100%;
margin-bottom: 15px;
position: relative ;
}
header h1{
text-align: justify;
padding-top: 40px;
color: #00f;
font-style: italic;
font-size: 300%;
}
#img_logo {
float: left;
margin-left: 50px;
padding: 2px;
}
/*-- навигация в шапке страницы--*/
nav#header_navigacija{
margin-left: 50px;
position: absolute;
bottom: 0px;
right: 50px;
}
header#page_header nav ul{
list-style: none;
margin: 0;
padding: 0;
}
#page_header nav ul li{
padding: 0;
margin: 0 20px 0 0;
display: inline;
}
#page_header nav ul li a {
font-family: Tahoma, Geneva, sans-serif;
text-decoration: none;
background: #5c6cb7;
font-weight: bold;
color: #ffaa00;
padding: 6px 10px 6px 10px;
}
#page_header nav ul li a:hover {
padding: 6px 10px 6px 10px;
font-weight: bold;
background: #364d95;
color: #ff9900;
}
#page_header nav ul li a:sected{
background: #364e95;
}
/*-- левая колонка с контентом-*/
section#content{
position: relative;
float:left;
width: 80%;
margin-top: 15px;
margin-bottom: 15px;
}
article.news {
border : 1px solid #DEDEDE;
background-color: #fff;
margin-bottom : 15px;
box-shadow: 10px 10px 5px rgba(122,122,122,0.5);
}
h1.new-header {
color: #767676;
padding: 10px;
font: 26px/118% normal Verdana,Tahoma,sans-serif;
text-align: justify;
}
a.hew-title-list {
color: #666;
}
a.hew-title-list:visited {
color: #b5b5b5;
}
a.hew-title-list:hover {
color:#a3a3a3;
text-decoration: underline;
}
p.published {
color: #7e7e7e;
padding-left: 10px;
font-size: 11px;
}
p.content {
font-size: 16px;
line-height: 160%;
font-family: Verdana,sans-serif;
text-align: justify;
padding-right: 10px;
padding-left: 10px;
}
.img_left {
float:left;
margin:0 10px 10px 0;
padding-left: 10px;
}
article.news a.button {
background-color: #6ec2e8;
font-size: 12px;
background-color: #eee !important;
color: #282828 !important;
border-radius: 6px;
border: 1px solid #d9d8d8;
font-family: arial,sans-serif;
font-weight: normal;
padding: 5px 20px 5px 20px;
float: right;
margin-right: 10px;
}
footer.new-list {
display: inline-block;
vertical-align: middle;
font-family: Arial,sans-serif;
font-size: 11px;
padding: 0 10px;
}
footer .views {
background: url("../img/logo/eye.png") no-repeat 0px 6px;
padding-left: 20px;
float: left;
font-size: 9px;
margin-right: 20px;
line-height: 28px;
}
/*-- табличка в посте -*/
table#from-post {
width: 90%;
margin: 10px auto;
border: 2px solid #555;
border-collapse: collapse;
table-layout: fixed;
}
table#from-post td {
border: 1px solid #555;
padding: 5px;
text-align: center;
overflow: auto;
}
table#from-post th {
border: 2px solid #555;
padding: 5px;
text-align: center;
}
/*-- правая колонка рядом с контентом --*/
section#sidebar{
position: relative;
float:right;
width: 19%;
margin-top: 15px;
margin-bottom: 15px;
}
section#sidebar img {
margin: 10px;
}
nav#sidebar_navigacija{
background-color: #0c0;
width: 100%;
}/*-- подвальчик -*/
footer#page_footer{
background-color: #fff;
clear: both;
width: 100%;
box-shadow: 10px 10px 5px rgba(122,122,122,0.5);
display: block;
text-align: center;
}
|
public/css/styles.css
|
* {
margin: 0;
}
html {
height: 100%;
}
body {
width: 80%;
min-width: 900px;
background-image: url("../img/bg/bg-y.jpg");
background-repeat: repeat;
margin: 15px auto;
font-family: Arial, "MS Trebuchet", sans-serif;
height: 100%;
overflow: auto;
}
p {
margin: 0 0 10px 0;
color: #000;
}
p, li{
line-height: 20px;
}
.clear {
clear : both;
}
a {
text-decoration: none;
font-size: 100%;
font-style: normal;
vertical-align: baseline;
outline: 0;
}
/*-- шапка сайта --*/
header#page_header{
width: 100%;
height: 150px;
background-image: url("../img/bg/bg-net.png");
background-repeat: no-repeat;
background-size: 100% 100%;
margin-bottom: 15px;
position: relative ;
}
header h1{
text-align: justify;
padding-top: 40px;
color: #00f;
font-style: italic;
font-size: 300%;
}
#img_logo {
float: left;
margin-left: 50px;
padding: 2px;
}
/*-- навигация в шапке страницы--*/
nav#header_navigacija{
margin-left: 50px;
position: absolute;
bottom: 0px;
right: 50px;
}
header#page_header nav ul{
list-style: none;
margin: 0;
padding: 0;
}
#page_header nav ul li{
padding: 0;
margin: 0 20px 0 0;
display: inline;
}
#page_header nav ul li a {
font-family: Tahoma, Geneva, sans-serif;
text-decoration: none;
background: #5c6cb7;
font-weight: bold;
color: #ffaa00;
padding: 6px 10px 6px 10px;
}
#page_header nav ul li a:hover {
padding: 6px 10px 6px 10px;
font-weight: bold;
background: #364d95;
color: #ff9900;
}
#page_header nav ul li a:sected{
background: #364e95;
}
/*-- левая колонка с контентом-*/
section#content{
position: relative;
float:left;
width: 80%;
margin-top: 15px;
margin-bottom: 15px;
}
article.news {
border : 1px solid #DEDEDE;
background-color: #fff;
margin-bottom : 15px;
box-shadow: 10px 10px 5px rgba(122,122,122,0.5);
}
h1.new-header {
color: #767676;
padding: 10px;
font: 26px/118% normal Verdana,Tahoma,sans-serif;
text-align: justify;
}
a.hew-title-list {
color: #666;
}
a.hew-title-list:visited {
color: #b5b5b5;
}
a.hew-title-list:hover {
color:#a3a3a3;
text-decoration: underline;
}
p.published {
color: #7e7e7e;
padding-left: 10px;
font-size: 11px;
}
p.content {
font-size: 16px;
line-height: 160%;
font-family: Verdana,sans-serif;
text-align: justify;
padding-right: 10px;
padding-left: 10px;
}
.img_left {
float:left;
margin:0 10px 10px 0;
padding-left: 10px;
}
article.news a.button {
background-color: #6ec2e8;
font-size: 12px;
background-color: #eee !important;
color: #282828 !important;
border-radius: 6px;
border: 1px solid #d9d8d8;
font-family: arial,sans-serif;
font-weight: normal;
padding: 5px 20px 5px 20px;
float: right;
margin-right: 10px;
}
footer.new-list {
display: inline-block;
vertical-align: middle;
font-family: Arial,sans-serif;
font-size: 11px;
padding: 0 10px;
}
footer .views {
background: url("../img/logo/eye.png") no-repeat 0px 6px;
padding-left: 20px;
float: left;
font-size: 9px;
margin-right: 20px;
line-height: 28px;
}
/*-- табличка в посте -*/
table#from-post {
width: 90%;
margin: 10px auto;
border: 2px solid #555;
border-collapse: collapse;
table-layout: fixed;
}
table#from-post td {
border: 1px solid #555;
padding: 5px;
text-align: center;
overflow: auto;
}
table#from-post th {
border: 2px solid #555;
padding: 5px;
text-align: center;
}
/*-- правая колонка рядом с контентом --*/
section#sidebar{
position: relative;
float:right;
width: 19%;
margin-top: 15px;
margin-bottom: 15px;
}
section#sidebar img {
margin: 10px;
}
nav#sidebar_navigacija{
background-color: #0c0;
width: 100%;
}/*-- подвальчик -*/
footer#page_footer{
background-color: #fff;
clear: both;
width: 100%;
box-shadow: 10px 10px 5px rgba(122,122,122,0.5);
display: block;
text-align: center;
}
| 0.336113 | 0.113481 |
.ref{
font: normal normal 12px/18px Consolas, "Liberation Mono", Menlo, "Courier New", Courier, monospace;
color: #333;
}
/* reset default styles for these elements */
.ref i,
.ref span,
.ref r,
.ref a{
font-style: inherit;
font-weight: inherit;
margin: 0;
padding: 0;
text-align: left;
display: inline;
text-decoration: inherit;
white-space: normal;
background: none;
}
/* meta content (used to generate tooltips) */
.ref > div,
.ref > t{
display: none;
}
/* show help cursor when mouse is over an entity with a tooltip */
.ref [data-tip],
.ref [h]{
cursor: help;
}
/* pointer if inside a link */
.ref a > [data-tip],
.ref a > [h]{
cursor: pointer;
}
/* links */
.ref a{
color: inherit;
border-bottom: 1px dotted transparent;
border-color: inherit;
}
/* tooltip; note that the js overrides top/left properties, this is why we use margin */
#rTip{
display: none;
position: absolute;
z-index: 99999;
font-size: 12px;
white-space: pre;
text-align: left;
text-shadow: 0 -1px 0 #191919;
line-height: 16px;
background: #222;
color: #888;
border: 0;
border-radius: 4px;
opacity: 0.90;
box-shadow:0 0 4px rgba(0,0,0, 0.25);
-webkit-transition: opacity .25s, margin .25s;
transition: opacity .25s, margin .25s;
}
#rTip.visible{
display: table;
margin: 10px 0 0 15px;
}
#rTip.visible.fadingOut{
opacity: 0;
margin: 20px 0 0 25px;
}
#rTip [data-cell],
#rTip [c]{
padding: 2px 7px;
}
#rTip [data-title], #rTip [data-desc]{
padding: 8px;
display: block;
color: #ccc;
}
#rTip [data-desc]{
padding-top: 0px;
color: #777;
}
#rTip [data-cell][data-varType],
#rTip [c][data-varType]{
padding: 10px;
background: #333;
box-shadow: inset -1px 0 0 #444;
border-right:1px solid #111;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
#rTip [data-cell][data-sub],
#rTip [c][data-sub]{
padding: 8px 10px 10px 10px;
background: #333;
box-shadow: inset 0 1px 0 #444;
border-top:1px solid #111;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
#rTip [data-table] [data-cell]:first-child,
#rTip [t] [c]:first-child{
font: bold 11px Helvetica, Arial;
color: #888;
}
#rTip [data-table] [data-cell]:nth-child(2),
#rTip [t] [c]:nth-child(2){
color: #edd078;
}
/* base entity - can be nested */
.ref span, .ref r{
white-space: pre;
display: inline;
}
/* key-value dividers, property & method modifiers etc. */
.ref i{
white-space: pre;
color: #aaa;
}
/* source expression (input) */
.ref [data-input]{
margin: 2px 0 0;
padding: 10px 7px;
display: block;
color: #ccc;
background-color: #333;
border-bottom: 1px solid #fff;
}
.ref [data-backtrace]{
float: right;
}
.ref [data-output]{
background: #f9f9f9;
border: 1px solid #eee;
border-top: 0;
border-radius: 0 0 4px 4px;
box-shadow: inset 0px 4px 4px #f3f3f3, inset 0px -8px 8px #fff;
padding: 2px 5px;
margin: 0 0 4px;
text-shadow: 0 1px 0 #fff;
display: block;
}
/* expand/collapse toggle link for groups */
.ref [data-toggle]{
display: inline-block;
vertical-align: -3px;
margin-left: 2px;
width: 0px;
height: 0px;
border-style: solid;
border-width: 7px 0 7px 10px;
border-color: transparent transparent transparent #CC0033;
cursor: pointer;
-webkit-transition: all ease-in .15s;
transition: all ease-in .15s;
}
/* collapse graphic */
.ref [data-toggle][data-exp]{
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.ref [data-group],
.ref [g]{
display: none;
}
.ref [data-toggle][data-exp] ~ [data-group],
.ref [data-toggle][data-exp] ~ [g]{
display: block;
}
/* group sections */
.ref [data-table],
.ref [t]{
display: table;
}
/* section titles */
.ref [data-tHead]{
font: bold 11px Helvetica, Arial;
color: #bcbcbc;
text-transform: lowercase;
margin: 12px 0 2px 10px;
display: block;
}
/* emulate a table for displaying array & object members */
/* section row */
.ref [data-row],
.ref [r]{
display: table-row;
}
/* zebra-like rows */
.ref [data-output] [data-row]:nth-child(odd){background: #f4f4f4;}
.ref [data-output] [data-row]:nth-child(even){background: #f9f9f9;}
.ref [data-output] [r]:nth-child(odd){background: #f4f4f4;}
.ref [data-output] [r]:nth-child(even){background: #f9f9f9;}
/* section cells */
.ref [data-cell],
.ref [c]{
display: table-cell;
width: auto;
vertical-align: top;
padding: 1px 0 1px 10px;
}
/* last cell of a row (forces table to adjust width like we want to) */
.ref [data-output] [data-table],
.ref [data-output] [t],
.ref [data-output] [data-cell]:last-child,
.ref [data-output] [c]:last-child{
width: 100%;
}
/* tag-like appearance for boolean, null and resource types */
.ref [data-true],
.ref [data-false],
.ref [data-null],
.ref [data-unknown],
.ref [data-resource],
.ref [data-match],
.ref [m]{
font: bold 11px Helvetica, Arial;
color: #fff;
padding: 1px 3px;
text-transform: lowercase;
text-shadow: none;
border-radius: 2px;
margin-right: 5px;
background-color: #eee;
background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 40%,rgba(0,0,0,0.1) 100%);
background-image: linear-gradient(to bottom, rgba(255,255,255,0.1) 40%,rgba(0,0,0,0.1) 100%);
}
/* string matches */
.ref [data-match],
.ref [m]{
background-color: #d78035;
}
/* boolean true */
.ref [data-true]{
background-color: #339900;
}
/* boolean false */
.ref [data-false]{
background-color: #CC0033;
color: #fff;
}
/* null value */
.ref [data-null],
.ref [data-unknown]{
background-color: #eee;
color: #999;
text-shadow: inherit;
}
/* resources */
.ref [data-resource]{
background-color: #0057ae;
}
.ref [data-resourceProp]{
font: bold 11px Helvetica, Arial;
color: #999;
}
/* integer or double values */
.ref [data-integer],
.ref [data-double]{
color: #0099CC;
}
/* string values */
.ref [data-string]{
background: #e8f0e1;
color: #669933;
padding: 3px 1px;
/* prevent long strings from breaking the page layout */
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -hp-pre-wrap; /* HP printers */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word; /* IE */
word-break: break-all;
}
.ref [data-string][data-special]{
background: none;
padding: 0;
}
.ref [data-string][data-special] i{
background: #faf3dc;
color: #d78035;
}
/* arrays & objects */
.ref [data-array],
.ref [data-array] ~ i,
.ref [data-object],
.ref [data-object] ~ i,
.ref [data-resource] ~ i{
color:#CC0033;
}
.ref [data-method]{
font-weight: bold;
color: #0057ae;
}
.ref [data-const][data-inherited],
.ref [data-prop][data-inherited]{
color: #999;
}
.ref [data-prop][data-private],
.ref [data-method][data-private]{
color: #CC0033;
}
/* inherited methods */
.ref [data-method][data-inherited]{
font-weight: bold;
color: #6da5de;
}
/* method arguments */
.ref [data-param]{
font-weight: normal;
color: #333;
}
/* optional method arguments */
.ref [data-param][data-optional]{
font-style: italic;
font-weight: normal;
color: #aaa;
}
/* group info prefix */
.ref [data-gLabel],
.ref [gl]{
font: bold 11px Helvetica, Arial;
padding: 0 3px;
color: #333;
}
/* tiny bubbles that indicate visibility info or class features */
.ref [data-mod]{
font: bold 11px Helvetica, Arial;
text-shadow: none;
color: #fff;
}
.ref [data-input] [data-mod]{
color: #444;
}
.ref [data-mod] span,
.ref [data-mod] r{
display: inline-block;
margin: 0 2px;
width: 14px;
height: 14px;
text-align: center;
border-radius: 30px;
line-height: 15px;
}
.ref [data-mod-interface],
.ref [data-mod-abstract]{
background: #baed78;
}
.ref [data-mod-anonymous]{
background: #444;
}
.ref [data-mod-protected]{
background: #edd078;
}
.ref [data-mod-private]{
background: #eea8b9;
}
.ref [data-mod-iterateable]{
background: #d5dea5;
}
.ref [data-mod-cloneable]{
background: #bdd7d1;
}
.ref [data-mod-final]{
background: #78bded;
}
/* regular expression (colors partially match RegexBuddy and RegexPal) */
.ref [data-regex]{
font-weight: bold;
text-shadow: none;
padding: 1px 0;
background: #e6e6e6;
word-wrap: break-word;
}
/* char class */
.ref [data-regex-chr]{
background: #ffc080;
color: #694c07;
}
.ref [data-regex-chr-meta]{background: #e0a060;} /* char class: metasequence */
.ref [data-regex-chr-range]{background: #ffcf9b;} /* char class: range-hyphen */
/* metasequence */
.ref [data-regex-meta]{
background: #80c0ff;
color: #105f8c;
}
/* group: depth 1 */
.ref [data-regex-g1]{
background: #00c000;
color: #fff;
}
/* group: depth 2 */
.ref [data-regex-g2]{
background: #c3e86c;
color: #648c1c;
}
/* group: depth 3 */
.ref [data-regex-g3]{
background: #008000;
color: #fff;
}
/* group: depth 4 */
.ref [data-regex-g4]{
background: #6dcb99;
color: #fff;
}
/* group: depth 5 */
.ref [data-regex-g5]{
background: #00ff00;
color: #2c8e24;
}
.ref [data-error]{
background: #CC0033;
color: #fff;
border-radius: 0 0 4px 4px;
padding: 2px 5px;
margin: 0 0 4px;
display: block;
}
/* make labels and less-relevant text non-selectable */
.ref [data-match],
.ref [m],
.ref [data-tHead],
.ref [data-gLabel],
.ref [gl],
.ref [data-mod]{
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
|
staging/wp-content/plugins/wp-security-audit-log/css/wsal-ref.css
|
.ref{
font: normal normal 12px/18px Consolas, "Liberation Mono", Menlo, "Courier New", Courier, monospace;
color: #333;
}
/* reset default styles for these elements */
.ref i,
.ref span,
.ref r,
.ref a{
font-style: inherit;
font-weight: inherit;
margin: 0;
padding: 0;
text-align: left;
display: inline;
text-decoration: inherit;
white-space: normal;
background: none;
}
/* meta content (used to generate tooltips) */
.ref > div,
.ref > t{
display: none;
}
/* show help cursor when mouse is over an entity with a tooltip */
.ref [data-tip],
.ref [h]{
cursor: help;
}
/* pointer if inside a link */
.ref a > [data-tip],
.ref a > [h]{
cursor: pointer;
}
/* links */
.ref a{
color: inherit;
border-bottom: 1px dotted transparent;
border-color: inherit;
}
/* tooltip; note that the js overrides top/left properties, this is why we use margin */
#rTip{
display: none;
position: absolute;
z-index: 99999;
font-size: 12px;
white-space: pre;
text-align: left;
text-shadow: 0 -1px 0 #191919;
line-height: 16px;
background: #222;
color: #888;
border: 0;
border-radius: 4px;
opacity: 0.90;
box-shadow:0 0 4px rgba(0,0,0, 0.25);
-webkit-transition: opacity .25s, margin .25s;
transition: opacity .25s, margin .25s;
}
#rTip.visible{
display: table;
margin: 10px 0 0 15px;
}
#rTip.visible.fadingOut{
opacity: 0;
margin: 20px 0 0 25px;
}
#rTip [data-cell],
#rTip [c]{
padding: 2px 7px;
}
#rTip [data-title], #rTip [data-desc]{
padding: 8px;
display: block;
color: #ccc;
}
#rTip [data-desc]{
padding-top: 0px;
color: #777;
}
#rTip [data-cell][data-varType],
#rTip [c][data-varType]{
padding: 10px;
background: #333;
box-shadow: inset -1px 0 0 #444;
border-right:1px solid #111;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
#rTip [data-cell][data-sub],
#rTip [c][data-sub]{
padding: 8px 10px 10px 10px;
background: #333;
box-shadow: inset 0 1px 0 #444;
border-top:1px solid #111;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
#rTip [data-table] [data-cell]:first-child,
#rTip [t] [c]:first-child{
font: bold 11px Helvetica, Arial;
color: #888;
}
#rTip [data-table] [data-cell]:nth-child(2),
#rTip [t] [c]:nth-child(2){
color: #edd078;
}
/* base entity - can be nested */
.ref span, .ref r{
white-space: pre;
display: inline;
}
/* key-value dividers, property & method modifiers etc. */
.ref i{
white-space: pre;
color: #aaa;
}
/* source expression (input) */
.ref [data-input]{
margin: 2px 0 0;
padding: 10px 7px;
display: block;
color: #ccc;
background-color: #333;
border-bottom: 1px solid #fff;
}
.ref [data-backtrace]{
float: right;
}
.ref [data-output]{
background: #f9f9f9;
border: 1px solid #eee;
border-top: 0;
border-radius: 0 0 4px 4px;
box-shadow: inset 0px 4px 4px #f3f3f3, inset 0px -8px 8px #fff;
padding: 2px 5px;
margin: 0 0 4px;
text-shadow: 0 1px 0 #fff;
display: block;
}
/* expand/collapse toggle link for groups */
.ref [data-toggle]{
display: inline-block;
vertical-align: -3px;
margin-left: 2px;
width: 0px;
height: 0px;
border-style: solid;
border-width: 7px 0 7px 10px;
border-color: transparent transparent transparent #CC0033;
cursor: pointer;
-webkit-transition: all ease-in .15s;
transition: all ease-in .15s;
}
/* collapse graphic */
.ref [data-toggle][data-exp]{
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.ref [data-group],
.ref [g]{
display: none;
}
.ref [data-toggle][data-exp] ~ [data-group],
.ref [data-toggle][data-exp] ~ [g]{
display: block;
}
/* group sections */
.ref [data-table],
.ref [t]{
display: table;
}
/* section titles */
.ref [data-tHead]{
font: bold 11px Helvetica, Arial;
color: #bcbcbc;
text-transform: lowercase;
margin: 12px 0 2px 10px;
display: block;
}
/* emulate a table for displaying array & object members */
/* section row */
.ref [data-row],
.ref [r]{
display: table-row;
}
/* zebra-like rows */
.ref [data-output] [data-row]:nth-child(odd){background: #f4f4f4;}
.ref [data-output] [data-row]:nth-child(even){background: #f9f9f9;}
.ref [data-output] [r]:nth-child(odd){background: #f4f4f4;}
.ref [data-output] [r]:nth-child(even){background: #f9f9f9;}
/* section cells */
.ref [data-cell],
.ref [c]{
display: table-cell;
width: auto;
vertical-align: top;
padding: 1px 0 1px 10px;
}
/* last cell of a row (forces table to adjust width like we want to) */
.ref [data-output] [data-table],
.ref [data-output] [t],
.ref [data-output] [data-cell]:last-child,
.ref [data-output] [c]:last-child{
width: 100%;
}
/* tag-like appearance for boolean, null and resource types */
.ref [data-true],
.ref [data-false],
.ref [data-null],
.ref [data-unknown],
.ref [data-resource],
.ref [data-match],
.ref [m]{
font: bold 11px Helvetica, Arial;
color: #fff;
padding: 1px 3px;
text-transform: lowercase;
text-shadow: none;
border-radius: 2px;
margin-right: 5px;
background-color: #eee;
background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 40%,rgba(0,0,0,0.1) 100%);
background-image: linear-gradient(to bottom, rgba(255,255,255,0.1) 40%,rgba(0,0,0,0.1) 100%);
}
/* string matches */
.ref [data-match],
.ref [m]{
background-color: #d78035;
}
/* boolean true */
.ref [data-true]{
background-color: #339900;
}
/* boolean false */
.ref [data-false]{
background-color: #CC0033;
color: #fff;
}
/* null value */
.ref [data-null],
.ref [data-unknown]{
background-color: #eee;
color: #999;
text-shadow: inherit;
}
/* resources */
.ref [data-resource]{
background-color: #0057ae;
}
.ref [data-resourceProp]{
font: bold 11px Helvetica, Arial;
color: #999;
}
/* integer or double values */
.ref [data-integer],
.ref [data-double]{
color: #0099CC;
}
/* string values */
.ref [data-string]{
background: #e8f0e1;
color: #669933;
padding: 3px 1px;
/* prevent long strings from breaking the page layout */
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -hp-pre-wrap; /* HP printers */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word; /* IE */
word-break: break-all;
}
.ref [data-string][data-special]{
background: none;
padding: 0;
}
.ref [data-string][data-special] i{
background: #faf3dc;
color: #d78035;
}
/* arrays & objects */
.ref [data-array],
.ref [data-array] ~ i,
.ref [data-object],
.ref [data-object] ~ i,
.ref [data-resource] ~ i{
color:#CC0033;
}
.ref [data-method]{
font-weight: bold;
color: #0057ae;
}
.ref [data-const][data-inherited],
.ref [data-prop][data-inherited]{
color: #999;
}
.ref [data-prop][data-private],
.ref [data-method][data-private]{
color: #CC0033;
}
/* inherited methods */
.ref [data-method][data-inherited]{
font-weight: bold;
color: #6da5de;
}
/* method arguments */
.ref [data-param]{
font-weight: normal;
color: #333;
}
/* optional method arguments */
.ref [data-param][data-optional]{
font-style: italic;
font-weight: normal;
color: #aaa;
}
/* group info prefix */
.ref [data-gLabel],
.ref [gl]{
font: bold 11px Helvetica, Arial;
padding: 0 3px;
color: #333;
}
/* tiny bubbles that indicate visibility info or class features */
.ref [data-mod]{
font: bold 11px Helvetica, Arial;
text-shadow: none;
color: #fff;
}
.ref [data-input] [data-mod]{
color: #444;
}
.ref [data-mod] span,
.ref [data-mod] r{
display: inline-block;
margin: 0 2px;
width: 14px;
height: 14px;
text-align: center;
border-radius: 30px;
line-height: 15px;
}
.ref [data-mod-interface],
.ref [data-mod-abstract]{
background: #baed78;
}
.ref [data-mod-anonymous]{
background: #444;
}
.ref [data-mod-protected]{
background: #edd078;
}
.ref [data-mod-private]{
background: #eea8b9;
}
.ref [data-mod-iterateable]{
background: #d5dea5;
}
.ref [data-mod-cloneable]{
background: #bdd7d1;
}
.ref [data-mod-final]{
background: #78bded;
}
/* regular expression (colors partially match RegexBuddy and RegexPal) */
.ref [data-regex]{
font-weight: bold;
text-shadow: none;
padding: 1px 0;
background: #e6e6e6;
word-wrap: break-word;
}
/* char class */
.ref [data-regex-chr]{
background: #ffc080;
color: #694c07;
}
.ref [data-regex-chr-meta]{background: #e0a060;} /* char class: metasequence */
.ref [data-regex-chr-range]{background: #ffcf9b;} /* char class: range-hyphen */
/* metasequence */
.ref [data-regex-meta]{
background: #80c0ff;
color: #105f8c;
}
/* group: depth 1 */
.ref [data-regex-g1]{
background: #00c000;
color: #fff;
}
/* group: depth 2 */
.ref [data-regex-g2]{
background: #c3e86c;
color: #648c1c;
}
/* group: depth 3 */
.ref [data-regex-g3]{
background: #008000;
color: #fff;
}
/* group: depth 4 */
.ref [data-regex-g4]{
background: #6dcb99;
color: #fff;
}
/* group: depth 5 */
.ref [data-regex-g5]{
background: #00ff00;
color: #2c8e24;
}
.ref [data-error]{
background: #CC0033;
color: #fff;
border-radius: 0 0 4px 4px;
padding: 2px 5px;
margin: 0 0 4px;
display: block;
}
/* make labels and less-relevant text non-selectable */
.ref [data-match],
.ref [m],
.ref [data-tHead],
.ref [data-gLabel],
.ref [gl],
.ref [data-mod]{
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
| 0.235021 | 0.223663 |
/* TODO fix bug of background img position */
.form-section {
width: 100%;
height: 850px;
background-image: url('../assets/homepage/trian_PNG-1.png'),
url('../assets/homepage/nick-page-1.png'),
url('../assets/homepage/nick-page-4iZrQRh5gb4-unsplash.png'),
linear-gradient(rgba(207, 239, 233), white);
background-position: bottom, bottom, bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
/* set flex for content */
.form-section .content-area {
width: 1360px;
height: 850px;
margin-left: 240px;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
}
.content-area .form-wrap {
display: inline-block;
width: 670px;
height: 670px;
background-color: #fff;
border-radius: 40px;
padding: 40px 35px 35px 25px;
box-sizing: border-box;
}
.form-wrap form {
display: flex;
flex-direction: column;
/* align-items: center; */
}
/* set input background color */
form input {
line-height: 36px;
background-color: rgb(241, 242, 246);
border: none;
border-radius: 5px;
}
/* form details */
form .departure {
display: flex;
}
.departure label {
display: block;
}
.departure .swap-logo button {
width: 50px;
height: 50px;
border-radius: 50%;
color: white;
padding-top: 10px;
border: none;
background-color: rgb(0, 168, 143);
}
.departure .departure-wrap {
display: flex;
flex-direction: column;
}
.departure input {
width: 270px;
}
.form-selection > hr {
width: 100%;
border: 1px solid;
}
.via {
margin-top: 10px;
display: flex;
width: 100%;
height: 36px;
justify-content: space-around;
align-items: center;
}
.via * {
margin-left: 6px;
}
.via input[type='text'] {
flex-grow: 1;
}
.via select {
width: 85px;
height: 36px;
border: none;
padding-left: 10px;
vertical-align: middle;
background-color: rgb(241, 242, 246);
}
.via label {
width: 85px;
color: rgb(117, 117, 117);
}
.via input[type='checkbox'] {
background-color: rgb(241, 242, 246);
vertical-align: middle;
margin-right: 10px 10px;
width: 40px;
}
.button-selection {
display: flex;
justify-content: center;
align-items: center;
width: 520px;
height: 50px;
background-color: rgb(4, 84, 164);
margin: 30px auto 0;
border: none;
border-radius: 20px 20px 0 0;
vertical-align: middle;
}
.button-selection button {
height: 31px;
border: none;
border-radius: 20px;
background-color: rgb(4, 84, 164);
font-size: 1.1em;
color: white;
margin-left: 10px;
vertical-align: baseline;
text-align: center;
line-height: 31px;
padding: 0px 20px;
}
.button-selection button:nth-child(2) {
background-color: rgb(0, 168, 143);
}
.higher-box-tickets {
padding: 27px 20px;
width: 607px;
height: 245px;
box-shadow: 1px 2px 2px 2px rgb(232, 239, 245);
border-radius: 10px;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.submit-button {
width: 520px;
height: 65px;
margin: 27px auto;
background-color: rgb(4, 84, 164);
color: white;
border: none;
border-radius: 10px;
font-size: 1.5em;
font-weight: 200;
vertical-align: middle;
}
.destination .date-wrap {
width: 270px;
height: 105px;
}
.destination {
display: flex;
justify-content: space-between;
}
.date-wrap label {
display: block;
box-sizing: border-box;
}
.date-wrap input[type='text'] {
width: 258px;
height: 40px;
color: black;
vertical-align: middle;
line-height: 40px;
font: 0.9em;
padding-left: 10px;
}
.date-wrap select {
width: 125px;
height: 40px;
border: none;
background-color: rgb(241, 242, 246);
}
.date-wrap input[type='number'] {
width: 45px;
height: 40px;
color: black;
text-align: center;
vertical-align: middle;
line-height: 40px;
font: 0.9em;
padding: 0px;
}
.date-wrap span {
color: rgb(0, 168, 143);
font-weight: 2em;
}
.passengers {
margin-top: 15px;
}
.passengers * {
display: block;
}
.passengers select {
height: 40px;
width: 100%;
border: none;
background-color: rgb(241, 242, 246);
margin-top: 5px;
}
.hr {
margin-top: 15px;
}
.hr > hr {
border: 1px solid rgb(241, 242, 246);
}
/* welcome text and button */
.welcome-text-area {
margin-left: 100px;
display: inline-block;
width: 587px;
height: 280px;
color: white;
}
.welcome-text-area > h1 {
font-size: 2.2em;
line-height: 50px;
}
.welcome-text-area > p {
font-size: 1.4em;
}
.welcome-text-area > button {
font-weight: bold;
width: 200px;
height: 60px;
margin-top: 20px;
border: 2px solid white;
background-color: rgb(0, 168, 143);
border-radius: 40px;
color: white;
font-size: 1.5em;
}
.clock {
line-height: 30px;
display: flex;
}
.clock > img {
height: 30px;
width: 30px;
}
.leaving {
margin: 5px 0px 0px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}
|
assignment3/css/form-section.css
|
/* TODO fix bug of background img position */
.form-section {
width: 100%;
height: 850px;
background-image: url('../assets/homepage/trian_PNG-1.png'),
url('../assets/homepage/nick-page-1.png'),
url('../assets/homepage/nick-page-4iZrQRh5gb4-unsplash.png'),
linear-gradient(rgba(207, 239, 233), white);
background-position: bottom, bottom, bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
/* set flex for content */
.form-section .content-area {
width: 1360px;
height: 850px;
margin-left: 240px;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
}
.content-area .form-wrap {
display: inline-block;
width: 670px;
height: 670px;
background-color: #fff;
border-radius: 40px;
padding: 40px 35px 35px 25px;
box-sizing: border-box;
}
.form-wrap form {
display: flex;
flex-direction: column;
/* align-items: center; */
}
/* set input background color */
form input {
line-height: 36px;
background-color: rgb(241, 242, 246);
border: none;
border-radius: 5px;
}
/* form details */
form .departure {
display: flex;
}
.departure label {
display: block;
}
.departure .swap-logo button {
width: 50px;
height: 50px;
border-radius: 50%;
color: white;
padding-top: 10px;
border: none;
background-color: rgb(0, 168, 143);
}
.departure .departure-wrap {
display: flex;
flex-direction: column;
}
.departure input {
width: 270px;
}
.form-selection > hr {
width: 100%;
border: 1px solid;
}
.via {
margin-top: 10px;
display: flex;
width: 100%;
height: 36px;
justify-content: space-around;
align-items: center;
}
.via * {
margin-left: 6px;
}
.via input[type='text'] {
flex-grow: 1;
}
.via select {
width: 85px;
height: 36px;
border: none;
padding-left: 10px;
vertical-align: middle;
background-color: rgb(241, 242, 246);
}
.via label {
width: 85px;
color: rgb(117, 117, 117);
}
.via input[type='checkbox'] {
background-color: rgb(241, 242, 246);
vertical-align: middle;
margin-right: 10px 10px;
width: 40px;
}
.button-selection {
display: flex;
justify-content: center;
align-items: center;
width: 520px;
height: 50px;
background-color: rgb(4, 84, 164);
margin: 30px auto 0;
border: none;
border-radius: 20px 20px 0 0;
vertical-align: middle;
}
.button-selection button {
height: 31px;
border: none;
border-radius: 20px;
background-color: rgb(4, 84, 164);
font-size: 1.1em;
color: white;
margin-left: 10px;
vertical-align: baseline;
text-align: center;
line-height: 31px;
padding: 0px 20px;
}
.button-selection button:nth-child(2) {
background-color: rgb(0, 168, 143);
}
.higher-box-tickets {
padding: 27px 20px;
width: 607px;
height: 245px;
box-shadow: 1px 2px 2px 2px rgb(232, 239, 245);
border-radius: 10px;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.submit-button {
width: 520px;
height: 65px;
margin: 27px auto;
background-color: rgb(4, 84, 164);
color: white;
border: none;
border-radius: 10px;
font-size: 1.5em;
font-weight: 200;
vertical-align: middle;
}
.destination .date-wrap {
width: 270px;
height: 105px;
}
.destination {
display: flex;
justify-content: space-between;
}
.date-wrap label {
display: block;
box-sizing: border-box;
}
.date-wrap input[type='text'] {
width: 258px;
height: 40px;
color: black;
vertical-align: middle;
line-height: 40px;
font: 0.9em;
padding-left: 10px;
}
.date-wrap select {
width: 125px;
height: 40px;
border: none;
background-color: rgb(241, 242, 246);
}
.date-wrap input[type='number'] {
width: 45px;
height: 40px;
color: black;
text-align: center;
vertical-align: middle;
line-height: 40px;
font: 0.9em;
padding: 0px;
}
.date-wrap span {
color: rgb(0, 168, 143);
font-weight: 2em;
}
.passengers {
margin-top: 15px;
}
.passengers * {
display: block;
}
.passengers select {
height: 40px;
width: 100%;
border: none;
background-color: rgb(241, 242, 246);
margin-top: 5px;
}
.hr {
margin-top: 15px;
}
.hr > hr {
border: 1px solid rgb(241, 242, 246);
}
/* welcome text and button */
.welcome-text-area {
margin-left: 100px;
display: inline-block;
width: 587px;
height: 280px;
color: white;
}
.welcome-text-area > h1 {
font-size: 2.2em;
line-height: 50px;
}
.welcome-text-area > p {
font-size: 1.4em;
}
.welcome-text-area > button {
font-weight: bold;
width: 200px;
height: 60px;
margin-top: 20px;
border: 2px solid white;
background-color: rgb(0, 168, 143);
border-radius: 40px;
color: white;
font-size: 1.5em;
}
.clock {
line-height: 30px;
display: flex;
}
.clock > img {
height: 30px;
width: 30px;
}
.leaving {
margin: 5px 0px 0px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}
| 0.247623 | 0.073264 |
.container-sm {
max-width: 800px;
}
h1 {
font-size: 1.4rem
}
h2 {
font-size: 1.3rem;
border-left: #7358d5;
border-left-width: 7px;
border-left-style: solid;
padding-left: 10px;
color: #5b5b5b;
}
h3 {
font-size: 1.2rem
}
h4 {
font-size: 1.1rem
}
h5 {
font-size: 1.05rem
}
/*Button*/
.btn.btn-primary {
background: #2532ffab;
border: none;
}
.btn-primary:focus, .btn-primary.focus {
color: #fff;
background-color: #5a35aa;
border-color: #0062cc;
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary:hover {
color: #fff;
background-color: #7358d5;
border-color: #0062cc;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
color: #fff;
background-color: #5300cc;
border-color: #005cbf;
}
/*Front*/
.section-name {
color: #555;
}
/*ConceptFooterButton*/
.concept-footer-button {
background: none;
border: none;
}
/*ConceptCard*/
.card-header {
background-color: rgba(255, 255, 255, 0.03);
}
.card-footer {
background-color: rgba(255, 255, 255, 0.03);
text-align: right;
}
/*ConceptColor*/
.concept-color-5 {
border-bottom-width: 10px;
border-bottom-color: #9788ff;
}
.concept-color-4 {
border-bottom-width: 10px;
border-bottom-color: #88ffe3
}
.concept-color-3 {
border-bottom-width: 10px;
border-bottom-color: #a2ff88;
}
.concept-color-2 {
border-bottom-width: 10px;
border-bottom-color: #ffd688;
}
.concept-color-1 {
border-bottom-width: 10px;
border-bottom-color: #ff9494;
}
/*link*/
.link {
color: black;
text-decoration: none !important;
}
.link:hover {
color: #626262;
}
/*ConceptFrameFooter*/
.concept-footer-stats-name {
font-size: 0.7em
}
.concept-footer-stats-value {
font-size: 0.9em
}
.concept-footer-stats-unit {
font-size: 0.8em
}
/*ConceptRegister*/
.similarity-name {
color: #7b7b7b;
font-size: 0.8rem;
}
.similarity-content {
color: #7b7b7b;
font-size: 0.75rem;
}
.base-concept-name {
font-size: 0.95rem;
margin-bottom: 3px;
}
.base-concept-content {
font-size: 0.8rem;
}
.layer-button {
font-size: 0.64rem
}
/*Cover*/
.hr-5 {
background: #9788ff;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.hr-4 {
background: #88ffe3;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.hr-3 {
background: #a2ff88;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.hr-2 {
background: #ffd688;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.hr-1 {
background: #ff9494;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.cover-footer-stats-name {
font-size: 0.7rem
}
.cover-footer-stats-value {
font-size: 0.9rem
}
.cover-footer-stats-unit {
font-size: 0.8rem
}
/*Document*/
.document-menu {
font-size: 0.95rem;
}
.document-shadow {
background: #f2f2f2;
padding: 10px;
font-size: 0.9rem;
}
/*MyPage*/
.mypage-menu {
font-size: 0.95rem;
}
/*Channel*/
.channel-section {
color: #434444;
font-size: 0.9rem;
margin-top: 15px;
border-bottom-width: 1px;
border-bottom-style: solid;
padding-bottom: 10px;
border-bottom-color: #eaeaea;
}
.channel-link {
color: #5a6882;
text-decoration: none;
}
|
resources/css/custom.css
|
.container-sm {
max-width: 800px;
}
h1 {
font-size: 1.4rem
}
h2 {
font-size: 1.3rem;
border-left: #7358d5;
border-left-width: 7px;
border-left-style: solid;
padding-left: 10px;
color: #5b5b5b;
}
h3 {
font-size: 1.2rem
}
h4 {
font-size: 1.1rem
}
h5 {
font-size: 1.05rem
}
/*Button*/
.btn.btn-primary {
background: #2532ffab;
border: none;
}
.btn-primary:focus, .btn-primary.focus {
color: #fff;
background-color: #5a35aa;
border-color: #0062cc;
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary:hover {
color: #fff;
background-color: #7358d5;
border-color: #0062cc;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
color: #fff;
background-color: #5300cc;
border-color: #005cbf;
}
/*Front*/
.section-name {
color: #555;
}
/*ConceptFooterButton*/
.concept-footer-button {
background: none;
border: none;
}
/*ConceptCard*/
.card-header {
background-color: rgba(255, 255, 255, 0.03);
}
.card-footer {
background-color: rgba(255, 255, 255, 0.03);
text-align: right;
}
/*ConceptColor*/
.concept-color-5 {
border-bottom-width: 10px;
border-bottom-color: #9788ff;
}
.concept-color-4 {
border-bottom-width: 10px;
border-bottom-color: #88ffe3
}
.concept-color-3 {
border-bottom-width: 10px;
border-bottom-color: #a2ff88;
}
.concept-color-2 {
border-bottom-width: 10px;
border-bottom-color: #ffd688;
}
.concept-color-1 {
border-bottom-width: 10px;
border-bottom-color: #ff9494;
}
/*link*/
.link {
color: black;
text-decoration: none !important;
}
.link:hover {
color: #626262;
}
/*ConceptFrameFooter*/
.concept-footer-stats-name {
font-size: 0.7em
}
.concept-footer-stats-value {
font-size: 0.9em
}
.concept-footer-stats-unit {
font-size: 0.8em
}
/*ConceptRegister*/
.similarity-name {
color: #7b7b7b;
font-size: 0.8rem;
}
.similarity-content {
color: #7b7b7b;
font-size: 0.75rem;
}
.base-concept-name {
font-size: 0.95rem;
margin-bottom: 3px;
}
.base-concept-content {
font-size: 0.8rem;
}
.layer-button {
font-size: 0.64rem
}
/*Cover*/
.hr-5 {
background: #9788ff;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.hr-4 {
background: #88ffe3;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.hr-3 {
background: #a2ff88;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.hr-2 {
background: #ffd688;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.hr-1 {
background: #ff9494;
height: 5px;
margin: 0px;
margin-bottom: 10px;
border-radius: 10px;
}
.cover-footer-stats-name {
font-size: 0.7rem
}
.cover-footer-stats-value {
font-size: 0.9rem
}
.cover-footer-stats-unit {
font-size: 0.8rem
}
/*Document*/
.document-menu {
font-size: 0.95rem;
}
.document-shadow {
background: #f2f2f2;
padding: 10px;
font-size: 0.9rem;
}
/*MyPage*/
.mypage-menu {
font-size: 0.95rem;
}
/*Channel*/
.channel-section {
color: #434444;
font-size: 0.9rem;
margin-top: 15px;
border-bottom-width: 1px;
border-bottom-style: solid;
padding-bottom: 10px;
border-bottom-color: #eaeaea;
}
.channel-link {
color: #5a6882;
text-decoration: none;
}
| 0.298696 | 0.100481 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.