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 |
|---|---|---|---|---|
@keyframes ninjawiggle {
0%,
100% {
bottom: 50px;
}
50% {
bottom: 52px;
}
}
* {
box-sizing: border-box;
text-decoration: none;
outline: none !important;
}
body {
margin: 0;
padding: 15px;
text-align: center;
font-family: "Roboto", sans-serif;
font-size: 16px;
line-height: 1.618em;
background: #eceff1;
color: #424242;
}
.ninjaken {
display: block;
position: fixed;
z-index: 10000;
left: -80px;
bottom: 50px;
width: 120px;
height: 120px;
background: url(ninjaken.png) center center no-repeat;
background-size: contain;
transform: rotate(-20deg);
transition: .25s;
animation: ninjawiggle .25s infinite;
}
.ninjaken:hover {
left: -25px;
transform: rotate(0);
animation: none;
}
aside {
position: fixed;
z-index: 100;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
padding: 15px;
background: #eceff1;
}
aside .warning-container h2 {
margin: 0 auto 15px;
}
aside .warning-container p {
margin: 0 auto 30px;
}
aside .warning-container a {
padding: 10px 15px;
background: transparent;
color: #7879b9;
transition: .25s;
}
aside .warning-container a:last-child {
margin-left: 5px;
background: #7879b9;
color: #fff;
border: solid 2px #7879b9;
border-radius: 5px;
}
aside .warning-container a:last-child:hover {
background: transparent;
color: #7879b9;
}
header .profile-container {
width: 120px;
height: 120px;
margin: 15px auto;
padding: 3px;
background: #fff;
border: solid 2px #ddd;
border-radius: 50%;
}
header .profile-container img {
width: 100%;
height: 100%;
border: solid 1px #ddd;
border-radius: 50%;
transition: transform .25s;
}
header .profile-container img:hover {
transform: rotate(15deg);
}
header h1 {
font-size: 28px;
}
header p {
margin: 0 auto 30px;
padding: 0 15px;
}
section ul {
padding: 0;
list-style: none;
}
section ul li {
margin: 0 auto;
}
section ul li:not(:first-child) {
padding-top: 5px;
}
section ul li a {
display: inline-block;
width: 100%;
padding: 15px;
background: #7879b9;
color: #fff;
border: solid 2px #7879b9;
border-radius: 5px;
transition: .25s;
}
section ul li a:hover {
background: transparent;
color: #7879b9;
}
footer a {
display: inline-block;
width: 150px;
height: 50px;
margin: 0 auto;
background: url(progate.png) center center no-repeat;
}
@media (min-width:700px) {
header p,
section ul li {
width: 600px;
}
}
@media (prefers-color-scheme: dark) {
body,
aside {
background: #263238;
color: #fff;
}
img {
filter: grayscale(25%);
}
footer a {
background: url(progate-white.png) center center no-repeat;
}
} | project/02-02/res/style.css | @keyframes ninjawiggle {
0%,
100% {
bottom: 50px;
}
50% {
bottom: 52px;
}
}
* {
box-sizing: border-box;
text-decoration: none;
outline: none !important;
}
body {
margin: 0;
padding: 15px;
text-align: center;
font-family: "Roboto", sans-serif;
font-size: 16px;
line-height: 1.618em;
background: #eceff1;
color: #424242;
}
.ninjaken {
display: block;
position: fixed;
z-index: 10000;
left: -80px;
bottom: 50px;
width: 120px;
height: 120px;
background: url(ninjaken.png) center center no-repeat;
background-size: contain;
transform: rotate(-20deg);
transition: .25s;
animation: ninjawiggle .25s infinite;
}
.ninjaken:hover {
left: -25px;
transform: rotate(0);
animation: none;
}
aside {
position: fixed;
z-index: 100;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
padding: 15px;
background: #eceff1;
}
aside .warning-container h2 {
margin: 0 auto 15px;
}
aside .warning-container p {
margin: 0 auto 30px;
}
aside .warning-container a {
padding: 10px 15px;
background: transparent;
color: #7879b9;
transition: .25s;
}
aside .warning-container a:last-child {
margin-left: 5px;
background: #7879b9;
color: #fff;
border: solid 2px #7879b9;
border-radius: 5px;
}
aside .warning-container a:last-child:hover {
background: transparent;
color: #7879b9;
}
header .profile-container {
width: 120px;
height: 120px;
margin: 15px auto;
padding: 3px;
background: #fff;
border: solid 2px #ddd;
border-radius: 50%;
}
header .profile-container img {
width: 100%;
height: 100%;
border: solid 1px #ddd;
border-radius: 50%;
transition: transform .25s;
}
header .profile-container img:hover {
transform: rotate(15deg);
}
header h1 {
font-size: 28px;
}
header p {
margin: 0 auto 30px;
padding: 0 15px;
}
section ul {
padding: 0;
list-style: none;
}
section ul li {
margin: 0 auto;
}
section ul li:not(:first-child) {
padding-top: 5px;
}
section ul li a {
display: inline-block;
width: 100%;
padding: 15px;
background: #7879b9;
color: #fff;
border: solid 2px #7879b9;
border-radius: 5px;
transition: .25s;
}
section ul li a:hover {
background: transparent;
color: #7879b9;
}
footer a {
display: inline-block;
width: 150px;
height: 50px;
margin: 0 auto;
background: url(progate.png) center center no-repeat;
}
@media (min-width:700px) {
header p,
section ul li {
width: 600px;
}
}
@media (prefers-color-scheme: dark) {
body,
aside {
background: #263238;
color: #fff;
}
img {
filter: grayscale(25%);
}
footer a {
background: url(progate-white.png) center center no-repeat;
}
} | 0.371137 | 0.059839 |
video::-internal-media-interstitial {
width: inherit;
height: inherit;
position: relative;
direction: ltr;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
/* The font size is set to be proportional to the viewport width.
* Specifically, it is 15px for 400px width, and 36px for 1920px width.
* The full math expression is:
* 15px + (36 - 15) * ((100vw - 400px) / (1920 - 400)).
*/
font-size: calc(9.5px + 1.38vw);
background-color: transparent;
opacity: 0;
transition: opacity .3s ease-in-out;
}
video::-internal-media-interstitial-background-image {
display: flex;
position: absolute;
margin: 0;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
border: none;
border-width: 0px;
background-color: transparent;
padding: 0;
filter: grayscale(100%) blur(5px) opacity(40%);
}
video::-internal-media-remoting-cast-icon {
-webkit-appearance: none;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center center;
display: flex;
position: absolute;
margin: 0px;
border-width: 0px;
background-color: transparent;
height: 2.5vw;
width: 3vw;
padding: 0px;
left: calc(50% - 1.5vw);
top: calc(50% - 3vw);
}
video::-internal-media-interstitial-message,
video::-internal-picture-in-picture-interstitial-message {
display: inline;
position: absolute;
top: calc(50% + 1vw);
border: none;
color: rgba(255,255,255,.54);
width: 100%;
text-wrap: none;
text-align: center;
background-color: transparent;
font-family: Roboto-Regular, Sans-serif, Segoe, Serif, Helvetica;
padding: 0px;
margin: 0px;
}
video::-internal-media-interstitial-message {
font-size: 90%;
}
video::-internal-picture-in-picture-interstitial-message {
top: 0;
left: 0;
width: auto;
color: rgba(255,255,255,0.8);
text-align: left;
letter-spacing: 0.2px;
/** default to small */
font-size: 14px;
line-height: 20px;
margin: 8px 16px;
}
video::-internal-media-remoting-toast-message {
display: inline;
position: absolute;
top: 16pt;
border: none;
border-radius: 2pt;
color: rgba(255,255,255, 1);
width: auto;
text-wrap: none;
text-align: center;
background-color: rgba(40, 44, 50, 0.7);
font-size: 90%;
font-family: Roboto-Regular, Sans-serif, Segoe, Serif, Helvetica;
padding: 10pt 24pt 10pt 24pt;
margin: 0px;
}
video::-internal-media-remoting-cast-icon {
background-image: -webkit-image-set(
url(default_100_percent/mediaremoting_cast.png) 1x,
url(default_200_percent/mediaremoting_cast.png) 2x);
}
video::-internal-picture-in-picture-interstitial-message.sizing-medium {
font-size: 24px;
line-height: 28px;
margin: 32px 64px;
}
video::-internal-picture-in-picture-interstitial-message.sizing-large {
font-size: 40px;
line-height: 47px;
margin: 64px 96px;
} | third_party/blink/renderer/modules/media_controls/resources/mediaInterstitials.css | video::-internal-media-interstitial {
width: inherit;
height: inherit;
position: relative;
direction: ltr;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
/* The font size is set to be proportional to the viewport width.
* Specifically, it is 15px for 400px width, and 36px for 1920px width.
* The full math expression is:
* 15px + (36 - 15) * ((100vw - 400px) / (1920 - 400)).
*/
font-size: calc(9.5px + 1.38vw);
background-color: transparent;
opacity: 0;
transition: opacity .3s ease-in-out;
}
video::-internal-media-interstitial-background-image {
display: flex;
position: absolute;
margin: 0;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
border: none;
border-width: 0px;
background-color: transparent;
padding: 0;
filter: grayscale(100%) blur(5px) opacity(40%);
}
video::-internal-media-remoting-cast-icon {
-webkit-appearance: none;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center center;
display: flex;
position: absolute;
margin: 0px;
border-width: 0px;
background-color: transparent;
height: 2.5vw;
width: 3vw;
padding: 0px;
left: calc(50% - 1.5vw);
top: calc(50% - 3vw);
}
video::-internal-media-interstitial-message,
video::-internal-picture-in-picture-interstitial-message {
display: inline;
position: absolute;
top: calc(50% + 1vw);
border: none;
color: rgba(255,255,255,.54);
width: 100%;
text-wrap: none;
text-align: center;
background-color: transparent;
font-family: Roboto-Regular, Sans-serif, Segoe, Serif, Helvetica;
padding: 0px;
margin: 0px;
}
video::-internal-media-interstitial-message {
font-size: 90%;
}
video::-internal-picture-in-picture-interstitial-message {
top: 0;
left: 0;
width: auto;
color: rgba(255,255,255,0.8);
text-align: left;
letter-spacing: 0.2px;
/** default to small */
font-size: 14px;
line-height: 20px;
margin: 8px 16px;
}
video::-internal-media-remoting-toast-message {
display: inline;
position: absolute;
top: 16pt;
border: none;
border-radius: 2pt;
color: rgba(255,255,255, 1);
width: auto;
text-wrap: none;
text-align: center;
background-color: rgba(40, 44, 50, 0.7);
font-size: 90%;
font-family: Roboto-Regular, Sans-serif, Segoe, Serif, Helvetica;
padding: 10pt 24pt 10pt 24pt;
margin: 0px;
}
video::-internal-media-remoting-cast-icon {
background-image: -webkit-image-set(
url(default_100_percent/mediaremoting_cast.png) 1x,
url(default_200_percent/mediaremoting_cast.png) 2x);
}
video::-internal-picture-in-picture-interstitial-message.sizing-medium {
font-size: 24px;
line-height: 28px;
margin: 32px 64px;
}
video::-internal-picture-in-picture-interstitial-message.sizing-large {
font-size: 40px;
line-height: 47px;
margin: 64px 96px;
} | 0.604399 | 0.069605 |
.fade-in-down-animation {
animation-fill-mode: both;
animation-duration: 1s;
animation-name: fade-in-down;
}
.title-hover-animation {
display: inline-block;
position: relative;
border-bottom: none;
line-height: 1.3;
vertical-align: top;
color: var(--second-text-color);
}
.title-hover-animation::before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: -4px;
left: 0;
background-color: var(--second-text-color);
visibility: hidden;
transform: scaleX(0);
transition-property: color, background, box-shadow, border-color, visibility, transform;
transition-delay: 0s, 0s, 0s, 0s, 0s, 0s;
transition-duration: 0.2s, 0.2s, 0.2s, 0.2s, 0.2s, 0.2s;
transition-timing-function: ease, ease, ease, ease, ease-in-out, ease-in-out;
}
.title-hover-animation:hover::before {
visibility: visible;
transform: scaleX(1);
}
@-moz-keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@-webkit-keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@-o-keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@-moz-keyframes icon-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@-webkit-keyframes icon-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@-o-keyframes icon-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@keyframes icon-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
} | docs/css/common/animated.css | .fade-in-down-animation {
animation-fill-mode: both;
animation-duration: 1s;
animation-name: fade-in-down;
}
.title-hover-animation {
display: inline-block;
position: relative;
border-bottom: none;
line-height: 1.3;
vertical-align: top;
color: var(--second-text-color);
}
.title-hover-animation::before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: -4px;
left: 0;
background-color: var(--second-text-color);
visibility: hidden;
transform: scaleX(0);
transition-property: color, background, box-shadow, border-color, visibility, transform;
transition-delay: 0s, 0s, 0s, 0s, 0s, 0s;
transition-duration: 0.2s, 0.2s, 0.2s, 0.2s, 0.2s, 0.2s;
transition-timing-function: ease, ease, ease, ease, ease-in-out, ease-in-out;
}
.title-hover-animation:hover::before {
visibility: visible;
transform: scaleX(1);
}
@-moz-keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@-webkit-keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@-o-keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@-moz-keyframes icon-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@-webkit-keyframes icon-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@-o-keyframes icon-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@keyframes icon-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
} | 0.616936 | 0.093969 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("translate.google.com") {
body {
background: none repeat scroll 0% 0% #1A1A1A !important;
}
#gt-text-c, #gt-apb-main {
background: none repeat scroll 0% 0% #1A1A1A !important;
}
.gt-baf-word-clickable {
color: #A5A1A1 !important;
}
body {
font: 13px arial,sans-serif !important;
color: #B1B1B1 !important;
}
#gt-c a:visited,.gt-hats a:visited{
color:#777 !important;
}
#gt-c a, .gt-hats a {
color: #B2B6BC !important;
}
.gt-ct-text {
color: #817F7F !important;
font-size: 16px !important;
}
.gt-card-ttl-txt {
color: #817F7F !important;
unicode-bidi: embed !important;
}
#contribute-target, #source {
background-color: #303030 !important;
color: #FFAA29 !important;
}
#gt-res-wrap {
border: 1px solid #32B76C !important;
background: none repeat scroll 0% 0% #303030 !important;
}
#result_box {
color: #11DD78 !important;
}
#gt-src-wrap, #gt-res-wrap.full-edit, #newu, #gt-pb-sb, .pb-tgt-td textarea {
border-width: 1px !important;
border-color: #FFAA2A #FFAA2A #724C21 !important;
}
.jfk-button-action {
box-shadow: 0px 2px 26px rgba(248, 121, 53, 0.4) !important;
background-color: #333C4B !important;
background-image: -moz-linear-gradient(center top , #3B3230, #665F5F) !important;
border: 1px solid #EC9138 !important;
color: #FFF !important;
}
.gb_3b {
background: none repeat scroll 0% 0% #1A1A1A !important;
}
#gt-appbar {
border-bottom: 1px solid #5A5A5A !important;
height: 29px !important;
background: none repeat scroll 0% 0% #1A1A1A !important;
}
.jfk-button-standard {
background-color: #CECECE !important;
background-image: -moz-linear-gradient(center top , #5D5858, #635D5D) !important;
color: #F8E3E3 !important;
}
.jfk-button-standard.jfk-button-hover,.jfk-button-standard.jfk-button-clear-outline.jfk-button-hover{
background-color:#333 !important;
background-image:-webkit-linear-gradient(top,#333,#333) !important;
background-image:-moz-linear-gradient(top,#333,#333) !important;
background-image:-ms-linear-gradient(top,#333,#333) !important;
background-image:-o-linear-gradient(top,#333,#333) !important;
background-image:linear-gradient(top,#333,#333) !important;
border:1px solid #333 !important;
color:#ffffff !important;
}
.goog-flat-menu-button {
border-radius: 2px !important;
background-color: #F5F5F5 !important;
background-image: -moz-linear-gradient(center top , #1A1A1A, #1A1A1A) !important;
border: 1px solid rgb(254, 121, 24) !important;
color: rgb(231, 58, 58) !important;
}
.goog-menuitem, .goog-tristatemenuitem, .goog-filterobsmenuitem {
position: relative !important;
color: #F3E1E1 !important;
}
.goog-menu {
transition: opacity 1s ease 1s !important;
background: none repeat scroll 0% 0% rgb(54, 42, 42) !important;
}
.jfk-button-standard.jfk-button-checked, .jfk-button-standard.jfk-button-clear-outline.jfk-button-checked {
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1) inset !important;
background-color: #EEE !important;
background-image: -moz-linear-gradient(center top , #FFAE0A, #FC8006) !important;
border: 1px solid #FFAE0A !important;
color: #241B09 !important;
}
.gt-def-row {
color: #AEAEAE !important;
unicode-bidi: inherit !important;
}
.gt-syn-span {
color: #9E9E9E !important;
}
#gt-ft-res {
line-height: 27px !important;
bottom: 0px !important;
left: 0px !important;
right: 0px !important;
position: fixed !important;
border-top: 2px solid #484848 !important;
background-color: #0F0F0F !important;
z-index: 10 !important;
}
.gt-ex-text {
color: #9E9E9E !important;
font-size: 13px !important;
}
.gt-rw-span {
color: #9E9E9E !important;
}
.goog-toolbar-button, .goog-toolbar-menu-button {
border-radius: 2px !important;
-moz-user-select: none !important;
background: none repeat scroll 0px center rgba(122, 126, 128, 0.73) !important;
}
.goog-flat-menu-button.goog-flat-menu-button-hover{
background-color:#f8f8f8 !important;
background-image:-webkit-linear-gradient(top,#111,#111) !important;
background-image:-moz-linear-gradient(top,#111,#111) !important;
background-image:-ms-linear-gradient(top,#111,#111) !important;
background-image:-o-linear-gradient(top,#111,#111) !important;
background-image:linear-gradient(top, #111, #111) !important;
-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1) !important;
-moz-box-shadow:0 1px 1px rgba(0,0,0,.1) !important;
box-shadow:0 1px 1px rgba(0,0,0,.1) !important;
border-color:#c6c6c6 !important;
color:#333 !important;
}
.jfk-button-action:active{
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
background:#FEA609 !important;
border:1px solid #FEA609 !important;
border-top:1px solid #2f5bb7 !important;
}
.gt-hl-layer {
color: #806C6C !important;
background-color: #1A1A1A !important;
}
.gt-hl-layer {
border: 1px solid rgba(255, 255, 255, 0) !important;
}
#pb-tool {
border-left: 1px solid #291C1C !important;
border-right: 1px solid #4D2D2D !important;
background-color: #1E1212 !important;
}
#gt-pb-tb {
border-collapse: collapse !important;
color: #F5D9D9 !important;
}
#gt-pb-tb tr {
border-bottom: 1px solid #000 !important;
}
#gt-pb-tb {
border: 1px solid #3B2D2D !important;
}
#pb-tb-c {
border: 1px solid #302727 !important;
}
#gt-pb-tb tr:hover{
background-color:#303030 !important;
}
.goog-toolbar-button, .goog-toolbar-menu-button {
color: #E4DBDB !important;
}
.goog-option-selected .goog-menuitem-content, .goog-option-selected .goog-menuitem-content {
color: #9E8181 !important;
}
#gt-src-wrap.focus,#gt-res-wrap.focus.full-edit,#newu:focus,#gt-pb-sb:focus,.pb-tgt-td textarea:focus{
-webkit-box-shadow:inset 0 1px 12px rgba(255, 170, 41, 0.3) !important;
-moz-box-shadow:inset 0 1px 12px rgba(255, 170, 41, 0.3) !important;
box-shadow:inset 0 1px 12px rgba(255, 170, 41, 0.3) !important;
outline:none !important;
border:1px solid #FFAA29 !important;
}
#gt-src-wrap:hover,#gt-res-wrap.full-edit:hover,#newu:hover,#gt-pb-sb:hover,.pb-tgt-td textarea:hover{
border:1px solid #b9b9b9 !important;
border-top:1px solid #a0a0a0 !important;
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
}
.ita-kd-inputtools-div .ita-kd-icon-button {
height: 24px !important;
border-color: transparent !important;
background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.55) !important;
}
.goog-menuitem-emphasize-highlight {
background-color: rgb(111, 103, 103);
}
} | data/usercss/111737.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("translate.google.com") {
body {
background: none repeat scroll 0% 0% #1A1A1A !important;
}
#gt-text-c, #gt-apb-main {
background: none repeat scroll 0% 0% #1A1A1A !important;
}
.gt-baf-word-clickable {
color: #A5A1A1 !important;
}
body {
font: 13px arial,sans-serif !important;
color: #B1B1B1 !important;
}
#gt-c a:visited,.gt-hats a:visited{
color:#777 !important;
}
#gt-c a, .gt-hats a {
color: #B2B6BC !important;
}
.gt-ct-text {
color: #817F7F !important;
font-size: 16px !important;
}
.gt-card-ttl-txt {
color: #817F7F !important;
unicode-bidi: embed !important;
}
#contribute-target, #source {
background-color: #303030 !important;
color: #FFAA29 !important;
}
#gt-res-wrap {
border: 1px solid #32B76C !important;
background: none repeat scroll 0% 0% #303030 !important;
}
#result_box {
color: #11DD78 !important;
}
#gt-src-wrap, #gt-res-wrap.full-edit, #newu, #gt-pb-sb, .pb-tgt-td textarea {
border-width: 1px !important;
border-color: #FFAA2A #FFAA2A #724C21 !important;
}
.jfk-button-action {
box-shadow: 0px 2px 26px rgba(248, 121, 53, 0.4) !important;
background-color: #333C4B !important;
background-image: -moz-linear-gradient(center top , #3B3230, #665F5F) !important;
border: 1px solid #EC9138 !important;
color: #FFF !important;
}
.gb_3b {
background: none repeat scroll 0% 0% #1A1A1A !important;
}
#gt-appbar {
border-bottom: 1px solid #5A5A5A !important;
height: 29px !important;
background: none repeat scroll 0% 0% #1A1A1A !important;
}
.jfk-button-standard {
background-color: #CECECE !important;
background-image: -moz-linear-gradient(center top , #5D5858, #635D5D) !important;
color: #F8E3E3 !important;
}
.jfk-button-standard.jfk-button-hover,.jfk-button-standard.jfk-button-clear-outline.jfk-button-hover{
background-color:#333 !important;
background-image:-webkit-linear-gradient(top,#333,#333) !important;
background-image:-moz-linear-gradient(top,#333,#333) !important;
background-image:-ms-linear-gradient(top,#333,#333) !important;
background-image:-o-linear-gradient(top,#333,#333) !important;
background-image:linear-gradient(top,#333,#333) !important;
border:1px solid #333 !important;
color:#ffffff !important;
}
.goog-flat-menu-button {
border-radius: 2px !important;
background-color: #F5F5F5 !important;
background-image: -moz-linear-gradient(center top , #1A1A1A, #1A1A1A) !important;
border: 1px solid rgb(254, 121, 24) !important;
color: rgb(231, 58, 58) !important;
}
.goog-menuitem, .goog-tristatemenuitem, .goog-filterobsmenuitem {
position: relative !important;
color: #F3E1E1 !important;
}
.goog-menu {
transition: opacity 1s ease 1s !important;
background: none repeat scroll 0% 0% rgb(54, 42, 42) !important;
}
.jfk-button-standard.jfk-button-checked, .jfk-button-standard.jfk-button-clear-outline.jfk-button-checked {
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1) inset !important;
background-color: #EEE !important;
background-image: -moz-linear-gradient(center top , #FFAE0A, #FC8006) !important;
border: 1px solid #FFAE0A !important;
color: #241B09 !important;
}
.gt-def-row {
color: #AEAEAE !important;
unicode-bidi: inherit !important;
}
.gt-syn-span {
color: #9E9E9E !important;
}
#gt-ft-res {
line-height: 27px !important;
bottom: 0px !important;
left: 0px !important;
right: 0px !important;
position: fixed !important;
border-top: 2px solid #484848 !important;
background-color: #0F0F0F !important;
z-index: 10 !important;
}
.gt-ex-text {
color: #9E9E9E !important;
font-size: 13px !important;
}
.gt-rw-span {
color: #9E9E9E !important;
}
.goog-toolbar-button, .goog-toolbar-menu-button {
border-radius: 2px !important;
-moz-user-select: none !important;
background: none repeat scroll 0px center rgba(122, 126, 128, 0.73) !important;
}
.goog-flat-menu-button.goog-flat-menu-button-hover{
background-color:#f8f8f8 !important;
background-image:-webkit-linear-gradient(top,#111,#111) !important;
background-image:-moz-linear-gradient(top,#111,#111) !important;
background-image:-ms-linear-gradient(top,#111,#111) !important;
background-image:-o-linear-gradient(top,#111,#111) !important;
background-image:linear-gradient(top, #111, #111) !important;
-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1) !important;
-moz-box-shadow:0 1px 1px rgba(0,0,0,.1) !important;
box-shadow:0 1px 1px rgba(0,0,0,.1) !important;
border-color:#c6c6c6 !important;
color:#333 !important;
}
.jfk-button-action:active{
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
background:#FEA609 !important;
border:1px solid #FEA609 !important;
border-top:1px solid #2f5bb7 !important;
}
.gt-hl-layer {
color: #806C6C !important;
background-color: #1A1A1A !important;
}
.gt-hl-layer {
border: 1px solid rgba(255, 255, 255, 0) !important;
}
#pb-tool {
border-left: 1px solid #291C1C !important;
border-right: 1px solid #4D2D2D !important;
background-color: #1E1212 !important;
}
#gt-pb-tb {
border-collapse: collapse !important;
color: #F5D9D9 !important;
}
#gt-pb-tb tr {
border-bottom: 1px solid #000 !important;
}
#gt-pb-tb {
border: 1px solid #3B2D2D !important;
}
#pb-tb-c {
border: 1px solid #302727 !important;
}
#gt-pb-tb tr:hover{
background-color:#303030 !important;
}
.goog-toolbar-button, .goog-toolbar-menu-button {
color: #E4DBDB !important;
}
.goog-option-selected .goog-menuitem-content, .goog-option-selected .goog-menuitem-content {
color: #9E8181 !important;
}
#gt-src-wrap.focus,#gt-res-wrap.focus.full-edit,#newu:focus,#gt-pb-sb:focus,.pb-tgt-td textarea:focus{
-webkit-box-shadow:inset 0 1px 12px rgba(255, 170, 41, 0.3) !important;
-moz-box-shadow:inset 0 1px 12px rgba(255, 170, 41, 0.3) !important;
box-shadow:inset 0 1px 12px rgba(255, 170, 41, 0.3) !important;
outline:none !important;
border:1px solid #FFAA29 !important;
}
#gt-src-wrap:hover,#gt-res-wrap.full-edit:hover,#newu:hover,#gt-pb-sb:hover,.pb-tgt-td textarea:hover{
border:1px solid #b9b9b9 !important;
border-top:1px solid #a0a0a0 !important;
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
box-shadow:inset 0 1px 2px rgba(0,0,0,0.3) !important;
}
.ita-kd-inputtools-div .ita-kd-icon-button {
height: 24px !important;
border-color: transparent !important;
background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.55) !important;
}
.goog-menuitem-emphasize-highlight {
background-color: rgb(111, 103, 103);
}
} | 0.179064 | 0.131787 |
@import url("https://fonts.googleapis.com/css2?family=Yesteryear&display=swap");
@import url("https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Simonetta:wght@900&display=swap");
/* learned how to customize scrollbars */
::-webkit-scrollbar {
width: 10px;
background: #8c99a6;
}
::-webkit-scrollbar-track {
background: #2c333a;
border-radius: 15%;
}
::-webkit-scrollbar-thumb {
background: #e6e6fa;
border-radius: 20%;
}
::-moz-scrollbar {
width: 10px;
background: #8c99a6;
}
::-moz-scrollbar-track {
background: #2c333a;
border-radius: 15%;
}
::-moz-scrollbar-thumb {
background: #e6e6fa;
border-radius: 20%;
}
::-ms-scrollbar {
width: 10px;
background: #8c99a6;
}
::-ms-scrollbar-track {
background: #2c333a;
border-radius: 15%;
}
::-ms-scrollbar-thumb {
background: #e6e6fa;
border-radius: 20%;
}
::-o-scrollbar {
width: 10px;
background: #8c99a6;
}
::-o-scrollbar-track {
background: #2c333a;
border-radius: 15%;
}
::-o-scrollbar-thumb {
background: #e6e6fa;
border-radius: 20%;
}
/* got to know about smooth scrolling */
* {
margin: 0;
padding: 0;
box-sizing: 0;
scroll-behavior: smooth;
}
header {
background: url("../images/Seafood/seafood around.jpg");
width: 100vw;
height: 100vh;
background-attachment: fixed;
background-size: cover;
position: relative;
}
body {
background-image: linear-gradient(to bottom, #262626, #0d0d0d);
overflow-x: hidden;
}
h1 {
color: transparent;
position: absolute;
font-family: "Yesteryear", cursive;
text-transform: uppercase;
height: 450px;
width: 550px;
left: 500px;
top: 190px;
font-size: 80px;
word-spacing: 80px;
text-align: center;
z-index: 5;
-webkit-text-stroke: #e0ffff;
-webkit-text-stroke-width: 1px;
-webkit-text-fill-color: #0eff87;
-moz-text-stroke: #e0ffff;
-moz-text-stroke-width: 1px;
-moz-text-fill-color: #0eff87;
-ms-text-stroke: #e0ffff;
-ms-text-stroke-width: 1px;
-ms-text-fill-color: #0eff87;
-o-text-stroke: #e0ffff;
-o-text-stroke-width: 1px;
-o-text-fill-color: #0eff87;
}
h1::first-line {
text-align: left;
}
header > p {
font-family: "La Belle Aurore", cursive;
font-size: 50px;
text-transform: capitalize;
font-weight: bold;
position: relative;
color: #000080;
letter-spacing: 5px;
display: inline-block;
left: 20px;
}
/* practically applied how links appear on hover */
nav {
position: relative;
top: -10px;
left: 900px;
text-transform: uppercase;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
font-size: 15px;
display: inline-block;
}
.inlineblock {
display: inline-block;
}
.home {
position: relative;
right: 30px;
}
.hover > ul li:hover {
background-color: rgba(217, 217, 217, 0.3);
}
.hover2 {
position: relative;
left: 40px;
}
.hover2 > ul li:hover {
background-color: rgba(217, 217, 217, 0.3);
}
.hover2 > ul li {
text-align: center;
}
.none {
position: absolute;
display: none;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
text-transform: capitalize;
}
.hover:hover .none,
.hover2:hover .none {
display: block;
list-style-type: none;
word-spacing: normal;
line-height: 25px;
}
.inlineblock a {
color: #ffdead;
text-decoration: none;
}
.none a {
color: #ff6347;
font-weight: bold;
}
.effect {
position: relative;
width: 650px;
left: 400px;
top: 30px;
height: 603px;
}
.top-left {
position: absolute;
left: 325px;
border-radius: 50px;
}
.top-right {
position: absolute;
top: 301px;
left: 325px;
border-radius: 150px 0 150px 150px;
}
.bottom-left {
position: absolute;
top: 301px;
opacity: 0;
}
.bottom-right {
position: absolute;
top: 302px;
}
.effect:hover .top-left {
animation-name: left;
animation-duration: 1s;
animation-timing-function: linear;
animation-delay: 200ms;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.effect:hover .top-right {
animation: up 1s linear 800ms 1 forwards;
}
.effect:hover .bottom-right {
animation: right 1s linear 800ms 1 forwards;
}
.effect:hover .bottom-left {
animation: left-up 3s linear 2s 1 forwards;
}
.effect:hover {
animation: shadow 2s linear 3s 1 forwards;
}
@keyframes left {
100% {
transform: translateX(-325px);
border-radius: 0;
}
}
@keyframes up {
100% {
transform: translateY(-301px);
border-radius: 0;
}
}
@keyframes right {
0% {
z-index: -2;
}
50% {
transform: scaleX(2);
}
100% {
transform: translateX(325px);
width: 325px;
}
}
@keyframes left-up {
100% {
opacity: 1;
}
}
@keyframes shadow {
100% {
box-shadow: -12px -9px 5px -1px rgba(144, 238, 144, 0.3); /* rgba(65, 105, 225, 0.6); */
}
}
.shrimp {
position: relative;
top: 100px;
height: 500px;
}
.shrimp h2 {
color: #ee82ee;
position: absolute;
left: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.shrimp figure {
position: absolute;
top: 200px;
left: 350px;
}
.shrimp img {
border-radius: 20px 0;
}
.shrimp figure:hover {
transform: scale(1.1);
}
.shrimp figcaption {
color: #9932cc;
width: 260px;
height: auto;
position: absolute;
top: 3px;
left: 1px;
background-color: #eeee82;
text-align: center;
font-style: italic;
word-spacing: 10px;
line-height: 25px;
z-index: -1;
border-radius: 20px;
}
.shrimp figure:hover figcaption {
animation: move 2s ease-in-out 200ms 1 forwards;
}
@keyframes move {
100% {
transform: translateX(350px);
}
}
.fish {
position: relative;
top: 200px;
height: 530px;
margin-top: -40px;
}
.fish h2 {
color: #ee82ee;
float: right;
position: absolute;
right: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.fish figure {
float: right;
position: absolute;
top: 200px;
right: 250px;
}
.fish img {
width: 280px;
height: 260px;
border-radius: 0 20px;
}
.fish figure:hover {
transform: scale(1.1);
}
.fish figcaption {
color: #9932cc;
width: 270px;
height: 260px;
float: right;
position: absolute;
top: 0px;
right: 1px;
background: #f5f5f5;
text-align: center;
font-style: italic;
word-spacing: 10px;
line-height: 23px;
z-index: -1;
border-radius: 20px;
}
.fish figure:hover figcaption {
animation: move-out 2s ease-in-out 200ms 1 forwards;
}
@keyframes move-out {
from {
right: 0;
}
to {
right: 350px;
}
}
.crab {
position: relative;
height: 500px;
margin-top: 260px;
}
.crab h2 {
color: #ee82ee;
position: absolute;
left: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.crab figure {
position: absolute;
top: 200px;
left: 350px;
}
.crab img {
width: 280px;
border-radius: 20px 0;
}
.crab figure:hover {
transform: scale(1.1);
}
.crab figcaption {
color: #9932cc;
width: 270px;
height: 280px;
position: absolute;
top: 0px;
left: 1px;
background-color: #eeee82;
text-align: center;
font-style: italic;
word-spacing: 10px;
line-height: 25px;
z-index: -1;
border-radius: 20px;
}
.crab figure:hover figcaption {
animation: move 2s ease-in-out 200ms 1 forwards;
}
.lobster {
position: relative;
top: 200px;
height: 530px;
margin-top: -40px;
}
.lobster h2 {
color: #ee82ee;
float: right;
position: absolute;
right: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.lobster figure {
float: right;
position: absolute;
top: 200px;
right: 250px;
}
.lobster img {
width: 280px;
height: 260px;
border-radius: 0 20px;
}
.lobster figure:hover {
transform: scale(1.1);
}
.lobster figcaption {
color: #9932cc;
width: 270px;
height: 260px;
float: right;
position: absolute;
top: 0px;
right: 1px;
background-color: #f5f5f5;
text-align: center;
font-style: italic;
word-spacing: 15px;
line-height: 25px;
z-index: -1;
border-radius: 20px;
}
.lobster figure:hover figcaption {
animation: move-out 2s ease-in-out 200ms 1 forwards;
}
.scallop {
position: relative;
height: 500px;
margin-top: 260px;
}
.scallop h2 {
color: #ee82ee;
position: absolute;
left: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.scallop figure {
position: absolute;
top: 200px;
left: 350px;
}
.scallop img {
height: 260px;
width: 280px;
border-radius: 20px 0;
}
.scallop figure:hover {
transform: scale(1.1);
}
.scallop figcaption {
color: #9932cc;
width: 279px;
height: 259px;
position: absolute;
top: 0px;
left: 1px;
background-color: #eeee82;
text-align: center;
font-style: italic;
word-spacing: 10px;
line-height: 23px;
z-index: -1;
border-radius: 20px;
}
.scallop figure:hover figcaption {
animation: move 2s ease-in-out 200ms 1 forwards;
}
footer {
background: linear-gradient(to bottom right, #00bfff, #00fa9a, #7fffd4);
height: 320px;
position: relative;
margin-top: 50px;
}
footer a {
text-decoration: none;
color: #ff0000;
}
footer ul {
display: inline-block;
position: absolute;
list-style-type: none;
}
footer ul:first-child {
width: 150px;
top: 70px;
left: 200px;
line-height: 25px;
}
footer ul:nth-child(2) {
width: 150px;
top: 70px;
left: 550px;
line-height: 27px;
}
footer ul:nth-child(3) {
float: right;
top: 70px;
right: 300px;
line-height: 27px;
}
.footer-home {
display: inline-block;
position: absolute;
top: 70px;
right: 120px;
}
small {
position: absolute;
bottom: 0;
left: 40vw;
color: #9400d3;
}
.back-to-top {
position: fixed;
bottom: 10px;
right: 10px;
}
footer ul::first-line,
.footer-home {
color: #000080;
font-weight: bolder;
font-size: 18px;
}
footer ul:first-child li {
color: #ff00ff;
font-weight: 600;
} | Aqua World/css/seafoodStyle.css | @import url("https://fonts.googleapis.com/css2?family=Yesteryear&display=swap");
@import url("https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Simonetta:wght@900&display=swap");
/* learned how to customize scrollbars */
::-webkit-scrollbar {
width: 10px;
background: #8c99a6;
}
::-webkit-scrollbar-track {
background: #2c333a;
border-radius: 15%;
}
::-webkit-scrollbar-thumb {
background: #e6e6fa;
border-radius: 20%;
}
::-moz-scrollbar {
width: 10px;
background: #8c99a6;
}
::-moz-scrollbar-track {
background: #2c333a;
border-radius: 15%;
}
::-moz-scrollbar-thumb {
background: #e6e6fa;
border-radius: 20%;
}
::-ms-scrollbar {
width: 10px;
background: #8c99a6;
}
::-ms-scrollbar-track {
background: #2c333a;
border-radius: 15%;
}
::-ms-scrollbar-thumb {
background: #e6e6fa;
border-radius: 20%;
}
::-o-scrollbar {
width: 10px;
background: #8c99a6;
}
::-o-scrollbar-track {
background: #2c333a;
border-radius: 15%;
}
::-o-scrollbar-thumb {
background: #e6e6fa;
border-radius: 20%;
}
/* got to know about smooth scrolling */
* {
margin: 0;
padding: 0;
box-sizing: 0;
scroll-behavior: smooth;
}
header {
background: url("../images/Seafood/seafood around.jpg");
width: 100vw;
height: 100vh;
background-attachment: fixed;
background-size: cover;
position: relative;
}
body {
background-image: linear-gradient(to bottom, #262626, #0d0d0d);
overflow-x: hidden;
}
h1 {
color: transparent;
position: absolute;
font-family: "Yesteryear", cursive;
text-transform: uppercase;
height: 450px;
width: 550px;
left: 500px;
top: 190px;
font-size: 80px;
word-spacing: 80px;
text-align: center;
z-index: 5;
-webkit-text-stroke: #e0ffff;
-webkit-text-stroke-width: 1px;
-webkit-text-fill-color: #0eff87;
-moz-text-stroke: #e0ffff;
-moz-text-stroke-width: 1px;
-moz-text-fill-color: #0eff87;
-ms-text-stroke: #e0ffff;
-ms-text-stroke-width: 1px;
-ms-text-fill-color: #0eff87;
-o-text-stroke: #e0ffff;
-o-text-stroke-width: 1px;
-o-text-fill-color: #0eff87;
}
h1::first-line {
text-align: left;
}
header > p {
font-family: "La Belle Aurore", cursive;
font-size: 50px;
text-transform: capitalize;
font-weight: bold;
position: relative;
color: #000080;
letter-spacing: 5px;
display: inline-block;
left: 20px;
}
/* practically applied how links appear on hover */
nav {
position: relative;
top: -10px;
left: 900px;
text-transform: uppercase;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
font-size: 15px;
display: inline-block;
}
.inlineblock {
display: inline-block;
}
.home {
position: relative;
right: 30px;
}
.hover > ul li:hover {
background-color: rgba(217, 217, 217, 0.3);
}
.hover2 {
position: relative;
left: 40px;
}
.hover2 > ul li:hover {
background-color: rgba(217, 217, 217, 0.3);
}
.hover2 > ul li {
text-align: center;
}
.none {
position: absolute;
display: none;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
text-transform: capitalize;
}
.hover:hover .none,
.hover2:hover .none {
display: block;
list-style-type: none;
word-spacing: normal;
line-height: 25px;
}
.inlineblock a {
color: #ffdead;
text-decoration: none;
}
.none a {
color: #ff6347;
font-weight: bold;
}
.effect {
position: relative;
width: 650px;
left: 400px;
top: 30px;
height: 603px;
}
.top-left {
position: absolute;
left: 325px;
border-radius: 50px;
}
.top-right {
position: absolute;
top: 301px;
left: 325px;
border-radius: 150px 0 150px 150px;
}
.bottom-left {
position: absolute;
top: 301px;
opacity: 0;
}
.bottom-right {
position: absolute;
top: 302px;
}
.effect:hover .top-left {
animation-name: left;
animation-duration: 1s;
animation-timing-function: linear;
animation-delay: 200ms;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.effect:hover .top-right {
animation: up 1s linear 800ms 1 forwards;
}
.effect:hover .bottom-right {
animation: right 1s linear 800ms 1 forwards;
}
.effect:hover .bottom-left {
animation: left-up 3s linear 2s 1 forwards;
}
.effect:hover {
animation: shadow 2s linear 3s 1 forwards;
}
@keyframes left {
100% {
transform: translateX(-325px);
border-radius: 0;
}
}
@keyframes up {
100% {
transform: translateY(-301px);
border-radius: 0;
}
}
@keyframes right {
0% {
z-index: -2;
}
50% {
transform: scaleX(2);
}
100% {
transform: translateX(325px);
width: 325px;
}
}
@keyframes left-up {
100% {
opacity: 1;
}
}
@keyframes shadow {
100% {
box-shadow: -12px -9px 5px -1px rgba(144, 238, 144, 0.3); /* rgba(65, 105, 225, 0.6); */
}
}
.shrimp {
position: relative;
top: 100px;
height: 500px;
}
.shrimp h2 {
color: #ee82ee;
position: absolute;
left: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.shrimp figure {
position: absolute;
top: 200px;
left: 350px;
}
.shrimp img {
border-radius: 20px 0;
}
.shrimp figure:hover {
transform: scale(1.1);
}
.shrimp figcaption {
color: #9932cc;
width: 260px;
height: auto;
position: absolute;
top: 3px;
left: 1px;
background-color: #eeee82;
text-align: center;
font-style: italic;
word-spacing: 10px;
line-height: 25px;
z-index: -1;
border-radius: 20px;
}
.shrimp figure:hover figcaption {
animation: move 2s ease-in-out 200ms 1 forwards;
}
@keyframes move {
100% {
transform: translateX(350px);
}
}
.fish {
position: relative;
top: 200px;
height: 530px;
margin-top: -40px;
}
.fish h2 {
color: #ee82ee;
float: right;
position: absolute;
right: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.fish figure {
float: right;
position: absolute;
top: 200px;
right: 250px;
}
.fish img {
width: 280px;
height: 260px;
border-radius: 0 20px;
}
.fish figure:hover {
transform: scale(1.1);
}
.fish figcaption {
color: #9932cc;
width: 270px;
height: 260px;
float: right;
position: absolute;
top: 0px;
right: 1px;
background: #f5f5f5;
text-align: center;
font-style: italic;
word-spacing: 10px;
line-height: 23px;
z-index: -1;
border-radius: 20px;
}
.fish figure:hover figcaption {
animation: move-out 2s ease-in-out 200ms 1 forwards;
}
@keyframes move-out {
from {
right: 0;
}
to {
right: 350px;
}
}
.crab {
position: relative;
height: 500px;
margin-top: 260px;
}
.crab h2 {
color: #ee82ee;
position: absolute;
left: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.crab figure {
position: absolute;
top: 200px;
left: 350px;
}
.crab img {
width: 280px;
border-radius: 20px 0;
}
.crab figure:hover {
transform: scale(1.1);
}
.crab figcaption {
color: #9932cc;
width: 270px;
height: 280px;
position: absolute;
top: 0px;
left: 1px;
background-color: #eeee82;
text-align: center;
font-style: italic;
word-spacing: 10px;
line-height: 25px;
z-index: -1;
border-radius: 20px;
}
.crab figure:hover figcaption {
animation: move 2s ease-in-out 200ms 1 forwards;
}
.lobster {
position: relative;
top: 200px;
height: 530px;
margin-top: -40px;
}
.lobster h2 {
color: #ee82ee;
float: right;
position: absolute;
right: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.lobster figure {
float: right;
position: absolute;
top: 200px;
right: 250px;
}
.lobster img {
width: 280px;
height: 260px;
border-radius: 0 20px;
}
.lobster figure:hover {
transform: scale(1.1);
}
.lobster figcaption {
color: #9932cc;
width: 270px;
height: 260px;
float: right;
position: absolute;
top: 0px;
right: 1px;
background-color: #f5f5f5;
text-align: center;
font-style: italic;
word-spacing: 15px;
line-height: 25px;
z-index: -1;
border-radius: 20px;
}
.lobster figure:hover figcaption {
animation: move-out 2s ease-in-out 200ms 1 forwards;
}
.scallop {
position: relative;
height: 500px;
margin-top: 260px;
}
.scallop h2 {
color: #ee82ee;
position: absolute;
left: 100px;
top: 60px;
font-size: 40px;
font-family: "Simonetta", cursive;
}
.scallop figure {
position: absolute;
top: 200px;
left: 350px;
}
.scallop img {
height: 260px;
width: 280px;
border-radius: 20px 0;
}
.scallop figure:hover {
transform: scale(1.1);
}
.scallop figcaption {
color: #9932cc;
width: 279px;
height: 259px;
position: absolute;
top: 0px;
left: 1px;
background-color: #eeee82;
text-align: center;
font-style: italic;
word-spacing: 10px;
line-height: 23px;
z-index: -1;
border-radius: 20px;
}
.scallop figure:hover figcaption {
animation: move 2s ease-in-out 200ms 1 forwards;
}
footer {
background: linear-gradient(to bottom right, #00bfff, #00fa9a, #7fffd4);
height: 320px;
position: relative;
margin-top: 50px;
}
footer a {
text-decoration: none;
color: #ff0000;
}
footer ul {
display: inline-block;
position: absolute;
list-style-type: none;
}
footer ul:first-child {
width: 150px;
top: 70px;
left: 200px;
line-height: 25px;
}
footer ul:nth-child(2) {
width: 150px;
top: 70px;
left: 550px;
line-height: 27px;
}
footer ul:nth-child(3) {
float: right;
top: 70px;
right: 300px;
line-height: 27px;
}
.footer-home {
display: inline-block;
position: absolute;
top: 70px;
right: 120px;
}
small {
position: absolute;
bottom: 0;
left: 40vw;
color: #9400d3;
}
.back-to-top {
position: fixed;
bottom: 10px;
right: 10px;
}
footer ul::first-line,
.footer-home {
color: #000080;
font-weight: bolder;
font-size: 18px;
}
footer ul:first-child li {
color: #ff00ff;
font-weight: 600;
} | 0.376623 | 0.075619 |
.footer {
left: 0;
bottom: 0;
width: 100%;
text-align: right;
}
.topnav {
width: 100%;
background-color: #333;
overflow: auto;
position: sticky;
}
/* Navigation links */
.topnav a {
float: left;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
width: 20%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
text-align: center; /* If you want the text to be centered */
}
/* Add a background color on mouse-over */
.topnav a:hover {
background-color: #000;
}
/* Style the current/active link */
.topnav a.active {
background-color:#f06f04;
}
/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 500px) {
.topnav a {
float: none;
display: block;
width: 100%;
text-align: left; /* If you want the text to be left-aligned on small screens */
}
}
a {
color:#f06f04;
}
a:hover {
color: #f06f04;
}
.btn {
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
font-weight: 700;
}
.btn-xl {
font-size: 18px;
padding: 20px 40px;
}
.btn-primary {
background-color:#f06f04;
border-color:#f06f04;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
background-color:#f06f04 !important;
border-color:#f06f04 !important;
color: white;
}
.btn-primary:active, .btn-primary:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
}
#mainNav {
background-color: #212529;
}
#mainNav .navbar-toggler {
font-size: 12px;
right: 0;
padding: 13px;
text-transform: uppercase;
color: white;
border: 0;
background-color:#f06f04;
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
#mainNav .navbar-brand {
color:#f06f04;
font-family: 'Kaushan Script', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
#mainNav .navbar-brand.active, #mainNav .navbar-brand:active, #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
color:#f06f04;
}
#mainNav .navbar-nav .nav-item .nav-link {
font-size: 90%;
font-weight: 400;
padding: 0.75em 0;
letter-spacing: 1px;
color: white;
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
color:#f06f04;
}
@media (min-width: 992px) {
#mainNav {
padding-top: 25px;
padding-bottom: 25px;
-webkit-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;
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: #212529;
}
#mainNav.navbar-shrink .navbar-brand {
font-size: 1.25em;
padding: 12px 0;
}
}
header.masthead {
text-align: center;
color: white;
background-image: url("../img/Khayelisha2.jpg");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center center;
background-size: cover;
}
header.masthead .intro-text {
padding-top: 150px;
padding-bottom: 100px;
}
header.masthead .intro-text .intro-lead-in {
font-size: 22px;
font-style: italic;
line-height: 22px;
margin-bottom: 25px;
font-family: 'Droid Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
header.masthead .intro-text .intro-heading {
font-size: 50px;
font-weight: 700;
line-height: 50px;
margin-bottom: 25px;
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
@media (min-width: 768px) {
header.masthead .intro-text {
padding-top: 300px;
padding-bottom: 200px;
}
header.masthead .intro-text .intro-lead-in {
font-size: 40px;
font-style: italic;
line-height: 40px;
margin-bottom: 25px;
font-family: 'Droid Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
header.masthead .intro-text .intro-heading {
font-size: 75px;
font-weight: 700;
line-height: 75px;
margin-bottom: 50px;
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
} | public/css/allpages.css | .footer {
left: 0;
bottom: 0;
width: 100%;
text-align: right;
}
.topnav {
width: 100%;
background-color: #333;
overflow: auto;
position: sticky;
}
/* Navigation links */
.topnav a {
float: left;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
width: 20%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
text-align: center; /* If you want the text to be centered */
}
/* Add a background color on mouse-over */
.topnav a:hover {
background-color: #000;
}
/* Style the current/active link */
.topnav a.active {
background-color:#f06f04;
}
/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 500px) {
.topnav a {
float: none;
display: block;
width: 100%;
text-align: left; /* If you want the text to be left-aligned on small screens */
}
}
a {
color:#f06f04;
}
a:hover {
color: #f06f04;
}
.btn {
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
font-weight: 700;
}
.btn-xl {
font-size: 18px;
padding: 20px 40px;
}
.btn-primary {
background-color:#f06f04;
border-color:#f06f04;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
background-color:#f06f04 !important;
border-color:#f06f04 !important;
color: white;
}
.btn-primary:active, .btn-primary:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
}
#mainNav {
background-color: #212529;
}
#mainNav .navbar-toggler {
font-size: 12px;
right: 0;
padding: 13px;
text-transform: uppercase;
color: white;
border: 0;
background-color:#f06f04;
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
#mainNav .navbar-brand {
color:#f06f04;
font-family: 'Kaushan Script', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
#mainNav .navbar-brand.active, #mainNav .navbar-brand:active, #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
color:#f06f04;
}
#mainNav .navbar-nav .nav-item .nav-link {
font-size: 90%;
font-weight: 400;
padding: 0.75em 0;
letter-spacing: 1px;
color: white;
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
color:#f06f04;
}
@media (min-width: 992px) {
#mainNav {
padding-top: 25px;
padding-bottom: 25px;
-webkit-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;
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: #212529;
}
#mainNav.navbar-shrink .navbar-brand {
font-size: 1.25em;
padding: 12px 0;
}
}
header.masthead {
text-align: center;
color: white;
background-image: url("../img/Khayelisha2.jpg");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center center;
background-size: cover;
}
header.masthead .intro-text {
padding-top: 150px;
padding-bottom: 100px;
}
header.masthead .intro-text .intro-lead-in {
font-size: 22px;
font-style: italic;
line-height: 22px;
margin-bottom: 25px;
font-family: 'Droid Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
header.masthead .intro-text .intro-heading {
font-size: 50px;
font-weight: 700;
line-height: 50px;
margin-bottom: 25px;
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
@media (min-width: 768px) {
header.masthead .intro-text {
padding-top: 300px;
padding-bottom: 200px;
}
header.masthead .intro-text .intro-lead-in {
font-size: 40px;
font-style: italic;
line-height: 40px;
margin-bottom: 25px;
font-family: 'Droid Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
header.masthead .intro-text .intro-heading {
font-size: 75px;
font-weight: 700;
line-height: 75px;
margin-bottom: 50px;
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
} | 0.412057 | 0.090615 |
body {
font-family: 'Russo One', sans-serif;
background: #fcfcfc;
padding: 0;
margin: 0;
}
/*--------------------------- menu*/
header {
font-family: 'Russo One', sans-serif;
}
.dws-menu ul, .dws-menu ol {
list-style: none;
}
.dws-menu > ul {
display: flex;
justify-content: center;
}
.dws-menu > ul li a {
display: block;
background: #ececed;
padding: 15px 30px 15px 40px;
font-size: 14px;
color: #454547;
text-decoration: none;
text-transform:uppercase;
}
.dws-menu > ul li {
position: relative;
}
.dws-menu > ul li > a i.fa {
position: absolute;
top: 15px;
left: 12px;
font-size: 18px;
}
.dws-menu > ul li:first-child {
border-left: 1px solid #b2b3b5;
}
.dws-menu > ul li:last-child {
border-right: 1px solid #babbbd;
}
.dws-menu > ul li {
position: relative;
border-right: 1px solid #c7c8ca;
}
.dws-menu li a:hover {
background: #454547;
color: #ffffff;
box-shadow: 1px 5px 10px -5px black;
transition: all 0.3s ease;
}
.dws-menu > ul li a {
display: block;
background: #ececed;
padding: 15px 30px 15px 40px;
font-size: 14px;
color: #454547;
text-decoration: none;
text-transform:uppercase;
transition: all 0.3s ease;
}
/*sub menu*/
.dws-menu li ul {
position: absolute;
min-width: 150px;
}
.dws-menu li > ul li {
border: 1px solid #c7c8ca;
}
.dws-menu li > ul li a {
padding: 10px;
text-transform: none;
background: #e4e4e5;
}
.dws-menu li > ul li ul {
position: absolute;
right: -150px;
top: 0;
}
/*sub menu*/
.dws-menu li ul {
position: absolute;
min-width: 150px;
display: none;
}
.dws-menu li:hover > ul {
display: block;
}
.dws-menu > ul li a {
display: block;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c9c9c9+0,f6f6f6+2,c4c5c7+98,757577+100;Custom+3 */
background: #c9c9c9; /* Old browsers */
background: -moz-linear-gradient(top, #c9c9c9 0%, #f6f6f6 2%, #c4c5c7 98%, #757577 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #c9c9c9 0%,#f6f6f6 2%,#c4c5c7 98%,#757577 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #c9c9c9 0%,#f6f6f6 2%,#c4c5c7 98%,#757577 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9c9c9', endColorstr='#757577',GradientType=0 ); /* IE6-9 */
padding: 15px 30px 15px 40px;
font-size: 14px;
color: #454547;
text-decoration: none;
text-transform:uppercase;
transition: all 0.3s ease;
}
.dws-menu li a:hover {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e0e1e5+0,454547+2,454547+98,e0e1e5+100 */
background: #e0e1e5; /* Old browsers */
background: -moz-linear-gradient(top, #e0e1e5 0%, #454547 2%, #454547 98%, #e0e1e5 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #e0e1e5 0%,#454547 2%,#454547 98%,#e0e1e5 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #e0e1e5 0%,#454547 2%,#454547 98%,#e0e1e5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0e1e5', endColorstr='#e0e1e5',GradientType=0 ); /* IE6-9 */
color: #ffffff;
box-shadow: 1px 5px 10px -5px black;
transition: all 0.3s ease;
}
/*--------------------------- menu*/
footer {
width: 100%;
height: 100px;
background: #333;
padding: 3px 8px;
text-align: center;
margin-top: 1150px;
}
#up a:hover {
background-color: #111;
}
#up a {
text-decoration: none;
background: #4d4d4d;
border-radius: 5px;
color: white;
padding: 3px 50px;
font-size: 30px;
}
#up {
margin-top: 30px;
}
.search-box {
position: absolute;
transform: translate(-50%,-50%);
background: #2f3640;
height: 40px;
border-radius: 40px;
padding: 10px;
}
.serch-box:hover > .search-txt {
width: 240px;
padding: 0 6px;
}
.serch-box:hover > .search-btn {
background: white;
}
.search-btn {
color: #e84118;
float: right;
width: 40px;
height: 40px;
border-radius: 50%;
background: #2f3640;
display: flex;
justify-content: center;
align-items: center;
transition: 0.4s;
}
.search-text {
border: none;
background: none;
outline: none;
float: left;
padding: 0;
color: white;
font-size: 16px;
transition: 0.4s;
line-height: 40px;
width: 0px;
}
}
.txt {
position: center;
margin: 0 auto;
text-align: center;
margin-top: 100px;
margin-bottom: 100px;
} | css/pro.css | body {
font-family: 'Russo One', sans-serif;
background: #fcfcfc;
padding: 0;
margin: 0;
}
/*--------------------------- menu*/
header {
font-family: 'Russo One', sans-serif;
}
.dws-menu ul, .dws-menu ol {
list-style: none;
}
.dws-menu > ul {
display: flex;
justify-content: center;
}
.dws-menu > ul li a {
display: block;
background: #ececed;
padding: 15px 30px 15px 40px;
font-size: 14px;
color: #454547;
text-decoration: none;
text-transform:uppercase;
}
.dws-menu > ul li {
position: relative;
}
.dws-menu > ul li > a i.fa {
position: absolute;
top: 15px;
left: 12px;
font-size: 18px;
}
.dws-menu > ul li:first-child {
border-left: 1px solid #b2b3b5;
}
.dws-menu > ul li:last-child {
border-right: 1px solid #babbbd;
}
.dws-menu > ul li {
position: relative;
border-right: 1px solid #c7c8ca;
}
.dws-menu li a:hover {
background: #454547;
color: #ffffff;
box-shadow: 1px 5px 10px -5px black;
transition: all 0.3s ease;
}
.dws-menu > ul li a {
display: block;
background: #ececed;
padding: 15px 30px 15px 40px;
font-size: 14px;
color: #454547;
text-decoration: none;
text-transform:uppercase;
transition: all 0.3s ease;
}
/*sub menu*/
.dws-menu li ul {
position: absolute;
min-width: 150px;
}
.dws-menu li > ul li {
border: 1px solid #c7c8ca;
}
.dws-menu li > ul li a {
padding: 10px;
text-transform: none;
background: #e4e4e5;
}
.dws-menu li > ul li ul {
position: absolute;
right: -150px;
top: 0;
}
/*sub menu*/
.dws-menu li ul {
position: absolute;
min-width: 150px;
display: none;
}
.dws-menu li:hover > ul {
display: block;
}
.dws-menu > ul li a {
display: block;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c9c9c9+0,f6f6f6+2,c4c5c7+98,757577+100;Custom+3 */
background: #c9c9c9; /* Old browsers */
background: -moz-linear-gradient(top, #c9c9c9 0%, #f6f6f6 2%, #c4c5c7 98%, #757577 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #c9c9c9 0%,#f6f6f6 2%,#c4c5c7 98%,#757577 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #c9c9c9 0%,#f6f6f6 2%,#c4c5c7 98%,#757577 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9c9c9', endColorstr='#757577',GradientType=0 ); /* IE6-9 */
padding: 15px 30px 15px 40px;
font-size: 14px;
color: #454547;
text-decoration: none;
text-transform:uppercase;
transition: all 0.3s ease;
}
.dws-menu li a:hover {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e0e1e5+0,454547+2,454547+98,e0e1e5+100 */
background: #e0e1e5; /* Old browsers */
background: -moz-linear-gradient(top, #e0e1e5 0%, #454547 2%, #454547 98%, #e0e1e5 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #e0e1e5 0%,#454547 2%,#454547 98%,#e0e1e5 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #e0e1e5 0%,#454547 2%,#454547 98%,#e0e1e5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0e1e5', endColorstr='#e0e1e5',GradientType=0 ); /* IE6-9 */
color: #ffffff;
box-shadow: 1px 5px 10px -5px black;
transition: all 0.3s ease;
}
/*--------------------------- menu*/
footer {
width: 100%;
height: 100px;
background: #333;
padding: 3px 8px;
text-align: center;
margin-top: 1150px;
}
#up a:hover {
background-color: #111;
}
#up a {
text-decoration: none;
background: #4d4d4d;
border-radius: 5px;
color: white;
padding: 3px 50px;
font-size: 30px;
}
#up {
margin-top: 30px;
}
.search-box {
position: absolute;
transform: translate(-50%,-50%);
background: #2f3640;
height: 40px;
border-radius: 40px;
padding: 10px;
}
.serch-box:hover > .search-txt {
width: 240px;
padding: 0 6px;
}
.serch-box:hover > .search-btn {
background: white;
}
.search-btn {
color: #e84118;
float: right;
width: 40px;
height: 40px;
border-radius: 50%;
background: #2f3640;
display: flex;
justify-content: center;
align-items: center;
transition: 0.4s;
}
.search-text {
border: none;
background: none;
outline: none;
float: left;
padding: 0;
color: white;
font-size: 16px;
transition: 0.4s;
line-height: 40px;
width: 0px;
}
}
.txt {
position: center;
margin: 0 auto;
text-align: center;
margin-top: 100px;
margin-bottom: 100px;
} | 0.307878 | 0.052255 |
@charset "UTF-8";
/*common*/
table {
border-collapse: collapse;
table-layout: fixed;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button, img {
padding: 0;
margin: 0;
font-size: 14px;
line-height: 1;
font-family: "Microsoft YaHei";
font-weight: normal;
font-style: normal;
color: #333;
word-break: break-all
}
body {
font-family: "Microsoft YaHei";
position: relative;
background: none
}
body, input, select, textarea, button {
font-size: 12px;
line-height: 1
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none
}
a {
text-decoration: none;
}
fieldset, img, abbr, acronym {
border: 0 none;
}
img {
vertical-align: top;
}
abbr, acronym {
font-variant: normal;
}
blockquote, q {
quotes: none
}
dl, ul, ol, menu, li {
list-style: none
}
input, button, textarea, select, optgroup, option {
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
}
/* 输入控件字体 */
input, select, textarea, button {
vertical-align: middle;
outline: none;
}
textarea {
resize: none;
overflow: auto;
}
input[type="button"] {
cursor: pointer;
}
button {
border: 0 none;
background-color: transparent;
cursor: pointer
}
input::-moz-focus-inner {
border: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
font-weight: normal
}
table {
table-layout: fixed;
border-collapse: collapse;
}
a:focus {
outline: none;
}
input::-ms-clear, input::-ms-reveal {
display: none;
}
.hide {
display: none;
}
.pb0 {
padding-bottom: 0 !important;
}
.table_demo {
width: 80%;
margin: 0 auto;
}
.table_demo > tbody > tr > td {
border: 1px solid #ddd;
padding: 20px;
}
.table_demo > tbody {
padding: 10px;
border: 1px solid #ddd;
}
/* clearfix */
.clearfix {
*zoom: 1;
}
.clearfix:after {
display: table;
line-height: 0;
content: "";
clear: both;
}
.clear {
clear: both;
}
/* public.omission */
.fl {
float: left;
display: inline
}
.fr {
float: right;
display: inline
}
.tc {
text-align: center;
}
.tr {
text-align: right;
}
h1, h2, h3, h4, h5 {
font-weight: normal;
}
.pr {
position: relative
}
.pa {
position: absolute
}
.nobod {
border: 0 !important
}
.w330 {
width: 330px !important;
}
.w270 {
width: 270px !important;
}
.w500 {
width: 500px;
}
.h300 {
height: 300px;
}
.h231 {
height: 231px
}
.h154 {
height: 160px
}
/*margin start*/
/*m-left*/
.ml10 {
margin-left: 10px;
}
/*m-right*/
.mr10 {
margin-right: 10px;
}
.mr30 {
margin-right: 30px;
}
.mr0 {
margin-right: 0 !important;
}
/*m-top*/
.mt10 {
margin-top: 10px;
}
.mt20 {
margin-top: 20px;
}
.mt24 {
margin-top: 24px !important
}
.mt40 {
margin-top: 40px;
}
.mt12 {
margin-top: 12px;
}
.mt30 {
margin-top: 30px;
}
.mt19 {
margin-top: 19px;
}
.mt50 {
margin-top: 50px;
}
/*m-bottom*/
.mb10 {
margin-bottom: 10px !important;
}
.mb20 {
margin-bottom: 20px;
}
.mb0 {
margin-bottom: 0 !important;
}
.mb30 {
margin-bottom: 30px !important;
}
/*margin over*/
.ov {
overflow: hidden;
}
/*底部footer*/
.footer_warp {
width: 100%;
height: 135px;
background-color: #fff;
border-top: 1px solid #ddd;
min-width: 1200px;
}
.footer {
height: 134px;
width: 1200px;
margin: 0 auto
}
.w1080 {
width: 1080px
}
.link li {
display: inline-block;
vertical-align: middle;
padding-right: 12px;
border-right: 1px solid #999;
font-size: 12px;
margin-left: 12px
}
.link li.nobod {
border: none
}
.link li.nomargin {
margin: 0
}
.link li a {
display: inline-block;
color: #999;
text-decoration: none
}
.link li a:hover {
color: #ff6600;
text-decoration: underline;
}
.copyright {
font-size: 12px;
color: #999;
margin-top: 30px
}
.footer > .fr a {
width: 118px;
height: 28px;
line-height: 28px;
border: 1px solid #d6d6d6;
font-size: 14px;
color: #666;
display: block;
text-decoration: none;
text-align: center
}
.footer > .fr a:hover {
background: #ffe8dd;
border-color: #ff6600;
color: #ff6600;
}
.w120 {
width: 120px
}
.ml0 {
margin-left: 0 !important
}
.br0 {
border-right: 0 !important
}
/*面包屑*/
.crumb {
height: 32px;
line-height: 32px;
font-size: 14px;
margin-bottom: 10px;
clear: both;
}
.crumb li {
height: 32px;
line-height: 32px;
float: left;
background: url(../images/crumb.png) no-repeat right center;
color: #f60;
padding: 0 10px;
font-size: 14px
}
.crumb li a {
color: #666;
text-decoration: none
}
.crumb_home {
background: url(../images/crumb_home.png) no-repeat 0 center;
padding-left: 16px
}
.crumb li.crumb_cur {
background: 0 0;
font-weight: bold
}
/*buttons start*/
.btn_solid, .btn_border {
cursor: pointer;
font-size: 13px;;
width: 120px;
height: 36px;
box-sizing: border-box;
line-height: 36px;
text-align: center;
float: left;
letter-spacing: 2px;
text-indent: -2px;
}
.btn_solid {
color: #fff;
background-color: #ff6600;
}
.btn_solid:hover {
background-color: #f68e5c;
}
.btn_border {
color: #ff6600;
border: 1px solid #ff6600;
}
.bcf {
background: #fff;
}
.btn_border:hover {
background-color: #ffe8dd;
}
.btn_solid.btn_press {
background-color: #e65f1d;
}
.w270 {
width: 270px;
}
/*buttons over*/
@charset "UTF-8";
.window_P {
width: 730px;
height: 435px;
background: #fff;
box-shadow: 0 0 20px #ddd; /*position:fixed;left:50%;top:50%;margin-top:-218px;margin-left:-365px;*/
border: 1px solid #ddd;
margin: 20px auto 0 auto
}
.windowL_P {
width: 200px;
border-right: 1px solid #dddddd;
height: 435px;
}
.windowL_P > dd {
height: 395px;
overflow: hidden
}
.windowL_P > dt, .windowR_P > dt {
width: 100%;
height: 40px;
border-bottom: 1px solid #dddddd
}
.windowL_P > dt > span, .windowR_P > dt > span {
display: inline-block;
width: 100%;
height: 40px;
box-sizing: border-box;
padding-left: 12px;
font-size: 14px;
color: #333333;
line-height: 40px;
}
.windowL_P li {
min-height: 32px;
position: relative;
cursor: pointer;
line-height: 32px;
}
.windowL_P li.talkGroup_P:hover {
background-color: #f5f5f5
}
.windowL_P li img {
width: 24px;
height: 24px;
position: absolute;
left: 10px;
top: 4px;
}
.windowL_P .talkGroup_P {
width: 100%;
box-sizing: border-box;
padding-left: 45px;
height: 32px;
font-size: 12px;
color: #333333;
line-height: 32px;
}
.windowL_P .talkGroup_P.on_P, .windowL_P .group li.on_P {
background-color: #f0f0f0
}
.windowL_P .group p {
height: 32px;
line-height: 32px;
width: 100%;
box-sizing: border-box;
padding-left: 30px;
background: url("../images/leftsan.png") no-repeat 13px center
}
.windowL_P .group p.slid_P {
background: url("../images/groupsan.png") no-repeat 10px center
}
.windowL_P .group p:hover {
background-color: #f5f5f5
}
.windowL_P .group li {
width: 100%;
box-sizing: border-box;
padding: 0 25px 0 45px;
}
.windowL_P .group li {
height: 45px;
line-height: 45px;
}
.windowL_P .group li img {
top: 10px
}
.windowL_P .group li:hover {
background-color: #f5f5f5
}
.online_P {
background: url("../images/online.png") no-repeat 175px center
}
.windowL_P .group li span {
display: inline-block;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.windowL_P .group > ul {
display: none
}
.pl15 {
padding-left: 15px;
}
.cur_P {
padding-left: 15px;
}
.windowR_P {
width: 529px;
height: 435px;
}
.window_P .windowR_P > dt {
width: 100%;
box-sizing: border-box;
padding-right: 38px;
position: relative;
height: 41px;
}
.closeBtn_P {
display: inline-block;
width: 20px;
height: 20px;
background: url("../images/close_icon.png") no-repeat center center;
position: absolute;
top: 11px;
right: 10px;
cursor: pointer;
}
.talkCon_P {
position: relative;
width: 100%;
box-sizing: border-box;
padding: 15px 12px 5px 12px;
height: 272px;
overflow: hidden;
background: url("../images/lineRea.png") repeat-x bottom left
}
.talkCon_P .otherAsk_P, .talkCon_P .myAsk_P {
margin-bottom: 18px
}
.otherAsk_P > a {
display: inline-block;
float: left
}
.otherAsk_P > a > img, .myAsk_P > a > img {
width: 24px;
height: 24px;
}
.otherAsk_P > dl {
float: left;
width: 445px;
box-sizing: border-box;
padding-left: 10px
}
.otherAsk_P > dl > dt, .myAsk_P > dl > dt {
font-size: 12px;
color: #666666;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: 8px;
}
.otherAsk_P > dl > dd > span, .myAsk_P > dl > dd > span {
font-size: 13px;
color: #333333;
background: #f0f0f0;
line-height: 24px;
padding: 5px 10px 5px 12px;
display: inline-block;
max-width: 400px;
white-space: normal
}
.myAsk_P > a {
display: inline-block;
float: right
}
.myAsk_P > dl {
float: right;
width: 445px;
box-sizing: border-box;
padding-right: 10px;
text-align: right
}
.talkCon_P .myAsk_P > dl > dd > span {
background: #b3acf2;
color: #fff
}
.talkCon_P .myAsk_P > a {
padding-top: 5px;
}
.funList_PJY {
height: 30px;
box-sizing: border-box;
border-bottom: 1px solid #fdfdfd
}
.funList_PJY a {
display: inline-block;
width: 16px;
height: 16px;
margin-top: 7px;
margin-left: 0px;
}
.mood_P {
background: url("../images/mood.png") no-repeat center center
}
.history_P {
background: url("../images/history.png") no-repeat center center
}
.textWin_P > div {
width: 100%;
line-height: 20px;
height: 50px;
padding: 0px 15px 5px 15px;
box-sizing: border-box
}
.btnList_P {
width: 100%;
padding-right: 12px;
box-sizing: border-box;
text-align: right
}
.send_P {
display: inline-block;
width: 100px;
height: 32px;
line-height: 32px;
text-align: center;
color: #fff;
font-size: 14px;
background: #7265e6
}
.send_P:hover {
background-color: #948aec;
}
.hisList_P {
width: 100%;
box-sizing: border-box;
padding: 10px 20px;
height: 360px;
overflow: hidden
}
.hisList_P dl {
margin-bottom: 10px
}
.hisList_P dt {
font-size: 13px;
width: 460px;
white-space: normal;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 5px
}
.hisList_P .blue_P {
color: #3075fb
}
.hisList_P .org_P {
color: #7265e6
}
.hisList_P dd {
width: 460px;
padding-left: 12px;
line-height: 20px;
font-size: 13px;
}
.pageList_P > a {
display: inline-block;
width: 10px;
height: 14px;
margin-left: 10px;
}
.first_P {
background: url("../images/first_his.png") no-repeat center center
}
.prev_P {
background: url("../images/prev_his.png") no-repeat center center
}
.next_P {
background: url("../images/next_his.png") no-repeat center center
}
.last_P {
background: url("../images/last_his.png") no-repeat center center
}
.first_P.disabled_P {
background: url("../images/firstdis_his.png") no-repeat center center
}
.prev_P.disabled_P {
background: url("../images/prevdis_his.png") no-repeat center center
}
.next_P.disabled_P {
background: url("../images/nextdis_his.png") no-repeat center center
}
.last_P.disabled_P {
background: url("../images/lastdis_his.png") no-repeat center center
}
.hisFoot_P {
height: 30px;
border-top: 1px solid #dddddd;
padding-top: 10px;
box-sizing: border-box;
padding-right: 10px
}
.pageList_P {
float: right
}
.timeBox_P {
float: right
}
.timeBox_P a {
display: inline-block;
width: 100px;
box-sizing: border-box;
height: 15px;
padding-left: 20px;
background: url("../images/datePic.png") no-repeat left center;
color: #666666;
font-size: 12px;
line-height: 15px;
}
.timeBox_P a:hover {
background-image: url("../images/datePic_hover.png")
}
.moodList_P {
width: 240px;
background-color: #fff;
overflow: hidden;
border: 1px solid #ddd;
text-align: left;
padding: 5px 10px;
position: absolute;
top: -64px;
left: -30px;
}
.moodList_P > li {
display: inline-block;
margin: 4px;
cursor: pointer;
}
.moodList_P > li > img {
width: 18px;
height: 18px;
}
.windowR_P.left2_P {
display: none
}
.window_P .mCSB_scrollTools {
width: 7px;
}
.return_P {
cursor: pointer;
margin-right: 5px;
display: inline-block;
width: 12px;
height: 11px;
background: url("../images/return-(1).png") no-repeat center center
}
.return_P:hover {
background-image: url("../images/return-hover.png")
}
/*******通讯录遮罩层*******/
.downLine_P {
position: relative
}
.downLine_P span {
color: #bbb
}
.shadow_P {
display: inline-block;
position: absolute;
top: 10px;
border-radius: 12px;
left: 10px;
width: 24px;
height: 24px;
background: #f0f0f0;
opacity: 0.6;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
z-index: 999
}
.talkCon_P .myAsk_P > dl > dd > span p {
color: #fff;
font-size: 13px;
line-height: 24px
}
.titleSty2_P {
display: inline-block;
max-width: 150px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} | AnyChatClient/js/anychat/css/anychat.css | @charset "UTF-8";
/*common*/
table {
border-collapse: collapse;
table-layout: fixed;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button, img {
padding: 0;
margin: 0;
font-size: 14px;
line-height: 1;
font-family: "Microsoft YaHei";
font-weight: normal;
font-style: normal;
color: #333;
word-break: break-all
}
body {
font-family: "Microsoft YaHei";
position: relative;
background: none
}
body, input, select, textarea, button {
font-size: 12px;
line-height: 1
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none
}
a {
text-decoration: none;
}
fieldset, img, abbr, acronym {
border: 0 none;
}
img {
vertical-align: top;
}
abbr, acronym {
font-variant: normal;
}
blockquote, q {
quotes: none
}
dl, ul, ol, menu, li {
list-style: none
}
input, button, textarea, select, optgroup, option {
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
}
/* 输入控件字体 */
input, select, textarea, button {
vertical-align: middle;
outline: none;
}
textarea {
resize: none;
overflow: auto;
}
input[type="button"] {
cursor: pointer;
}
button {
border: 0 none;
background-color: transparent;
cursor: pointer
}
input::-moz-focus-inner {
border: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
font-weight: normal
}
table {
table-layout: fixed;
border-collapse: collapse;
}
a:focus {
outline: none;
}
input::-ms-clear, input::-ms-reveal {
display: none;
}
.hide {
display: none;
}
.pb0 {
padding-bottom: 0 !important;
}
.table_demo {
width: 80%;
margin: 0 auto;
}
.table_demo > tbody > tr > td {
border: 1px solid #ddd;
padding: 20px;
}
.table_demo > tbody {
padding: 10px;
border: 1px solid #ddd;
}
/* clearfix */
.clearfix {
*zoom: 1;
}
.clearfix:after {
display: table;
line-height: 0;
content: "";
clear: both;
}
.clear {
clear: both;
}
/* public.omission */
.fl {
float: left;
display: inline
}
.fr {
float: right;
display: inline
}
.tc {
text-align: center;
}
.tr {
text-align: right;
}
h1, h2, h3, h4, h5 {
font-weight: normal;
}
.pr {
position: relative
}
.pa {
position: absolute
}
.nobod {
border: 0 !important
}
.w330 {
width: 330px !important;
}
.w270 {
width: 270px !important;
}
.w500 {
width: 500px;
}
.h300 {
height: 300px;
}
.h231 {
height: 231px
}
.h154 {
height: 160px
}
/*margin start*/
/*m-left*/
.ml10 {
margin-left: 10px;
}
/*m-right*/
.mr10 {
margin-right: 10px;
}
.mr30 {
margin-right: 30px;
}
.mr0 {
margin-right: 0 !important;
}
/*m-top*/
.mt10 {
margin-top: 10px;
}
.mt20 {
margin-top: 20px;
}
.mt24 {
margin-top: 24px !important
}
.mt40 {
margin-top: 40px;
}
.mt12 {
margin-top: 12px;
}
.mt30 {
margin-top: 30px;
}
.mt19 {
margin-top: 19px;
}
.mt50 {
margin-top: 50px;
}
/*m-bottom*/
.mb10 {
margin-bottom: 10px !important;
}
.mb20 {
margin-bottom: 20px;
}
.mb0 {
margin-bottom: 0 !important;
}
.mb30 {
margin-bottom: 30px !important;
}
/*margin over*/
.ov {
overflow: hidden;
}
/*底部footer*/
.footer_warp {
width: 100%;
height: 135px;
background-color: #fff;
border-top: 1px solid #ddd;
min-width: 1200px;
}
.footer {
height: 134px;
width: 1200px;
margin: 0 auto
}
.w1080 {
width: 1080px
}
.link li {
display: inline-block;
vertical-align: middle;
padding-right: 12px;
border-right: 1px solid #999;
font-size: 12px;
margin-left: 12px
}
.link li.nobod {
border: none
}
.link li.nomargin {
margin: 0
}
.link li a {
display: inline-block;
color: #999;
text-decoration: none
}
.link li a:hover {
color: #ff6600;
text-decoration: underline;
}
.copyright {
font-size: 12px;
color: #999;
margin-top: 30px
}
.footer > .fr a {
width: 118px;
height: 28px;
line-height: 28px;
border: 1px solid #d6d6d6;
font-size: 14px;
color: #666;
display: block;
text-decoration: none;
text-align: center
}
.footer > .fr a:hover {
background: #ffe8dd;
border-color: #ff6600;
color: #ff6600;
}
.w120 {
width: 120px
}
.ml0 {
margin-left: 0 !important
}
.br0 {
border-right: 0 !important
}
/*面包屑*/
.crumb {
height: 32px;
line-height: 32px;
font-size: 14px;
margin-bottom: 10px;
clear: both;
}
.crumb li {
height: 32px;
line-height: 32px;
float: left;
background: url(../images/crumb.png) no-repeat right center;
color: #f60;
padding: 0 10px;
font-size: 14px
}
.crumb li a {
color: #666;
text-decoration: none
}
.crumb_home {
background: url(../images/crumb_home.png) no-repeat 0 center;
padding-left: 16px
}
.crumb li.crumb_cur {
background: 0 0;
font-weight: bold
}
/*buttons start*/
.btn_solid, .btn_border {
cursor: pointer;
font-size: 13px;;
width: 120px;
height: 36px;
box-sizing: border-box;
line-height: 36px;
text-align: center;
float: left;
letter-spacing: 2px;
text-indent: -2px;
}
.btn_solid {
color: #fff;
background-color: #ff6600;
}
.btn_solid:hover {
background-color: #f68e5c;
}
.btn_border {
color: #ff6600;
border: 1px solid #ff6600;
}
.bcf {
background: #fff;
}
.btn_border:hover {
background-color: #ffe8dd;
}
.btn_solid.btn_press {
background-color: #e65f1d;
}
.w270 {
width: 270px;
}
/*buttons over*/
@charset "UTF-8";
.window_P {
width: 730px;
height: 435px;
background: #fff;
box-shadow: 0 0 20px #ddd; /*position:fixed;left:50%;top:50%;margin-top:-218px;margin-left:-365px;*/
border: 1px solid #ddd;
margin: 20px auto 0 auto
}
.windowL_P {
width: 200px;
border-right: 1px solid #dddddd;
height: 435px;
}
.windowL_P > dd {
height: 395px;
overflow: hidden
}
.windowL_P > dt, .windowR_P > dt {
width: 100%;
height: 40px;
border-bottom: 1px solid #dddddd
}
.windowL_P > dt > span, .windowR_P > dt > span {
display: inline-block;
width: 100%;
height: 40px;
box-sizing: border-box;
padding-left: 12px;
font-size: 14px;
color: #333333;
line-height: 40px;
}
.windowL_P li {
min-height: 32px;
position: relative;
cursor: pointer;
line-height: 32px;
}
.windowL_P li.talkGroup_P:hover {
background-color: #f5f5f5
}
.windowL_P li img {
width: 24px;
height: 24px;
position: absolute;
left: 10px;
top: 4px;
}
.windowL_P .talkGroup_P {
width: 100%;
box-sizing: border-box;
padding-left: 45px;
height: 32px;
font-size: 12px;
color: #333333;
line-height: 32px;
}
.windowL_P .talkGroup_P.on_P, .windowL_P .group li.on_P {
background-color: #f0f0f0
}
.windowL_P .group p {
height: 32px;
line-height: 32px;
width: 100%;
box-sizing: border-box;
padding-left: 30px;
background: url("../images/leftsan.png") no-repeat 13px center
}
.windowL_P .group p.slid_P {
background: url("../images/groupsan.png") no-repeat 10px center
}
.windowL_P .group p:hover {
background-color: #f5f5f5
}
.windowL_P .group li {
width: 100%;
box-sizing: border-box;
padding: 0 25px 0 45px;
}
.windowL_P .group li {
height: 45px;
line-height: 45px;
}
.windowL_P .group li img {
top: 10px
}
.windowL_P .group li:hover {
background-color: #f5f5f5
}
.online_P {
background: url("../images/online.png") no-repeat 175px center
}
.windowL_P .group li span {
display: inline-block;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.windowL_P .group > ul {
display: none
}
.pl15 {
padding-left: 15px;
}
.cur_P {
padding-left: 15px;
}
.windowR_P {
width: 529px;
height: 435px;
}
.window_P .windowR_P > dt {
width: 100%;
box-sizing: border-box;
padding-right: 38px;
position: relative;
height: 41px;
}
.closeBtn_P {
display: inline-block;
width: 20px;
height: 20px;
background: url("../images/close_icon.png") no-repeat center center;
position: absolute;
top: 11px;
right: 10px;
cursor: pointer;
}
.talkCon_P {
position: relative;
width: 100%;
box-sizing: border-box;
padding: 15px 12px 5px 12px;
height: 272px;
overflow: hidden;
background: url("../images/lineRea.png") repeat-x bottom left
}
.talkCon_P .otherAsk_P, .talkCon_P .myAsk_P {
margin-bottom: 18px
}
.otherAsk_P > a {
display: inline-block;
float: left
}
.otherAsk_P > a > img, .myAsk_P > a > img {
width: 24px;
height: 24px;
}
.otherAsk_P > dl {
float: left;
width: 445px;
box-sizing: border-box;
padding-left: 10px
}
.otherAsk_P > dl > dt, .myAsk_P > dl > dt {
font-size: 12px;
color: #666666;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: 8px;
}
.otherAsk_P > dl > dd > span, .myAsk_P > dl > dd > span {
font-size: 13px;
color: #333333;
background: #f0f0f0;
line-height: 24px;
padding: 5px 10px 5px 12px;
display: inline-block;
max-width: 400px;
white-space: normal
}
.myAsk_P > a {
display: inline-block;
float: right
}
.myAsk_P > dl {
float: right;
width: 445px;
box-sizing: border-box;
padding-right: 10px;
text-align: right
}
.talkCon_P .myAsk_P > dl > dd > span {
background: #b3acf2;
color: #fff
}
.talkCon_P .myAsk_P > a {
padding-top: 5px;
}
.funList_PJY {
height: 30px;
box-sizing: border-box;
border-bottom: 1px solid #fdfdfd
}
.funList_PJY a {
display: inline-block;
width: 16px;
height: 16px;
margin-top: 7px;
margin-left: 0px;
}
.mood_P {
background: url("../images/mood.png") no-repeat center center
}
.history_P {
background: url("../images/history.png") no-repeat center center
}
.textWin_P > div {
width: 100%;
line-height: 20px;
height: 50px;
padding: 0px 15px 5px 15px;
box-sizing: border-box
}
.btnList_P {
width: 100%;
padding-right: 12px;
box-sizing: border-box;
text-align: right
}
.send_P {
display: inline-block;
width: 100px;
height: 32px;
line-height: 32px;
text-align: center;
color: #fff;
font-size: 14px;
background: #7265e6
}
.send_P:hover {
background-color: #948aec;
}
.hisList_P {
width: 100%;
box-sizing: border-box;
padding: 10px 20px;
height: 360px;
overflow: hidden
}
.hisList_P dl {
margin-bottom: 10px
}
.hisList_P dt {
font-size: 13px;
width: 460px;
white-space: normal;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 5px
}
.hisList_P .blue_P {
color: #3075fb
}
.hisList_P .org_P {
color: #7265e6
}
.hisList_P dd {
width: 460px;
padding-left: 12px;
line-height: 20px;
font-size: 13px;
}
.pageList_P > a {
display: inline-block;
width: 10px;
height: 14px;
margin-left: 10px;
}
.first_P {
background: url("../images/first_his.png") no-repeat center center
}
.prev_P {
background: url("../images/prev_his.png") no-repeat center center
}
.next_P {
background: url("../images/next_his.png") no-repeat center center
}
.last_P {
background: url("../images/last_his.png") no-repeat center center
}
.first_P.disabled_P {
background: url("../images/firstdis_his.png") no-repeat center center
}
.prev_P.disabled_P {
background: url("../images/prevdis_his.png") no-repeat center center
}
.next_P.disabled_P {
background: url("../images/nextdis_his.png") no-repeat center center
}
.last_P.disabled_P {
background: url("../images/lastdis_his.png") no-repeat center center
}
.hisFoot_P {
height: 30px;
border-top: 1px solid #dddddd;
padding-top: 10px;
box-sizing: border-box;
padding-right: 10px
}
.pageList_P {
float: right
}
.timeBox_P {
float: right
}
.timeBox_P a {
display: inline-block;
width: 100px;
box-sizing: border-box;
height: 15px;
padding-left: 20px;
background: url("../images/datePic.png") no-repeat left center;
color: #666666;
font-size: 12px;
line-height: 15px;
}
.timeBox_P a:hover {
background-image: url("../images/datePic_hover.png")
}
.moodList_P {
width: 240px;
background-color: #fff;
overflow: hidden;
border: 1px solid #ddd;
text-align: left;
padding: 5px 10px;
position: absolute;
top: -64px;
left: -30px;
}
.moodList_P > li {
display: inline-block;
margin: 4px;
cursor: pointer;
}
.moodList_P > li > img {
width: 18px;
height: 18px;
}
.windowR_P.left2_P {
display: none
}
.window_P .mCSB_scrollTools {
width: 7px;
}
.return_P {
cursor: pointer;
margin-right: 5px;
display: inline-block;
width: 12px;
height: 11px;
background: url("../images/return-(1).png") no-repeat center center
}
.return_P:hover {
background-image: url("../images/return-hover.png")
}
/*******通讯录遮罩层*******/
.downLine_P {
position: relative
}
.downLine_P span {
color: #bbb
}
.shadow_P {
display: inline-block;
position: absolute;
top: 10px;
border-radius: 12px;
left: 10px;
width: 24px;
height: 24px;
background: #f0f0f0;
opacity: 0.6;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
z-index: 999
}
.talkCon_P .myAsk_P > dl > dd > span p {
color: #fff;
font-size: 13px;
line-height: 24px
}
.titleSty2_P {
display: inline-block;
max-width: 150px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} | 0.256925 | 0.05526 |
body {
text-align: center;
margin: 0px;
font-family: Roboto;
font-style: normal;
font-size: 1.1rem;
line-height: normal;
}
a {
text-decoration: none;
}
input {
font-size: 1.1rem;
margin: 0.25rem auto;
padding: 0.25rem;
color: #2D3142;
background: none !important;
}
.top-bar {
padding: 30px 25px;
background: #456990;
color: white;
}
h3 {
z-index: 999;
margin: 0 auto;
display: inline-block;
width: calc(100% - 24px - 54px - 50px);
font-size: 1.7rem;
margin-left: 5px;
}
button {
font-size: 20px;
background: none !important;
border: none !important;
color: white;
}
.done-button, .edit-button {
float: right;
margin-top: 6px;
color: white;
border: none !important;
}
.delete-button {
color: #EF6B53;
}
.back-button, .cancel-button {
float: left;
margin-top: 6px;
color: white;
}
.new-contact {
clear: both;
margin-top: 0;
}
.header-img {
padding: 3vh 0;
background: linear-gradient(180deg, #2D3142 60%, white 40%);
}
.header-text {
text-align: center;
margin-bottom: 3vh;
}
.header-text input {
display: inline-block;
margin: 2px 0;
}
.info {
color: #456990;
border: none;
border-bottom: 1px solid #2D3142;
}
.full-name {
margin-top: 0px;
}
.body {
text-align: center;
}
.body img {
float: left;
margin-top: 5px;
margin-left: -30px;
}
.view {
border: none;
margin-left: 7px;
width: 250px;
}
.img-container {
max-width: 300px;
display: block;
margin: 0 auto;
position: relative;
}
.prev {
position: absolute;
top: 40%;
left: -30px;
cursor: pointer;
}
.next {
position: absolute;
top: 40%;
right: -30px;
cursor: pointer;
}
.prev:hover, .next:hover {
border-radius: 3px 0 0 3px;
background-color: rgba(0,0,0,0.8);
}
.hide {
display: none;
}
.dot-container {
margin: 10px auto;
max-width: 100px;
}
.dot {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #BFC0C0;
border-radius: 50%;
display: inline-block;
}
.active, .dot:hover {
background-color: #2D3142;
}
.highlight {
background-color: #2D3142;
}
.new {
margin-left: 7px;
width: 250px;
}
.input-field {
clear: both;
margin: 2vh 0;
display: inline-block;
}
.delete {
margin-top: 4vh;
margin-bottom: 2vh;
display: inline-block;
}
.prof-pic {
height: fit-content;
margin: 0 auto;
}
#icon-container {
width:180px;
height:30px;
margin:0 auto;
display:block;
}
.edit {
/* color: #4DB4FF; */
}
#edit-prof-pic {
height: 30px;
width: 30px;
padding-right: 0px;
right:0;
position: inherit;
margin-right: 15px;
margin-top:-15px;
}
a.svg {
position: relative;
display: block;
}
a.svg:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left:0;
}
.card {
border: 1px solid;
border-color: #2D3142;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}
.header-img {
text-align: center;
}
#display-card {
max-width: 300px;
}
#line2 {
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #BFC0C0;
opacity: 1; /* Firefox */
}
#icon-trash {
max-width: 25px;
margin-top: -3px;
} | public/css/newcontact.css | body {
text-align: center;
margin: 0px;
font-family: Roboto;
font-style: normal;
font-size: 1.1rem;
line-height: normal;
}
a {
text-decoration: none;
}
input {
font-size: 1.1rem;
margin: 0.25rem auto;
padding: 0.25rem;
color: #2D3142;
background: none !important;
}
.top-bar {
padding: 30px 25px;
background: #456990;
color: white;
}
h3 {
z-index: 999;
margin: 0 auto;
display: inline-block;
width: calc(100% - 24px - 54px - 50px);
font-size: 1.7rem;
margin-left: 5px;
}
button {
font-size: 20px;
background: none !important;
border: none !important;
color: white;
}
.done-button, .edit-button {
float: right;
margin-top: 6px;
color: white;
border: none !important;
}
.delete-button {
color: #EF6B53;
}
.back-button, .cancel-button {
float: left;
margin-top: 6px;
color: white;
}
.new-contact {
clear: both;
margin-top: 0;
}
.header-img {
padding: 3vh 0;
background: linear-gradient(180deg, #2D3142 60%, white 40%);
}
.header-text {
text-align: center;
margin-bottom: 3vh;
}
.header-text input {
display: inline-block;
margin: 2px 0;
}
.info {
color: #456990;
border: none;
border-bottom: 1px solid #2D3142;
}
.full-name {
margin-top: 0px;
}
.body {
text-align: center;
}
.body img {
float: left;
margin-top: 5px;
margin-left: -30px;
}
.view {
border: none;
margin-left: 7px;
width: 250px;
}
.img-container {
max-width: 300px;
display: block;
margin: 0 auto;
position: relative;
}
.prev {
position: absolute;
top: 40%;
left: -30px;
cursor: pointer;
}
.next {
position: absolute;
top: 40%;
right: -30px;
cursor: pointer;
}
.prev:hover, .next:hover {
border-radius: 3px 0 0 3px;
background-color: rgba(0,0,0,0.8);
}
.hide {
display: none;
}
.dot-container {
margin: 10px auto;
max-width: 100px;
}
.dot {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #BFC0C0;
border-radius: 50%;
display: inline-block;
}
.active, .dot:hover {
background-color: #2D3142;
}
.highlight {
background-color: #2D3142;
}
.new {
margin-left: 7px;
width: 250px;
}
.input-field {
clear: both;
margin: 2vh 0;
display: inline-block;
}
.delete {
margin-top: 4vh;
margin-bottom: 2vh;
display: inline-block;
}
.prof-pic {
height: fit-content;
margin: 0 auto;
}
#icon-container {
width:180px;
height:30px;
margin:0 auto;
display:block;
}
.edit {
/* color: #4DB4FF; */
}
#edit-prof-pic {
height: 30px;
width: 30px;
padding-right: 0px;
right:0;
position: inherit;
margin-right: 15px;
margin-top:-15px;
}
a.svg {
position: relative;
display: block;
}
a.svg:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left:0;
}
.card {
border: 1px solid;
border-color: #2D3142;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}
.header-img {
text-align: center;
}
#display-card {
max-width: 300px;
}
#line2 {
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #BFC0C0;
opacity: 1; /* Firefox */
}
#icon-trash {
max-width: 25px;
margin-top: -3px;
} | 0.343232 | 0.0704 |
@keyframes load {
from {width:0px;}
to{width:240px;}
}
html,
body {
font-family: Roboto, Arial, Helvetica, sans-serif;
margin: 0 !important;
padding: 0;
transition: 0.2s;
background: #121212;
color: white;
}
.heading {
margin-left: 1rem;
}
img {
color:white;
}
#loading {
position: absolute;
width: 100%;
height: 100%;
background: #121212;
z-index: 100;
top: 0;
opacity: 1;
}
#loading-indicator {
position: absolute;
width: 240px;
height:4px;
background: rgba(48, 79, 254, 0.26);
top:0;
right:0;
left:0;
bottom:0;
margin:auto;
}
#loading-indicator-fill {
width:0;
height: 3px;
background: #304FFE;
animation-name:load;
animation-duration: 5s;
}
#error {
width: 100%;
height: 1rem;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
text-align: center;
opacity: 0.5;
display: none;
font-size: 20px;
letter-spacing: 0.5px;
}
.fade {
opacity: 0 !important;
transition: 0.4s;
}
.brightness {
width: 20rem;
}
.slider-container {
width:50%;
display: inline-block;
}
.option {
width: 5rem;
height: 5rem;
border-radius: 4px;
text-align: center;
padding: 1rem;
margin: 2rem;
margin-right: 0.5rem;
display: inline-block;
transition: 150ms;
background: rgba(255, 255, 255, 0.10);
}
.option:hover {
background-color: rgba(255, 255, 255, 0.20);
}
.option p {
opacity: 0;
transition: 0.2s;
}
.option:hover p {
opacity: 1;
}
.on {
transition: 150ms;
box-shadow: 0px 0px 0px 2px #304FFE !important;
}
.disable {
opacity: 0.3;
}
.disable:hover {
background-color: #171B23;
}
.disable:hover p {
opacity: 0;
}
.sub-btn {
display: inline-block;
width: 1rem;
height: 1rem;
margin-left: 1rem;
border-radius: 4px;
padding: 0.5rem;
background: #171B23;
border: 6px solid rgba(0,0,0,0.15);
}
.sub-btn img {
width: 100%;
}
.sub-btn:hover {
background-color: #1b2029;
}
#error-reload {
position: absolute;
top: 6rem;
bottom: 0;
right: 0;
left: calc(50% - 58px);
margin: auto;
display: none;
background: #304FFE;
}
.mdc-slider__track-container {
background-color: rgb(48, 79, 254,0.26) !important;
}
.mdc-slider__track, .mdc-slider__focus-ring {
background-color: rgb(48, 79, 254) !important;
}
.mdc-slider__thumb {
fill: rgb(48, 79, 254) !important;
stroke: rgb(48, 79, 254) !important;
}
.setting-section, .global-setting-section {
display: none;
width: 200px;
padding: 1rem;
border-radius: 4px;
margin-left: 1rem;
background: rgba(255,255,255,0.1);
margin-bottom: 1rem;
text-align: center;
}
.progress {
height: 1rem;
background: #00d82f;
border-radius: 4px;
}
h2 {
padding: 0;
margin: 0;
display: inline-block;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
background: #11141b;
border: 6px solid rgba(0,0,0,0.15);
color: #fff;
text-align: center;
border-radius: 6px;
padding: 1rem;
position: absolute;
z-index: 1;
top: -5px;
left: 110%;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 50%;
right: 100%;
margin-top: calc(-50% - 5px);
border-width: 5px;
border-style: solid;
border-color: transparent #11141b transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.settings-container {
width:49%;
display: inline-block;
float: left;
}
.global-settings-container {
width:50%;
display: inline-block;
}
.mdc-notched-outline {
color:white !important;
border-color:white !important;
}
.mdc-dialog__surface {
background: rgb(34,34,34) !important;
}
.mdc-dialog__title {
color:white !important;
}
#colour-picker {
margin: 0.5rem auto 1.5rem auto;
}
.a-color-picker {
background-color: #ffffff0A !important;
}
.a-color-picker-row {
border:0 !important;
}
.mdc-text-field__input {
color:white !important;
padding: 0 !important;
}
.mdc-notched-outline * {
border-color: white !important;
}
.mdc-text-field {
height: 35px !important;
margin-top:1rem;
}
.mdc-text-field input {
margin-left:10px;
} | styles/style.css | @keyframes load {
from {width:0px;}
to{width:240px;}
}
html,
body {
font-family: Roboto, Arial, Helvetica, sans-serif;
margin: 0 !important;
padding: 0;
transition: 0.2s;
background: #121212;
color: white;
}
.heading {
margin-left: 1rem;
}
img {
color:white;
}
#loading {
position: absolute;
width: 100%;
height: 100%;
background: #121212;
z-index: 100;
top: 0;
opacity: 1;
}
#loading-indicator {
position: absolute;
width: 240px;
height:4px;
background: rgba(48, 79, 254, 0.26);
top:0;
right:0;
left:0;
bottom:0;
margin:auto;
}
#loading-indicator-fill {
width:0;
height: 3px;
background: #304FFE;
animation-name:load;
animation-duration: 5s;
}
#error {
width: 100%;
height: 1rem;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
text-align: center;
opacity: 0.5;
display: none;
font-size: 20px;
letter-spacing: 0.5px;
}
.fade {
opacity: 0 !important;
transition: 0.4s;
}
.brightness {
width: 20rem;
}
.slider-container {
width:50%;
display: inline-block;
}
.option {
width: 5rem;
height: 5rem;
border-radius: 4px;
text-align: center;
padding: 1rem;
margin: 2rem;
margin-right: 0.5rem;
display: inline-block;
transition: 150ms;
background: rgba(255, 255, 255, 0.10);
}
.option:hover {
background-color: rgba(255, 255, 255, 0.20);
}
.option p {
opacity: 0;
transition: 0.2s;
}
.option:hover p {
opacity: 1;
}
.on {
transition: 150ms;
box-shadow: 0px 0px 0px 2px #304FFE !important;
}
.disable {
opacity: 0.3;
}
.disable:hover {
background-color: #171B23;
}
.disable:hover p {
opacity: 0;
}
.sub-btn {
display: inline-block;
width: 1rem;
height: 1rem;
margin-left: 1rem;
border-radius: 4px;
padding: 0.5rem;
background: #171B23;
border: 6px solid rgba(0,0,0,0.15);
}
.sub-btn img {
width: 100%;
}
.sub-btn:hover {
background-color: #1b2029;
}
#error-reload {
position: absolute;
top: 6rem;
bottom: 0;
right: 0;
left: calc(50% - 58px);
margin: auto;
display: none;
background: #304FFE;
}
.mdc-slider__track-container {
background-color: rgb(48, 79, 254,0.26) !important;
}
.mdc-slider__track, .mdc-slider__focus-ring {
background-color: rgb(48, 79, 254) !important;
}
.mdc-slider__thumb {
fill: rgb(48, 79, 254) !important;
stroke: rgb(48, 79, 254) !important;
}
.setting-section, .global-setting-section {
display: none;
width: 200px;
padding: 1rem;
border-radius: 4px;
margin-left: 1rem;
background: rgba(255,255,255,0.1);
margin-bottom: 1rem;
text-align: center;
}
.progress {
height: 1rem;
background: #00d82f;
border-radius: 4px;
}
h2 {
padding: 0;
margin: 0;
display: inline-block;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
background: #11141b;
border: 6px solid rgba(0,0,0,0.15);
color: #fff;
text-align: center;
border-radius: 6px;
padding: 1rem;
position: absolute;
z-index: 1;
top: -5px;
left: 110%;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 50%;
right: 100%;
margin-top: calc(-50% - 5px);
border-width: 5px;
border-style: solid;
border-color: transparent #11141b transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.settings-container {
width:49%;
display: inline-block;
float: left;
}
.global-settings-container {
width:50%;
display: inline-block;
}
.mdc-notched-outline {
color:white !important;
border-color:white !important;
}
.mdc-dialog__surface {
background: rgb(34,34,34) !important;
}
.mdc-dialog__title {
color:white !important;
}
#colour-picker {
margin: 0.5rem auto 1.5rem auto;
}
.a-color-picker {
background-color: #ffffff0A !important;
}
.a-color-picker-row {
border:0 !important;
}
.mdc-text-field__input {
color:white !important;
padding: 0 !important;
}
.mdc-notched-outline * {
border-color: white !important;
}
.mdc-text-field {
height: 35px !important;
margin-top:1rem;
}
.mdc-text-field input {
margin-left:10px;
} | 0.403449 | 0.075551 |
body {
font-family: 'Open Sans',Helvetica,Arial,sans-serif;
background-color: rgba(0, 0, 0, 0.9);
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: 0;
}
#fullscreen {
z-index: -999;
min-height: 100%;
min-width: 1024px;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
/*New */
filter: brightness(50%);
}
#avatar {
height: 180px;
border-radius: 100%;
border: 5px solid white;
margin-bottom: 40px;
}
h1 {
color: white;
font-weight: bold;
letter-spacing: 0.1em;
font-size: 4em;
font-family: 'Open Sans';
margin: -10px 0;
}
h3 {
color: white;
padding-bottom: 20px;
font-weight: thin;
}
/*h4 {*/
/* color: white;*/
/* padding-bottom: 5px;*/
/* font-weight: normal; !* thin *!*/
/* text-align: center;*/
/* width: 100%;*/
/*}*/
.content {
padding-top: 100px;
padding-bottom: 40px;
/*buggy*/
/*background-color: rgba(0, 0, 0, 0.5);*/
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
li {
border-radius: 100%;
border: 2px solid white;
color: white;
margin: 8px;
display: inline-block;
list-style: none;
width: 65px;
height: 65px;
}
li:hover {
color: white;
text-decoration: none;
-webkit-transition: 500ms;
-moz-transition: 500ms;
transition: 500ms;
text-decoration: none;
background-color: rgba(0, 0, 0, 0.5);
}
a {
color: white;
padding: 15px;
text-decoration: none;
}
/*Add tooltip here if required*/
.description {
display: none;
}
.description:hover {
content:attr(description);
border: #c0c0c0 1px dotted;
padding: 5px 20px 5px 5px;
display: block;
z-index: 100;
/*background: #f0f0f0 no-repeat 100% 5%;*/
background-color: black;
left: 0px;
margin: 10px;
width: 250px;
position: absolute;
top: 10px;
text-decoration: none
}
/* My mods start here */
/*<div id="last_update">*/
#last_update{
/*color: white;*/
/*position: absolute; !* absolute*!*/
/*!*bottom: 10px;*!*/
/*text-align: center;*/
/*width: 100%;*/
/*!*float: left;*!*/
/*!*padding-bottom: 10px;*!*/
/*!*padding-top: 10px;*!*/
/*!*text-align: center;*!*/
/*bottom: 40px;*/
color: white;
padding-bottom: 10px;
font-weight: normal; /* thin */
text-align: center;
width: 100%;
}
/*https://www.w3schools.com/css/css_tooltip.asp*/
/*https://stackoverflow.com/questions/2011142/how-to-change-the-style-of-the-title-attribute-inside-an-anchor-tag*/
.tip {
text-decoration: none
}
.tip:hover {
cursor: help;
position: relative;
}
.tip span {
display: none;
}
.tip:hover span {
content:"hello";
border: #c0c0c0 1px dotted;
padding: 5px 20px 5px 5px;
display: block;
z-index: 100;
/*background: #f0f0f0 no-repeat 100% 5%;*/
background-color: black;
left: 0px;
margin: 10px;
width: 250px;
position: absolute;
top: 10px;
text-decoration: none
}
/*footer{*/
/* !*position: fixed;*!*/
/* bottom: 0;*/
/* position: absolute;*/
/*}*/
/* My mods stop here */
@media (max-width: 450px) {
ul {
text-align: center;
}
li {
border-radius: 0%;
border: none;
color: white;
margin: 8px;
display: block;
list-style: none;
margin: 10px 0px;
text-align: center;
height: auto;
width: auto;
}
li:hover {
background-color: none;
transition: none;
}
a {
text-align: justify;
border: 2px solid white;
border-radius: 5px;
color: white;
padding: 15px;
padding-left: 30px;
width: 70%;
}
a:hover {
-webkit-transition: 500ms;
-moz-transition: 500ms;
transition: 500ms;
background-color: rgba(0, 0, 0, 0.5);
color: white;
text-decoration: none;
}
.description {
display: inline-block;
color: white;
font-family: Arial;
margin-left: 40px;
}
.content {
padding-top: 60px;
}
} | css/style-welcome.css | body {
font-family: 'Open Sans',Helvetica,Arial,sans-serif;
background-color: rgba(0, 0, 0, 0.9);
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: 0;
}
#fullscreen {
z-index: -999;
min-height: 100%;
min-width: 1024px;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
/*New */
filter: brightness(50%);
}
#avatar {
height: 180px;
border-radius: 100%;
border: 5px solid white;
margin-bottom: 40px;
}
h1 {
color: white;
font-weight: bold;
letter-spacing: 0.1em;
font-size: 4em;
font-family: 'Open Sans';
margin: -10px 0;
}
h3 {
color: white;
padding-bottom: 20px;
font-weight: thin;
}
/*h4 {*/
/* color: white;*/
/* padding-bottom: 5px;*/
/* font-weight: normal; !* thin *!*/
/* text-align: center;*/
/* width: 100%;*/
/*}*/
.content {
padding-top: 100px;
padding-bottom: 40px;
/*buggy*/
/*background-color: rgba(0, 0, 0, 0.5);*/
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
li {
border-radius: 100%;
border: 2px solid white;
color: white;
margin: 8px;
display: inline-block;
list-style: none;
width: 65px;
height: 65px;
}
li:hover {
color: white;
text-decoration: none;
-webkit-transition: 500ms;
-moz-transition: 500ms;
transition: 500ms;
text-decoration: none;
background-color: rgba(0, 0, 0, 0.5);
}
a {
color: white;
padding: 15px;
text-decoration: none;
}
/*Add tooltip here if required*/
.description {
display: none;
}
.description:hover {
content:attr(description);
border: #c0c0c0 1px dotted;
padding: 5px 20px 5px 5px;
display: block;
z-index: 100;
/*background: #f0f0f0 no-repeat 100% 5%;*/
background-color: black;
left: 0px;
margin: 10px;
width: 250px;
position: absolute;
top: 10px;
text-decoration: none
}
/* My mods start here */
/*<div id="last_update">*/
#last_update{
/*color: white;*/
/*position: absolute; !* absolute*!*/
/*!*bottom: 10px;*!*/
/*text-align: center;*/
/*width: 100%;*/
/*!*float: left;*!*/
/*!*padding-bottom: 10px;*!*/
/*!*padding-top: 10px;*!*/
/*!*text-align: center;*!*/
/*bottom: 40px;*/
color: white;
padding-bottom: 10px;
font-weight: normal; /* thin */
text-align: center;
width: 100%;
}
/*https://www.w3schools.com/css/css_tooltip.asp*/
/*https://stackoverflow.com/questions/2011142/how-to-change-the-style-of-the-title-attribute-inside-an-anchor-tag*/
.tip {
text-decoration: none
}
.tip:hover {
cursor: help;
position: relative;
}
.tip span {
display: none;
}
.tip:hover span {
content:"hello";
border: #c0c0c0 1px dotted;
padding: 5px 20px 5px 5px;
display: block;
z-index: 100;
/*background: #f0f0f0 no-repeat 100% 5%;*/
background-color: black;
left: 0px;
margin: 10px;
width: 250px;
position: absolute;
top: 10px;
text-decoration: none
}
/*footer{*/
/* !*position: fixed;*!*/
/* bottom: 0;*/
/* position: absolute;*/
/*}*/
/* My mods stop here */
@media (max-width: 450px) {
ul {
text-align: center;
}
li {
border-radius: 0%;
border: none;
color: white;
margin: 8px;
display: block;
list-style: none;
margin: 10px 0px;
text-align: center;
height: auto;
width: auto;
}
li:hover {
background-color: none;
transition: none;
}
a {
text-align: justify;
border: 2px solid white;
border-radius: 5px;
color: white;
padding: 15px;
padding-left: 30px;
width: 70%;
}
a:hover {
-webkit-transition: 500ms;
-moz-transition: 500ms;
transition: 500ms;
background-color: rgba(0, 0, 0, 0.5);
color: white;
text-decoration: none;
}
.description {
display: inline-block;
color: white;
font-family: Arial;
margin-left: 40px;
}
.content {
padding-top: 60px;
}
} | 0.449634 | 0.064359 |
@font-face {
font-family: 'Gilroy-ExtraBold';
src: url("../fonts/Gilroy-ExtraBold.eot");
src: url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype"), url("../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Gilroy-Light';
src: url("../fonts/Gilroy-Light.eot");
src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.ttf") format("truetype"), url("../fonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
font-weight: normal;
font-style: normal; }
.comments__form {
position: relative; }
.comments__form_single {
margin: 24px 0 0; }
.comments__input {
position: relative; }
.comments__input-inner {
position: relative;
z-index: 1;
padding-left: 25px;
display: block;
width: 100%;
height: 70px;
font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 16px;
color: #979797;
-webkit-appearance: none;
border: 1px solid #f3f3f3;
outline: none;
background: none;
-webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
cursor: pointer; }
@media (max-width: 768px) {
.comments__input-inner {
padding-left: 0; } }
.comments__input-text {
position: absolute;
z-index: -1;
left: 25px;
top: 25px;
padding-left: 32px;
font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 16px;
color: #979797;
cursor: pointer; }
.comments__input-text:before {
content: '';
display: inline-block;
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
background-image: url(../../../img/single/comment.svg);
-webkit-background-size: 100% 100%;
background-size: 100%;
background-position: center; } | static/css/comments/__form/comments__form.css | @font-face {
font-family: 'Gilroy-ExtraBold';
src: url("../fonts/Gilroy-ExtraBold.eot");
src: url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype"), url("../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Gilroy-Light';
src: url("../fonts/Gilroy-Light.eot");
src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.ttf") format("truetype"), url("../fonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
font-weight: normal;
font-style: normal; }
.comments__form {
position: relative; }
.comments__form_single {
margin: 24px 0 0; }
.comments__input {
position: relative; }
.comments__input-inner {
position: relative;
z-index: 1;
padding-left: 25px;
display: block;
width: 100%;
height: 70px;
font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 16px;
color: #979797;
-webkit-appearance: none;
border: 1px solid #f3f3f3;
outline: none;
background: none;
-webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
cursor: pointer; }
@media (max-width: 768px) {
.comments__input-inner {
padding-left: 0; } }
.comments__input-text {
position: absolute;
z-index: -1;
left: 25px;
top: 25px;
padding-left: 32px;
font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 16px;
color: #979797;
cursor: pointer; }
.comments__input-text:before {
content: '';
display: inline-block;
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
background-image: url(../../../img/single/comment.svg);
-webkit-background-size: 100% 100%;
background-size: 100%;
background-position: center; } | 0.340266 | 0.055209 |
body {font-family: Arial, Helvetica, sans-serif; font-size: 76%; margin: 0;}
a {color: #002f5e;}
a:visited {color: #62228e;}
acronym {border-bottom: 1px dotted #002f5e; cursor: help;}
img {border: none;}
h1, h2, h3, h4, h5 {font-family: Century Gothic, Futura, Arial, Helvetica, sans-serif;}
#skiplink {font-size: 1em; border: none; margin-left: -9999px; float: left;}
#skiplink:focus, #skiplink:active {
font-size: 2em !important; font-weight: bold; line-height: 2em; text-decoration: none;
text-align: center; margin-left: 0 !important; border: 5px solid; display: block; float: none;
}
#main {width: 780px; margin: 0 auto; background: url(../media/bkg_nav.jpg) 0 100px no-repeat;}
#banner {
height: 110px; clear: both;
background-color: #fff;
background-image: url(../media/bkg_banner.png); background-repeat: no-repeat; background-position: right;
}
#banner img {padding: 4px 0 0 23px; float: left;}
h1 {float: right; width: 600px; font-size: 2em; color: #002f5e; margin: 1.6em 0 0;}
h1 span {font-size: .8em;}
h1#long {margin: 1em 0 0;}
h1#long span {font-size: .7em; line-height: 1.2em;}
#missionbar {
background: #f1f6fb; padding: 3px 5px 3px 10px; height: 16px;
border-top: 1px solid #002f5e; border-bottom: 1px solid #002f5e; color: #002f5e;
}
#missionbar a {color: #002f5e; text-decoration: none;}
#missionbar a:hover {text-decoration: underline;}
#missionbar #missiontime {width: 360px; float: left;}
#panelMenu {float: right; text-align: right;}
#panelMenu ul {background: #b2c355; margin: 0; padding: 0; list-style: none;}
#panelMenu ul li {border-left: 1px solid #fff; float: left; margin: 0 5px;}
#panelMenu ul li a {color: #002f5e; font-weight: bold; display: block; text-transform: capitalize;}
#panelMenu ul li a:hover,
#panelMenu ul li a[class~="active"] {color: #002f5e; text-decoration: underline;}
#missionbar #languages {float: right;}
#missionbar #languages ul {margin: 0; padding: 0;}
#missionbar #languages ul li {display: inline; margin: 0 0 0 1em;}
#navigation {width: 179px; float: left;}
#navigation ul {background: #b2c355; margin: 0; padding: 0; list-style: none;}
#navigation ul li {border-bottom: 1px solid #fff;}
#navigation ul li a {
color: #002f5e; font-weight: bold; text-decoration: none;
padding: 5px 5px 5px 12px; display: block; background: url(../media/bkg_nav-opt.gif) top repeat-x;
}
#navigation ul li a:hover,
#navigation ul li a[class~="active"] {color: #002f5e; background: #f9ec00 url(../media/bkg_nav-opt-hover.gif) top repeat-x;}
#navigation ul li a[class~="active"] {cursor: default;}
#navigation ul li#pkhome a:hover {color: #fff; background: #002f5e url(../media/bkg_nav-opt2-hover.gif) top repeat-x;}
#content {border-left: 1px solid #b2c355; background: white; float: left; width: 600px; min-height: 340px;}
#visual {background: #002f5e; height: 199px;}
#visual #picture {background: url(../media/bkg_vsl-img_d.gif) bottom repeat-x; padding: 4px 0 5px 5px;}
#visual #caption {
background: url(../media/bkg_vsl-txt_d.gif) right bottom no-repeat;
width: 180px; height: 199px; float: right;
font-weight: bold; color: #fff; position: relative;
}
#visual #caption #cpt_cnt {position:absolute; bottom: -1px; left: 4px; width: 167px; padding: 5px 2px 5px 8px;}
#visual #caption #credit {text-align: right; font-size: .9em; color: #f1f6fb; font-weight: normal; margin-top: 5px;}
#visual #caption .dropcap {font-size: 2em;}
#text {padding: 10px 0 20px 9px;}
#text p {text-align: justify;}
#text ul {margin: 0; padding: 0 0 0 2em; list-style-image: url(../media/blt_green.gif);}
#text ul ul { list-style-image: url(../media/blt_blue.gif);}
#text li {margin: .4em 0;}
#text h2 {font-size: 1.4em; color: #002f5e;}
#text h2 a {color: #002f5e; text-decoration: none; border-bottom: 1px solid #002f5e;}
#text h3 {font-size: 1.2em; color: #8d9b3d;}
#text h4 {font-size: 1em; color: #333;}
.relatedinfo {width: 180px; margin: 5px 0 5px 14px; float: right; clear: right;}
.relatedinfo h2 {
font-size: 1.2em !important; color: #333 !important;
background: url(../media/bkg_h2_right_d.jpg) -20px no-repeat; margin: 0; padding: .8em 0 .8em .4em;
}
.relatedinfo h2.a {background-position: -40px;}
.relatedinfo h2.b {background-position: -80px;}
.relatedinfo h2.c {background-position: -120px;}
.relatedinfo ul {margin: 0; padding: 0 0 0 2em; list-style-image: url(../media/blt_blue.gif);}
.relatedinfo li {list-style-image: url(../media/blt_blue.gif); margin: .4em 0;}
.relatedinfo p {margin: .4em;}
blockquote.relatedinfo {
padding: 1em .4em; margin: .4em .4em 1em 1.1em; width: 160px;
font: normal 1.2em Georgia, "Times New Roman", Times, serif; font-style: italic;
color: #002f5e; border-top: 2px solid #002f5e; border-bottom: 1px solid #002f5e;
}
.relatedinfo .banner {
font: bold 1.1em Century Gothic, Futura, Arial, Helvetica, sans-serif; text-align: right;
padding: 12px 6px 0 0; color: #fff;
display: block; height: 38px;
text-decoration: none; margin-bottom: .4em; background-color: #002f5e;
}
.relatedinfo .banner span {font-size: .9em;}
.yellow {color: #f9ec00;}
#boxfacts {margin-bottom: 1em;}
.b01 {background: url(../media/bnr-bkg_d_01.jpg) no-repeat;}
.b02 {background: url(../media/bnr-bkg_d_02.jpg) no-repeat;}
.b03 {background: url(../media/bnr-bkg_d_03.jpg) no-repeat;}
.b04 {background: url(../media/bnr-bkg_d_04.jpg) no-repeat;}
.b05 {background: url(../media/bnr-bkg_d_05.jpg) no-repeat;}
.b06 {background: url(../media/bnr-bkg_d_06.jpg) no-repeat;}
.b07 {background: url(../media/bnr-bkg_d_07.jpg) no-repeat;}
.b08 {background: url(../media/bnr-bkg_d_08.jpg) no-repeat;}
.b09 {background: url(../media/bnr-bkg_d_09.jpg) no-repeat;}
.b10 {background: url(../media/bnr-bkg_d_10.jpg) no-repeat;}
.bkm {background: url(../media/bnr-bkg_d_bkm.jpg) no-repeat;}
#missionfacts ul {font-size: .9em;}
.light {color: #666;}
/* NEW FOOTER */
#footer {background: url(../media/bkg_footer.png) repeat-x; clear: both; height: 100px; text-align: center;}
#footer ul {margin: 0; padding: 20px;}
#footer li {display: inline; margin: 0; padding: 0 4px;}
#footer li a {color: #6c6c6c; border: none; text-decoration: none; padding: 3px 7px;}
#footer li a:hover, #footer li a[class~="active"] {
padding: 2px 6px; background: #fff;
border-top: 1px solid #999; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; border-left: 1px solid #999; border-radius: 3px;
}
#footer p {font-size: .9em; border-top: 1px solid #ddd; width: 860px; margin: 5px auto 0 auto; padding: 5px 0 0;}
.list-nobullet {list-style-image: none !important; list-style: none;}
.lipic {clear: both; padding: 1em;}
.lipic div {padding-left: 9em;}
.lipic p {font-size: 1.1em; text-align: left !important;}
.lipic .portrait {float: left; margin-bottom: 1em; border: 1px solid #002f5e;}
.indent {margin-left: 2em;}
.septop {background: url(../media/sep_top.jpg) center no-repeat; height: 5px; line-height: 5px; clear: both;}
.sepbottom {background: url(../media/sep_bottom.jpg) center no-repeat; height: 5px; line-height: 5px; clear: both;}
.top, .top:visited {
clear: both; display: block;
text-align: right; padding: 0 1em 1em; color: #666; background: url(../media/bkg_top.png) right no-repeat;
}
.lower-latin {list-style-type: lower-latin;}
.lower-roman {list-style-type: lower-roman;}
.clear {clear: both; height: 1px; font-size: 1px; line-height: 1px;}
.review {background: #FFFF00;}
/** GLOBAL PK **/
/*************************************** UN BRANDING BAR **********************************************/
#unbrandbar {height: 30px; background: #ddd;}
#unbrandbar .breadcrumb {
font: normal 1.1em Arial, Helvetica, sans-serif !important; background: url(../media/emb_top.png) no-repeat;
display: block; padding: 6px 0 4px 36px; margin: 3px 0 0 4px;
float: left; border-bottom: none; text-decoration: none; color: #002f5e;
}
#unbrandbar a.brand {text-decoration: none; color: #002f5e;}
#unbrandbar a.brand:hover {text-decoration: underline;}
#unbrandbar #date {padding: 6px 6px 4px 0; margin: 3px 4px 0 0; float: right; display: block;}
#unbrandbar fieldset {border: none; border-left: 1px solid #fff; padding: 5px 0 0 10px; margin: 0; height: 25px;}
#unbrandbar input, #unbrandbar button {border: none; float: left; color: #575757; width: 132px;}
#unbrandbar input[type=text] {
background: none; background: url(../media/bkg_search_and_button.png) 0 0 no-repeat;
padding: 2px 4px 4px 4px; margin: 0; width: 132px; height: 15px;
}
#unbrandbar button {
width: 38px; height: 21px;
cursor: pointer; text-indent: -9999px; background: url(../media/bkg_search_and_button.png) -140px 0 no-repeat;
}
#languages {color: #fff; clear: both; background: #002f5e; line-height: 1.8em; height: 1.8em;}
#languages ul {margin: 0 12px; padding: 0; text-align: right; font-size: 1em;}
#languages ul li {display: inline; margin: 0; padding: 0 0 0 8px;}
#languages #ar {font-size: 1.2em !important;}
#languages a {color: #fff; text-decoration: none; border: none;}
#languages a:hover {text-decoration: underline;}
#languages .disable {color: #ccc;}
.footnote {font-size: .9em; margin: 10px 0 0 25px; font-style: italic;}
.social {padding: 7px 0;}
.social img {padding-right: 5.5px;} | _o/dev/box/framework/dotphp/DelMaster/_source/xend/bunch/playbox/openbox/_review/updated_wamp/unhfa/asset/css/layout.css | body {font-family: Arial, Helvetica, sans-serif; font-size: 76%; margin: 0;}
a {color: #002f5e;}
a:visited {color: #62228e;}
acronym {border-bottom: 1px dotted #002f5e; cursor: help;}
img {border: none;}
h1, h2, h3, h4, h5 {font-family: Century Gothic, Futura, Arial, Helvetica, sans-serif;}
#skiplink {font-size: 1em; border: none; margin-left: -9999px; float: left;}
#skiplink:focus, #skiplink:active {
font-size: 2em !important; font-weight: bold; line-height: 2em; text-decoration: none;
text-align: center; margin-left: 0 !important; border: 5px solid; display: block; float: none;
}
#main {width: 780px; margin: 0 auto; background: url(../media/bkg_nav.jpg) 0 100px no-repeat;}
#banner {
height: 110px; clear: both;
background-color: #fff;
background-image: url(../media/bkg_banner.png); background-repeat: no-repeat; background-position: right;
}
#banner img {padding: 4px 0 0 23px; float: left;}
h1 {float: right; width: 600px; font-size: 2em; color: #002f5e; margin: 1.6em 0 0;}
h1 span {font-size: .8em;}
h1#long {margin: 1em 0 0;}
h1#long span {font-size: .7em; line-height: 1.2em;}
#missionbar {
background: #f1f6fb; padding: 3px 5px 3px 10px; height: 16px;
border-top: 1px solid #002f5e; border-bottom: 1px solid #002f5e; color: #002f5e;
}
#missionbar a {color: #002f5e; text-decoration: none;}
#missionbar a:hover {text-decoration: underline;}
#missionbar #missiontime {width: 360px; float: left;}
#panelMenu {float: right; text-align: right;}
#panelMenu ul {background: #b2c355; margin: 0; padding: 0; list-style: none;}
#panelMenu ul li {border-left: 1px solid #fff; float: left; margin: 0 5px;}
#panelMenu ul li a {color: #002f5e; font-weight: bold; display: block; text-transform: capitalize;}
#panelMenu ul li a:hover,
#panelMenu ul li a[class~="active"] {color: #002f5e; text-decoration: underline;}
#missionbar #languages {float: right;}
#missionbar #languages ul {margin: 0; padding: 0;}
#missionbar #languages ul li {display: inline; margin: 0 0 0 1em;}
#navigation {width: 179px; float: left;}
#navigation ul {background: #b2c355; margin: 0; padding: 0; list-style: none;}
#navigation ul li {border-bottom: 1px solid #fff;}
#navigation ul li a {
color: #002f5e; font-weight: bold; text-decoration: none;
padding: 5px 5px 5px 12px; display: block; background: url(../media/bkg_nav-opt.gif) top repeat-x;
}
#navigation ul li a:hover,
#navigation ul li a[class~="active"] {color: #002f5e; background: #f9ec00 url(../media/bkg_nav-opt-hover.gif) top repeat-x;}
#navigation ul li a[class~="active"] {cursor: default;}
#navigation ul li#pkhome a:hover {color: #fff; background: #002f5e url(../media/bkg_nav-opt2-hover.gif) top repeat-x;}
#content {border-left: 1px solid #b2c355; background: white; float: left; width: 600px; min-height: 340px;}
#visual {background: #002f5e; height: 199px;}
#visual #picture {background: url(../media/bkg_vsl-img_d.gif) bottom repeat-x; padding: 4px 0 5px 5px;}
#visual #caption {
background: url(../media/bkg_vsl-txt_d.gif) right bottom no-repeat;
width: 180px; height: 199px; float: right;
font-weight: bold; color: #fff; position: relative;
}
#visual #caption #cpt_cnt {position:absolute; bottom: -1px; left: 4px; width: 167px; padding: 5px 2px 5px 8px;}
#visual #caption #credit {text-align: right; font-size: .9em; color: #f1f6fb; font-weight: normal; margin-top: 5px;}
#visual #caption .dropcap {font-size: 2em;}
#text {padding: 10px 0 20px 9px;}
#text p {text-align: justify;}
#text ul {margin: 0; padding: 0 0 0 2em; list-style-image: url(../media/blt_green.gif);}
#text ul ul { list-style-image: url(../media/blt_blue.gif);}
#text li {margin: .4em 0;}
#text h2 {font-size: 1.4em; color: #002f5e;}
#text h2 a {color: #002f5e; text-decoration: none; border-bottom: 1px solid #002f5e;}
#text h3 {font-size: 1.2em; color: #8d9b3d;}
#text h4 {font-size: 1em; color: #333;}
.relatedinfo {width: 180px; margin: 5px 0 5px 14px; float: right; clear: right;}
.relatedinfo h2 {
font-size: 1.2em !important; color: #333 !important;
background: url(../media/bkg_h2_right_d.jpg) -20px no-repeat; margin: 0; padding: .8em 0 .8em .4em;
}
.relatedinfo h2.a {background-position: -40px;}
.relatedinfo h2.b {background-position: -80px;}
.relatedinfo h2.c {background-position: -120px;}
.relatedinfo ul {margin: 0; padding: 0 0 0 2em; list-style-image: url(../media/blt_blue.gif);}
.relatedinfo li {list-style-image: url(../media/blt_blue.gif); margin: .4em 0;}
.relatedinfo p {margin: .4em;}
blockquote.relatedinfo {
padding: 1em .4em; margin: .4em .4em 1em 1.1em; width: 160px;
font: normal 1.2em Georgia, "Times New Roman", Times, serif; font-style: italic;
color: #002f5e; border-top: 2px solid #002f5e; border-bottom: 1px solid #002f5e;
}
.relatedinfo .banner {
font: bold 1.1em Century Gothic, Futura, Arial, Helvetica, sans-serif; text-align: right;
padding: 12px 6px 0 0; color: #fff;
display: block; height: 38px;
text-decoration: none; margin-bottom: .4em; background-color: #002f5e;
}
.relatedinfo .banner span {font-size: .9em;}
.yellow {color: #f9ec00;}
#boxfacts {margin-bottom: 1em;}
.b01 {background: url(../media/bnr-bkg_d_01.jpg) no-repeat;}
.b02 {background: url(../media/bnr-bkg_d_02.jpg) no-repeat;}
.b03 {background: url(../media/bnr-bkg_d_03.jpg) no-repeat;}
.b04 {background: url(../media/bnr-bkg_d_04.jpg) no-repeat;}
.b05 {background: url(../media/bnr-bkg_d_05.jpg) no-repeat;}
.b06 {background: url(../media/bnr-bkg_d_06.jpg) no-repeat;}
.b07 {background: url(../media/bnr-bkg_d_07.jpg) no-repeat;}
.b08 {background: url(../media/bnr-bkg_d_08.jpg) no-repeat;}
.b09 {background: url(../media/bnr-bkg_d_09.jpg) no-repeat;}
.b10 {background: url(../media/bnr-bkg_d_10.jpg) no-repeat;}
.bkm {background: url(../media/bnr-bkg_d_bkm.jpg) no-repeat;}
#missionfacts ul {font-size: .9em;}
.light {color: #666;}
/* NEW FOOTER */
#footer {background: url(../media/bkg_footer.png) repeat-x; clear: both; height: 100px; text-align: center;}
#footer ul {margin: 0; padding: 20px;}
#footer li {display: inline; margin: 0; padding: 0 4px;}
#footer li a {color: #6c6c6c; border: none; text-decoration: none; padding: 3px 7px;}
#footer li a:hover, #footer li a[class~="active"] {
padding: 2px 6px; background: #fff;
border-top: 1px solid #999; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; border-left: 1px solid #999; border-radius: 3px;
}
#footer p {font-size: .9em; border-top: 1px solid #ddd; width: 860px; margin: 5px auto 0 auto; padding: 5px 0 0;}
.list-nobullet {list-style-image: none !important; list-style: none;}
.lipic {clear: both; padding: 1em;}
.lipic div {padding-left: 9em;}
.lipic p {font-size: 1.1em; text-align: left !important;}
.lipic .portrait {float: left; margin-bottom: 1em; border: 1px solid #002f5e;}
.indent {margin-left: 2em;}
.septop {background: url(../media/sep_top.jpg) center no-repeat; height: 5px; line-height: 5px; clear: both;}
.sepbottom {background: url(../media/sep_bottom.jpg) center no-repeat; height: 5px; line-height: 5px; clear: both;}
.top, .top:visited {
clear: both; display: block;
text-align: right; padding: 0 1em 1em; color: #666; background: url(../media/bkg_top.png) right no-repeat;
}
.lower-latin {list-style-type: lower-latin;}
.lower-roman {list-style-type: lower-roman;}
.clear {clear: both; height: 1px; font-size: 1px; line-height: 1px;}
.review {background: #FFFF00;}
/** GLOBAL PK **/
/*************************************** UN BRANDING BAR **********************************************/
#unbrandbar {height: 30px; background: #ddd;}
#unbrandbar .breadcrumb {
font: normal 1.1em Arial, Helvetica, sans-serif !important; background: url(../media/emb_top.png) no-repeat;
display: block; padding: 6px 0 4px 36px; margin: 3px 0 0 4px;
float: left; border-bottom: none; text-decoration: none; color: #002f5e;
}
#unbrandbar a.brand {text-decoration: none; color: #002f5e;}
#unbrandbar a.brand:hover {text-decoration: underline;}
#unbrandbar #date {padding: 6px 6px 4px 0; margin: 3px 4px 0 0; float: right; display: block;}
#unbrandbar fieldset {border: none; border-left: 1px solid #fff; padding: 5px 0 0 10px; margin: 0; height: 25px;}
#unbrandbar input, #unbrandbar button {border: none; float: left; color: #575757; width: 132px;}
#unbrandbar input[type=text] {
background: none; background: url(../media/bkg_search_and_button.png) 0 0 no-repeat;
padding: 2px 4px 4px 4px; margin: 0; width: 132px; height: 15px;
}
#unbrandbar button {
width: 38px; height: 21px;
cursor: pointer; text-indent: -9999px; background: url(../media/bkg_search_and_button.png) -140px 0 no-repeat;
}
#languages {color: #fff; clear: both; background: #002f5e; line-height: 1.8em; height: 1.8em;}
#languages ul {margin: 0 12px; padding: 0; text-align: right; font-size: 1em;}
#languages ul li {display: inline; margin: 0; padding: 0 0 0 8px;}
#languages #ar {font-size: 1.2em !important;}
#languages a {color: #fff; text-decoration: none; border: none;}
#languages a:hover {text-decoration: underline;}
#languages .disable {color: #ccc;}
.footnote {font-size: .9em; margin: 10px 0 0 25px; font-style: italic;}
.social {padding: 7px 0;}
.social img {padding-right: 5.5px;} | 0.238107 | 0.172869 |
.pos_center {
position: absolute;
margin-top: -260px;
top: 50%;
margin-left: -220px;
left: 50%;
}
@media only screen and (max-width: 1366px) {
.pos_center {
transform: scale(.8);
}
}
.login_bg h1 {
color: #fff;
vertical-align: middle;
font-size: 34px;
margin: 20px 0 30px;
}
.login_bg h1 img {
vertical-align: middle;
margin-right: 20px;
width: 200px;
}
.login_con {
width: 443px;
min-height: 500px;
background: #ffffff;
margin: 0 auto 0;
border-radius: 4px;
padding: 20px 40px;
text-align: left;
}
.login_con h3 {
font-size: 24px;
margin-top: 20px;
text-align: center;
color: #311a1f;
position: relative;
}
.login_con h3::after {
content: '';
background: url(../../assets/img/line.png) no-repeat top left;
position: absolute;
z-index: 2;
width: 124px;
height: 16px;
bottom: -17px;
left: 50%;
margin-left: -62px;
}
.login_con hr {
height: 1px;
width: 100%;
background: #ddd;
border: none;
margin: 40px 0px;
}
.login_con .form_list input {
width: 100%;
height: 58px;
border: 1px solid #dddddd;
border-radius: 4px;
padding-left: 50px;
font-size: 16px;
color: #c2c2c2;
}
.login_con .form_list input:hover, .login_con .form_list input:active, .login_con .form_list input:focus {
border-color: #d63a3a;
outline: none;
}
.login_con .form_list {
position: relative;
margin-top: 15px;
margin-bottom: 20px;
}
.form_warning {
color: #ff2a00;
font-size: 14px;
margin-top: -20px;
}
.login_con .form_list span {
width: 52px;
height: 58px;
position: absolute;
left: 0px;
top: 0px;
display: inline-block;
}
.login_con .form_list .img_loack {
background: url('../img/loack.png') no-repeat center center;
}
.login_con .form_list .img_person {
background: url('../img/person.png') no-repeat center center;
}
/*按钮操作*/
.login_con button {
width: 100%;
height: 60px;
text-align: center;
color: #fff;
background: #d63a3a;
border-radius: 4px;
font-size: 18px;
letter-spacing: 2px;
cursor: pointer;
margin: 40px 0 20px;
}
.login_con button:hover {
background: rgba(214, 58, 58, 0.75);
}
.login_con button:active {
background: rgba(214, 58, 58, 0.75);
}
.login_con button:focus {
outline: none;
}
/*header*/
header {
width: 100%;
min-width: 1245px;
height: 70px;
line-height: 70px;
/*display: flex;*/
/*flex-flow: row;*/
background: #a93e34;
/*align-items: center;*/
padding: 0px 20px;
}
header .header_tab {
color: #fff;
}
header .logo > span {
font-size: 22px;
color: #fff;
}
header .nav_bar .nav_bar_li {
float: left;
height: 70px;
line-height: 70px;
padding: 0 30px;
color: #fff;
font-size: 20px;
position: relative;
cursor: pointer;
}
header .nav_bar .nav_bar_li:hover {
background: rgba(220, 93, 82, 0.7);
}
.admin_tab:hover {
background: rgba(220, 93, 82, 0.7);
}
header .active {
background: rgba(220, 93, 82, 0.7);
}
.extra_box {
position: absolute;
left: 0;
width: 150px;
background: #fff;
border: 1px solid rgba(0, 0, 0, .15);
text-align: center;
padding: 5px 0;
border-radius: 0 0 4px 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
-webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
z-index: 1;
font-size: 18px;
display: none;
}
.extra_quit {
position: absolute;
right: 0;
width: 100px;
height: 45px;
line-height: 45px;
background: #fff;
border: 1px solid rgba(0, 0, 0, .15);
text-align: center;
/* padding: 5px 0; */
border-radius: 0 0 4px 4px;
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
-webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
z-index: 1;
font-size: 16px;
display: none;
}
header .nav_bar .nav_bar_li:hover > .extra_box {
display: block;
transition: 3s;
}
.extra_box li {
height: auto;
/*padding: 10px 20px;*/
/*line-height: 30px;*/
}
.extra_box li:hover {
background-color: #eee;
padding: 0 20px;
}
.extra_box > .active {
background-color: #eee;
}
header .nav_bar {
color: #fff;
display: flex;
/*justify-content: center;*/
}
header p {
color: #fff;
}
.admin_num {
text-align: right;
}
.admin_num {
color: #fff;
}
/*.admin_num span {*/
/*cursor: pointer;*/
/*}*/
.admin_tab {
cursor: pointer;
padding: 0 20px;
position: relative;
color: #fff;
}
.admin_tab p {
color: #000;
}
.admin_tab:hover > .extra_quit {
display: block;
transition: 3s;
}
/*login*/
.login_bg {
/*width:100vw;*/
min-width: 1245px;
height: 100vh;
min-height: 580px;
background: url('../img/login_bg.jpg') no-repeat center center;
background-size: cover;
position: relative;
text-align: center;
}
/*con*/
section {
padding: 20px 30px;
}
.con_main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-ms-flex-preferred-size: auto;
flex-basis: auto;
box-sizing: border-box;
width: 100%;
min-height: 400px;
}
.con_main aside {
width: 300px;
min-width: 300px;
background: #fff;
}
.con_main .con_right {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-ms-flex-preferred-size: auto;
flex-basis: auto;
box-sizing: border-box;
/*padding:0px 20px;*/
background: #fff;
margin-left: 30px;
padding-bottom: 20px;
}
.ad_tit {
font-size: 18px;
padding: 20px;
border-bottom: 1px solid #eee;
}
.aside_ad_list li {
padding: 15px 20px;
min-height: 50px;
border-bottom: 1px solid #eee;
border-left: 2px solid #fff;
cursor: pointer;
position: relative;
overflow: hidden;
/*display: flex;*/
}
.aside_ad_list li:hover {
background: #eee;
border-left: 2px solid #f96235;
}
.aside_ad_list .active {
background: #eee;
color: #f96235;
border-left: 2px solid #f96235;
}
.aside_ad_list li span {
}
.aside_ad_list li::after {
content: '';
clear: both;
display: block;
font-size: 0;
height: 0;
}
/*.aside_ad_list li span::first-child{*/
/*flex:1;*/
/*}*/
/*.aside_ad_list li span::last-child{*/
/*width:30px;*/
/*}*/
.blockUp {
position: absolute;
width: 80px;
height: 24px;
background: #b7b5b5;
text-align: center;
display: inline-block;
right: -27px;
transform: rotate(49deg);
-webkit-transform: rotate(49deg);
color: #fff;
line-height: 24px;
font-size: 13px;
top: 3px;
}
.import_input {
height: 35px;
width: 100%;
padding: 0 20px;
color: #7d7d7d;
margin: 20px 0;
}
.import_input:focus {
border: 1px solid #dcdcdc;
outline: none;
border-radius: 4px;
-webkit-transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
transition: border-color .2s
}
.right_input textarea {
margin: 20px 0;
border-color: #fff;
}
.right_input .el-input__inner {
/*margin: 20px 0;*/
/*border-color: #fff;*/
}
.choose_inputP {
padding-top: 20px;
padding-bottom: 20px;
}
.right_input textarea:focus, .right_input .el-input__inner:focus {
border-color: #dcdcdc;
}
/*textarea::-webkit-input-placeholder {*/
/*color: #dcdcdc;*/
/*}*/
/*textarea::-moz-placeholder { !* Mozilla Firefox 19+ *!*/
/*color: #dcdcdc;*/
/*}*/
/*textarea:-moz-placeholder { !* Mozilla Firefox 4 to 18 *!*/
/*color: #dcdcdc;*/
/*}*/
/*textarea:-ms-input-placeholder { !* Internet Explorer 10-11 *!*/
/*color: #dcdcdc;*/
/*}*/
/*.blockUp:hover{*/
/*color: #999;*/
/*}*/
.con_ul {
padding: 0 20px;
}
.list_state {
min-height: 45px;
line-height: 45px;
border-bottom: 1px solid #eee;
display: flex;
align-items: center;
/*padding:20px 0;*/
}
.list_state h4 {
width: 78px;
}
.list_state .right_input {
flex: 1;
margin-left: 20px;
}
.save_btn {
width: 120px;
height: 39px;
border-radius: 4px;
line-height: 39px;
color: #fff;
background: #f96235;
font-size: 15px;
cursor: pointer;
}
.save_btn:hover {
background: rgba(249, 98, 53, 0.72);
outline: none;
}
.save_btn:active {
background: rgba(249, 98, 53, 0.72);
outline: none;
}
.save_btn:focus {
background: rgba(249, 98, 53, 0.72);
outline: none;
}
.small_addBtn {
width: 55px;
height: 28px;
float: right;
line-height: 28px;
display: inline-block;
background: #7dc71b;
color: #fff;
border-radius: 4px;
text-align: center;
font-size: 15px;
cursor: pointer;
}
.small_addBtn:hover {
background: rgba(125, 199, 27, 0.8);
}
.small_addBtn:active {
background: rgba(125, 199, 27, 0.9);
}
.style_banner {
width: 400px;
height: 163px;
margin: 20px 0 20px 20px;
vertical-align: middle;
background: #ecebeb;
}
.style_hotImg{
width: 260px;
height: 163px;
margin: 20px 0 20px 20px;
vertical-align: middle;
background: #ecebeb;
}
.style_newsImg{
width: 260px;
height: 163px;
margin: 20px 0 20px 20px;
vertical-align: middle;
background: #ecebeb;
}
.choose_file {
display: inline-block;
width: 90px;
height: 35px;
background: #b7b7b7;
line-height: 35px;
text-align: center;
border-radius: 4px;
color: #fff;
font-size: 14px;
margin-left: 40px;
cursor: pointer;
}
.choose_file:hover {
background: rgba(183, 183, 183, 0.8117)
}
.choose_file:active {
background: rgba(183, 183, 183, 0.9)
}
.input_warn {
padding-left: 20px;
font-size: 14px;
height: 30px;
line-height: 30px;
color: #f56c6c;
margin-top: 10px
}
.img_icon01 {
background: url(./../../assets/img/icon1.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.img_icon02 {
background: url(./../../assets/img/icon2.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.img_icon03 {
background: url(./../../assets/img/icon3.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.img_icon04 {
background: url(./../../assets/img/icon4.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.img_icon05 {
background: url(./../../assets/img/icon5.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.file_box {
position: relative;
width: 96px;
height: 42px;
text-align: center;
line-height: 40px;
display: inline-block;
cursor: pointer;
margin-left: 40px;
}
.self_btn {
display: inline-block;
width: 90px;
height: 35px;
background: #b7b7b7;
line-height: 35px;
text-align: center;
border-radius: 4px;
color: #fff;
font-size: 14px;
cursor: pointer;
}
.self_btn:hover {
background: rgba(183, 183, 183, 0.6)
}
.self_btn:active {
background: rgba(183, 183, 183, 0.9)
}
.file {
position: absolute;
top: 0;
left: 0px;
height: 44px;
filter: alpha(opacity:0);
opacity: 0;
width: 104px;
background: black;
cursor: pointer;
}
/*.inf_btn {*/
/*min-width: 120px;*/
/*height: 38px;*/
/*line-height: 38px;*/
/*text-align: center;*/
/*color: #fff;*/
/*background: #55b761;*/
/*border-radius: 4px;*/
/*font-size: 14px;*/
/*letter-spacing: 2px;*/
/*cursor: pointer;*/
/*padding: 0 20px;*/
/*border-color: #55b761;*/
/*outline: none;*/
/*}*/
/*.inf_btn2 {*/
/*height: 34px;*/
/*line-height: 34px;*/
/*text-align: center;*/
/*color: #fff;*/
/*background: #55b761;*/
/*border-radius: 4px;*/
/*font-size: 14px;*/
/*letter-spacing: 2px;*/
/*cursor: pointer;*/
/*padding: 0 20px;*/
/*border-color: #55b761;*/
/*outline: none;*/
/*}*/
/*.btn_margin {*/
/*margin: 50px auto;*/
/*}*/
/*.inf_btn:hover, .inf_btn2:hover {*/
/*background: rgba(96, 204, 109, 0.84);*/
/*border-color: rgba(96, 204, 109, 0.84);*/
/*color: #fff;*/
/*}*/
/*.inf_btn:active, .inf_btn2:active {*/
/*background: rgba(96, 204, 109, 0.84);*/
/*border-color: rgba(96, 204, 109, 0.84);*/
/*color: #fff;*/
/*}*/
/*.inf_btn:focus, .inf_btn2:focus {*/
/*outline: none;*/
/*border-color: rgba(96, 204, 109, 0.84);*/
/*color: #fff;*/
/*}*/
/*.line-btn {*/
/*min-width: 120px;*/
/*height: 38px;*/
/*text-align: center;*/
/*color: #00b553;*/
/*border: 1px solid #55b761;*/
/*border-radius: 4px;*/
/*font-size: 14px;*/
/*letter-spacing: 2px;*/
/*cursor: pointer;*/
/*padding: 0 20px;*/
/*background: none;*/
/*transition: .5s;*/
/*}*/
/*.line-btn:hover, .line-btn:active, .line-btn:focus {*/
/*background: #55b761;*/
/*color: #fff;*/
/*outline: none;*/
/*transition: .5s;*/
/*border-color: #55b761;*/
/*}*/
/*.line-btn_o {*/
/*min-width: 120px;*/
/*height: 38px;*/
/*text-align: center;*/
/*color: #f60;*/
/*border: 1px solid #f60;*/
/*border-radius: 4px;*/
/*font-size: 14px;*/
/*letter-spacing: 2px;*/
/*cursor: pointer;*/
/*padding: 0 20px;*/
/*background: none;*/
/*}*/
/*.con_main {*/
/*width: 100%;*/
/*padding: 20px 30px;*/
/*display: flex;*/
/*}*/
.list_state h4:before,.show_star .el-form-item__label:before{
content: '*';
color: #f56c6c;
margin-right: 4px;
}
.list_state h4 {
font-size: 14px;
}
.list_state .el-form-item__label{
text-align: left;
}
.language_con span{
color: #7a7a7a;
cursor: pointer;
font-size: 16px;
margin-right: 20px;
}
.language_con span:hover{
color: #f96235;
}
.language_con .active{
color: #f96235;
} | frontend/cms/src/assets/css/style.css | .pos_center {
position: absolute;
margin-top: -260px;
top: 50%;
margin-left: -220px;
left: 50%;
}
@media only screen and (max-width: 1366px) {
.pos_center {
transform: scale(.8);
}
}
.login_bg h1 {
color: #fff;
vertical-align: middle;
font-size: 34px;
margin: 20px 0 30px;
}
.login_bg h1 img {
vertical-align: middle;
margin-right: 20px;
width: 200px;
}
.login_con {
width: 443px;
min-height: 500px;
background: #ffffff;
margin: 0 auto 0;
border-radius: 4px;
padding: 20px 40px;
text-align: left;
}
.login_con h3 {
font-size: 24px;
margin-top: 20px;
text-align: center;
color: #311a1f;
position: relative;
}
.login_con h3::after {
content: '';
background: url(../../assets/img/line.png) no-repeat top left;
position: absolute;
z-index: 2;
width: 124px;
height: 16px;
bottom: -17px;
left: 50%;
margin-left: -62px;
}
.login_con hr {
height: 1px;
width: 100%;
background: #ddd;
border: none;
margin: 40px 0px;
}
.login_con .form_list input {
width: 100%;
height: 58px;
border: 1px solid #dddddd;
border-radius: 4px;
padding-left: 50px;
font-size: 16px;
color: #c2c2c2;
}
.login_con .form_list input:hover, .login_con .form_list input:active, .login_con .form_list input:focus {
border-color: #d63a3a;
outline: none;
}
.login_con .form_list {
position: relative;
margin-top: 15px;
margin-bottom: 20px;
}
.form_warning {
color: #ff2a00;
font-size: 14px;
margin-top: -20px;
}
.login_con .form_list span {
width: 52px;
height: 58px;
position: absolute;
left: 0px;
top: 0px;
display: inline-block;
}
.login_con .form_list .img_loack {
background: url('../img/loack.png') no-repeat center center;
}
.login_con .form_list .img_person {
background: url('../img/person.png') no-repeat center center;
}
/*按钮操作*/
.login_con button {
width: 100%;
height: 60px;
text-align: center;
color: #fff;
background: #d63a3a;
border-radius: 4px;
font-size: 18px;
letter-spacing: 2px;
cursor: pointer;
margin: 40px 0 20px;
}
.login_con button:hover {
background: rgba(214, 58, 58, 0.75);
}
.login_con button:active {
background: rgba(214, 58, 58, 0.75);
}
.login_con button:focus {
outline: none;
}
/*header*/
header {
width: 100%;
min-width: 1245px;
height: 70px;
line-height: 70px;
/*display: flex;*/
/*flex-flow: row;*/
background: #a93e34;
/*align-items: center;*/
padding: 0px 20px;
}
header .header_tab {
color: #fff;
}
header .logo > span {
font-size: 22px;
color: #fff;
}
header .nav_bar .nav_bar_li {
float: left;
height: 70px;
line-height: 70px;
padding: 0 30px;
color: #fff;
font-size: 20px;
position: relative;
cursor: pointer;
}
header .nav_bar .nav_bar_li:hover {
background: rgba(220, 93, 82, 0.7);
}
.admin_tab:hover {
background: rgba(220, 93, 82, 0.7);
}
header .active {
background: rgba(220, 93, 82, 0.7);
}
.extra_box {
position: absolute;
left: 0;
width: 150px;
background: #fff;
border: 1px solid rgba(0, 0, 0, .15);
text-align: center;
padding: 5px 0;
border-radius: 0 0 4px 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
-webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
z-index: 1;
font-size: 18px;
display: none;
}
.extra_quit {
position: absolute;
right: 0;
width: 100px;
height: 45px;
line-height: 45px;
background: #fff;
border: 1px solid rgba(0, 0, 0, .15);
text-align: center;
/* padding: 5px 0; */
border-radius: 0 0 4px 4px;
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
-webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
z-index: 1;
font-size: 16px;
display: none;
}
header .nav_bar .nav_bar_li:hover > .extra_box {
display: block;
transition: 3s;
}
.extra_box li {
height: auto;
/*padding: 10px 20px;*/
/*line-height: 30px;*/
}
.extra_box li:hover {
background-color: #eee;
padding: 0 20px;
}
.extra_box > .active {
background-color: #eee;
}
header .nav_bar {
color: #fff;
display: flex;
/*justify-content: center;*/
}
header p {
color: #fff;
}
.admin_num {
text-align: right;
}
.admin_num {
color: #fff;
}
/*.admin_num span {*/
/*cursor: pointer;*/
/*}*/
.admin_tab {
cursor: pointer;
padding: 0 20px;
position: relative;
color: #fff;
}
.admin_tab p {
color: #000;
}
.admin_tab:hover > .extra_quit {
display: block;
transition: 3s;
}
/*login*/
.login_bg {
/*width:100vw;*/
min-width: 1245px;
height: 100vh;
min-height: 580px;
background: url('../img/login_bg.jpg') no-repeat center center;
background-size: cover;
position: relative;
text-align: center;
}
/*con*/
section {
padding: 20px 30px;
}
.con_main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-ms-flex-preferred-size: auto;
flex-basis: auto;
box-sizing: border-box;
width: 100%;
min-height: 400px;
}
.con_main aside {
width: 300px;
min-width: 300px;
background: #fff;
}
.con_main .con_right {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-ms-flex-preferred-size: auto;
flex-basis: auto;
box-sizing: border-box;
/*padding:0px 20px;*/
background: #fff;
margin-left: 30px;
padding-bottom: 20px;
}
.ad_tit {
font-size: 18px;
padding: 20px;
border-bottom: 1px solid #eee;
}
.aside_ad_list li {
padding: 15px 20px;
min-height: 50px;
border-bottom: 1px solid #eee;
border-left: 2px solid #fff;
cursor: pointer;
position: relative;
overflow: hidden;
/*display: flex;*/
}
.aside_ad_list li:hover {
background: #eee;
border-left: 2px solid #f96235;
}
.aside_ad_list .active {
background: #eee;
color: #f96235;
border-left: 2px solid #f96235;
}
.aside_ad_list li span {
}
.aside_ad_list li::after {
content: '';
clear: both;
display: block;
font-size: 0;
height: 0;
}
/*.aside_ad_list li span::first-child{*/
/*flex:1;*/
/*}*/
/*.aside_ad_list li span::last-child{*/
/*width:30px;*/
/*}*/
.blockUp {
position: absolute;
width: 80px;
height: 24px;
background: #b7b5b5;
text-align: center;
display: inline-block;
right: -27px;
transform: rotate(49deg);
-webkit-transform: rotate(49deg);
color: #fff;
line-height: 24px;
font-size: 13px;
top: 3px;
}
.import_input {
height: 35px;
width: 100%;
padding: 0 20px;
color: #7d7d7d;
margin: 20px 0;
}
.import_input:focus {
border: 1px solid #dcdcdc;
outline: none;
border-radius: 4px;
-webkit-transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
transition: border-color .2s
}
.right_input textarea {
margin: 20px 0;
border-color: #fff;
}
.right_input .el-input__inner {
/*margin: 20px 0;*/
/*border-color: #fff;*/
}
.choose_inputP {
padding-top: 20px;
padding-bottom: 20px;
}
.right_input textarea:focus, .right_input .el-input__inner:focus {
border-color: #dcdcdc;
}
/*textarea::-webkit-input-placeholder {*/
/*color: #dcdcdc;*/
/*}*/
/*textarea::-moz-placeholder { !* Mozilla Firefox 19+ *!*/
/*color: #dcdcdc;*/
/*}*/
/*textarea:-moz-placeholder { !* Mozilla Firefox 4 to 18 *!*/
/*color: #dcdcdc;*/
/*}*/
/*textarea:-ms-input-placeholder { !* Internet Explorer 10-11 *!*/
/*color: #dcdcdc;*/
/*}*/
/*.blockUp:hover{*/
/*color: #999;*/
/*}*/
.con_ul {
padding: 0 20px;
}
.list_state {
min-height: 45px;
line-height: 45px;
border-bottom: 1px solid #eee;
display: flex;
align-items: center;
/*padding:20px 0;*/
}
.list_state h4 {
width: 78px;
}
.list_state .right_input {
flex: 1;
margin-left: 20px;
}
.save_btn {
width: 120px;
height: 39px;
border-radius: 4px;
line-height: 39px;
color: #fff;
background: #f96235;
font-size: 15px;
cursor: pointer;
}
.save_btn:hover {
background: rgba(249, 98, 53, 0.72);
outline: none;
}
.save_btn:active {
background: rgba(249, 98, 53, 0.72);
outline: none;
}
.save_btn:focus {
background: rgba(249, 98, 53, 0.72);
outline: none;
}
.small_addBtn {
width: 55px;
height: 28px;
float: right;
line-height: 28px;
display: inline-block;
background: #7dc71b;
color: #fff;
border-radius: 4px;
text-align: center;
font-size: 15px;
cursor: pointer;
}
.small_addBtn:hover {
background: rgba(125, 199, 27, 0.8);
}
.small_addBtn:active {
background: rgba(125, 199, 27, 0.9);
}
.style_banner {
width: 400px;
height: 163px;
margin: 20px 0 20px 20px;
vertical-align: middle;
background: #ecebeb;
}
.style_hotImg{
width: 260px;
height: 163px;
margin: 20px 0 20px 20px;
vertical-align: middle;
background: #ecebeb;
}
.style_newsImg{
width: 260px;
height: 163px;
margin: 20px 0 20px 20px;
vertical-align: middle;
background: #ecebeb;
}
.choose_file {
display: inline-block;
width: 90px;
height: 35px;
background: #b7b7b7;
line-height: 35px;
text-align: center;
border-radius: 4px;
color: #fff;
font-size: 14px;
margin-left: 40px;
cursor: pointer;
}
.choose_file:hover {
background: rgba(183, 183, 183, 0.8117)
}
.choose_file:active {
background: rgba(183, 183, 183, 0.9)
}
.input_warn {
padding-left: 20px;
font-size: 14px;
height: 30px;
line-height: 30px;
color: #f56c6c;
margin-top: 10px
}
.img_icon01 {
background: url(./../../assets/img/icon1.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.img_icon02 {
background: url(./../../assets/img/icon2.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.img_icon03 {
background: url(./../../assets/img/icon3.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.img_icon04 {
background: url(./../../assets/img/icon4.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.img_icon05 {
background: url(./../../assets/img/icon5.png) no-repeat;
display: inline-block;
width: 24px;
height: 24px;
vertical-align: middle;
background-size: 100% 100%;
margin-right: 10px;
}
.file_box {
position: relative;
width: 96px;
height: 42px;
text-align: center;
line-height: 40px;
display: inline-block;
cursor: pointer;
margin-left: 40px;
}
.self_btn {
display: inline-block;
width: 90px;
height: 35px;
background: #b7b7b7;
line-height: 35px;
text-align: center;
border-radius: 4px;
color: #fff;
font-size: 14px;
cursor: pointer;
}
.self_btn:hover {
background: rgba(183, 183, 183, 0.6)
}
.self_btn:active {
background: rgba(183, 183, 183, 0.9)
}
.file {
position: absolute;
top: 0;
left: 0px;
height: 44px;
filter: alpha(opacity:0);
opacity: 0;
width: 104px;
background: black;
cursor: pointer;
}
/*.inf_btn {*/
/*min-width: 120px;*/
/*height: 38px;*/
/*line-height: 38px;*/
/*text-align: center;*/
/*color: #fff;*/
/*background: #55b761;*/
/*border-radius: 4px;*/
/*font-size: 14px;*/
/*letter-spacing: 2px;*/
/*cursor: pointer;*/
/*padding: 0 20px;*/
/*border-color: #55b761;*/
/*outline: none;*/
/*}*/
/*.inf_btn2 {*/
/*height: 34px;*/
/*line-height: 34px;*/
/*text-align: center;*/
/*color: #fff;*/
/*background: #55b761;*/
/*border-radius: 4px;*/
/*font-size: 14px;*/
/*letter-spacing: 2px;*/
/*cursor: pointer;*/
/*padding: 0 20px;*/
/*border-color: #55b761;*/
/*outline: none;*/
/*}*/
/*.btn_margin {*/
/*margin: 50px auto;*/
/*}*/
/*.inf_btn:hover, .inf_btn2:hover {*/
/*background: rgba(96, 204, 109, 0.84);*/
/*border-color: rgba(96, 204, 109, 0.84);*/
/*color: #fff;*/
/*}*/
/*.inf_btn:active, .inf_btn2:active {*/
/*background: rgba(96, 204, 109, 0.84);*/
/*border-color: rgba(96, 204, 109, 0.84);*/
/*color: #fff;*/
/*}*/
/*.inf_btn:focus, .inf_btn2:focus {*/
/*outline: none;*/
/*border-color: rgba(96, 204, 109, 0.84);*/
/*color: #fff;*/
/*}*/
/*.line-btn {*/
/*min-width: 120px;*/
/*height: 38px;*/
/*text-align: center;*/
/*color: #00b553;*/
/*border: 1px solid #55b761;*/
/*border-radius: 4px;*/
/*font-size: 14px;*/
/*letter-spacing: 2px;*/
/*cursor: pointer;*/
/*padding: 0 20px;*/
/*background: none;*/
/*transition: .5s;*/
/*}*/
/*.line-btn:hover, .line-btn:active, .line-btn:focus {*/
/*background: #55b761;*/
/*color: #fff;*/
/*outline: none;*/
/*transition: .5s;*/
/*border-color: #55b761;*/
/*}*/
/*.line-btn_o {*/
/*min-width: 120px;*/
/*height: 38px;*/
/*text-align: center;*/
/*color: #f60;*/
/*border: 1px solid #f60;*/
/*border-radius: 4px;*/
/*font-size: 14px;*/
/*letter-spacing: 2px;*/
/*cursor: pointer;*/
/*padding: 0 20px;*/
/*background: none;*/
/*}*/
/*.con_main {*/
/*width: 100%;*/
/*padding: 20px 30px;*/
/*display: flex;*/
/*}*/
.list_state h4:before,.show_star .el-form-item__label:before{
content: '*';
color: #f56c6c;
margin-right: 4px;
}
.list_state h4 {
font-size: 14px;
}
.list_state .el-form-item__label{
text-align: left;
}
.language_con span{
color: #7a7a7a;
cursor: pointer;
font-size: 16px;
margin-right: 20px;
}
.language_con span:hover{
color: #f96235;
}
.language_con .active{
color: #f96235;
} | 0.309858 | 0.120983 |
@font-face {
font-family: 'Qomolangma-UchenSarchen';
src: url('Qomolangma-UchenSarchen.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
#unitLinks {
/* #sidebar is 20% the width of #main. #unitLinks is within #content
* which itself is 80% the width of #main. We want #unitLinks to be
* 20% of the width of #main. Since #unitLinks is contained within
* #content, #unitLinks needs to be 25% the width of #content, so
* that it is 20% the width of #main. 25% of 80% is 20%. */
width: 25%;
float: left;
text-align: left;
}
#practicePanelWrapper {
width: 75%;
float: right;
text-align: center;
display: none;
}
#noscriptWrapper {
width: 75%;
float: right;
text-align: center;
}
#noscript {
margin: 10% 0%;
color: red;
font-weight: bold;
border: 5px double red;
padding: 1.5em;
display: inline-block;
}
#unitLinks div {
margin-bottom: 3px;
text-align: center;
}
#subunitLinks {
text-align: justify;
height: 24px;
}
#subunitLinks div.stretch {
width: 100%;
border: 0;
}
#subunitLinks div {
display: inline-block;
text-align: center;
}
#alternateUnitLinks div {
margin-right: 1em;
width: 20%;
text-align: center;
display: inline-block;
}
#unitLinks div, #subunitLinks div, #alternateUnitLinks div {
background: #e0d0f0;
border: 1px solid #807090;
border-radius: 2px;
}
#unitLinks div.selected,
#subunitLinks div.selected,
#alternateUnitLinks div.selected {
background: #e0ffff;
border: 1px solid #108080;
}
#practicePanel {
display: inline-block;
margin-top: 5%;
}
#previousLink, #nextLink {
width: 0.5em;
display: inline-block;
vertical-align: top;
font-family: Qomolangma-UchenSarchen;
}
#practicePane {
display: inline-block;
}
#target {
margin-top: 3%;
font-family: Qomolangma-UchenSarchen;
display: inline-block;
padding: 5px;
font-size: 70px;
line-height: 88px;
}
#target, span.targetChar {
border: 3px solid #333333;
border-radius: 2px;
}
#feedbackPane {
margin: 3% 0;
overflow: hidden;
}
#statusPane {
display: inline-block;
width: 30%;
text-align: left;
vertical-align: top;
}
#progressPane {
display: inline-block;
width: 30%;
}
#resultPane {
display: inline-block;
width: 30%;
text-align: right;
vertical-align: top;
}
#status {
color: #008000;
font-weight: bold;
}
#restartLink {
visibility: hidden;
}
#input {
width: 95%;
font-size: 20px;
}
#progressBar {
width: 100%;
}
#guidePane {
margin-top: 3%;
}
#guide {
margin-left: auto;
margin-right: auto;
width: 70%;
text-align: justify;
}
/* State changes */
.error #target {
background: #ff8888;
}
.completed #target, .completed #input {
background: #dddddd;
}
.completed span.targetChar {
border: 3px solid #dddddd;
}
.error #status {
color: #ff0000;
}
#smiley {
font-family: verdana;
}
#alternateUnitLinks {
width: 95%;
margin-top: 1%;
display: inline-block;
}
#update {
width: 80%;
}
#update a {
margin-right: 2em;
} | css/typing.css | @font-face {
font-family: 'Qomolangma-UchenSarchen';
src: url('Qomolangma-UchenSarchen.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
#unitLinks {
/* #sidebar is 20% the width of #main. #unitLinks is within #content
* which itself is 80% the width of #main. We want #unitLinks to be
* 20% of the width of #main. Since #unitLinks is contained within
* #content, #unitLinks needs to be 25% the width of #content, so
* that it is 20% the width of #main. 25% of 80% is 20%. */
width: 25%;
float: left;
text-align: left;
}
#practicePanelWrapper {
width: 75%;
float: right;
text-align: center;
display: none;
}
#noscriptWrapper {
width: 75%;
float: right;
text-align: center;
}
#noscript {
margin: 10% 0%;
color: red;
font-weight: bold;
border: 5px double red;
padding: 1.5em;
display: inline-block;
}
#unitLinks div {
margin-bottom: 3px;
text-align: center;
}
#subunitLinks {
text-align: justify;
height: 24px;
}
#subunitLinks div.stretch {
width: 100%;
border: 0;
}
#subunitLinks div {
display: inline-block;
text-align: center;
}
#alternateUnitLinks div {
margin-right: 1em;
width: 20%;
text-align: center;
display: inline-block;
}
#unitLinks div, #subunitLinks div, #alternateUnitLinks div {
background: #e0d0f0;
border: 1px solid #807090;
border-radius: 2px;
}
#unitLinks div.selected,
#subunitLinks div.selected,
#alternateUnitLinks div.selected {
background: #e0ffff;
border: 1px solid #108080;
}
#practicePanel {
display: inline-block;
margin-top: 5%;
}
#previousLink, #nextLink {
width: 0.5em;
display: inline-block;
vertical-align: top;
font-family: Qomolangma-UchenSarchen;
}
#practicePane {
display: inline-block;
}
#target {
margin-top: 3%;
font-family: Qomolangma-UchenSarchen;
display: inline-block;
padding: 5px;
font-size: 70px;
line-height: 88px;
}
#target, span.targetChar {
border: 3px solid #333333;
border-radius: 2px;
}
#feedbackPane {
margin: 3% 0;
overflow: hidden;
}
#statusPane {
display: inline-block;
width: 30%;
text-align: left;
vertical-align: top;
}
#progressPane {
display: inline-block;
width: 30%;
}
#resultPane {
display: inline-block;
width: 30%;
text-align: right;
vertical-align: top;
}
#status {
color: #008000;
font-weight: bold;
}
#restartLink {
visibility: hidden;
}
#input {
width: 95%;
font-size: 20px;
}
#progressBar {
width: 100%;
}
#guidePane {
margin-top: 3%;
}
#guide {
margin-left: auto;
margin-right: auto;
width: 70%;
text-align: justify;
}
/* State changes */
.error #target {
background: #ff8888;
}
.completed #target, .completed #input {
background: #dddddd;
}
.completed span.targetChar {
border: 3px solid #dddddd;
}
.error #status {
color: #ff0000;
}
#smiley {
font-family: verdana;
}
#alternateUnitLinks {
width: 95%;
margin-top: 1%;
display: inline-block;
}
#update {
width: 80%;
}
#update a {
margin-right: 2em;
} | 0.435661 | 0.154759 |
::-webkit-scrollbar {
background-color: var(--color-primary);
width: 12px;
}
::-webkit-scrollbar-thumb {
background-color: var(--color-secondary);
border-radius: 6px;
}
:root {
--primary-font: 'Bakbak One', sans-serif;
--color-primary: #288fb4;
--color-secondary: #1d556f;
--color-terciary: #efddb2;
--color-fourth: #eaeaea;
}
* {
margin: 0;
box-sizing: border-box;
}
header {
padding: 1rem;
perspective: 14rem;
}
h1 {
text-align: center;
transform:
rotateY(30deg)
translate(-150px);
}
input {
border: 2px solid var(--color-secondary);
border-radius: 5px;
height: 2rem;
padding: 0.25rem;
background-color: var(--color-terciary);
color: #1d556f;
font-weight: 800;
}
input:focus-visible {
box-shadow: 5px 5px 0 var(--color-primary), -5px -5px 0 var(--color-primary);
}
.shadow_text {
text-shadow: 2px 2px 0 #fa360a, -2px -2px 0 #fa360a;
}
body {
color: var(--color-primary);
font-family: var(--primary-font);
padding: 1rem;
background-color: var(--color-fourth);
}
.flex_container {
display: flex;
}
.table_wrapper {
max-height: 400px;
overflow-y: auto;
width: 100%;
overflow-x: hidden;
}
#score_table {
font-size: 1.25rem;
width: 100%;
border: 2px solid var(--color-primary);
box-shadow: #888 20px 20px 20px;
background-color: var(--color-terciary);
height: 300px;
max-height: 200px;
border-collapse: collapse;
color: black;
}
td {
padding-inline: 2rem;
}
tr {
transition: transform 0.2s ease-in-out;
}
tr:nth-child(even) {
background-color: #fa360a;
color: white;
margin: 0;
}
#reset_scores,
#add_scores {
padding: 2rem;
flex-wrap: wrap;
flex: 1 1;
gap: 1rem;
}
#reset_scores {
justify-content: space-between;
}
#add_scores {
width: fit-content;
}
#score_form {
width: fit-content;
gap: 1rem;
align-items: flex-end;
}
.flex_column {
flex-direction: column;
}
.button {
width: fit-content;
padding: 10px;
font-weight: bold;
font-size: 1em;
color: white;
background-color: var(--color-secondary);
border: 2px solid red;
border-radius: 5px;
transition: transform 0.2s ease-in-out;
}
.button:hover {
transform: scale(1.05);
font-size: 1.05em;
cursor: pointer;
}
tr:hover {
transform: scale(1.1);
color: white;
font-weight: bold;
background-color: var(--color-secondary);
} | src/style.css | ::-webkit-scrollbar {
background-color: var(--color-primary);
width: 12px;
}
::-webkit-scrollbar-thumb {
background-color: var(--color-secondary);
border-radius: 6px;
}
:root {
--primary-font: 'Bakbak One', sans-serif;
--color-primary: #288fb4;
--color-secondary: #1d556f;
--color-terciary: #efddb2;
--color-fourth: #eaeaea;
}
* {
margin: 0;
box-sizing: border-box;
}
header {
padding: 1rem;
perspective: 14rem;
}
h1 {
text-align: center;
transform:
rotateY(30deg)
translate(-150px);
}
input {
border: 2px solid var(--color-secondary);
border-radius: 5px;
height: 2rem;
padding: 0.25rem;
background-color: var(--color-terciary);
color: #1d556f;
font-weight: 800;
}
input:focus-visible {
box-shadow: 5px 5px 0 var(--color-primary), -5px -5px 0 var(--color-primary);
}
.shadow_text {
text-shadow: 2px 2px 0 #fa360a, -2px -2px 0 #fa360a;
}
body {
color: var(--color-primary);
font-family: var(--primary-font);
padding: 1rem;
background-color: var(--color-fourth);
}
.flex_container {
display: flex;
}
.table_wrapper {
max-height: 400px;
overflow-y: auto;
width: 100%;
overflow-x: hidden;
}
#score_table {
font-size: 1.25rem;
width: 100%;
border: 2px solid var(--color-primary);
box-shadow: #888 20px 20px 20px;
background-color: var(--color-terciary);
height: 300px;
max-height: 200px;
border-collapse: collapse;
color: black;
}
td {
padding-inline: 2rem;
}
tr {
transition: transform 0.2s ease-in-out;
}
tr:nth-child(even) {
background-color: #fa360a;
color: white;
margin: 0;
}
#reset_scores,
#add_scores {
padding: 2rem;
flex-wrap: wrap;
flex: 1 1;
gap: 1rem;
}
#reset_scores {
justify-content: space-between;
}
#add_scores {
width: fit-content;
}
#score_form {
width: fit-content;
gap: 1rem;
align-items: flex-end;
}
.flex_column {
flex-direction: column;
}
.button {
width: fit-content;
padding: 10px;
font-weight: bold;
font-size: 1em;
color: white;
background-color: var(--color-secondary);
border: 2px solid red;
border-radius: 5px;
transition: transform 0.2s ease-in-out;
}
.button:hover {
transform: scale(1.05);
font-size: 1.05em;
cursor: pointer;
}
tr:hover {
transform: scale(1.1);
color: white;
font-weight: bold;
background-color: var(--color-secondary);
} | 0.446495 | 0.090856 |
#customize-header-actions .button {
margin: 0;
padding: 0 5px;
font-size: 12px;
}
#customize-header-actions .customize-action-reset {
float: right;
margin-left: 6px;
max-width: 50px;
}
#customize-header-actions .customize-action-refresh {
position: absolute;
z-index:1000;
left: 60px;
top: 10px;
max-width: 30px;
}
#customize-header-actions .customize-action-refresh:before {
margin: 0;
}
#customize-controls .customize-info div.customize-panel-description,
#customize-controls .customize-info div.customize-section-description,
#customize-controls div.no-widget-areas-rendered-notice {
display:block;
}
#customize-controls #customize-info div.customize-panel-description {
display:none;
}
#customize-controls .customize-section-description-container {
margin-bottom:0;
}
#customize-controls div.customize-section-description {
color: #555d66;
background: #fff;
padding: 12px 15px;
border-top: 1px solid #ddd;
margin:6px -12px 0;
}
#customize-controls div.customize-panel-description,
#customize-controls div.customize-panel-description p,
#customize-controls div.customize-section-description,
#customize-controls div.customize-section-description p,
.customize-control-description {
font-size: 12px;
line-height: 18px;
}
.customize-control-info > div {
margin-top:2em !important;
padding: 0.8em 10px;
background-color: #fcfcfc;
color: #626467;
border-top: 1px solid #ddd !important;
border-bottom: 1px solid #ddd !important;
border-left: 4px solid #1e8cbe;
margin: 6px -12px;
}
.customize-control-info > div > .customize-control-title {
letter-spacing: 1px;
text-transform: uppercase;
text-shadow: 1px 1px 1px #fff;
font-weight: 400;
margin-bottom:0;
}
.customize-control-info > div > .customize-control-description {
margin-top:4px;
}
.customize-control-field-wrap {
display: block;
position:relative;
}
#customize-theme-controls li > label,
#customize-theme-controls li > div {
display:block;
margin-top: 0.5em;
}
#customize-theme-controls li:not(.customize-section-description-container):not(.customize-control-info) + li > label,
#customize-theme-controls li:not(.customize-section-description-container):not(.customize-control-info) + li > div {
padding-top:0.8em;
border-top: 1px dotted #ddd;
}
.customize-control > label > label,
.customize-control > div > label {
display:inline-block;
margin:0 1em 0 0;
padding:0;
border:none;
}
.customize-control > label > label > input[type="radio"],
.customize-control > div > label > input[type="radio"] {
margin-right:0;
}
.customize-control-background img,
.customize-control-cropped_image img,
.customize-control-header img,
.customize-control-image img,
.customize-control-media img,
.customize-control-upload img {
width: auto;
}
#customize-control-header_image .customize-control-description {
display:none;
}
/* Media selector */
.customize-control .widget_field_type_image > input[type="text"],
.customize-control .widget_field_type_media > input[type="text"],
.customize-control .widget_field_type_audio > input[type="text"],
.customize-control .widget_field_type_video > input[type="text"] {
width: 60%;
}
.customize-control .widget_field_type_image > a.trx_addons_media_selector,
.customize-control .widget_field_type_media > a.trx_addons_media_selector,
.customize-control .widget_field_type_audio > a.trx_addons_media_selector,
.customize-control .widget_field_type_video > a.trx_addons_media_selector {
width: 39%;
}
/* Color scheme editor */
.customize-control-scheme_editor .callie_britt_scheme_editor_type .callie_britt_scheme_editor_row_cell {
padding:0;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_type .callie_britt_scheme_editor_row_cell:first-child {
width: 32%;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_type .callie_britt_scheme_editor_row_cell_span {
width: 68%;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_header_cell {
font-size: 12px;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell,
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell input {
font-size: 11px;
line-height:13px;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell input {
padding: 3px 2px;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_header_cell,
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell {
width: 17%;
padding: 0;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_header_cell:first-child,
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell:first-child {
width: 15%;
font-size: 11px;
}
.cp-color-picker {
z-index: 1000000;
}
/* Text editor */
.mce-floatpanel, .mce-tooltip {
z-index: 9999999 !important;
}
/* Widgets parameters
*
* Uncomment first row in each selector if you want display ThemeREX Widgets as SOW - fixed to the right side of panel
* If you remove '[id^="customize-control-widget_trx_addons_"]' part from first line - standard WP Widgets will be moved also
*
*/
.customize-control-widget_form .widget-control-actions {
margin: 1.5em 0;
}
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside,*/
.customize-control-widget_form.wide-widget-control .widget-inside {
position: fixed;
left: 18%;
top: 0 !important;
max-height: 100vh !important;
border: 1px solid #e5e5e5;
overflow-y: scroll;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside .widget-content,*/
.customize-control-widget_form.wide-widget-control .widget-inside .widget-content {
max-width: 360px !important;
min-width: 270px !important;
}
.siteorigin-widget-form.siteorigin-widget-form-main {
min-width: 270px !important;
}
@media (max-width: 1667px) {
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside,*/
.customize-control-widget_form.wide-widget-control .widget-inside {
left: 300px;
}
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside .widget-content,*/
.customize-control-widget_form.wide-widget-control .widget-inside .widget-content {
max-width: 300px !important;
}
}
@media (max-width: 1279px) {
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside,*/
.customize-control-widget_form.wide-widget-control .widget-inside {
position: static !important;
left: 0 !important;
top: 0 !important;
max-height: none !important;
border: none;
overflow: visible;
}
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside .widget-content,*/
.customize-control-widget_form.wide-widget-control .widget-inside .widget-content {
max-width: none !important;
}
} | web/app/themes/callie-britt/theme-options/theme-customizer.css |
#customize-header-actions .button {
margin: 0;
padding: 0 5px;
font-size: 12px;
}
#customize-header-actions .customize-action-reset {
float: right;
margin-left: 6px;
max-width: 50px;
}
#customize-header-actions .customize-action-refresh {
position: absolute;
z-index:1000;
left: 60px;
top: 10px;
max-width: 30px;
}
#customize-header-actions .customize-action-refresh:before {
margin: 0;
}
#customize-controls .customize-info div.customize-panel-description,
#customize-controls .customize-info div.customize-section-description,
#customize-controls div.no-widget-areas-rendered-notice {
display:block;
}
#customize-controls #customize-info div.customize-panel-description {
display:none;
}
#customize-controls .customize-section-description-container {
margin-bottom:0;
}
#customize-controls div.customize-section-description {
color: #555d66;
background: #fff;
padding: 12px 15px;
border-top: 1px solid #ddd;
margin:6px -12px 0;
}
#customize-controls div.customize-panel-description,
#customize-controls div.customize-panel-description p,
#customize-controls div.customize-section-description,
#customize-controls div.customize-section-description p,
.customize-control-description {
font-size: 12px;
line-height: 18px;
}
.customize-control-info > div {
margin-top:2em !important;
padding: 0.8em 10px;
background-color: #fcfcfc;
color: #626467;
border-top: 1px solid #ddd !important;
border-bottom: 1px solid #ddd !important;
border-left: 4px solid #1e8cbe;
margin: 6px -12px;
}
.customize-control-info > div > .customize-control-title {
letter-spacing: 1px;
text-transform: uppercase;
text-shadow: 1px 1px 1px #fff;
font-weight: 400;
margin-bottom:0;
}
.customize-control-info > div > .customize-control-description {
margin-top:4px;
}
.customize-control-field-wrap {
display: block;
position:relative;
}
#customize-theme-controls li > label,
#customize-theme-controls li > div {
display:block;
margin-top: 0.5em;
}
#customize-theme-controls li:not(.customize-section-description-container):not(.customize-control-info) + li > label,
#customize-theme-controls li:not(.customize-section-description-container):not(.customize-control-info) + li > div {
padding-top:0.8em;
border-top: 1px dotted #ddd;
}
.customize-control > label > label,
.customize-control > div > label {
display:inline-block;
margin:0 1em 0 0;
padding:0;
border:none;
}
.customize-control > label > label > input[type="radio"],
.customize-control > div > label > input[type="radio"] {
margin-right:0;
}
.customize-control-background img,
.customize-control-cropped_image img,
.customize-control-header img,
.customize-control-image img,
.customize-control-media img,
.customize-control-upload img {
width: auto;
}
#customize-control-header_image .customize-control-description {
display:none;
}
/* Media selector */
.customize-control .widget_field_type_image > input[type="text"],
.customize-control .widget_field_type_media > input[type="text"],
.customize-control .widget_field_type_audio > input[type="text"],
.customize-control .widget_field_type_video > input[type="text"] {
width: 60%;
}
.customize-control .widget_field_type_image > a.trx_addons_media_selector,
.customize-control .widget_field_type_media > a.trx_addons_media_selector,
.customize-control .widget_field_type_audio > a.trx_addons_media_selector,
.customize-control .widget_field_type_video > a.trx_addons_media_selector {
width: 39%;
}
/* Color scheme editor */
.customize-control-scheme_editor .callie_britt_scheme_editor_type .callie_britt_scheme_editor_row_cell {
padding:0;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_type .callie_britt_scheme_editor_row_cell:first-child {
width: 32%;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_type .callie_britt_scheme_editor_row_cell_span {
width: 68%;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_header_cell {
font-size: 12px;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell,
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell input {
font-size: 11px;
line-height:13px;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell input {
padding: 3px 2px;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_header_cell,
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell {
width: 17%;
padding: 0;
}
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_header_cell:first-child,
.customize-control-scheme_editor .callie_britt_scheme_editor_colors .callie_britt_scheme_editor_row_cell:first-child {
width: 15%;
font-size: 11px;
}
.cp-color-picker {
z-index: 1000000;
}
/* Text editor */
.mce-floatpanel, .mce-tooltip {
z-index: 9999999 !important;
}
/* Widgets parameters
*
* Uncomment first row in each selector if you want display ThemeREX Widgets as SOW - fixed to the right side of panel
* If you remove '[id^="customize-control-widget_trx_addons_"]' part from first line - standard WP Widgets will be moved also
*
*/
.customize-control-widget_form .widget-control-actions {
margin: 1.5em 0;
}
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside,*/
.customize-control-widget_form.wide-widget-control .widget-inside {
position: fixed;
left: 18%;
top: 0 !important;
max-height: 100vh !important;
border: 1px solid #e5e5e5;
overflow-y: scroll;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside .widget-content,*/
.customize-control-widget_form.wide-widget-control .widget-inside .widget-content {
max-width: 360px !important;
min-width: 270px !important;
}
.siteorigin-widget-form.siteorigin-widget-form-main {
min-width: 270px !important;
}
@media (max-width: 1667px) {
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside,*/
.customize-control-widget_form.wide-widget-control .widget-inside {
left: 300px;
}
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside .widget-content,*/
.customize-control-widget_form.wide-widget-control .widget-inside .widget-content {
max-width: 300px !important;
}
}
@media (max-width: 1279px) {
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside,*/
.customize-control-widget_form.wide-widget-control .widget-inside {
position: static !important;
left: 0 !important;
top: 0 !important;
max-height: none !important;
border: none;
overflow: visible;
}
/*.customize-control-widget_form[id^="customize-control-widget_trx_addons_"] .widget-inside .widget-content,*/
.customize-control-widget_form.wide-widget-control .widget-inside .widget-content {
max-width: none !important;
}
} | 0.425128 | 0.084153 |
.home-banner {
border-radius: 10px;
width: 920px;
height: 312px;
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 auto;
padding: 50px 0 50px;
}
.home-banner img {
position: absolute;
right: 0;
}
.banner-title-wrapper {
display: flex;
/* height: 60px; */
align-items: center;
}
.banner-title {
font-weight: bold;
font-size: 36px;
color: #015e73;
margin-right: 10px;
}
.banner-title-count {
display: flex;
align-items: center;
justify-content: center;
border-bottom: 5px solid #015e73;
}
.banner-content {
font-weight: bold;
font-size: 26px;
width: 500px;
color: #404040;
margin-top: 25px;
}
.home-banner ul {
margin-top: 35px;
display: grid;
grid-template: 40px / repeat(3, 1fr);
width: 405px;
grid-column-gap: 22px;
}
.home-banner li {
position: relative;
width: 100%;
height: 100%;
}
.home-banner a {
height: 100%;
font-size: 16px;
color: #ffffff;
background: #00bcc8;
border-radius: 3px;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.25));
}
.home-banner a:hover {
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.home-banner a:active {
background: #015e73;
}
.home-sort {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.sort-tab-wrapper {
width: 100%;
/* width: 920px; */
display: flex;
}
.sort-list {
background: #acdee1;
padding: 60px 0;
width: 100%;
display: grid;
grid-template: auto / repeat(4, 200px);
justify-content: center;
grid-gap: 40px;
}
.sort-list a {
background: #ffffff;
box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.25);
border-radius: 16px;
transition: all 0.2s;
border: 2px solid #fff;
}
.sort-list a:hover {
border: 2px solid #015e73;
transition: all 0.2s;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
}
.card h3 {
font-weight: bold;
font-size: 26px;
color: #015e73;
text-align: center;
margin-bottom: 5px;
}
.card-theme {
height: 225px;
padding-top: 7px;
/* padding-bottom: 20px; */
}
.card-organ {
height: 84px;
justify-content: center;
}
.card-line {
width: 160px;
height: 2px;
background-color: #015e73;
}
.card-theme p {
width: 168px;
margin-top: 8px;
font-weight: 500;
color: #676767;
line-height: 19px;
}
.card-theme-icon {
height: 80px;
width: 80px;
align-self: center;
} | src/component/Home/home.css | .home-banner {
border-radius: 10px;
width: 920px;
height: 312px;
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 auto;
padding: 50px 0 50px;
}
.home-banner img {
position: absolute;
right: 0;
}
.banner-title-wrapper {
display: flex;
/* height: 60px; */
align-items: center;
}
.banner-title {
font-weight: bold;
font-size: 36px;
color: #015e73;
margin-right: 10px;
}
.banner-title-count {
display: flex;
align-items: center;
justify-content: center;
border-bottom: 5px solid #015e73;
}
.banner-content {
font-weight: bold;
font-size: 26px;
width: 500px;
color: #404040;
margin-top: 25px;
}
.home-banner ul {
margin-top: 35px;
display: grid;
grid-template: 40px / repeat(3, 1fr);
width: 405px;
grid-column-gap: 22px;
}
.home-banner li {
position: relative;
width: 100%;
height: 100%;
}
.home-banner a {
height: 100%;
font-size: 16px;
color: #ffffff;
background: #00bcc8;
border-radius: 3px;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.25));
}
.home-banner a:hover {
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.home-banner a:active {
background: #015e73;
}
.home-sort {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.sort-tab-wrapper {
width: 100%;
/* width: 920px; */
display: flex;
}
.sort-list {
background: #acdee1;
padding: 60px 0;
width: 100%;
display: grid;
grid-template: auto / repeat(4, 200px);
justify-content: center;
grid-gap: 40px;
}
.sort-list a {
background: #ffffff;
box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.25);
border-radius: 16px;
transition: all 0.2s;
border: 2px solid #fff;
}
.sort-list a:hover {
border: 2px solid #015e73;
transition: all 0.2s;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
}
.card h3 {
font-weight: bold;
font-size: 26px;
color: #015e73;
text-align: center;
margin-bottom: 5px;
}
.card-theme {
height: 225px;
padding-top: 7px;
/* padding-bottom: 20px; */
}
.card-organ {
height: 84px;
justify-content: center;
}
.card-line {
width: 160px;
height: 2px;
background-color: #015e73;
}
.card-theme p {
width: 168px;
margin-top: 8px;
font-weight: 500;
color: #676767;
line-height: 19px;
}
.card-theme-icon {
height: 80px;
width: 80px;
align-self: center;
} | 0.372734 | 0.165189 |
.alignfull {
max-width: inherit;
position: relative;
}
body.has-gutenberg-blocks .blog-entry .entry-body {
padding: 0;
}
blockquote.wp-block-quote > p {
/* border: none;
padding: 0; */
}
.wp-block-image figcaption {
margin-bottom: 0;
}
ul.wp-block-gallery li {
padding: 0;
margin: 0;
}
.wp-block-pullquote p {
border: none;
display: block;
padding: 0;
}
.wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img {
flex: 1;
height: 100%;
object-fit: cover;
-o-object-fit: cover;
}
figure.wp-block-pullquote {
margin-bottom: 20px;
}
figure.wp-block-pullquote.alignleft {
text-align: left;
}
blockquote.wp-block-quote {
margin: 20px 0 15px;
padding: 0;
}
blockquote.wp-block-quote>cite {
/* display: block;
margin-top: 0;
text-align: inherit; */
font-size: 16px;
font-weight: 400;
font-style: italic;
}
body.has-gutenberg-blocks code {
background: #f3f4f5;
border-radius: 2px;
padding: 1px 3px 3px;
margin: 0 1px;
}
body.has-gutenberg-blocks .blog-entry.post-standard .entry-title h4 {
font-size: 39px;
font-weight: 600;
}
pre.wp-block-preformatted, pre.wp-block-verse {
font-family: monospace;
}
.has-gutenberg-blocks section>.page>ol {
padding-top: 0;
}
.wp-block-latest-posts.is-grid li {
margin: 0;
}
.has-gutenberg-blocks section>.page>ul.wp-block-latest-posts {
padding-left: 0;
margin-bottom: 40px;
}
.has-gutenberg-blocks section>.page>ul.wp-block-latest-posts.is-grid {
margin: 0;
padding-left: 0;
}
blockquote.wp-block-quote, .wp-block-pullquote blockquote {
padding: 0; border: none;
/* background-color: transparent;
border-left: 4px solid currentColor;
padding-left: 15px; */
}
.wp-block-pullquote blockquote, .wp-block-pullquote blockquote p {
border-width: 0;
padding-left: 0;
}
blockquote.wp-block-quote.is-large cite {
font-size: 13px;
text-align: left;
}
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
/* border-left: 4px solid currentColor; */
}
.wp-block-button__link {
margin-bottom: 25px;
}
.wp-block-button.alignleft, .wp-block-pullquote.alignleft, .wp-block-image .alignleft, .wp-block-cover.alignleft, body.has-gutenberg-blocks ul.wp-block-gallery.alignleft {
margin-right: 2em;
}
.wp-block-button.alignright, .wp-block-pullquote.alignright, .wp-block-image .alignright, .wp-block-cover.alignright, body.has-gutenberg-blocks ul.wp-block-gallery.alignright {
margin-left: 2em;
}
.wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
font-size: 22px;
}
body.has-gutenberg-blocks ul.wp-block-gallery {
display: flex;
margin: 0 0 15px 0;
padding-left: 0;
}
.wp-block-table td, .wp-block-table th {
border-color: currentColor;
padding: 1.5em;
font-size: 16px;
text-align: left;
border-width: 1px 0 0 1px;
border-style: solid;
}
.wp-block-table tbody tr td:last-child, .wp-block-table tbody tr th:last-child { border-right: 1px solid currentColor; }
.wp-block-table tbody tr:last-child td { border-bottom: 1px solid currentColor; }
.wp-block-table tbody tr:nth-child(2n+1) td {
background: transparent;
}
.wp-block-cover.has-background-dim {
margin-bottom: 1.5em;
}
.wp-block-embed-vimeo.alignfull iframe {
width: 100%;
min-height: 905px;
}
body.has-gutenberg-blocks em a {
border-bottom: 1px solid;
}
.wp-block-latest-posts.is-grid {
margin: 0;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
background-color: #000;
}
.is-style-outline .wp-block-button__link:hover {
color: #000;
}
.wp-block-file .wp-block-file__button {
display: table;
margin: 15px 0 0;
}
.wp-block-pullquote {
margin-top: 10px;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul {
margin-left: 0;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul.wp-block-latest-posts.is-grid {
padding-left: 0;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul.wp-block-archives-list, .has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul.wp-block-categories-list, .has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul.wp-block-latest-posts:not(.is-grid) {
list-style-position: outside;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul, .has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ol {
margin-bottom: 35px;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>.wp-block-archives-dropdown .selection-box {
display: inline-block;
}
.wp-block-archives-dropdown ~ p{ margin-top: 20px;}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul li a:hover, .has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ol li a:hover {
color: #000;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>*[class*="wp-block"] {
margin-bottom: 35px;
}
table.wp-block-table {
border-collapse: collapse;
}
table.wp-block-table.is-style-stripes {
border: 1px solid rgba(0, 0, 0, 0.1);
}
table.wp-block-table tbody tr:nth-child(2n+1) {
background: rgba(0, 0, 0, 0);
}
table.wp-block-table th, table.wp-block-table td {
vertical-align: middle;
}
.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
padding: 0
}
/** New **/
.wp-block-separator { margin: 1.65em auto; border-bottom-width: 1px; border-bottom-color: #eaeaea; color: inherit; }
.wp-block-pullquote__citation, .wp-block-pullquote cite, .wp-block-pullquote footer { color: inherit; }
.wp-block-media-text { margin: 0 0 30px; }
.wp-block-cover-image .wp-block-subhead:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color), .wp-block-cover .wp-block-subhead:not(.has-text-color), .wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color) { color: #fff; }
.wp-block-cover-text a:hover { color: rgba(255, 255, 255, 0.7); }
html:not(.vc_transform) .entry-body p.has-large-font-size, html:not(.vc_transform) .entry-body p.has-large-font-size + p { line-height: normal; }
/** New co-blocks **/
.has-primary-background-color, .has-secondary-background-color, .has-tertiary-background-color { color: #ffffff; }
.wp-block-coblocks-click-to-tweet__text { display: block; border-width: 0; margin-bottom: 0; padding-left: 0; padding-bottom: 0; }
.wp-block-coblocks-click-to-tweet__text:before { display: inline-block; margin-right: 15px; position: relative; top: 5px; }
.wp-block-coblocks-author__content .wp-block-coblocks-author__name { margin: 0 0 15px; }
.has-drop-cap:not(:focus):after { content: ""; display: table; clear: both; padding-top: 14px; }
.wp-block-latest-comments__comment { font-size: 17px; }
.has-primary-background-color, .has-secondary-background-color, .has-tertiary-background-color, .has-background.has-primary-background-color a, .has-background.has-secondary-background-color a,
.has-background.has-tertiary-background-color a { color: #ffffff; }
.has-background.has-primary-background-color a:hover, .has-background.has-secondary-background-color a:hover, .has-background.has-tertiary-background-color a:hover { color: rgba(255,255,255,0.7); }
/** Theme Related **/
.has-gutenberg-blocks ul li ul { margin-bottom: 0; }
.page-template-default.has-gutenberg-blocks .type-page h2 + p + blockquote p, .wp-block-latest-comments article { display: block; } | public/img/Kanni - Home Automation, CCTV Security Preview - ThemeForest_files/gutenberg.css | .alignfull {
max-width: inherit;
position: relative;
}
body.has-gutenberg-blocks .blog-entry .entry-body {
padding: 0;
}
blockquote.wp-block-quote > p {
/* border: none;
padding: 0; */
}
.wp-block-image figcaption {
margin-bottom: 0;
}
ul.wp-block-gallery li {
padding: 0;
margin: 0;
}
.wp-block-pullquote p {
border: none;
display: block;
padding: 0;
}
.wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img {
flex: 1;
height: 100%;
object-fit: cover;
-o-object-fit: cover;
}
figure.wp-block-pullquote {
margin-bottom: 20px;
}
figure.wp-block-pullquote.alignleft {
text-align: left;
}
blockquote.wp-block-quote {
margin: 20px 0 15px;
padding: 0;
}
blockquote.wp-block-quote>cite {
/* display: block;
margin-top: 0;
text-align: inherit; */
font-size: 16px;
font-weight: 400;
font-style: italic;
}
body.has-gutenberg-blocks code {
background: #f3f4f5;
border-radius: 2px;
padding: 1px 3px 3px;
margin: 0 1px;
}
body.has-gutenberg-blocks .blog-entry.post-standard .entry-title h4 {
font-size: 39px;
font-weight: 600;
}
pre.wp-block-preformatted, pre.wp-block-verse {
font-family: monospace;
}
.has-gutenberg-blocks section>.page>ol {
padding-top: 0;
}
.wp-block-latest-posts.is-grid li {
margin: 0;
}
.has-gutenberg-blocks section>.page>ul.wp-block-latest-posts {
padding-left: 0;
margin-bottom: 40px;
}
.has-gutenberg-blocks section>.page>ul.wp-block-latest-posts.is-grid {
margin: 0;
padding-left: 0;
}
blockquote.wp-block-quote, .wp-block-pullquote blockquote {
padding: 0; border: none;
/* background-color: transparent;
border-left: 4px solid currentColor;
padding-left: 15px; */
}
.wp-block-pullquote blockquote, .wp-block-pullquote blockquote p {
border-width: 0;
padding-left: 0;
}
blockquote.wp-block-quote.is-large cite {
font-size: 13px;
text-align: left;
}
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
/* border-left: 4px solid currentColor; */
}
.wp-block-button__link {
margin-bottom: 25px;
}
.wp-block-button.alignleft, .wp-block-pullquote.alignleft, .wp-block-image .alignleft, .wp-block-cover.alignleft, body.has-gutenberg-blocks ul.wp-block-gallery.alignleft {
margin-right: 2em;
}
.wp-block-button.alignright, .wp-block-pullquote.alignright, .wp-block-image .alignright, .wp-block-cover.alignright, body.has-gutenberg-blocks ul.wp-block-gallery.alignright {
margin-left: 2em;
}
.wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
font-size: 22px;
}
body.has-gutenberg-blocks ul.wp-block-gallery {
display: flex;
margin: 0 0 15px 0;
padding-left: 0;
}
.wp-block-table td, .wp-block-table th {
border-color: currentColor;
padding: 1.5em;
font-size: 16px;
text-align: left;
border-width: 1px 0 0 1px;
border-style: solid;
}
.wp-block-table tbody tr td:last-child, .wp-block-table tbody tr th:last-child { border-right: 1px solid currentColor; }
.wp-block-table tbody tr:last-child td { border-bottom: 1px solid currentColor; }
.wp-block-table tbody tr:nth-child(2n+1) td {
background: transparent;
}
.wp-block-cover.has-background-dim {
margin-bottom: 1.5em;
}
.wp-block-embed-vimeo.alignfull iframe {
width: 100%;
min-height: 905px;
}
body.has-gutenberg-blocks em a {
border-bottom: 1px solid;
}
.wp-block-latest-posts.is-grid {
margin: 0;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
background-color: #000;
}
.is-style-outline .wp-block-button__link:hover {
color: #000;
}
.wp-block-file .wp-block-file__button {
display: table;
margin: 15px 0 0;
}
.wp-block-pullquote {
margin-top: 10px;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul {
margin-left: 0;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul.wp-block-latest-posts.is-grid {
padding-left: 0;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul.wp-block-archives-list, .has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul.wp-block-categories-list, .has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul.wp-block-latest-posts:not(.is-grid) {
list-style-position: outside;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul, .has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ol {
margin-bottom: 35px;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>.wp-block-archives-dropdown .selection-box {
display: inline-block;
}
.wp-block-archives-dropdown ~ p{ margin-top: 20px;}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ul li a:hover, .has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>ol li a:hover {
color: #000;
}
.has-gutenberg-blocks section .blog-single-entry.category-block .entry-body>*[class*="wp-block"] {
margin-bottom: 35px;
}
table.wp-block-table {
border-collapse: collapse;
}
table.wp-block-table.is-style-stripes {
border: 1px solid rgba(0, 0, 0, 0.1);
}
table.wp-block-table tbody tr:nth-child(2n+1) {
background: rgba(0, 0, 0, 0);
}
table.wp-block-table th, table.wp-block-table td {
vertical-align: middle;
}
.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
padding: 0
}
/** New **/
.wp-block-separator { margin: 1.65em auto; border-bottom-width: 1px; border-bottom-color: #eaeaea; color: inherit; }
.wp-block-pullquote__citation, .wp-block-pullquote cite, .wp-block-pullquote footer { color: inherit; }
.wp-block-media-text { margin: 0 0 30px; }
.wp-block-cover-image .wp-block-subhead:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color), .wp-block-cover .wp-block-subhead:not(.has-text-color), .wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color) { color: #fff; }
.wp-block-cover-text a:hover { color: rgba(255, 255, 255, 0.7); }
html:not(.vc_transform) .entry-body p.has-large-font-size, html:not(.vc_transform) .entry-body p.has-large-font-size + p { line-height: normal; }
/** New co-blocks **/
.has-primary-background-color, .has-secondary-background-color, .has-tertiary-background-color { color: #ffffff; }
.wp-block-coblocks-click-to-tweet__text { display: block; border-width: 0; margin-bottom: 0; padding-left: 0; padding-bottom: 0; }
.wp-block-coblocks-click-to-tweet__text:before { display: inline-block; margin-right: 15px; position: relative; top: 5px; }
.wp-block-coblocks-author__content .wp-block-coblocks-author__name { margin: 0 0 15px; }
.has-drop-cap:not(:focus):after { content: ""; display: table; clear: both; padding-top: 14px; }
.wp-block-latest-comments__comment { font-size: 17px; }
.has-primary-background-color, .has-secondary-background-color, .has-tertiary-background-color, .has-background.has-primary-background-color a, .has-background.has-secondary-background-color a,
.has-background.has-tertiary-background-color a { color: #ffffff; }
.has-background.has-primary-background-color a:hover, .has-background.has-secondary-background-color a:hover, .has-background.has-tertiary-background-color a:hover { color: rgba(255,255,255,0.7); }
/** Theme Related **/
.has-gutenberg-blocks ul li ul { margin-bottom: 0; }
.page-template-default.has-gutenberg-blocks .type-page h2 + p + blockquote p, .wp-block-latest-comments article { display: block; } | 0.620852 | 0.115611 |
.module-data .repeat .add-new {
font-size: 0;
white-space: nowrap;
margin: 10px 0;
margin-right: 300px;
vertical-align: middle;
}
.module-data .repeat .add-new > * {
vertical-align: middle;
}
.module-data .repeat .add-new .new-file {
cursor: pointer;
margin-right: 10px;
color: #5D5D62;
}
.module-data .repeat .add-new .new-file:hover {
text-decoration: underline;
}
.module-data .repeat .add-new .goodBtn {
border: none;
padding: 10px;
padding-left: 40px;
background-image: url(../icons/new_file.svg);
background-position: 10px center;
background-repeat: no-repeat;
background-size: 20px;
font-size: 14px;
}
.module-data .data-place .line-box {
margin-top: 10px;
margin-right: 10px;
}
.module-data .data-place .line-box .short-row {
font-size: 0;
vertical-align: middle;
}
.module-data .data-place .line-box .short-row:nth-child(1) {
width: 62px;
margin-right: 10px;
}
.module-data .data-place .line-box .short-row:nth-child(2) {
width: 11vw;
padding-right: 5px;
}
.module-data .data-place .line-box .short-row:nth-child(3),
.module-data .data-place .line-box .short-row:nth-child(4) {
width: 9.5vw;
}
.module-data .data-place .line-box .short-row:nth-child(5) .quest {
width: 20.5vw;
}
.module-data .data-place .line-box .short-row:nth-child(5) .quest .rename-input {
width: 12vw;
}
.module-data .data-place .line-box .short-row .hand-mover {
width: 10px;
}
.module-data .data-place .line-box .short-row .mini-image {
width: 42px;
height: 42px;
vertical-align: middle;
font-size: 0;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
background-image: url(../icons/mime_none.svg);
background-color: #FFF;
margin-left: 10px;
cursor: default;
}
.module-data .data-place .line-box .short-row.info-block > * {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: default;
}
.module-data .data-place .line-box .short-row .title {
margin-bottom: 3px;
}
.module-data .data-place .line-box .short-row .info {
color: #9E9E9E;
font-size: 10px;
}
.module-data .data-place .preRename:checked + * + .line-box .short-row.info-block {
display: none;
} | public/admin/css/files.css | .module-data .repeat .add-new {
font-size: 0;
white-space: nowrap;
margin: 10px 0;
margin-right: 300px;
vertical-align: middle;
}
.module-data .repeat .add-new > * {
vertical-align: middle;
}
.module-data .repeat .add-new .new-file {
cursor: pointer;
margin-right: 10px;
color: #5D5D62;
}
.module-data .repeat .add-new .new-file:hover {
text-decoration: underline;
}
.module-data .repeat .add-new .goodBtn {
border: none;
padding: 10px;
padding-left: 40px;
background-image: url(../icons/new_file.svg);
background-position: 10px center;
background-repeat: no-repeat;
background-size: 20px;
font-size: 14px;
}
.module-data .data-place .line-box {
margin-top: 10px;
margin-right: 10px;
}
.module-data .data-place .line-box .short-row {
font-size: 0;
vertical-align: middle;
}
.module-data .data-place .line-box .short-row:nth-child(1) {
width: 62px;
margin-right: 10px;
}
.module-data .data-place .line-box .short-row:nth-child(2) {
width: 11vw;
padding-right: 5px;
}
.module-data .data-place .line-box .short-row:nth-child(3),
.module-data .data-place .line-box .short-row:nth-child(4) {
width: 9.5vw;
}
.module-data .data-place .line-box .short-row:nth-child(5) .quest {
width: 20.5vw;
}
.module-data .data-place .line-box .short-row:nth-child(5) .quest .rename-input {
width: 12vw;
}
.module-data .data-place .line-box .short-row .hand-mover {
width: 10px;
}
.module-data .data-place .line-box .short-row .mini-image {
width: 42px;
height: 42px;
vertical-align: middle;
font-size: 0;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
background-image: url(../icons/mime_none.svg);
background-color: #FFF;
margin-left: 10px;
cursor: default;
}
.module-data .data-place .line-box .short-row.info-block > * {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: default;
}
.module-data .data-place .line-box .short-row .title {
margin-bottom: 3px;
}
.module-data .data-place .line-box .short-row .info {
color: #9E9E9E;
font-size: 10px;
}
.module-data .data-place .preRename:checked + * + .line-box .short-row.info-block {
display: none;
} | 0.252476 | 0.057679 |
@media (prefers-color-scheme: dark) {
.base16-gruvbox-soft {
--base00: #32302f;
--base01: #3c3836;
--base02: #504945;
--base03: #665c54;
--base04: #bdae93;
--base05: #d5c4a1;
--base06: #ebdbb2;
--base07: #fbf1c7;
--base08: #fb4934;
--base09: #fe8019;
--base0A: #fabd2f;
--base0B: #b8bb26;
--base0C: #8ec07c;
--base0D: #83a598;
--base0E: #d3869b;
--base0F: #d65d0e;
}
}
.base16-gruvbox-soft.dark {
--base00: #32302f;
--base01: #3c3836;
--base02: #504945;
--base03: #665c54;
--base04: #bdae93;
--base05: #d5c4a1;
--base06: #ebdbb2;
--base07: #fbf1c7;
--base08: #fb4934;
--base09: #fe8019;
--base0A: #fabd2f;
--base0B: #b8bb26;
--base0C: #8ec07c;
--base0D: #83a598;
--base0E: #d3869b;
--base0F: #d65d0e;
}
/* Gruvbox dark, soft by <NAME> (<EMAIL>), morhetz (https://github.com/morhetz/gruvbox) */
.base16-gruvbox-soft {
--base00: #32302f;
--base01: #3c3836;
--base02: #504945;
--base03: #665c54;
--base04: #bdae93;
--base05: #d5c4a1;
--base06: #ebdbb2;
--base07: #fbf1c7;
--base08: #fb4934;
--base09: #fe8019;
--base0A: #fabd2f;
--base0B: #b8bb26;
--base0C: #8ec07c;
--base0D: #83a598;
--base0E: #d3869b;
--base0F: #d65d0e;
}
/* Gruvbox light, soft by <NAME> (<EMAIL>), morhetz (https://github.com/morhetz/gruvbox) */
@media (prefers-color-scheme: light) {
.base16-gruvbox-soft {
--base00: #f2e5bc;
--base01: #ebdbb2;
--base02: #d5c4a1;
--base03: #bdae93;
--base04: #665c54;
--base05: #504945;
--base06: #3c3836;
--base07: #282828;
--base08: #9d0006;
--base09: #af3a03;
--base0A: #b57614;
--base0B: #79740e;
--base0C: #427b58;
--base0D: #076678;
--base0E: #8f3f71;
--base0F: #d65d0e;
}
}
.base16-gruvbox-soft.light {
--base00: #f2e5bc;
--base01: #ebdbb2;
--base02: #d5c4a1;
--base03: #bdae93;
--base04: #665c54;
--base05: #504945;
--base06: #3c3836;
--base07: #282828;
--base08: #9d0006;
--base09: #af3a03;
--base0A: #b57614;
--base0B: #79740e;
--base0C: #427b58;
--base0D: #076678;
--base0E: #8f3f71;
--base0F: #d65d0e;
} | css/gruvbox-soft.css | @media (prefers-color-scheme: dark) {
.base16-gruvbox-soft {
--base00: #32302f;
--base01: #3c3836;
--base02: #504945;
--base03: #665c54;
--base04: #bdae93;
--base05: #d5c4a1;
--base06: #ebdbb2;
--base07: #fbf1c7;
--base08: #fb4934;
--base09: #fe8019;
--base0A: #fabd2f;
--base0B: #b8bb26;
--base0C: #8ec07c;
--base0D: #83a598;
--base0E: #d3869b;
--base0F: #d65d0e;
}
}
.base16-gruvbox-soft.dark {
--base00: #32302f;
--base01: #3c3836;
--base02: #504945;
--base03: #665c54;
--base04: #bdae93;
--base05: #d5c4a1;
--base06: #ebdbb2;
--base07: #fbf1c7;
--base08: #fb4934;
--base09: #fe8019;
--base0A: #fabd2f;
--base0B: #b8bb26;
--base0C: #8ec07c;
--base0D: #83a598;
--base0E: #d3869b;
--base0F: #d65d0e;
}
/* Gruvbox dark, soft by <NAME> (<EMAIL>), morhetz (https://github.com/morhetz/gruvbox) */
.base16-gruvbox-soft {
--base00: #32302f;
--base01: #3c3836;
--base02: #504945;
--base03: #665c54;
--base04: #bdae93;
--base05: #d5c4a1;
--base06: #ebdbb2;
--base07: #fbf1c7;
--base08: #fb4934;
--base09: #fe8019;
--base0A: #fabd2f;
--base0B: #b8bb26;
--base0C: #8ec07c;
--base0D: #83a598;
--base0E: #d3869b;
--base0F: #d65d0e;
}
/* Gruvbox light, soft by <NAME> (<EMAIL>), morhetz (https://github.com/morhetz/gruvbox) */
@media (prefers-color-scheme: light) {
.base16-gruvbox-soft {
--base00: #f2e5bc;
--base01: #ebdbb2;
--base02: #d5c4a1;
--base03: #bdae93;
--base04: #665c54;
--base05: #504945;
--base06: #3c3836;
--base07: #282828;
--base08: #9d0006;
--base09: #af3a03;
--base0A: #b57614;
--base0B: #79740e;
--base0C: #427b58;
--base0D: #076678;
--base0E: #8f3f71;
--base0F: #d65d0e;
}
}
.base16-gruvbox-soft.light {
--base00: #f2e5bc;
--base01: #ebdbb2;
--base02: #d5c4a1;
--base03: #bdae93;
--base04: #665c54;
--base05: #504945;
--base06: #3c3836;
--base07: #282828;
--base08: #9d0006;
--base09: #af3a03;
--base0A: #b57614;
--base0B: #79740e;
--base0C: #427b58;
--base0D: #076678;
--base0E: #8f3f71;
--base0F: #d65d0e;
} | 0.249539 | 0.05572 |
.ui-tolito-progressbar
{
height: 30px;
margin: 5em, 0;
overflow: hidden;
padding: 0;
position: relative;
top: 4px;
width: 100%;
}
.ui-tolito-progressbar-mini
{
height: 20px;
margin: 5em, 0;
overflow: hidden;
padding: 0;
position: relative;
top: 4px;
width: 100%;
}
.ui-tolito-progressbar-bg
{
border: none;
height: 100%;
left: 0;
position: absolute;
width: 100%;
z-index: 1;
}
.ui-tolito-progressbar-label
{
border: none;
height: 100%;
left: 0;
position: absolute;
text-align: center;
vertical-align: text-top;
width: 100%;
z-index: 2;
}
.ui-tolito-progressbar-outer-a
{
background: #222;
background-image: linear-gradient( #202020, #2c2c2c);
background-image: -moz-linear-gradient( #202020, #2c2c2c);
background-image: -ms-linear-gradient( #202020, #2c2c2c);
background-image: -o-linear-gradient( #202020, #2c2c2c);
background-image: -webkit-gradient(linear, left top, left bottom, from( #202020), to( #2c2c2c));
background-image: -webkit-linear-gradient( #202020, #2c2c2c);
border: 1px solid #000;
color: #fff;
font-weight: bold;
text-shadow: 0 1px 1px #111;
}
.ui-tolito-progressbar-outer-b
{
background: #4e89c5;
background-image: linear-gradient( #295b8e, #3e79b5);
background-image: -moz-linear-gradient( #295b8e, #3e79b5);
background-image: -ms-linear-gradient( #295b8e, #3e79b5);
background-image: -o-linear-gradient( #295b8e, #3e79b5);
background-image: -webkit-gradient(linear, left top, left bottom, from( #295b8e), to( #3e79b5));
background-image: -webkit-linear-gradient( #295b8e, #3e79b5);
border: 1px solid #225377;
color: #fff;
font-weight: bold;
text-shadow: 0 1px 1px #194b7e;
}
.ui-tolito-progressbar-outer-c
{
background: #d6d6d6;
background-image: linear-gradient( #d0d0d0, #dfdfdf);
background-image: -moz-linear-gradient( #d0d0d0, #dfdfdf);
background-image: -ms-linear-gradient( #d0d0d0, #dfdfdf);
background-image: -o-linear-gradient( #d0d0d0, #dfdfdf);
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0), to( #dfdfdf));
background-image: -webkit-linear-gradient( #d0d0d0, #dfdfdf);
border: 1px solid #bbb;
color: #222;
font-weight: bold;
text-shadow: 0 1px 0 #fff;
}
.ui-tolito-progressbar-outer-d
{
background: #eee;
background-image: linear-gradient( #e5e5e5, #f2f2f2);
background-image: -moz-linear-gradient( #e5e5e5, #f2f2f2);
background-image: -ms-linear-gradient( #e5e5e5, #f2f2f2);
background-image: -o-linear-gradient( #e5e5e5, #f2f2f2);
background-image: -webkit-gradient(linear, left top, left bottom, from( #e5e5e5), to( #f2f2f2));
background-image: -webkit-linear-gradient( #e5e5e5, #f2f2f2);
border: 1px solid #aaa;
color: #333;
font-weight: bold;
text-shadow: 0 1px 0 #fff;
}
.ui-tolito-progressbar-outer-e
{
background: #fceda7;
background-image: linear-gradient( #f8d94c, #fadb4e);
background-image: -moz-linear-gradient( #f8d94c, #fadb4e);
background-image: -ms-linear-gradient( #f8d94c, #fadb4e);
background-image: -o-linear-gradient( #f8d94c, #fadb4e);
background-image: -webkit-gradient(linear, left top, left bottom, from( #f8d94c), to( #fadb4e));
background-image: -webkit-linear-gradient( #f8d94c, #fadb4e);
border: 1px solid #f2c43d;
color: #111;
font-weight: bold;
text-shadow: 0 1px 0 #fff;
}
.ui-tolito-progressbar-active-a
{
background: #333333;
background-image: linear-gradient( #3C3C3C, #111111);
background-image: -moz-linear-gradient( #3C3C3C, #111111);
background-image: -ms-linear-gradient( #3C3C3C, #111111);
background-image: -o-linear-gradient( #3C3C3C, #111111);
background-image: -webkit-gradient(linear, left top, left bottom, from( #3C3C3C), to( #111111));
background-image: -webkit-linear-gradient( #3C3C3C, #111111);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-active-b
{
background: #456F9A;
background-image: linear-gradient( #6FACD5, #497BAE);
background-image: -moz-linear-gradient( #6FACD5, #497BAE);
background-image: -ms-linear-gradient( #6FACD5, #497BAE);
background-image: -o-linear-gradient( #6FACD5, #497BAE);
background-image: -webkit-gradient(linear, left top, left bottom, from( #6FACD5), to( #497BAE));
background-image: -webkit-linear-gradient( #6FACD5, #497BAE);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-active-c
{
background: #B3B3B3;
background-image: linear-gradient( #F0F0F0, #DDDDDD);
background-image: -moz-linear-gradient( #F0F0F0, #DDDDDD);
background-image: -ms-linear-gradient( #F0F0F0, #DDDDDD);
background-image: -o-linear-gradient( #F0F0F0, #DDDDDD);
background-image: -webkit-gradient(linear, left top, left bottom, from( #F0F0F0), to( #DDDDDD));
background-image: -webkit-linear-gradient( #F0F0F0, #DDDDDD);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-active-d
{
background: #BBBBBB;
background-image: linear-gradient( #DDDDDD, #BBBBBB);
background-image: -moz-linear-gradient( #DDDDDD, #BBBBBB);
background-image: -ms-linear-gradient( #DDDDDD, #BBBBBB);
background-image: -o-linear-gradient( #DDDDDD, #BBBBBB);
background-image: -webkit-gradient(linear, left top, left bottom, from( #DDDDDD), to( #BBBBBB));
background-image: -webkit-linear-gradient( #DDDDDD, #BBBBBB);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-active-e
{
background: #F7C942;
background-image: linear-gradient( #FCEDA7, #FBEF7E);
background-image: -moz-linear-gradient( #FCEDA7, #FBEF7E);
background-image: -ms-linear-gradient( #FCEDA7, #FBEF7E);
background-image: -o-linear-gradient( #FCEDA7, #FBEF7E);
background-image: -webkit-gradient(linear, left top, left bottom, from( #FCEDA7), to( #FBEF7E));
background-image: -webkit-linear-gradient( #FCEDA7, #FBEF7E);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-corner-all
{
border-radius: 1em;
moz-border-radius: 1em;
webkit-border-radius: 1em;
}
.ui-tolito-progressbar-overlay
{
background-color: #000000;
bottom: 0;
left: 0;
min-height: 100%;
position: fixed;
right: 0;
width: 100%;
}
.ui-tolito-progressbar-overlay-box
{
margin: 10% auto 15px auto;
max-width: 500px;
padding: 0;
position: relative;
top: -15px;
width: 92.5%;
}
.ui-tolito-progressbar-overlay-box-corner-top
{
border-top-left-radius: .6em;
border-top-right-radius: .6em;
moz-border-radius-topleft: .6em;
moz-border-radius-topright: .6em;
webkit-border-top-left-radius: .6em;
webkit-border-top-right-radius: .6em;
}
.ui-tolito-progressbar-overlay-box-corner-bottom
{
border-bottom-left-radius: .6em;
border-bottom-right-radius: .6em;
moz-border-radius-bottomleft: .6em;
moz-border-radius-bottomright: .6em;
webkit-border-bottom-left-radius: .6em;
webkit-border-bottom-right-radius: .6em;
}
.ui-tolito-progressbar-overlay-box-body-c
{
background: #f9f9f9;
background-image: linear-gradient( #f9f9f9 , #eee );
background-image: -moz-linear-gradient( #f9f9f9 , #eee );
background-image: -ms-linear-gradient( #f9f9f9 , #eee );
background-image: -o-linear-gradient( #f9f9f9 , #eee );
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 ), to( #eee ));
background-image: -webkit-linear-gradient( #f9f9f9 , #eee );
border: 1px solid #aaa;
color: #333;
text-shadow: 0 1px 0 #fff;
}
.ui-tolito-progressbar-overlay-box-body-c, .ui-tolito-progressbar-overlay-box-body-c input, .ui-tolito-progressbar-overlay-box-body-c select, .ui-tolito-progressbar-overlay-box-body-c textarea, .ui-tolito-progressbar-overlay-box-body-c button
{
font-family: Helvetica, Arial, sans-serif;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link-inherit
{
color: #333;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link
{
color: #2489ce;
font-weight: bold;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link:visited
{
color: #2489ce;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link:hover
{
color: #2489ce;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link:active
{
color: #2489ce;
}
.ui-tolito-progressbar-overlay-box-content
{
border-width: 0;
overflow: visible;
overflow-x: hidden;
padding: 15px;
} | lib/external/jquery.mobile/plugins/jQuery-Mobile-Progress-Bar-with-Percentage/src/css/tolito-1.0.1.css | .ui-tolito-progressbar
{
height: 30px;
margin: 5em, 0;
overflow: hidden;
padding: 0;
position: relative;
top: 4px;
width: 100%;
}
.ui-tolito-progressbar-mini
{
height: 20px;
margin: 5em, 0;
overflow: hidden;
padding: 0;
position: relative;
top: 4px;
width: 100%;
}
.ui-tolito-progressbar-bg
{
border: none;
height: 100%;
left: 0;
position: absolute;
width: 100%;
z-index: 1;
}
.ui-tolito-progressbar-label
{
border: none;
height: 100%;
left: 0;
position: absolute;
text-align: center;
vertical-align: text-top;
width: 100%;
z-index: 2;
}
.ui-tolito-progressbar-outer-a
{
background: #222;
background-image: linear-gradient( #202020, #2c2c2c);
background-image: -moz-linear-gradient( #202020, #2c2c2c);
background-image: -ms-linear-gradient( #202020, #2c2c2c);
background-image: -o-linear-gradient( #202020, #2c2c2c);
background-image: -webkit-gradient(linear, left top, left bottom, from( #202020), to( #2c2c2c));
background-image: -webkit-linear-gradient( #202020, #2c2c2c);
border: 1px solid #000;
color: #fff;
font-weight: bold;
text-shadow: 0 1px 1px #111;
}
.ui-tolito-progressbar-outer-b
{
background: #4e89c5;
background-image: linear-gradient( #295b8e, #3e79b5);
background-image: -moz-linear-gradient( #295b8e, #3e79b5);
background-image: -ms-linear-gradient( #295b8e, #3e79b5);
background-image: -o-linear-gradient( #295b8e, #3e79b5);
background-image: -webkit-gradient(linear, left top, left bottom, from( #295b8e), to( #3e79b5));
background-image: -webkit-linear-gradient( #295b8e, #3e79b5);
border: 1px solid #225377;
color: #fff;
font-weight: bold;
text-shadow: 0 1px 1px #194b7e;
}
.ui-tolito-progressbar-outer-c
{
background: #d6d6d6;
background-image: linear-gradient( #d0d0d0, #dfdfdf);
background-image: -moz-linear-gradient( #d0d0d0, #dfdfdf);
background-image: -ms-linear-gradient( #d0d0d0, #dfdfdf);
background-image: -o-linear-gradient( #d0d0d0, #dfdfdf);
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0), to( #dfdfdf));
background-image: -webkit-linear-gradient( #d0d0d0, #dfdfdf);
border: 1px solid #bbb;
color: #222;
font-weight: bold;
text-shadow: 0 1px 0 #fff;
}
.ui-tolito-progressbar-outer-d
{
background: #eee;
background-image: linear-gradient( #e5e5e5, #f2f2f2);
background-image: -moz-linear-gradient( #e5e5e5, #f2f2f2);
background-image: -ms-linear-gradient( #e5e5e5, #f2f2f2);
background-image: -o-linear-gradient( #e5e5e5, #f2f2f2);
background-image: -webkit-gradient(linear, left top, left bottom, from( #e5e5e5), to( #f2f2f2));
background-image: -webkit-linear-gradient( #e5e5e5, #f2f2f2);
border: 1px solid #aaa;
color: #333;
font-weight: bold;
text-shadow: 0 1px 0 #fff;
}
.ui-tolito-progressbar-outer-e
{
background: #fceda7;
background-image: linear-gradient( #f8d94c, #fadb4e);
background-image: -moz-linear-gradient( #f8d94c, #fadb4e);
background-image: -ms-linear-gradient( #f8d94c, #fadb4e);
background-image: -o-linear-gradient( #f8d94c, #fadb4e);
background-image: -webkit-gradient(linear, left top, left bottom, from( #f8d94c), to( #fadb4e));
background-image: -webkit-linear-gradient( #f8d94c, #fadb4e);
border: 1px solid #f2c43d;
color: #111;
font-weight: bold;
text-shadow: 0 1px 0 #fff;
}
.ui-tolito-progressbar-active-a
{
background: #333333;
background-image: linear-gradient( #3C3C3C, #111111);
background-image: -moz-linear-gradient( #3C3C3C, #111111);
background-image: -ms-linear-gradient( #3C3C3C, #111111);
background-image: -o-linear-gradient( #3C3C3C, #111111);
background-image: -webkit-gradient(linear, left top, left bottom, from( #3C3C3C), to( #111111));
background-image: -webkit-linear-gradient( #3C3C3C, #111111);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-active-b
{
background: #456F9A;
background-image: linear-gradient( #6FACD5, #497BAE);
background-image: -moz-linear-gradient( #6FACD5, #497BAE);
background-image: -ms-linear-gradient( #6FACD5, #497BAE);
background-image: -o-linear-gradient( #6FACD5, #497BAE);
background-image: -webkit-gradient(linear, left top, left bottom, from( #6FACD5), to( #497BAE));
background-image: -webkit-linear-gradient( #6FACD5, #497BAE);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-active-c
{
background: #B3B3B3;
background-image: linear-gradient( #F0F0F0, #DDDDDD);
background-image: -moz-linear-gradient( #F0F0F0, #DDDDDD);
background-image: -ms-linear-gradient( #F0F0F0, #DDDDDD);
background-image: -o-linear-gradient( #F0F0F0, #DDDDDD);
background-image: -webkit-gradient(linear, left top, left bottom, from( #F0F0F0), to( #DDDDDD));
background-image: -webkit-linear-gradient( #F0F0F0, #DDDDDD);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-active-d
{
background: #BBBBBB;
background-image: linear-gradient( #DDDDDD, #BBBBBB);
background-image: -moz-linear-gradient( #DDDDDD, #BBBBBB);
background-image: -ms-linear-gradient( #DDDDDD, #BBBBBB);
background-image: -o-linear-gradient( #DDDDDD, #BBBBBB);
background-image: -webkit-gradient(linear, left top, left bottom, from( #DDDDDD), to( #BBBBBB));
background-image: -webkit-linear-gradient( #DDDDDD, #BBBBBB);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-active-e
{
background: #F7C942;
background-image: linear-gradient( #FCEDA7, #FBEF7E);
background-image: -moz-linear-gradient( #FCEDA7, #FBEF7E);
background-image: -ms-linear-gradient( #FCEDA7, #FBEF7E);
background-image: -o-linear-gradient( #FCEDA7, #FBEF7E);
background-image: -webkit-gradient(linear, left top, left bottom, from( #FCEDA7), to( #FBEF7E));
background-image: -webkit-linear-gradient( #FCEDA7, #FBEF7E);
color: #fff;
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 1px #3373a5;
}
.ui-tolito-progressbar-corner-all
{
border-radius: 1em;
moz-border-radius: 1em;
webkit-border-radius: 1em;
}
.ui-tolito-progressbar-overlay
{
background-color: #000000;
bottom: 0;
left: 0;
min-height: 100%;
position: fixed;
right: 0;
width: 100%;
}
.ui-tolito-progressbar-overlay-box
{
margin: 10% auto 15px auto;
max-width: 500px;
padding: 0;
position: relative;
top: -15px;
width: 92.5%;
}
.ui-tolito-progressbar-overlay-box-corner-top
{
border-top-left-radius: .6em;
border-top-right-radius: .6em;
moz-border-radius-topleft: .6em;
moz-border-radius-topright: .6em;
webkit-border-top-left-radius: .6em;
webkit-border-top-right-radius: .6em;
}
.ui-tolito-progressbar-overlay-box-corner-bottom
{
border-bottom-left-radius: .6em;
border-bottom-right-radius: .6em;
moz-border-radius-bottomleft: .6em;
moz-border-radius-bottomright: .6em;
webkit-border-bottom-left-radius: .6em;
webkit-border-bottom-right-radius: .6em;
}
.ui-tolito-progressbar-overlay-box-body-c
{
background: #f9f9f9;
background-image: linear-gradient( #f9f9f9 , #eee );
background-image: -moz-linear-gradient( #f9f9f9 , #eee );
background-image: -ms-linear-gradient( #f9f9f9 , #eee );
background-image: -o-linear-gradient( #f9f9f9 , #eee );
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 ), to( #eee ));
background-image: -webkit-linear-gradient( #f9f9f9 , #eee );
border: 1px solid #aaa;
color: #333;
text-shadow: 0 1px 0 #fff;
}
.ui-tolito-progressbar-overlay-box-body-c, .ui-tolito-progressbar-overlay-box-body-c input, .ui-tolito-progressbar-overlay-box-body-c select, .ui-tolito-progressbar-overlay-box-body-c textarea, .ui-tolito-progressbar-overlay-box-body-c button
{
font-family: Helvetica, Arial, sans-serif;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link-inherit
{
color: #333;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link
{
color: #2489ce;
font-weight: bold;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link:visited
{
color: #2489ce;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link:hover
{
color: #2489ce;
}
.ui-tolito-progressbar-overlay-box-body-c .ui-link:active
{
color: #2489ce;
}
.ui-tolito-progressbar-overlay-box-content
{
border-width: 0;
overflow: visible;
overflow-x: hidden;
padding: 15px;
} | 0.266357 | 0.138113 |
* {
margin: 0px;
padding: 0px;
list-style-type: none;
border:0;
-webkit-text-size-adjust:none;
}
#nv {
width: 100%;
height: 100px;
margin: auto;
overflow: hidden;
background-color: #FFFFFF;
}
#nv .logo {
width: 252px;
height: 60px;
float: left;
padding-top: 20px;
overflow: hidden;
}
#nv .nvw {
width: 1100px;
margin-right: auto;
margin-left: auto;
height: 100px;
}
#nv .nvss {
width: 530px;
height: 100px;
float: right;
}
.nvss ol li {
height: 100px;
float: left;
width: auto;
color: #FFFFFF;
font-size: 20px;
text-align: center;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
}
.nvss ol li a {
font-size: 20px;
display: block;
padding-left: 30px;
padding-right: 30px;
text-align: center;
line-height: 100px;
height: 100px;
cursor: pointer;
color: #1899e1;
text-decoration: none;
}
.nvss ol li a:hover {
display: block;
text-align: center;
color: #444444;
background-image: url(img/bg0-1.png);
background-position: left bottom;
background-repeat: repeat-x;
}
.nvss ol li .click {
display: block;
padding-left: 30px;
padding-right: 30px;
text-align: center;
line-height: 100px;
height: 100px;
color: #444;
background-image: url(img/bg0.png);
background-repeat: repeat-x;
background-position: left bottom;
}
#mok1 {
width: 100%;
height: 800px;
background-repeat: no-repeat;
background-position: center top;
margin: auto;
overflow: hidden;
background-color: #1899e1;
}
#mok2 {
width: 100%;
margin: auto;
height: 900px;
overflow: hidden;
background-repeat: no-repeat;
background-position: center bottom;
background-color: #A5A9D4;
}
#mok3 {
width: 100%;
height: 900px;
margin: auto;
overflow: hidden;
background-color: #EA9597;
}
#mok4 {
width: 100%;
height: 900px;
margin: auto;
overflow: hidden;
background-color: #F1B267;
}
#dw {
width: 100%;
height: 120px;
background-color: #F18F67;
color: #FFFFFF;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
font-size: 14px;
text-align: center;
margin: auto;
padding-top: 30px;
overflow: hidden;
line-height: 23px;
}
.vcb1 {
width: 1280px;
height: 800px;
margin: auto;
overflow: hidden;
}
.vcb2 {
width: 1280px;
height: 900px;
margin: auto;
overflow: hidden;
}
.vcb3 {
width: 1280px;
height: 900px;
margin: auto;
overflow: hidden;
}
#vcbos {
width: 900px;
margin: auto;
overflow: hidden;
color: #333333;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
font-size: 18px;
height: auto;
padding-top: 30px;
padding-bottom: 30px;
padding-left: 30px;
padding-right: 30px;
}
#vcbos p {
line-height: 32px;
margin-bottom: 40px;
text-align: left;
font-size: 18px;
float: left;
}
#vcbos .cvs1 {
font-size: 48px;
width: 54px;
height: 43px;
float: left;
display: block;
margin-top: 14px;
color: #777777;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
font-weight: lighter;
}
#vcbvs {
width: 960px;
margin: auto;
overflow: hidden;
color: #333333;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
font-size: 18px;
height: auto;
padding-top: 30px;
padding-bottom: 30px;
display: block;
}
#vcbvs p {
line-height: 32px;
padding-left: 48px;
background-image: url(img/bg2.png);
background-repeat: repeat-y;
background-position: left top;
margin-bottom: 30px;
font-size: medium;
}
#vcbvs h3 {
font-size: 24px;
font-weight: normal;
color: #000;
padding-bottom: 10px;
}
#vcbvs p .ttxt1 {
color: #39F;
}
#vcbvs p .ttxt2 {
color: #333;
font-size: 14px;
}
.ttxt3 {
color: #333;
font-size: 14px;
padding-left: 35px;
display: block;
padding-top: 10px;
}
#ans {
width: 960px;
height: 500px;
margin-right: auto;
margin-left: auto;
overflow: hidden;
padding-top: 30px;
margin-bottom: 40px;
}
#ans2 {
width: 960px;
height: 300px;
margin-right: auto;
margin-left: auto;
overflow: hidden;
padding-top: 30px;
margin-bottom: 40px;
}
#vcbvs ul li {
float: left;
width: 300px;
height: 100px;
margin-bottom: 40px;
display: block;
margin-right: 20px;
font-size: 18px;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
color: #39F;
line-height: 24px;
}
#vcbvs ul {
width: 960px;
overflow: hidden;
display: block;
height: auto;
overflow: hidden;
margin-bottom: 50px;
} | tniu/temp/temp9_8/tniu_style.css | * {
margin: 0px;
padding: 0px;
list-style-type: none;
border:0;
-webkit-text-size-adjust:none;
}
#nv {
width: 100%;
height: 100px;
margin: auto;
overflow: hidden;
background-color: #FFFFFF;
}
#nv .logo {
width: 252px;
height: 60px;
float: left;
padding-top: 20px;
overflow: hidden;
}
#nv .nvw {
width: 1100px;
margin-right: auto;
margin-left: auto;
height: 100px;
}
#nv .nvss {
width: 530px;
height: 100px;
float: right;
}
.nvss ol li {
height: 100px;
float: left;
width: auto;
color: #FFFFFF;
font-size: 20px;
text-align: center;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
}
.nvss ol li a {
font-size: 20px;
display: block;
padding-left: 30px;
padding-right: 30px;
text-align: center;
line-height: 100px;
height: 100px;
cursor: pointer;
color: #1899e1;
text-decoration: none;
}
.nvss ol li a:hover {
display: block;
text-align: center;
color: #444444;
background-image: url(img/bg0-1.png);
background-position: left bottom;
background-repeat: repeat-x;
}
.nvss ol li .click {
display: block;
padding-left: 30px;
padding-right: 30px;
text-align: center;
line-height: 100px;
height: 100px;
color: #444;
background-image: url(img/bg0.png);
background-repeat: repeat-x;
background-position: left bottom;
}
#mok1 {
width: 100%;
height: 800px;
background-repeat: no-repeat;
background-position: center top;
margin: auto;
overflow: hidden;
background-color: #1899e1;
}
#mok2 {
width: 100%;
margin: auto;
height: 900px;
overflow: hidden;
background-repeat: no-repeat;
background-position: center bottom;
background-color: #A5A9D4;
}
#mok3 {
width: 100%;
height: 900px;
margin: auto;
overflow: hidden;
background-color: #EA9597;
}
#mok4 {
width: 100%;
height: 900px;
margin: auto;
overflow: hidden;
background-color: #F1B267;
}
#dw {
width: 100%;
height: 120px;
background-color: #F18F67;
color: #FFFFFF;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
font-size: 14px;
text-align: center;
margin: auto;
padding-top: 30px;
overflow: hidden;
line-height: 23px;
}
.vcb1 {
width: 1280px;
height: 800px;
margin: auto;
overflow: hidden;
}
.vcb2 {
width: 1280px;
height: 900px;
margin: auto;
overflow: hidden;
}
.vcb3 {
width: 1280px;
height: 900px;
margin: auto;
overflow: hidden;
}
#vcbos {
width: 900px;
margin: auto;
overflow: hidden;
color: #333333;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
font-size: 18px;
height: auto;
padding-top: 30px;
padding-bottom: 30px;
padding-left: 30px;
padding-right: 30px;
}
#vcbos p {
line-height: 32px;
margin-bottom: 40px;
text-align: left;
font-size: 18px;
float: left;
}
#vcbos .cvs1 {
font-size: 48px;
width: 54px;
height: 43px;
float: left;
display: block;
margin-top: 14px;
color: #777777;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
font-weight: lighter;
}
#vcbvs {
width: 960px;
margin: auto;
overflow: hidden;
color: #333333;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
font-size: 18px;
height: auto;
padding-top: 30px;
padding-bottom: 30px;
display: block;
}
#vcbvs p {
line-height: 32px;
padding-left: 48px;
background-image: url(img/bg2.png);
background-repeat: repeat-y;
background-position: left top;
margin-bottom: 30px;
font-size: medium;
}
#vcbvs h3 {
font-size: 24px;
font-weight: normal;
color: #000;
padding-bottom: 10px;
}
#vcbvs p .ttxt1 {
color: #39F;
}
#vcbvs p .ttxt2 {
color: #333;
font-size: 14px;
}
.ttxt3 {
color: #333;
font-size: 14px;
padding-left: 35px;
display: block;
padding-top: 10px;
}
#ans {
width: 960px;
height: 500px;
margin-right: auto;
margin-left: auto;
overflow: hidden;
padding-top: 30px;
margin-bottom: 40px;
}
#ans2 {
width: 960px;
height: 300px;
margin-right: auto;
margin-left: auto;
overflow: hidden;
padding-top: 30px;
margin-bottom: 40px;
}
#vcbvs ul li {
float: left;
width: 300px;
height: 100px;
margin-bottom: 40px;
display: block;
margin-right: 20px;
font-size: 18px;
font-family: "Microsoft YaHei", "Hiragino Sans", "Droid Sans Fallback";
color: #39F;
line-height: 24px;
}
#vcbvs ul {
width: 960px;
overflow: hidden;
display: block;
height: auto;
overflow: hidden;
margin-bottom: 50px;
} | 0.301876 | 0.064772 |
.richselect .richselectbox
{
border:solid 1px #bdbdbd;
text-decoration:none;
display:block;
overflow:hidden;
background-color: #fff;
margin: 0;
padding: 0;
text-align: left;
}
.richselect .selectboxcontent
{
overflow:hidden;
float:left;
padding: 4px 0 4px 3px;
overflow:hidden;
background-color: #fff;
}
.richselectitems li.richselectitem
{
min-height:30px;
vertical-align:middle;
overflow:hidden;
border-bottom:solid 1px #bdbdbd;
margin: 0;
}
.richselect div.item-icons,
.richselectitems div.item-icons
{
zoom: 1;
overflow: hidden;
}
.richselect div.item-icons:after,
.richselectitems div.item-icons:after
{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.richselect div.item-icons div.item-icons-image,
.richselect div.item-icons div.item-icons-description,
.richselectitems div.item-icons div.item-icons-image,
.richselectitems div.item-icons div.item-icons-description
{
float: left;
}
.richselect.custom-size .richselectbox {
display:inline-flex;
}
.richselect.custom-size .richselectbox span.selectboxcontent {
min-height: 30px;
min-width: 200px;
}
.richselectitems div.item-icons.item-label-align-top,
.richselectitems div.item-icons.item-label-align-bottom
{
margin-right: 15px;
}
.richselect div.item-icons.item-label-align-left,
.richselect div.item-icons.item-label-align-left-no-selfalign,
.richselect div.item-icons.item-label-align-right,
.richselectitems div.item-icons.item-label-align-left,
.richselectitems div.item-icons.item-label-align-left-no-selfalign,
.richselectitems div.item-icons.item-label-align-right
{
display: inline-flex;
margin-right: 18px;
}
.richselect div.item-icons.item-label-align-left-no-selfalign div.item-icons-image,
.richselectitems div.item-icons.item-label-align-left-no-selfalign div.item-icons-image
{
float:right;
}
.richselect div.item-icons.item-label-align-left-no-selfalign div.item-icons-description
{
width: 191px;
}
.richselectitems div.item-icons.item-label-align-left-no-selfalign div.item-icons-description
{
width: 200px;
}
.richselect div.item-icons.item-label-align-left div.item-icons-description,
.richselect div.item-icons.item-label-align-right div.item-icons-description
{
align-self: center;
width: 191px;
}
.richselectitems div.item-icons.item-label-align-left div.item-icons-description,
.richselectitems div.item-icons.item-label-align-right div.item-icons-description
{
align-self: center;
width: 200px;
}
.richselect div.item-icons.item-label-align-top div.item-icons-description,
.richselect div.item-icons.item-label-align-bottom div.item-icons-description
{
width: 195px;
}
.richselect div.item-icons.item-label-align-top div.item-icons-image,
.richselect div.item-icons.item-label-align-bottom div.item-icons-image,
.richselect div.item-icons.item-label-align-top div.item-icons-description,
.richselect div.item-icons.item-label-align-bottom div.item-icons-description,
.richselectitems div.item-icons.item-label-align-top div.item-icons-image,
.richselectitems div.item-icons.item-label-align-bottom div.item-icons-image,
.richselectitems div.item-icons.item-label-align-top div.item-icons-description,
.richselectitems div.item-icons.item-label-align-bottom div.item-icons-description
{
float: none;
}
.richselect div.item-icons-image img,
.richselectitems div.item-icons-image img
{
margin: 3px;
border: none;
}
div.template-float-left
{
float: left;
}
div.template-float-right
{
float: right;
}
div.wide-field
{
height:14px;
overflow:hidden;
}
div.layout-template-image img
{
max-height: 55px;
margin: 3px;
border: none;
} | Admin/Images/Ribbon/UI/Richselect/Richselect.css | .richselect .richselectbox
{
border:solid 1px #bdbdbd;
text-decoration:none;
display:block;
overflow:hidden;
background-color: #fff;
margin: 0;
padding: 0;
text-align: left;
}
.richselect .selectboxcontent
{
overflow:hidden;
float:left;
padding: 4px 0 4px 3px;
overflow:hidden;
background-color: #fff;
}
.richselectitems li.richselectitem
{
min-height:30px;
vertical-align:middle;
overflow:hidden;
border-bottom:solid 1px #bdbdbd;
margin: 0;
}
.richselect div.item-icons,
.richselectitems div.item-icons
{
zoom: 1;
overflow: hidden;
}
.richselect div.item-icons:after,
.richselectitems div.item-icons:after
{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.richselect div.item-icons div.item-icons-image,
.richselect div.item-icons div.item-icons-description,
.richselectitems div.item-icons div.item-icons-image,
.richselectitems div.item-icons div.item-icons-description
{
float: left;
}
.richselect.custom-size .richselectbox {
display:inline-flex;
}
.richselect.custom-size .richselectbox span.selectboxcontent {
min-height: 30px;
min-width: 200px;
}
.richselectitems div.item-icons.item-label-align-top,
.richselectitems div.item-icons.item-label-align-bottom
{
margin-right: 15px;
}
.richselect div.item-icons.item-label-align-left,
.richselect div.item-icons.item-label-align-left-no-selfalign,
.richselect div.item-icons.item-label-align-right,
.richselectitems div.item-icons.item-label-align-left,
.richselectitems div.item-icons.item-label-align-left-no-selfalign,
.richselectitems div.item-icons.item-label-align-right
{
display: inline-flex;
margin-right: 18px;
}
.richselect div.item-icons.item-label-align-left-no-selfalign div.item-icons-image,
.richselectitems div.item-icons.item-label-align-left-no-selfalign div.item-icons-image
{
float:right;
}
.richselect div.item-icons.item-label-align-left-no-selfalign div.item-icons-description
{
width: 191px;
}
.richselectitems div.item-icons.item-label-align-left-no-selfalign div.item-icons-description
{
width: 200px;
}
.richselect div.item-icons.item-label-align-left div.item-icons-description,
.richselect div.item-icons.item-label-align-right div.item-icons-description
{
align-self: center;
width: 191px;
}
.richselectitems div.item-icons.item-label-align-left div.item-icons-description,
.richselectitems div.item-icons.item-label-align-right div.item-icons-description
{
align-self: center;
width: 200px;
}
.richselect div.item-icons.item-label-align-top div.item-icons-description,
.richselect div.item-icons.item-label-align-bottom div.item-icons-description
{
width: 195px;
}
.richselect div.item-icons.item-label-align-top div.item-icons-image,
.richselect div.item-icons.item-label-align-bottom div.item-icons-image,
.richselect div.item-icons.item-label-align-top div.item-icons-description,
.richselect div.item-icons.item-label-align-bottom div.item-icons-description,
.richselectitems div.item-icons.item-label-align-top div.item-icons-image,
.richselectitems div.item-icons.item-label-align-bottom div.item-icons-image,
.richselectitems div.item-icons.item-label-align-top div.item-icons-description,
.richselectitems div.item-icons.item-label-align-bottom div.item-icons-description
{
float: none;
}
.richselect div.item-icons-image img,
.richselectitems div.item-icons-image img
{
margin: 3px;
border: none;
}
div.template-float-left
{
float: left;
}
div.template-float-right
{
float: right;
}
div.wide-field
{
height:14px;
overflow:hidden;
}
div.layout-template-image img
{
max-height: 55px;
margin: 3px;
border: none;
} | 0.340924 | 0.062245 |
:root {
--color: #639;
--disabled-color: #595959;
--font:
Inter,
sans-serif;
--bold-font:
"Inter Bold",
sans-serif;
--header-letter-spacing: -0.02em;
/* Opposite of header letter spacing */
--text-letter-spacing: calc(var(--header-letter-spacing) * -1);
--spacing: 20px;
display: flex;
justify-content: center;
width: 100%;
height: 100%;
font-size: 20px;
}
@media (max-width: 1200px) {
:root {
font-size: 18px;
}
}
@media (max-width: 1200px) {
:root {
font-size: 16px;
}
}
.body {
display: flex;
width: calc(100% - var(--spacing));
margin: 0;
flex-direction: column;
}
/* Inter (https://rsms.me/inter/) by <NAME> */
@font-face {
font-family: Inter;
src: url("assets/fonts/subset-Inter-Regular.eot");
src:
url("assets/fonts/subset-Inter-Regular.eot?#iefix") format("embedded-opentype"),
url("assets/fonts/subset-Inter-Regular.woff2") format("woff2"),
url("assets/fonts/subset-Inter-Regular.woff") format("woff"),
url("assets/fonts/subset-Inter-Regular.ttf") format("truetype"),
url("assets/fonts/subset-Inter-Regular.svg#Inter-Regular") format("svg");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "Inter Bold";
src: url("assets/fonts/subset-Inter-Bold.eot");
src:
url("assets/fonts/subset-Inter-Bold.eot?#iefix") format("embedded-opentype"),
url("assets/fonts/subset-Inter-Bold.woff2") format("woff2"),
url("assets/fonts/subset-Inter-Bold.woff") format("woff"),
url("assets/fonts/subset-Inter-Bold.ttf") format("truetype"),
url("assets/fonts/subset-Inter-Bold.svg#Inter-Bold") format("svg");
font-style: normal;
font-weight: bold;
}
::selection {
color: #fff;
background: var(--color);
}
:any-link {
--link-color: #283a77;
--link-visited-color: var(--color);
font-family: var(--bold-font);
color: var(--link-color);
text-decoration: none;
outline-color: var(--link-color);
&::selection {
color: var(--link-color);
background: #fff;
}
&:focus,
&:hover {
border-bottom: 2px solid var(--link-color);
}
&:visited {
color: var(--link-visited-color);
outline-color: var(--link-visited-color);
&::selection {
color: var(--link-visited-color);
}
&:focus,
&:hover {
border-bottom-color: var(--link-visited-color);
}
}
}
.dp-4 {
box-shadow:
0 4px 5px 0 rgba(0, 0, 0, 0.14),
0 1px 10px 0 rgba(0, 0, 0, 0.12),
0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.site-header {
z-index: 1;
color: #fff;
background: var(--color);
}
.turn {
margin: 0.5em;
font: 2em var(--font);
font-kerning: normal;
letter-spacing: var(--header-letter-spacing);
&::selection {
color: var(--color);
background: #fff;
}
}
.center {
display: flex;
justify-content: center;
align-items: center;
}
.button {
--button-hover-bg: #609;
font:
1rem
var(--bold-font);
font-kerning: normal;
color: #fff;
letter-spacing: var(--text-letter-spacing);
background: var(--color);
border: 0;
transition: background-color 0.5s;
&:hover {
cursor: pointer;
background: var(--button-hover-bg);
}
&:focus,
&:hover:focus {
color: var(--color);
background-color: #fff;
outline: 0;
box-shadow: inset 0 0 0 2px var(--color);
}
&:disabled {
background: var(--disabled-color);
&:hover {
cursor: unset;
}
&::selection {
color: var(--disabled-color);
}
}
&::selection {
color: var(--color);
background: #fff;
}
}
.main-game {
flex: 1;
background: #fff;
}
.tic-tac-toe {
--grid-spacing: calc(var(--spacing) / 2);
display: grid;
padding: var(--grid-spacing);
grid-gap: var(--grid-spacing);
grid-template-areas:
"top-left-corner top-edge top-right-corner"
"left-edge center right-edge"
"bottom-left-corner bottom-edge bottom-right-corner";
}
.welcome {
display: flex;
flex-direction: column;
}
.welcome-section {
flex: 1.5;
padding: 1em 1em 0;
justify-self: center;
flex-direction: column;
}
.welcome-text {
text-indent: 2em;
}
.paragraph {
max-width: 50ch;
font:
1em / 1.5
var(--font);
font-kerning: normal;
letter-spacing: var(--text-letter-spacing);
}
.bold {
font:
1em
var(--bold-font);
}
.heading {
margin: 0.5em;
font-family: var(--bold-font);
text-align: center;
font-kerning: normal;
letter-spacing: var(--header-letter-spacing);
}
.welcome-heading {
font-size: 1.5em;
}
.start-button-container {
flex: 0.5;
align-self: stretch;
}
.start-button {
--start-button-color: #134f19;
--start-button-hover-color: #00581a;
margin: 0;
background: var(--start-button-color);
&:hover {
background: var(--start-button-hover-color);
}
&:focus,
&:hover:focus {
color: var(--start-button-color);
box-shadow: inset 0 0 0 2px var(--start-button-color);
}
&::selection {
color: var(--start-button-color);
background: #fff;
}
}
@keyframes fadein {
from { background: transparent; }
}
.game-over-modal {
position: absolute;
top: 0;
left: 0;
z-index: 2;
width: 100%;
height: 100%;
flex-direction: column;
background: #fffe;
animation: fadein 0.5s;
}
.game-over-header {
font-size: 2em;
}
.start-button,
.try-again-button {
padding: 1rem;
border-radius: 5px;
} | src/style.css |
:root {
--color: #639;
--disabled-color: #595959;
--font:
Inter,
sans-serif;
--bold-font:
"Inter Bold",
sans-serif;
--header-letter-spacing: -0.02em;
/* Opposite of header letter spacing */
--text-letter-spacing: calc(var(--header-letter-spacing) * -1);
--spacing: 20px;
display: flex;
justify-content: center;
width: 100%;
height: 100%;
font-size: 20px;
}
@media (max-width: 1200px) {
:root {
font-size: 18px;
}
}
@media (max-width: 1200px) {
:root {
font-size: 16px;
}
}
.body {
display: flex;
width: calc(100% - var(--spacing));
margin: 0;
flex-direction: column;
}
/* Inter (https://rsms.me/inter/) by <NAME> */
@font-face {
font-family: Inter;
src: url("assets/fonts/subset-Inter-Regular.eot");
src:
url("assets/fonts/subset-Inter-Regular.eot?#iefix") format("embedded-opentype"),
url("assets/fonts/subset-Inter-Regular.woff2") format("woff2"),
url("assets/fonts/subset-Inter-Regular.woff") format("woff"),
url("assets/fonts/subset-Inter-Regular.ttf") format("truetype"),
url("assets/fonts/subset-Inter-Regular.svg#Inter-Regular") format("svg");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "Inter Bold";
src: url("assets/fonts/subset-Inter-Bold.eot");
src:
url("assets/fonts/subset-Inter-Bold.eot?#iefix") format("embedded-opentype"),
url("assets/fonts/subset-Inter-Bold.woff2") format("woff2"),
url("assets/fonts/subset-Inter-Bold.woff") format("woff"),
url("assets/fonts/subset-Inter-Bold.ttf") format("truetype"),
url("assets/fonts/subset-Inter-Bold.svg#Inter-Bold") format("svg");
font-style: normal;
font-weight: bold;
}
::selection {
color: #fff;
background: var(--color);
}
:any-link {
--link-color: #283a77;
--link-visited-color: var(--color);
font-family: var(--bold-font);
color: var(--link-color);
text-decoration: none;
outline-color: var(--link-color);
&::selection {
color: var(--link-color);
background: #fff;
}
&:focus,
&:hover {
border-bottom: 2px solid var(--link-color);
}
&:visited {
color: var(--link-visited-color);
outline-color: var(--link-visited-color);
&::selection {
color: var(--link-visited-color);
}
&:focus,
&:hover {
border-bottom-color: var(--link-visited-color);
}
}
}
.dp-4 {
box-shadow:
0 4px 5px 0 rgba(0, 0, 0, 0.14),
0 1px 10px 0 rgba(0, 0, 0, 0.12),
0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.site-header {
z-index: 1;
color: #fff;
background: var(--color);
}
.turn {
margin: 0.5em;
font: 2em var(--font);
font-kerning: normal;
letter-spacing: var(--header-letter-spacing);
&::selection {
color: var(--color);
background: #fff;
}
}
.center {
display: flex;
justify-content: center;
align-items: center;
}
.button {
--button-hover-bg: #609;
font:
1rem
var(--bold-font);
font-kerning: normal;
color: #fff;
letter-spacing: var(--text-letter-spacing);
background: var(--color);
border: 0;
transition: background-color 0.5s;
&:hover {
cursor: pointer;
background: var(--button-hover-bg);
}
&:focus,
&:hover:focus {
color: var(--color);
background-color: #fff;
outline: 0;
box-shadow: inset 0 0 0 2px var(--color);
}
&:disabled {
background: var(--disabled-color);
&:hover {
cursor: unset;
}
&::selection {
color: var(--disabled-color);
}
}
&::selection {
color: var(--color);
background: #fff;
}
}
.main-game {
flex: 1;
background: #fff;
}
.tic-tac-toe {
--grid-spacing: calc(var(--spacing) / 2);
display: grid;
padding: var(--grid-spacing);
grid-gap: var(--grid-spacing);
grid-template-areas:
"top-left-corner top-edge top-right-corner"
"left-edge center right-edge"
"bottom-left-corner bottom-edge bottom-right-corner";
}
.welcome {
display: flex;
flex-direction: column;
}
.welcome-section {
flex: 1.5;
padding: 1em 1em 0;
justify-self: center;
flex-direction: column;
}
.welcome-text {
text-indent: 2em;
}
.paragraph {
max-width: 50ch;
font:
1em / 1.5
var(--font);
font-kerning: normal;
letter-spacing: var(--text-letter-spacing);
}
.bold {
font:
1em
var(--bold-font);
}
.heading {
margin: 0.5em;
font-family: var(--bold-font);
text-align: center;
font-kerning: normal;
letter-spacing: var(--header-letter-spacing);
}
.welcome-heading {
font-size: 1.5em;
}
.start-button-container {
flex: 0.5;
align-self: stretch;
}
.start-button {
--start-button-color: #134f19;
--start-button-hover-color: #00581a;
margin: 0;
background: var(--start-button-color);
&:hover {
background: var(--start-button-hover-color);
}
&:focus,
&:hover:focus {
color: var(--start-button-color);
box-shadow: inset 0 0 0 2px var(--start-button-color);
}
&::selection {
color: var(--start-button-color);
background: #fff;
}
}
@keyframes fadein {
from { background: transparent; }
}
.game-over-modal {
position: absolute;
top: 0;
left: 0;
z-index: 2;
width: 100%;
height: 100%;
flex-direction: column;
background: #fffe;
animation: fadein 0.5s;
}
.game-over-header {
font-size: 2em;
}
.start-button,
.try-again-button {
padding: 1rem;
border-radius: 5px;
} | 0.584864 | 0.136091 |
.artist-comment-time-period {
color: #ccc!important;
font-size: 8px;
margin: 0px 0px 0px !important;
}
.bootstrap-tagsinput {
background-color: #fff;
border: 1px solid #ccc;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
padding: 4px 6px;
color: #555;
vertical-align: middle;
border-radius: 4px;
/* max-width: 100%;
line-height: 22px;*/
width: 100%;
cursor: text;
}
.bootstrap-tagsinput input {
border: none;
box-shadow: none;
outline: none;
background-color: transparent;
padding: 0 6px;
margin: 0;
/* width: auto;
max-width: inherit;*/
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
color: #777;
opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
color: #777;
}
.bootstrap-tagsinput input:focus {
border: none;
box-shadow: none;
}
.bootstrap-tagsinput .tag {
color: #000;
background-color: #e4e4e4;
border: 1px solid #aaa;
border-radius: 4px;
cursor: default;
float: left;
margin-right: 5px;
margin-top: 5px;
padding: 0 5px;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
margin-left: 8px;
cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
content: "x";
padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.number-input-music {
padding: 6px 12px !important;
height: auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.client-input {
padding: 30px 0 15px 0;
height: 100%;
min-height: 200px;
}
/*/////////////////////////////*/
.select2-container {
width: 100% !important;
}
.fw-600 {
font-weight: 600;
font-family: 'Roboto';
font-size: 22.75px;
margin: 10px auto;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light.focus,
.btn-light:focus,
.btn-light:hover {
color: #fff;
/* background-color: #cdd6e6; */
background-image: linear-gradient(77deg, #00FFC2, #00B8BA 100%);
}
.btn-margin {
margin: 65px;
}
.input-price-div {
background: #ffffff;
border-radius: 30px;
margin-top: 35px;
}
.input-price-div p {
padding: 5px;
}
input.minus {
background: transparent;
border: 0px;
font-weight: 600;
text-align: center;
font-size: 20px;
}
input.plus {
background: transparent;
border: 0px;
font-weight: 600;
text-align: center;
font-size: 20px;
}
.share-valyou-prices ul li input[type=checkbox],
input[type=radio] {
margin: 26px 100px 26px;
display: none;
}
.radio {
border: 1px solid lightgray;
background-color: transparent;
color: gray;
width: 81px;
height: 81px;
margin: -10px auto;
padding: 19px 23px 20px;
border-radius: 100%;
font-size: 29px;
font-weight: 600;
}
.valyou-g-btn {
color: #fff;
padding: 10px 15px;
background-image: linear-gradient(77deg, #00B8BA, #00FFC2 100%);
border: none;
width: 100%;
max-width: 175px;
}
.valyou-g-btn:hover {
color: #fff;
background-image: linear-gradient(77deg, #00FFC2, #00B8BA 100%);
}
.price-card {
background-image: linear-gradient(77deg, #00FFC2, #00B8BA 100%);
border-radius: 15px;
}
.input-qty {
background: transparent;
border: none;
width: 100%;
max-width: 160px;
font-size: 34px;
color: #000;
font-family: 'Roboto', sans-serif;
font-weight: 600;
text-align: center;
}
.input-qty::before {
content: '\f155';
font-family: 'FontAwesome';
font-size: 30px;
font-weight: 500;
text-align: center;
justify-content: center;
}
.input-qty:focus {
background: transparent;
border: none;
width: 100%;
max-width: 160px;
font-size: 34px;
color: #000;
font-family: 'Roboto', sans-serif;
font-weight: 600;
text-align: center;
outline: none;
}
.video:focus {
outline: none;
}
.cover-bg {
background-color: #000!important;
padding: 0.5rem!important;
margin: -20px;
}
.padding-n {
padding: 0px !important;
display: table;
}
.margin-n {
margin: 0px !important;
}
img.uploading-section-artist-img {
height: 100%;
width: 100%;
max-width: 110px;
max-height: 110px;
}
p.uploading-section-artist-p1 {
font-size: 21px;
font-weight: 500;
margin: 0px;
}
p.uploading-section-artist-p2 {
font-size: 14px;
font-weight: 700;
margin: 0px;
}
p.uploading-section-artist-p3 {
font-size: 14px;
font-weight: 700;
margin: 0px;
}
img.uploading-section-artist-icon-img {
width: 100%;
max-width: 15px;
}
.uploading-section-artist-main-heading {
font-size: 24px;
font-weight: 500;
margin-left: 15px;
}
.uploading-section-artist-sub-heading {
font-size: 20px;
font-weight: 500;
margin: 0px;
}
.post-now-btn {
color: #fff;
padding: 11px 13px;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
max-width: 133px;
}
.post-now-btn:hover {
color: #fff;
background-image: linear-gradient(77deg, #FFA85B, #FF4182 100%);
}
p.post-section-artist-p1 {
font-size: 24px;
font-weight: 500;
margin: 0px;
color: #F24336;
}
.light-gray-color {
color: gray;
}
.post-section-para {
font-size: 17px;
}
p#para1 {
color: #FF4182;
margin: 0px 0px -8px;
}
p#para2 {
color: #FF4182;
font-size: 36px;
font-family: 'Roboto', sans-serif;
}
p#para3 {
color: #F41C8C;
margin: -20px 7px 1px;
font-size: 14px;
}
.valyou-o-btn-invest {
padding: 11px;
color: #fff;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
font-size: 30px;
margin-top: 7px;
}
.padding-none {
padding: 0px
}
.padding-r {
padding-right: 0px;
}
.card.shadow-none:hover {
box-shadow: 0 1.5px 4px 0 rgba(0, 0, 0, 0.3)!important;
border-radius: 28px;
}
.card.shadow-none {
box-shadow: none !important;
border-radius: 28px;
height: 100%;
max-height: 110px;
}
.uploading-section-upload-img {
width: 100%;
max-width: 45px;
padding: 5px 5px 5px;
}
img.post-section-img {
max-height: 400px;
width: 100%;
}
p.sponsored-section-p1 {
color: #FF4182;
font-size: 20px;
}
p.sponsored-section-p2 {
font-size: 45px;
font-weight: 500;
margin: 0px;
color: #5D5D5D;
}
p.sponsored-section-p3 {
font-size: 29px;
color: gray;
font-weight: 100;
}
.valyou-o-btn-invest-lg {
padding: 11px;
color: #fff;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
font-size: 30px;
margin-top: 10px;
}
.p-none {
padding: unset;
}
p#para1 {
color: #FF4182;
margin: 0px 0px -8px;
}
p#para2 {
color: #FF4182;
font-size: 36px;
font-family: 'Roboto', sans-serif;
}
p#para3 {
color: gray;
margin: -20px 7px 1px;
}
.share-box-image {
height: 100%;
width: 100%;
max-height: 50px;
object-fit: contain;
}
#uploading-section-artist-mobile .tab-select {
margin-top: 0px !important;
}
div#uploading-section-artist-mobile {
margin: 0px !important;
}
#upper-exchange {
display: none;
}
.container-fluid #lower-exchange {
display: flex;
}
.col-5.carosel-box-img-div .rounded-circle {
width: 60px;
height: 60px;
}
img.avatar-md.post-img {
height: 100%;
width: 100%;
max-width: 41px;
}
input.form-control.uploading-section-title {
border: none;
}
input.form-control.uploading-section-title::placeholder {
color: #000;
font-size: 16px;
}
input.form-control.uploading-section-title :-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #000;
font-size: 16px;
}
input.form-control.uploading-section-title ::-ms-input-placeholder {
/* Microsoft Edge */
color: #000;
font-size: 16px;
}
img.avatar-md.post-img {
height: 100%;
width: 100%;
max-width: 85px;
}
img.post-section-artist-img {
width: 100%;
max-width: 85px;
}
@media (max-width: 1024px) {
.fw-600 {
font-weight: 600;
font-family: 'Roboto';
font-size: 11.5px;
margin: 10px auto;
}
.valyou-o-btn-invest-lg {
padding: 11px;
color: #fff;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
font-size: 16px;
margin-top: 10px;
}
}
@media (max-width: 425px) {
p.text-dark.font-size-12.artist-comment-name {
margin: 8px 0px 0px;
}
.page-content {
padding: 191px 12px 60px !important;
/*background-image: url("img_parallax.jpg");*/
/* Set a specific height */
/* height: 500px;*/
/*background-size: 500px 500px;*/
/* Create the parallax scrolling effect */
/*background-attachment: fixed;*/
/*background-position: center;*/
/*background-repeat: no-repeat;*/
/*background-size: cover;*/
}
div.page-content:before {
content: '';
position: fixed;
top: 190px;
width: 100% !important;
height: 100px !important;
left: 0;
background-image: url(http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png) !important;
background-size: cover;
background-position: left center;
}
/*.page-content {
padding: 191px 12px 60px !important;
background-image: url(http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png) !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-size: cover !important;
background-position: center !important;
min-height: 500px !important;
}
*/
.artist-comment-desc {
margin-top: 0px !important;
}
.input-qty {
background: transparent;
border: none;
width: 100%;
max-width: 100px;
font-size: 34px;
color: #000;
font-family: 'Roboto', sans-serif;
font-weight: 600;
text-align: center;
}
.input-qty:focus {
background: transparent;
border: none;
width: 100%;
max-width: 100px;
font-size: 34px;
color: #000;
font-family: 'Roboto', sans-serif;
font-weight: 600;
text-align: center;
outline: none;
}
input.form-control.uploading-section-title {
border: none;
}
input.form-control.uploading-section-title::placeholder {
color: #000;
font-size: 12px;
}
input.form-control.uploading-section-title :-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #000;
font-size: 12px;
}
input.form-control.uploading-section-title ::-ms-input-placeholder {
/* Microsoft Edge */
color: #000;
font-size: 12px;
}
p#para2 {
color: #FF4182;
font-size: 12px !important;
font-weight: 900;
font-family: 'Roboto', sans-serif;
}
img.post-bottom-cover-image {
width: 34px;
}
.scrolling {
font-size: 10px;
}
.scrolling p {
font-size: 10px!important;
}
.col-lg-7.col-6.post-header-bar {
margin: 8px 0px 0px;
}
.post-now-btn {
color: #fff;
padding: 4px 12px;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
max-width: 111px;
font-size: 15px;
}
.uploading-section-upload-img {
width: 100%;
max-width: 22px;
padding: 5px 0px 9px;
margin: 0px 2px 0px;
}
.col-lg-10.col-8.mt-4.marginnone {
margin: 0px 0px 0px !important;
padding: 0px 0px 0px !important;
}
/*img.rounded-circle {
width: 16px;
}*/
p.post-section-artist-p1 {
font-size: 20px;
margin: 0px;
color: #F24336;
font-family: 'Roboto';
}
img.post-section-artist-img.rounded-circle {
width: 59px;
height: 59px;
}
p.post-section-artist-p2.light-gray-color {
font-size: 9.5px !important;
}
p.float-right.mt-2.light-gray-color {
font-size: 9.5px;
}
.post-section-para {
font-size: 12px;
}
p#para1 {
color: #FF4182 !important;
margin: -5px 0px -4px !important;
font-size: 7px !important;
line-height: 2 !important;
}
p#para2 {
color: #FF4182;
font-size: 13px !important;
letter-spacing: 1px;
font-weight: 500;
font-family: 'Roboto';
font-family: 'Roboto', sans-serif;
}
p#para3 {
color: gray;
margin: -14px 0px 1px !important;
font-size: 7px;
}
.valyou-o-btn-invest {
padding: 4px 9.5px 3px 10.5px;
color: #fff;
background-image: linear-gradient(81deg, #f41c8c 4%, #f24a28 64%, #f2482d 65%, #ffc26f);
border: none;
width: 100%;
height: 100%;
font-size: 7px;
font-weight: 500;
margin-top: -90px !important;
max-height: 24px;
border-radius: 2.5px;
font-size: 7px !important;
}
.share-box-image {
height: 100%;
/* max-width: 11.9px; */
width: 100%;
object-fit: contain;
max-height: 22.9px !important;
height: 100%;
}
.card.shadow-none:hover {
box-shadow: 0 1.5px 4px 0 rgba(0, 0, 0, 0.3)!important;
border-radius: 17px;
}
.card.shadow-none {
box-shadow: none !important;
border-radius: 28px;
height: 100%;
max-height: 110px;
}
.tri-angle {
background-image: linear-gradient(344deg, #fffF 96%, #FFA84D 47%, #F33654 46%);
background-position-y: 1px;
margin: 0px !important;
}
.valyou-o-btn-invest-lg {
padding: 8px 27px;
color: #fff;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
font-size: 15px;
margin-top: 10px;
}
p.sponsored-section-p2 {
font-size: 27px;
font-weight: 500;
margin: 0px;
color: #5D5D5D;
}
p.sponsored-section-p3 {
font-size: 18px;
color: gray;
font-weight: 100;
}
p.sponsored-section-p1 {
color: #FF4182;
font-size: 14px;
}
}
@media (max-width: 768px) {
.artist-comment-time-period {
margin: 0px 0px 0px !important;
}
.artist-comment-time-period {
color: #ccc!important;
font-size: 8px;
}
.artist-comment-desc {
margin: 10px 40px -5px;
}
img.comment-btn {
width: 100%;
max-width: 26px;
margin-top: 2px;
}
.chat-input {
border-radius: 30px;
background-color: #eff2f7!important;
border-color: #eff2f7!important;
padding-right: 0px;
font-size: 10px;
}
.mt-0-mobile {
margin-top: 0px !important;
}
.p-0-mobile {
padding: 0px;
}
.artist-comment-image-div .col-md-8.col-10.mt-4 {
margin: 0px !important;
padding: 0px 0px 0px;
}
.avatar-md {
height: auto;
width: 60px;
}
.valyou-o-btn-invest {
padding: 6px;
color: #fff;
background-image: linear-gradient(81deg, #f41c8c 4%, #f24a28 64%, #f2482d 65%, #ffc26f);
border: none;
width: 100%;
font-size: 25px;
font-weight: 500;
margin-top: 10px;
}
div.page-content:before {
content: '';
position: fixed;
top: 190px;
width: 125%;
height: 140px;
left: 0;
background-image: url(http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png) !important;
background-size: cover;
background-position: left center;
}
.page-content {
padding: 191px 12px 60px !important;
/*background-image: url(http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png) !important;*/
/*background-repeat: no-repeat !important;*/
/*background-attachment: fixed !important;*/
/*background-size: cover !important;*/
/*background-position: center !important;*/
min-height: 500px !important;
}
.btn-margin {
margin: 35px 0px;
}
.radio {
border: 1px solid lightgray;
background-color: transparent;
color: gray;
width: auto;
height: 100%;
height: 39px;
margin: -10px auto;
padding: 11px 12px 20px;
border-radius: 100%;
font-size: 12px;
font-weight: 500;
text-align: center;
}
button.btn.btn-light.radio.dollar-price {
margin: 2px;
}
/*.page-content {
padding: 191px 12px 60px;
background-image: url('http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png') !important;
background-repeat: no-repeat;
background-attachment: fixed;
}
*/
#upper-exchange {
display: flex !important;
}
.container-fluid #lower-exchange {
display: none !important;
}
.uploading-section-artist {
display: none;
}
#uploading-section-artist-mobile {
display: block !important;
background-image: linear-gradient(81deg, #f41c8c 4%, #f24a28 64%, #f2482d 65%, #ffc26f);
margin-bottom: -94px;
}
img.uploading-section-artist-mobile--icon-img {
width: 100%;
height: auto;
}
.carosel-box.col-4 {
padding: 0px 0px 0px;
}
.carosel-box-img-div {
padding: 0px 0px 0px;
}
p.uploading-section-artist-mobile-p1 {
font-size: 8px;
color: black;
font-weight: 1000;
font-family: 'Roboto';
margin: 14px 0px 0px;
}
p.uploading-section-artist-mobile-p2 {
font-size: 9px;
color: black;
font-weight: 100;
font-family: 'Roboto';
margin: 0px 0px 0px;
}
p.uploading-section-artist-mobile-p3 {
font-size: 8px;
color: #fff;
}
img.uploading-section-artist-mobile--icon-img {
width: 100%;
height: auto;
max-width: 9px;
}
.carosel-box-img-div {
margin: 0px;
padding: 0px;
}
img.uploading-section-artist-mobile-img {
height: 100%;
width: 100%;
}
.carosel-box.col-4 {
margin: 0px 12px 0px;
}
img.post-section-artist-img {
width: 100%;
border: 1px solid #00FBC2;
}
p#para1 {
color: #FF4182;
margin: 0px 0px -8px;
font-size: 10px;
line-height: 2;
}
p#para2 {
color: #FF4182;
font-size: 12px !important;
font-family: 'Roboto', sans-serif;
font-weight: 800;
}
p#para3 {
color: gray;
margin: -20px 0px 1px;
font-size: 7px;
}
.valyou-o-btn-invest {
padding: 6px;
color: #fff;
background-image: linear-gradient(81deg, #f41c8c 4%, #f24a28 64%, #f2482d 65%, #ffc26f);
border: none;
width: 100%;
font-size: 6px;
font-weight: 500;
margin-top: 10px;
}
p.card-text.mobile-v {
font-size: 11px;
}
.padding-r {
padding-right: 0px;
}
p.uploading-section-artist-sub-heading .mb-2 {
display: none;
}
.tri-angle {
background-image: linear-gradient(349deg, #fffF 94%, #FFA84D 47%, #F33654 46%);
background-position-y: 1px;
margin-top: 45px !important;
}
.share-box-image {
height: 100%;
width: 100%;
max-height: 35px;
object-fit: contain;
}
.body-p {
padding: 17px 0px 0px 0px !important;
}
.share-box-image {
height: 100%;
width: 100%;
max-height: 22px !important;
object-fit: contain;
}
.invest-an-artist h2 {
font-size: 16px;
}
.card.bg-black {
height: 80px !important;
}
}
@media (max-width: 320px) {
p.card-text.mobile-v {
font-size: 7px;
font-weight: 600;
}
.artist-comment-desc {
margin-top: 0px !important;
}
.artist-comment-name {
margin: 0px;
}
p.card-text.mobile-v {
font-size: 7px;
font-weight: 600;
}
.artist-comment-desc {
margin-top: 0px !important;
}
.artist-comment-name {
margin: 0px;
}
.tri-angle {
background-image: linear-gradient(337deg, #fffF 96%, #FFA84D 47%, #F33654 46%);
background-position-y: 1px;
margin: 0px !important;
}
/*p#para1 {ca
color: #FF4182;
margin: 0px 0px -8px;
font-size: 8px !important;
line-height: 3;
}
p#para2 {
color: #FF4182;
font-size: 36px;
font-family: 'Roboto', sans-serif;
}*/
}
@media (max-width:1050px) {
p.uploading-section-artist-p1 {
font-size: 20px !important;
font-weight: 500;
margin: 0px;
}
p.uploading-section-artist-p3 {
font-size: 10px;
font-weight: 700;
margin: 0px;
}
}
p.share-price {
color: #FF4182;
}
.invest-an-artist h2 {
color: #FF4182;
}
.card.bg-black {
padding: 0.25rem !important;
}
.card.bg-black .card-body {
padding: 0.25rem !important;
} | public/assets/css/pages/social-media.css | .artist-comment-time-period {
color: #ccc!important;
font-size: 8px;
margin: 0px 0px 0px !important;
}
.bootstrap-tagsinput {
background-color: #fff;
border: 1px solid #ccc;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
padding: 4px 6px;
color: #555;
vertical-align: middle;
border-radius: 4px;
/* max-width: 100%;
line-height: 22px;*/
width: 100%;
cursor: text;
}
.bootstrap-tagsinput input {
border: none;
box-shadow: none;
outline: none;
background-color: transparent;
padding: 0 6px;
margin: 0;
/* width: auto;
max-width: inherit;*/
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
color: #777;
opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
color: #777;
}
.bootstrap-tagsinput input:focus {
border: none;
box-shadow: none;
}
.bootstrap-tagsinput .tag {
color: #000;
background-color: #e4e4e4;
border: 1px solid #aaa;
border-radius: 4px;
cursor: default;
float: left;
margin-right: 5px;
margin-top: 5px;
padding: 0 5px;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
margin-left: 8px;
cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
content: "x";
padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.number-input-music {
padding: 6px 12px !important;
height: auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.client-input {
padding: 30px 0 15px 0;
height: 100%;
min-height: 200px;
}
/*/////////////////////////////*/
.select2-container {
width: 100% !important;
}
.fw-600 {
font-weight: 600;
font-family: 'Roboto';
font-size: 22.75px;
margin: 10px auto;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light.focus,
.btn-light:focus,
.btn-light:hover {
color: #fff;
/* background-color: #cdd6e6; */
background-image: linear-gradient(77deg, #00FFC2, #00B8BA 100%);
}
.btn-margin {
margin: 65px;
}
.input-price-div {
background: #ffffff;
border-radius: 30px;
margin-top: 35px;
}
.input-price-div p {
padding: 5px;
}
input.minus {
background: transparent;
border: 0px;
font-weight: 600;
text-align: center;
font-size: 20px;
}
input.plus {
background: transparent;
border: 0px;
font-weight: 600;
text-align: center;
font-size: 20px;
}
.share-valyou-prices ul li input[type=checkbox],
input[type=radio] {
margin: 26px 100px 26px;
display: none;
}
.radio {
border: 1px solid lightgray;
background-color: transparent;
color: gray;
width: 81px;
height: 81px;
margin: -10px auto;
padding: 19px 23px 20px;
border-radius: 100%;
font-size: 29px;
font-weight: 600;
}
.valyou-g-btn {
color: #fff;
padding: 10px 15px;
background-image: linear-gradient(77deg, #00B8BA, #00FFC2 100%);
border: none;
width: 100%;
max-width: 175px;
}
.valyou-g-btn:hover {
color: #fff;
background-image: linear-gradient(77deg, #00FFC2, #00B8BA 100%);
}
.price-card {
background-image: linear-gradient(77deg, #00FFC2, #00B8BA 100%);
border-radius: 15px;
}
.input-qty {
background: transparent;
border: none;
width: 100%;
max-width: 160px;
font-size: 34px;
color: #000;
font-family: 'Roboto', sans-serif;
font-weight: 600;
text-align: center;
}
.input-qty::before {
content: '\f155';
font-family: 'FontAwesome';
font-size: 30px;
font-weight: 500;
text-align: center;
justify-content: center;
}
.input-qty:focus {
background: transparent;
border: none;
width: 100%;
max-width: 160px;
font-size: 34px;
color: #000;
font-family: 'Roboto', sans-serif;
font-weight: 600;
text-align: center;
outline: none;
}
.video:focus {
outline: none;
}
.cover-bg {
background-color: #000!important;
padding: 0.5rem!important;
margin: -20px;
}
.padding-n {
padding: 0px !important;
display: table;
}
.margin-n {
margin: 0px !important;
}
img.uploading-section-artist-img {
height: 100%;
width: 100%;
max-width: 110px;
max-height: 110px;
}
p.uploading-section-artist-p1 {
font-size: 21px;
font-weight: 500;
margin: 0px;
}
p.uploading-section-artist-p2 {
font-size: 14px;
font-weight: 700;
margin: 0px;
}
p.uploading-section-artist-p3 {
font-size: 14px;
font-weight: 700;
margin: 0px;
}
img.uploading-section-artist-icon-img {
width: 100%;
max-width: 15px;
}
.uploading-section-artist-main-heading {
font-size: 24px;
font-weight: 500;
margin-left: 15px;
}
.uploading-section-artist-sub-heading {
font-size: 20px;
font-weight: 500;
margin: 0px;
}
.post-now-btn {
color: #fff;
padding: 11px 13px;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
max-width: 133px;
}
.post-now-btn:hover {
color: #fff;
background-image: linear-gradient(77deg, #FFA85B, #FF4182 100%);
}
p.post-section-artist-p1 {
font-size: 24px;
font-weight: 500;
margin: 0px;
color: #F24336;
}
.light-gray-color {
color: gray;
}
.post-section-para {
font-size: 17px;
}
p#para1 {
color: #FF4182;
margin: 0px 0px -8px;
}
p#para2 {
color: #FF4182;
font-size: 36px;
font-family: 'Roboto', sans-serif;
}
p#para3 {
color: #F41C8C;
margin: -20px 7px 1px;
font-size: 14px;
}
.valyou-o-btn-invest {
padding: 11px;
color: #fff;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
font-size: 30px;
margin-top: 7px;
}
.padding-none {
padding: 0px
}
.padding-r {
padding-right: 0px;
}
.card.shadow-none:hover {
box-shadow: 0 1.5px 4px 0 rgba(0, 0, 0, 0.3)!important;
border-radius: 28px;
}
.card.shadow-none {
box-shadow: none !important;
border-radius: 28px;
height: 100%;
max-height: 110px;
}
.uploading-section-upload-img {
width: 100%;
max-width: 45px;
padding: 5px 5px 5px;
}
img.post-section-img {
max-height: 400px;
width: 100%;
}
p.sponsored-section-p1 {
color: #FF4182;
font-size: 20px;
}
p.sponsored-section-p2 {
font-size: 45px;
font-weight: 500;
margin: 0px;
color: #5D5D5D;
}
p.sponsored-section-p3 {
font-size: 29px;
color: gray;
font-weight: 100;
}
.valyou-o-btn-invest-lg {
padding: 11px;
color: #fff;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
font-size: 30px;
margin-top: 10px;
}
.p-none {
padding: unset;
}
p#para1 {
color: #FF4182;
margin: 0px 0px -8px;
}
p#para2 {
color: #FF4182;
font-size: 36px;
font-family: 'Roboto', sans-serif;
}
p#para3 {
color: gray;
margin: -20px 7px 1px;
}
.share-box-image {
height: 100%;
width: 100%;
max-height: 50px;
object-fit: contain;
}
#uploading-section-artist-mobile .tab-select {
margin-top: 0px !important;
}
div#uploading-section-artist-mobile {
margin: 0px !important;
}
#upper-exchange {
display: none;
}
.container-fluid #lower-exchange {
display: flex;
}
.col-5.carosel-box-img-div .rounded-circle {
width: 60px;
height: 60px;
}
img.avatar-md.post-img {
height: 100%;
width: 100%;
max-width: 41px;
}
input.form-control.uploading-section-title {
border: none;
}
input.form-control.uploading-section-title::placeholder {
color: #000;
font-size: 16px;
}
input.form-control.uploading-section-title :-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #000;
font-size: 16px;
}
input.form-control.uploading-section-title ::-ms-input-placeholder {
/* Microsoft Edge */
color: #000;
font-size: 16px;
}
img.avatar-md.post-img {
height: 100%;
width: 100%;
max-width: 85px;
}
img.post-section-artist-img {
width: 100%;
max-width: 85px;
}
@media (max-width: 1024px) {
.fw-600 {
font-weight: 600;
font-family: 'Roboto';
font-size: 11.5px;
margin: 10px auto;
}
.valyou-o-btn-invest-lg {
padding: 11px;
color: #fff;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
font-size: 16px;
margin-top: 10px;
}
}
@media (max-width: 425px) {
p.text-dark.font-size-12.artist-comment-name {
margin: 8px 0px 0px;
}
.page-content {
padding: 191px 12px 60px !important;
/*background-image: url("img_parallax.jpg");*/
/* Set a specific height */
/* height: 500px;*/
/*background-size: 500px 500px;*/
/* Create the parallax scrolling effect */
/*background-attachment: fixed;*/
/*background-position: center;*/
/*background-repeat: no-repeat;*/
/*background-size: cover;*/
}
div.page-content:before {
content: '';
position: fixed;
top: 190px;
width: 100% !important;
height: 100px !important;
left: 0;
background-image: url(http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png) !important;
background-size: cover;
background-position: left center;
}
/*.page-content {
padding: 191px 12px 60px !important;
background-image: url(http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png) !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-size: cover !important;
background-position: center !important;
min-height: 500px !important;
}
*/
.artist-comment-desc {
margin-top: 0px !important;
}
.input-qty {
background: transparent;
border: none;
width: 100%;
max-width: 100px;
font-size: 34px;
color: #000;
font-family: 'Roboto', sans-serif;
font-weight: 600;
text-align: center;
}
.input-qty:focus {
background: transparent;
border: none;
width: 100%;
max-width: 100px;
font-size: 34px;
color: #000;
font-family: 'Roboto', sans-serif;
font-weight: 600;
text-align: center;
outline: none;
}
input.form-control.uploading-section-title {
border: none;
}
input.form-control.uploading-section-title::placeholder {
color: #000;
font-size: 12px;
}
input.form-control.uploading-section-title :-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #000;
font-size: 12px;
}
input.form-control.uploading-section-title ::-ms-input-placeholder {
/* Microsoft Edge */
color: #000;
font-size: 12px;
}
p#para2 {
color: #FF4182;
font-size: 12px !important;
font-weight: 900;
font-family: 'Roboto', sans-serif;
}
img.post-bottom-cover-image {
width: 34px;
}
.scrolling {
font-size: 10px;
}
.scrolling p {
font-size: 10px!important;
}
.col-lg-7.col-6.post-header-bar {
margin: 8px 0px 0px;
}
.post-now-btn {
color: #fff;
padding: 4px 12px;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
width: 100%;
max-width: 111px;
font-size: 15px;
}
.uploading-section-upload-img {
width: 100%;
max-width: 22px;
padding: 5px 0px 9px;
margin: 0px 2px 0px;
}
.col-lg-10.col-8.mt-4.marginnone {
margin: 0px 0px 0px !important;
padding: 0px 0px 0px !important;
}
/*img.rounded-circle {
width: 16px;
}*/
p.post-section-artist-p1 {
font-size: 20px;
margin: 0px;
color: #F24336;
font-family: 'Roboto';
}
img.post-section-artist-img.rounded-circle {
width: 59px;
height: 59px;
}
p.post-section-artist-p2.light-gray-color {
font-size: 9.5px !important;
}
p.float-right.mt-2.light-gray-color {
font-size: 9.5px;
}
.post-section-para {
font-size: 12px;
}
p#para1 {
color: #FF4182 !important;
margin: -5px 0px -4px !important;
font-size: 7px !important;
line-height: 2 !important;
}
p#para2 {
color: #FF4182;
font-size: 13px !important;
letter-spacing: 1px;
font-weight: 500;
font-family: 'Roboto';
font-family: 'Roboto', sans-serif;
}
p#para3 {
color: gray;
margin: -14px 0px 1px !important;
font-size: 7px;
}
.valyou-o-btn-invest {
padding: 4px 9.5px 3px 10.5px;
color: #fff;
background-image: linear-gradient(81deg, #f41c8c 4%, #f24a28 64%, #f2482d 65%, #ffc26f);
border: none;
width: 100%;
height: 100%;
font-size: 7px;
font-weight: 500;
margin-top: -90px !important;
max-height: 24px;
border-radius: 2.5px;
font-size: 7px !important;
}
.share-box-image {
height: 100%;
/* max-width: 11.9px; */
width: 100%;
object-fit: contain;
max-height: 22.9px !important;
height: 100%;
}
.card.shadow-none:hover {
box-shadow: 0 1.5px 4px 0 rgba(0, 0, 0, 0.3)!important;
border-radius: 17px;
}
.card.shadow-none {
box-shadow: none !important;
border-radius: 28px;
height: 100%;
max-height: 110px;
}
.tri-angle {
background-image: linear-gradient(344deg, #fffF 96%, #FFA84D 47%, #F33654 46%);
background-position-y: 1px;
margin: 0px !important;
}
.valyou-o-btn-invest-lg {
padding: 8px 27px;
color: #fff;
background-image: linear-gradient(77deg, #FF4182, #FFA85B 100%);
border: none;
font-size: 15px;
margin-top: 10px;
}
p.sponsored-section-p2 {
font-size: 27px;
font-weight: 500;
margin: 0px;
color: #5D5D5D;
}
p.sponsored-section-p3 {
font-size: 18px;
color: gray;
font-weight: 100;
}
p.sponsored-section-p1 {
color: #FF4182;
font-size: 14px;
}
}
@media (max-width: 768px) {
.artist-comment-time-period {
margin: 0px 0px 0px !important;
}
.artist-comment-time-period {
color: #ccc!important;
font-size: 8px;
}
.artist-comment-desc {
margin: 10px 40px -5px;
}
img.comment-btn {
width: 100%;
max-width: 26px;
margin-top: 2px;
}
.chat-input {
border-radius: 30px;
background-color: #eff2f7!important;
border-color: #eff2f7!important;
padding-right: 0px;
font-size: 10px;
}
.mt-0-mobile {
margin-top: 0px !important;
}
.p-0-mobile {
padding: 0px;
}
.artist-comment-image-div .col-md-8.col-10.mt-4 {
margin: 0px !important;
padding: 0px 0px 0px;
}
.avatar-md {
height: auto;
width: 60px;
}
.valyou-o-btn-invest {
padding: 6px;
color: #fff;
background-image: linear-gradient(81deg, #f41c8c 4%, #f24a28 64%, #f2482d 65%, #ffc26f);
border: none;
width: 100%;
font-size: 25px;
font-weight: 500;
margin-top: 10px;
}
div.page-content:before {
content: '';
position: fixed;
top: 190px;
width: 125%;
height: 140px;
left: 0;
background-image: url(http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png) !important;
background-size: cover;
background-position: left center;
}
.page-content {
padding: 191px 12px 60px !important;
/*background-image: url(http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png) !important;*/
/*background-repeat: no-repeat !important;*/
/*background-attachment: fixed !important;*/
/*background-size: cover !important;*/
/*background-position: center !important;*/
min-height: 500px !important;
}
.btn-margin {
margin: 35px 0px;
}
.radio {
border: 1px solid lightgray;
background-color: transparent;
color: gray;
width: auto;
height: 100%;
height: 39px;
margin: -10px auto;
padding: 11px 12px 20px;
border-radius: 100%;
font-size: 12px;
font-weight: 500;
text-align: center;
}
button.btn.btn-light.radio.dollar-price {
margin: 2px;
}
/*.page-content {
padding: 191px 12px 60px;
background-image: url('http://myprojectstaging.com/valyouxmusic/public/assets/images/valyoux/linear_slant_gradient@3x.png') !important;
background-repeat: no-repeat;
background-attachment: fixed;
}
*/
#upper-exchange {
display: flex !important;
}
.container-fluid #lower-exchange {
display: none !important;
}
.uploading-section-artist {
display: none;
}
#uploading-section-artist-mobile {
display: block !important;
background-image: linear-gradient(81deg, #f41c8c 4%, #f24a28 64%, #f2482d 65%, #ffc26f);
margin-bottom: -94px;
}
img.uploading-section-artist-mobile--icon-img {
width: 100%;
height: auto;
}
.carosel-box.col-4 {
padding: 0px 0px 0px;
}
.carosel-box-img-div {
padding: 0px 0px 0px;
}
p.uploading-section-artist-mobile-p1 {
font-size: 8px;
color: black;
font-weight: 1000;
font-family: 'Roboto';
margin: 14px 0px 0px;
}
p.uploading-section-artist-mobile-p2 {
font-size: 9px;
color: black;
font-weight: 100;
font-family: 'Roboto';
margin: 0px 0px 0px;
}
p.uploading-section-artist-mobile-p3 {
font-size: 8px;
color: #fff;
}
img.uploading-section-artist-mobile--icon-img {
width: 100%;
height: auto;
max-width: 9px;
}
.carosel-box-img-div {
margin: 0px;
padding: 0px;
}
img.uploading-section-artist-mobile-img {
height: 100%;
width: 100%;
}
.carosel-box.col-4 {
margin: 0px 12px 0px;
}
img.post-section-artist-img {
width: 100%;
border: 1px solid #00FBC2;
}
p#para1 {
color: #FF4182;
margin: 0px 0px -8px;
font-size: 10px;
line-height: 2;
}
p#para2 {
color: #FF4182;
font-size: 12px !important;
font-family: 'Roboto', sans-serif;
font-weight: 800;
}
p#para3 {
color: gray;
margin: -20px 0px 1px;
font-size: 7px;
}
.valyou-o-btn-invest {
padding: 6px;
color: #fff;
background-image: linear-gradient(81deg, #f41c8c 4%, #f24a28 64%, #f2482d 65%, #ffc26f);
border: none;
width: 100%;
font-size: 6px;
font-weight: 500;
margin-top: 10px;
}
p.card-text.mobile-v {
font-size: 11px;
}
.padding-r {
padding-right: 0px;
}
p.uploading-section-artist-sub-heading .mb-2 {
display: none;
}
.tri-angle {
background-image: linear-gradient(349deg, #fffF 94%, #FFA84D 47%, #F33654 46%);
background-position-y: 1px;
margin-top: 45px !important;
}
.share-box-image {
height: 100%;
width: 100%;
max-height: 35px;
object-fit: contain;
}
.body-p {
padding: 17px 0px 0px 0px !important;
}
.share-box-image {
height: 100%;
width: 100%;
max-height: 22px !important;
object-fit: contain;
}
.invest-an-artist h2 {
font-size: 16px;
}
.card.bg-black {
height: 80px !important;
}
}
@media (max-width: 320px) {
p.card-text.mobile-v {
font-size: 7px;
font-weight: 600;
}
.artist-comment-desc {
margin-top: 0px !important;
}
.artist-comment-name {
margin: 0px;
}
p.card-text.mobile-v {
font-size: 7px;
font-weight: 600;
}
.artist-comment-desc {
margin-top: 0px !important;
}
.artist-comment-name {
margin: 0px;
}
.tri-angle {
background-image: linear-gradient(337deg, #fffF 96%, #FFA84D 47%, #F33654 46%);
background-position-y: 1px;
margin: 0px !important;
}
/*p#para1 {ca
color: #FF4182;
margin: 0px 0px -8px;
font-size: 8px !important;
line-height: 3;
}
p#para2 {
color: #FF4182;
font-size: 36px;
font-family: 'Roboto', sans-serif;
}*/
}
@media (max-width:1050px) {
p.uploading-section-artist-p1 {
font-size: 20px !important;
font-weight: 500;
margin: 0px;
}
p.uploading-section-artist-p3 {
font-size: 10px;
font-weight: 700;
margin: 0px;
}
}
p.share-price {
color: #FF4182;
}
.invest-an-artist h2 {
color: #FF4182;
}
.card.bg-black {
padding: 0.25rem !important;
}
.card.bg-black .card-body {
padding: 0.25rem !important;
} | 0.287968 | 0.100569 |
* {
box-sizing: border-box;
}
/* set body weight and background properties */
body
{
background-color: #fff;
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
background-image: url("https://www.transparenttextures.com/patterns/concrete-wall.png");
font-size: 16px;
line-height: 32px;
font-family: 'Arial', 'Helveticaa Neue', Arial, Helvetica, sans-serif;
color: #777;
margin: 0px, 0px;
}
/* header title style */
.head-title-style {
font-family: Georgia, 'Times New Roman', Times, serif;
text-shadow: -1px 1px 0 #777,
1px 1px 0 #777,
1px -1px 0 #777;
color: #eee;
}
/* signup html h2 style */
#h2Signup {
margin-top: 20px;
text-align: center;
font-weight: 400;
}
/* all p tags center */
p {
text-align: center;
}
/* stylize the jumbotron on render of index handlebars */
.jumbotron-fluid {
width: 100vw;
margin-bottom: 20px;
background-image: none;
background: none;
background-color: whitesmoke;
}
/* navbar name logo properties for artist savor logo */
#logo {
width: 250px;
height: 90px;
background: #4aaaa4;
float: left;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
line-height: 90px;
color: #fff;
font-weight: 700;
font-size: 30px;
text-decoration: none;
text-shadow: -1px 1px 0 #777,
1px 1px 0 #777,
1px -1px 0 #777;
}
/* navigation bar properties */
.custom-navbar {
background-image: linear-gradient(#fff, #4aaaa4);
}
.custom-nav-link {
text-align: center;
width: 180px;
font-size: 24px;
}
#navbarSupportedContent {
justify-content: flex-end;
text-shadow: -1px 1px 0 #777,
1px 1px 0 #777,
1px -1px 0 #777;
}
#no-padd {
padding: 0;
}
div #page-head {
margin: 0;
padding:0 0 0 40px;
background: linear-gradient(#4aaaa4, #fff);
}
#head-width {
max-width: 1188px;
margin: 0 auto;
}
/* fixed footer properties */
.footer {
background-color: #4aaaa4;
color: white;
text-align: center;
padding: 12px auto;
}
.indexer {
margin: none;
max-width: 100vw;
padding: 0;
}
/* style and position index handlebars main content */
#savorCostRow {
display: flex;
justify-content: space-around;
padding-bottom: 20px;
}
.spaceRow {
display: flex;
justify-content: baseline;
}
#artistNet {
margin-top: 120px;
}
.pie {
margin-left: 80px;
}
.net {
margin-left: none;
}
.pop {
margin-left: 40px;
margin-right: 40px;
}
.quote {
margin-left: 50px;
}
/* conform the popover buttons */
.btn-secondary {
width: 228px;
height: 62px;
margin-top: 40px;
margin-bottom: 40px;
}
/* style all labels with heavy font */
#labels {
font-size: 20px;
font-weight: 500;
}
/* label view style for stock price */
#quote {
border-width: 4px;
border-color: #4aaaa4;
margin-bottom: 30px;
}
/* html buttons signup and login border added */
.btn-default {
border-width: 4px;
border-color: #4aaaa4;
} | public/stylesheets/style2.css | * {
box-sizing: border-box;
}
/* set body weight and background properties */
body
{
background-color: #fff;
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
background-image: url("https://www.transparenttextures.com/patterns/concrete-wall.png");
font-size: 16px;
line-height: 32px;
font-family: 'Arial', 'Helveticaa Neue', Arial, Helvetica, sans-serif;
color: #777;
margin: 0px, 0px;
}
/* header title style */
.head-title-style {
font-family: Georgia, 'Times New Roman', Times, serif;
text-shadow: -1px 1px 0 #777,
1px 1px 0 #777,
1px -1px 0 #777;
color: #eee;
}
/* signup html h2 style */
#h2Signup {
margin-top: 20px;
text-align: center;
font-weight: 400;
}
/* all p tags center */
p {
text-align: center;
}
/* stylize the jumbotron on render of index handlebars */
.jumbotron-fluid {
width: 100vw;
margin-bottom: 20px;
background-image: none;
background: none;
background-color: whitesmoke;
}
/* navbar name logo properties for artist savor logo */
#logo {
width: 250px;
height: 90px;
background: #4aaaa4;
float: left;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
line-height: 90px;
color: #fff;
font-weight: 700;
font-size: 30px;
text-decoration: none;
text-shadow: -1px 1px 0 #777,
1px 1px 0 #777,
1px -1px 0 #777;
}
/* navigation bar properties */
.custom-navbar {
background-image: linear-gradient(#fff, #4aaaa4);
}
.custom-nav-link {
text-align: center;
width: 180px;
font-size: 24px;
}
#navbarSupportedContent {
justify-content: flex-end;
text-shadow: -1px 1px 0 #777,
1px 1px 0 #777,
1px -1px 0 #777;
}
#no-padd {
padding: 0;
}
div #page-head {
margin: 0;
padding:0 0 0 40px;
background: linear-gradient(#4aaaa4, #fff);
}
#head-width {
max-width: 1188px;
margin: 0 auto;
}
/* fixed footer properties */
.footer {
background-color: #4aaaa4;
color: white;
text-align: center;
padding: 12px auto;
}
.indexer {
margin: none;
max-width: 100vw;
padding: 0;
}
/* style and position index handlebars main content */
#savorCostRow {
display: flex;
justify-content: space-around;
padding-bottom: 20px;
}
.spaceRow {
display: flex;
justify-content: baseline;
}
#artistNet {
margin-top: 120px;
}
.pie {
margin-left: 80px;
}
.net {
margin-left: none;
}
.pop {
margin-left: 40px;
margin-right: 40px;
}
.quote {
margin-left: 50px;
}
/* conform the popover buttons */
.btn-secondary {
width: 228px;
height: 62px;
margin-top: 40px;
margin-bottom: 40px;
}
/* style all labels with heavy font */
#labels {
font-size: 20px;
font-weight: 500;
}
/* label view style for stock price */
#quote {
border-width: 4px;
border-color: #4aaaa4;
margin-bottom: 30px;
}
/* html buttons signup and login border added */
.btn-default {
border-width: 4px;
border-color: #4aaaa4;
} | 0.267695 | 0.122602 |
a {
text-decoration: none;
}
h2 {
font-size: 30px;
}
body {
color: rgb(87, 87, 87);
padding: 0;
margin: 0;
font-family: "Rubik", sans-serif;
}
.main-padding {
padding: 0 3em;
width: 80%;
margin: 0 auto;
}
.duration-span,
.tour-span {
display: none;
}
.fa-clock,
.fa-star,
.fa-star-half-stroke {
color: rgb(226, 40, 40);
font-size: 0.8em;
padding-right: 0.4em;
}
.padding-container {
padding: 1.5em 0em;
}
.top-container {
color: white;
background-color: #92a9bd;
display: grid;
grid-template-columns: 1fr 10fr 7fr;
padding: 1em 2em;
align-items: center;
gap: 1em;
}
.top-container button {
background: #8a39e1;
background-image: -webkit-linear-gradient(top, #8a39e1, #9c51e0);
border-width: 0.1em;
border-radius: 1.5em;
color: #ffffff;
font-family: "Rubik", sans-serif;
font-size: 0.9em;
padding: 0.4em 1.6em;
text-decoration: none;
}
.top-container-links a {
color: white;
}
.top-container button:hover {
background: #b667f1;
text-decoration: none;
}
.top-container div:nth-child(2) {
justify-self: start;
}
.top-container div:nth-child(3) {
display: none;
}
.top-container div:nth-child(4) {
justify-self: end;
}
.logo {
width: 80px;
}
.mid-container {
display: flex;
flex-direction: column;
text-align: center;
max-width: 550px;
margin: 0 auto;
}
.mid-text h2 {
margin-top: 0;
font-size: 1.7em;
}
.beach {
width: 550px;
max-width: 100%;
}
.bottom-h2 {
text-align: center;
font-size: 2.2em;
margin-top: 0;
margin-bottom: 1.5em;
}
.bottom-container {
display: flex;
flex-direction: column;
gap: 2em;
align-items: center;
}
.bottom-cards {
border: solid rgb(189, 189, 189) 0.1em;
width: 550px;
max-width: 100%;
}
.bottom-cards div:nth-child(2),
.bottom-cards div:nth-child(3) {
padding: 1em 1.5em;
}
.bottom-cards-foots {
background-color: rgb(248, 248, 248);
display: flex;
}
.bottom-prices {
text-align: right;
flex: 40%;
font-size: 1.5em;
}
.bottom-cards img {
max-width: 100%;
}
.card-container {
position: relative;
display: flex;
}
.image-text {
background-color: red;
color: white;
position: absolute;
left: -0.02em;
align-self: flex-end;
text-align: center;
padding: 0.4em 1.8em;
}
.bottom-cards h3 {
font-weight: 500;
}
.bottom-container p {
padding-bottom: 40p;
}
.last-container-top {
background-image: url("../images/lastdivtopimage.jpg");
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center center;
}
.black-contrast {
display: grid;
grid-template-rows: 0.5fr 0.5fr;
text-align: center;
position: relative;
background-color: rgba(0, 0, 0, 0.2);
}
.last-container-top h2 {
font-size: 2.7em;
color: white;
}
.holiday {
text-decoration: underline red;
}
.last-container-top button {
padding: 10px 20px;
background-color: white;
color: rgb(250, 171, 185);
font-family: "Rubik", sans-serif;
border-radius: 25px;
border-width: 0px;
font-size: 0.8em;
}
.last-container-middle {
display: flex;
flex-direction: column;
text-align: center;
max-width: 550px;
margin: 0 auto;
}
.last-container-middle-left h4,
.last-container-middle-left p {
color: rgb(173, 172, 172);
margin-top: 0;
}
.last-container-middle-left {
flex: 35%;
padding: 2em 0em;
}
.price-800 {
text-decoration: line-through;
}
.price-500,
.for-person {
color: rgb(87, 87, 87);
}
.for-person {
font-size: 0.5em;
}
.last-container-middle-price {
font-size: 2em;
}
.last-container-middle button {
color: white;
font-size: 1em;
padding: 10px 15px;
border-radius: 20px;
border-width: 0px;
background-color: rgb(4, 112, 89);
}
.last-container-middle-image {
background-image: url("../images/bestbeach.jpg");
background-position: center center;
background-repeat: no-repeat;
background-size: 100% 100%;
position: relative;
width: 550px;
max-width: 100%;
height: 300px;
align-self: center;
}
.count-down {
color: white;
background-color: rgb(127, 213, 241);
position: absolute;
padding: 25px 5px;
height: 10%;
width: 70%;
bottom: -45px;
left: 0;
right: 0;
margin: 0 auto;
text-align: center;
font-size: 0.9em;
letter-spacing: 0.1em;
}
.last-container-bottom {
text-align: center;
display: grid;
font-size: 0.8em;
padding-right: 0em;
}
.last-container-bottom h2 {
font-size: 1.5em;
}
.fa-earth-americas,
.fa-ship,
.fa-landmark {
padding-top: 20px;
color: rgb(87, 87, 87);
font-size: 2em;
}
.last-links {
color: rgb(4, 112, 89);
display: inline-block;
padding-top: 1.5em;
}
.foot-container {
background-color: #f5faff;
color: rgb(5, 66, 5);
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: center;
padding: 1em 2em;
}
.foot-container div:nth-child(1) {
grid-column: 1/2;
font-size: 0.9em;
text-align: left;
}
.foot-container div:nth-child(2) {
grid-column: 2/4;
font-size: 1.3em;
text-align: right;
}
.foot-container div:nth-child(3) {
padding: 1em 0em;
font-size: 1.3em;
grid-column: 1/4;
grid-row: 2;
text-align: center;
}
.foot-container-links a {
color: rgb(5, 66, 5);
padding: 0em 0.2em;
}
#padding-container2 {
padding: 1.5em 0em;
}
@media screen and (min-width: 960px) {
body {
font-size: 20px;
}
h2 {
font-size: 40px;
}
.black-contrast {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: none;
position: relative;
background-color: rgba(0, 0, 0, 0.2);
align-items: center;
gap: 50px;
padding: 40px;
}
.black-contrast div:nth-child(1) {
justify-self: right;
}
.black-contrast div:nth-child(2) {
justify-self: left;
}
.black-contrast h2 {
font-size: 2.3em;
}
.black-contrast button {
letter-spacing: 0.1em;
}
.duration-span,
.tour-span {
display: inline;
}
.fa-star,
.fa-star-half-stroke {
font-size: 0.8em;
}
.padding-container {
padding: 2em 0em;
}
.top-container {
display: flex;
}
.top-container div:nth-child(1) {
flex: 0.1em;
}
.top-container div:nth-child(2) {
flex: 30em;
}
.top-container div:nth-child(3) {
flex: 40em;
text-align: right;
display: inline;
}
.top-container div:nth-child(4) {
flex: 20em;
text-align: center;
}
.top-container a {
padding: 0.3em;
}
.mid-container {
display: flex;
flex-direction: row;
align-items: center;
margin: 0 auto;
max-width: none;
}
.mid-container div:nth-child(1) {
text-align: left;
flex: 55%;
}
.mid-container div:nth-child(2) {
text-align: right;
flex: 45%;
}
.mid-container h2,
.mid-container p {
padding-right: 20px;
}
.mid-text p {
margin: 0;
}
.bottom-cards {
width: 20em;
}
.bottom-container {
flex-direction: row;
justify-content: space-between;
}
.last-container-middle {
max-width: none;
display: grid;
grid-template-columns: 1fr 1fr;
padding-top: 2em;
padding-bottom: 1em;
text-align: left;
}
.last-container-middle-image {
background-size: 100% 100%;
width: 90%;
height: 100%;
justify-self: end;
}
.count-down {
padding: 25px 20px 20px 20px;
font-size: 0.8em;
word-spacing: 0.6em;
}
.last-container-bottom {
grid-template-columns: 0.2fr 0.8fr 0.2fr 0.8fr 0.2fr 0.8fr;
text-align: left;
gap: 10px;
padding-top: 50px;
}
.last-container-bottom h2 {
font-size: 1em;
}
.fa-earth-americas,
.fa-ship,
.fa-landmark {
display: block;
bottom: -10%;
font-size: 3em;
position: relative;
}
.foot-container {
display: flex;
align-items: center;
}
.foot-container div {
font-size: 1.2em;
flex: 33%;
}
.foot-container div:nth-child(2) {
text-align: center;
}
.foot-container div:nth-child(3) {
text-align: right;
}
.foot-container-links a {
padding: 0em 0.5em;
text-align: center;
}
#padding-container2 {
display: none;
}
}
@media screen and (min-width: 1366px) {
.top-container div:nth-child(4) {
flex: 12em;
}
} | CSS/styles.css | a {
text-decoration: none;
}
h2 {
font-size: 30px;
}
body {
color: rgb(87, 87, 87);
padding: 0;
margin: 0;
font-family: "Rubik", sans-serif;
}
.main-padding {
padding: 0 3em;
width: 80%;
margin: 0 auto;
}
.duration-span,
.tour-span {
display: none;
}
.fa-clock,
.fa-star,
.fa-star-half-stroke {
color: rgb(226, 40, 40);
font-size: 0.8em;
padding-right: 0.4em;
}
.padding-container {
padding: 1.5em 0em;
}
.top-container {
color: white;
background-color: #92a9bd;
display: grid;
grid-template-columns: 1fr 10fr 7fr;
padding: 1em 2em;
align-items: center;
gap: 1em;
}
.top-container button {
background: #8a39e1;
background-image: -webkit-linear-gradient(top, #8a39e1, #9c51e0);
border-width: 0.1em;
border-radius: 1.5em;
color: #ffffff;
font-family: "Rubik", sans-serif;
font-size: 0.9em;
padding: 0.4em 1.6em;
text-decoration: none;
}
.top-container-links a {
color: white;
}
.top-container button:hover {
background: #b667f1;
text-decoration: none;
}
.top-container div:nth-child(2) {
justify-self: start;
}
.top-container div:nth-child(3) {
display: none;
}
.top-container div:nth-child(4) {
justify-self: end;
}
.logo {
width: 80px;
}
.mid-container {
display: flex;
flex-direction: column;
text-align: center;
max-width: 550px;
margin: 0 auto;
}
.mid-text h2 {
margin-top: 0;
font-size: 1.7em;
}
.beach {
width: 550px;
max-width: 100%;
}
.bottom-h2 {
text-align: center;
font-size: 2.2em;
margin-top: 0;
margin-bottom: 1.5em;
}
.bottom-container {
display: flex;
flex-direction: column;
gap: 2em;
align-items: center;
}
.bottom-cards {
border: solid rgb(189, 189, 189) 0.1em;
width: 550px;
max-width: 100%;
}
.bottom-cards div:nth-child(2),
.bottom-cards div:nth-child(3) {
padding: 1em 1.5em;
}
.bottom-cards-foots {
background-color: rgb(248, 248, 248);
display: flex;
}
.bottom-prices {
text-align: right;
flex: 40%;
font-size: 1.5em;
}
.bottom-cards img {
max-width: 100%;
}
.card-container {
position: relative;
display: flex;
}
.image-text {
background-color: red;
color: white;
position: absolute;
left: -0.02em;
align-self: flex-end;
text-align: center;
padding: 0.4em 1.8em;
}
.bottom-cards h3 {
font-weight: 500;
}
.bottom-container p {
padding-bottom: 40p;
}
.last-container-top {
background-image: url("../images/lastdivtopimage.jpg");
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center center;
}
.black-contrast {
display: grid;
grid-template-rows: 0.5fr 0.5fr;
text-align: center;
position: relative;
background-color: rgba(0, 0, 0, 0.2);
}
.last-container-top h2 {
font-size: 2.7em;
color: white;
}
.holiday {
text-decoration: underline red;
}
.last-container-top button {
padding: 10px 20px;
background-color: white;
color: rgb(250, 171, 185);
font-family: "Rubik", sans-serif;
border-radius: 25px;
border-width: 0px;
font-size: 0.8em;
}
.last-container-middle {
display: flex;
flex-direction: column;
text-align: center;
max-width: 550px;
margin: 0 auto;
}
.last-container-middle-left h4,
.last-container-middle-left p {
color: rgb(173, 172, 172);
margin-top: 0;
}
.last-container-middle-left {
flex: 35%;
padding: 2em 0em;
}
.price-800 {
text-decoration: line-through;
}
.price-500,
.for-person {
color: rgb(87, 87, 87);
}
.for-person {
font-size: 0.5em;
}
.last-container-middle-price {
font-size: 2em;
}
.last-container-middle button {
color: white;
font-size: 1em;
padding: 10px 15px;
border-radius: 20px;
border-width: 0px;
background-color: rgb(4, 112, 89);
}
.last-container-middle-image {
background-image: url("../images/bestbeach.jpg");
background-position: center center;
background-repeat: no-repeat;
background-size: 100% 100%;
position: relative;
width: 550px;
max-width: 100%;
height: 300px;
align-self: center;
}
.count-down {
color: white;
background-color: rgb(127, 213, 241);
position: absolute;
padding: 25px 5px;
height: 10%;
width: 70%;
bottom: -45px;
left: 0;
right: 0;
margin: 0 auto;
text-align: center;
font-size: 0.9em;
letter-spacing: 0.1em;
}
.last-container-bottom {
text-align: center;
display: grid;
font-size: 0.8em;
padding-right: 0em;
}
.last-container-bottom h2 {
font-size: 1.5em;
}
.fa-earth-americas,
.fa-ship,
.fa-landmark {
padding-top: 20px;
color: rgb(87, 87, 87);
font-size: 2em;
}
.last-links {
color: rgb(4, 112, 89);
display: inline-block;
padding-top: 1.5em;
}
.foot-container {
background-color: #f5faff;
color: rgb(5, 66, 5);
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: center;
padding: 1em 2em;
}
.foot-container div:nth-child(1) {
grid-column: 1/2;
font-size: 0.9em;
text-align: left;
}
.foot-container div:nth-child(2) {
grid-column: 2/4;
font-size: 1.3em;
text-align: right;
}
.foot-container div:nth-child(3) {
padding: 1em 0em;
font-size: 1.3em;
grid-column: 1/4;
grid-row: 2;
text-align: center;
}
.foot-container-links a {
color: rgb(5, 66, 5);
padding: 0em 0.2em;
}
#padding-container2 {
padding: 1.5em 0em;
}
@media screen and (min-width: 960px) {
body {
font-size: 20px;
}
h2 {
font-size: 40px;
}
.black-contrast {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: none;
position: relative;
background-color: rgba(0, 0, 0, 0.2);
align-items: center;
gap: 50px;
padding: 40px;
}
.black-contrast div:nth-child(1) {
justify-self: right;
}
.black-contrast div:nth-child(2) {
justify-self: left;
}
.black-contrast h2 {
font-size: 2.3em;
}
.black-contrast button {
letter-spacing: 0.1em;
}
.duration-span,
.tour-span {
display: inline;
}
.fa-star,
.fa-star-half-stroke {
font-size: 0.8em;
}
.padding-container {
padding: 2em 0em;
}
.top-container {
display: flex;
}
.top-container div:nth-child(1) {
flex: 0.1em;
}
.top-container div:nth-child(2) {
flex: 30em;
}
.top-container div:nth-child(3) {
flex: 40em;
text-align: right;
display: inline;
}
.top-container div:nth-child(4) {
flex: 20em;
text-align: center;
}
.top-container a {
padding: 0.3em;
}
.mid-container {
display: flex;
flex-direction: row;
align-items: center;
margin: 0 auto;
max-width: none;
}
.mid-container div:nth-child(1) {
text-align: left;
flex: 55%;
}
.mid-container div:nth-child(2) {
text-align: right;
flex: 45%;
}
.mid-container h2,
.mid-container p {
padding-right: 20px;
}
.mid-text p {
margin: 0;
}
.bottom-cards {
width: 20em;
}
.bottom-container {
flex-direction: row;
justify-content: space-between;
}
.last-container-middle {
max-width: none;
display: grid;
grid-template-columns: 1fr 1fr;
padding-top: 2em;
padding-bottom: 1em;
text-align: left;
}
.last-container-middle-image {
background-size: 100% 100%;
width: 90%;
height: 100%;
justify-self: end;
}
.count-down {
padding: 25px 20px 20px 20px;
font-size: 0.8em;
word-spacing: 0.6em;
}
.last-container-bottom {
grid-template-columns: 0.2fr 0.8fr 0.2fr 0.8fr 0.2fr 0.8fr;
text-align: left;
gap: 10px;
padding-top: 50px;
}
.last-container-bottom h2 {
font-size: 1em;
}
.fa-earth-americas,
.fa-ship,
.fa-landmark {
display: block;
bottom: -10%;
font-size: 3em;
position: relative;
}
.foot-container {
display: flex;
align-items: center;
}
.foot-container div {
font-size: 1.2em;
flex: 33%;
}
.foot-container div:nth-child(2) {
text-align: center;
}
.foot-container div:nth-child(3) {
text-align: right;
}
.foot-container-links a {
padding: 0em 0.5em;
text-align: center;
}
#padding-container2 {
display: none;
}
}
@media screen and (min-width: 1366px) {
.top-container div:nth-child(4) {
flex: 12em;
}
} | 0.520009 | 0.129733 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Kalam&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif
}
body {
background: radial-gradient(#ffff,#2774C4);
}
.container {
overflow: auto
}
.cards {
overflow: auto;
min-height: 550px;
}
.card {
background: radial-gradient(#2774C4,#264462);
min-width: 300px;
height: 380px;
border-radius: 10px;
box-shadow: -5px 5px 25px #0000009d;
padding: 20px;
border: none;
transition: all .3s ease-in-out
}
.card .text-grey {
color: #ccc;
font-weight: 500
}
.card .light-grey {
color: #aaa;
font-weight: 300
}
.card .fs-5 {
font-size: 1.15rem !important
}
.card a {
color: #fff;
text-decoration: none
}
.card .profile img {
width: 60px;
height: 60px;
box-shadow: 0 5px 15px rgba(26, 25, 25, 0.329);
object-fit: cover;
border-radius: 50%
}
.card:not(:first-child) {
margin-left: -8rem
}
.cards::-webkit-scrollbar {
height: 10px
}
.cards::-webkit-scrollbar-track {
background: inherit
}
.cards::-webkit-scrollbar-thumb {
background-color: #3a3a3a;
background: linear-gradient(to right, #ff002b, #002fff);
border-radius: 10px
}
.card:hover,
.card:focus-within {
transform: translateY(-1rem) rotateZ(5deg)
}
.card:hover~.card,
.card:focus-within~.card {
transform: translateX(8rem)
}
.card .designation {
display: inline;
border-radius: 10px;
padding: 4px 10px;
border: 1px solid #ddd
}
.white{
color: white;
}
.padding {
padding: 3rem
}
.add_course {
background: radial-gradient(#2774C4,#264462);
padding: 30px 50px;
color: #DFE7FF;
font-size: 15px;
border-radius: 10px;
box-shadow: -5px 5px 25px #0000009d;
}
.heading {
font-size: 22px;
text-transform: uppercase;
color: #fff
}
.add_course .form-control {
border: 2px solid #708598;
background: #DFE7FF;
color: #6C757D;
}
.form-control {
height: 43px;
border-radius: 0
}
.add_course .form-control:focus {
border: 2px solid #264462
}
.pagination{
float: right;
margin-top: 10px;
}
.disable{
pointer-events:none;
}
/* Media query for 600 screen size */
@media only screen and (max-width: 600px){
.card:not(:first-child) {
margin-left: -10rem;
}
.add_course {
padding: 15px 15px;
}
.container-fluid{
padding-left: 0px !important;
padding-right: 0px !important;
}
}
/* Media query for 800 screen size */
@media only screen and (max-width: 800px){
.card:not(:first-child) {
margin-left: -12rem;
}
.add_course {
padding: 15px 15px;
}
.container-fluid {
padding-left: 0px !important;
padding-right: 0px !important;
}
}
/* Media query for 1000 screen size */
@media only screen and (max-width: 1000px){
.card:not(:first-child) {
margin-left: -12rem;
}
.add_course {
padding: 10px 10px;
}
.container-fluid {
padding-left: 0px !important;
padding-right: 0px !important;
}
} | public/css/courses.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Kalam&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif
}
body {
background: radial-gradient(#ffff,#2774C4);
}
.container {
overflow: auto
}
.cards {
overflow: auto;
min-height: 550px;
}
.card {
background: radial-gradient(#2774C4,#264462);
min-width: 300px;
height: 380px;
border-radius: 10px;
box-shadow: -5px 5px 25px #0000009d;
padding: 20px;
border: none;
transition: all .3s ease-in-out
}
.card .text-grey {
color: #ccc;
font-weight: 500
}
.card .light-grey {
color: #aaa;
font-weight: 300
}
.card .fs-5 {
font-size: 1.15rem !important
}
.card a {
color: #fff;
text-decoration: none
}
.card .profile img {
width: 60px;
height: 60px;
box-shadow: 0 5px 15px rgba(26, 25, 25, 0.329);
object-fit: cover;
border-radius: 50%
}
.card:not(:first-child) {
margin-left: -8rem
}
.cards::-webkit-scrollbar {
height: 10px
}
.cards::-webkit-scrollbar-track {
background: inherit
}
.cards::-webkit-scrollbar-thumb {
background-color: #3a3a3a;
background: linear-gradient(to right, #ff002b, #002fff);
border-radius: 10px
}
.card:hover,
.card:focus-within {
transform: translateY(-1rem) rotateZ(5deg)
}
.card:hover~.card,
.card:focus-within~.card {
transform: translateX(8rem)
}
.card .designation {
display: inline;
border-radius: 10px;
padding: 4px 10px;
border: 1px solid #ddd
}
.white{
color: white;
}
.padding {
padding: 3rem
}
.add_course {
background: radial-gradient(#2774C4,#264462);
padding: 30px 50px;
color: #DFE7FF;
font-size: 15px;
border-radius: 10px;
box-shadow: -5px 5px 25px #0000009d;
}
.heading {
font-size: 22px;
text-transform: uppercase;
color: #fff
}
.add_course .form-control {
border: 2px solid #708598;
background: #DFE7FF;
color: #6C757D;
}
.form-control {
height: 43px;
border-radius: 0
}
.add_course .form-control:focus {
border: 2px solid #264462
}
.pagination{
float: right;
margin-top: 10px;
}
.disable{
pointer-events:none;
}
/* Media query for 600 screen size */
@media only screen and (max-width: 600px){
.card:not(:first-child) {
margin-left: -10rem;
}
.add_course {
padding: 15px 15px;
}
.container-fluid{
padding-left: 0px !important;
padding-right: 0px !important;
}
}
/* Media query for 800 screen size */
@media only screen and (max-width: 800px){
.card:not(:first-child) {
margin-left: -12rem;
}
.add_course {
padding: 15px 15px;
}
.container-fluid {
padding-left: 0px !important;
padding-right: 0px !important;
}
}
/* Media query for 1000 screen size */
@media only screen and (max-width: 1000px){
.card:not(:first-child) {
margin-left: -12rem;
}
.add_course {
padding: 10px 10px;
}
.container-fluid {
padding-left: 0px !important;
padding-right: 0px !important;
}
} | 0.324342 | 0.105211 |
@layer components {
.alert {
@apply bg-gray-50 py-4 px-6 text-sm rounded-lg border;
}
.alert-info {
@apply alert bg-blue-50 text-blue-700 border-blue-100;
}
.alert-error {
@apply alert bg-red-50 text-red-500 border-red-100;
}
.alert-warning {
@apply alert bg-yellow-50 text-yellow-700 border-yellow-100;
}
.alert-success {
@apply alert bg-green-50 text-green-800 border-green-100;
}
.bottom-full {
bottom: 100%;
}
.top-full {
top: 100%;
}
.btn {
@apply py-2 px-4 font-semibold rounded-md shadow focus:outline-none border;
}
.btn-blue {
@apply btn bg-blue-700 hover:bg-blue-600 border-blue-700 text-white;
}
.btn-disabled {
@apply btn bg-gray-600 hover:bg-gray-600 border-gray-600 text-white cursor-not-allowed;
}
.btn-green {
@apply btn bg-green-600 hover:bg-green-500 border-green-600 text-white;
}
.btn-red {
@apply btn bg-red-700 hover:bg-red-600 border-red-800 text-white;
}
.btn-white {
@apply btn bg-white hover:bg-gray-200 border-gray-300 text-gray-500;
}
.btn-yellow {
@apply btn bg-yellow-100 hover:bg-yellow-200 border-yellow-300 text-yellow-700;
}
.form-input {
@apply appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md mb-2 shadow-sm placeholder-gray-400 focus:outline-none focus:ring-gray-300 focus:border-gray-300 sm:text-sm;
}
.form-input-error {
@apply form-input border-red-400 focus:ring-red-400 focus:border-red-400;
}
.nav-menu-link {
@apply bg-blue-700 hover:bg-blue-600 px-3 py-2 rounded-md text-sm text-white hover:text-white;
}
.nav-menu-link.active {
@apply bg-blue-600;
}
.new-menu-link {
@apply block px-4 py-2 text-gray-600 hover:bg-gray-100 hover:text-blue-700 focus:outline-none text-sm;
}
.new-menu-link.active {
@apply font-bold;
}
.sidebar-link {
@apply group w-full flex items-center p-2 text-sm text-gray-600 rounded-md hover:text-blue-700 hover:bg-gray-50;
}
.sidebar-link.active {
@apply font-bold;
}
.user-menu-link {
@apply block px-4 py-2 text-gray-600 hover:bg-gray-100 hover:text-blue-700 focus:outline-none text-sm;
}
.user-menu-link.active {
@apply font-bold;
}
} | ui/src/css/custom-components.css | @layer components {
.alert {
@apply bg-gray-50 py-4 px-6 text-sm rounded-lg border;
}
.alert-info {
@apply alert bg-blue-50 text-blue-700 border-blue-100;
}
.alert-error {
@apply alert bg-red-50 text-red-500 border-red-100;
}
.alert-warning {
@apply alert bg-yellow-50 text-yellow-700 border-yellow-100;
}
.alert-success {
@apply alert bg-green-50 text-green-800 border-green-100;
}
.bottom-full {
bottom: 100%;
}
.top-full {
top: 100%;
}
.btn {
@apply py-2 px-4 font-semibold rounded-md shadow focus:outline-none border;
}
.btn-blue {
@apply btn bg-blue-700 hover:bg-blue-600 border-blue-700 text-white;
}
.btn-disabled {
@apply btn bg-gray-600 hover:bg-gray-600 border-gray-600 text-white cursor-not-allowed;
}
.btn-green {
@apply btn bg-green-600 hover:bg-green-500 border-green-600 text-white;
}
.btn-red {
@apply btn bg-red-700 hover:bg-red-600 border-red-800 text-white;
}
.btn-white {
@apply btn bg-white hover:bg-gray-200 border-gray-300 text-gray-500;
}
.btn-yellow {
@apply btn bg-yellow-100 hover:bg-yellow-200 border-yellow-300 text-yellow-700;
}
.form-input {
@apply appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md mb-2 shadow-sm placeholder-gray-400 focus:outline-none focus:ring-gray-300 focus:border-gray-300 sm:text-sm;
}
.form-input-error {
@apply form-input border-red-400 focus:ring-red-400 focus:border-red-400;
}
.nav-menu-link {
@apply bg-blue-700 hover:bg-blue-600 px-3 py-2 rounded-md text-sm text-white hover:text-white;
}
.nav-menu-link.active {
@apply bg-blue-600;
}
.new-menu-link {
@apply block px-4 py-2 text-gray-600 hover:bg-gray-100 hover:text-blue-700 focus:outline-none text-sm;
}
.new-menu-link.active {
@apply font-bold;
}
.sidebar-link {
@apply group w-full flex items-center p-2 text-sm text-gray-600 rounded-md hover:text-blue-700 hover:bg-gray-50;
}
.sidebar-link.active {
@apply font-bold;
}
.user-menu-link {
@apply block px-4 py-2 text-gray-600 hover:bg-gray-100 hover:text-blue-700 focus:outline-none text-sm;
}
.user-menu-link.active {
@apply font-bold;
}
} | 0.47317 | 0.180666 |
/* background-color:rgb(24, 22, 22); */
position: relative;
}
/* .page-not-found{
width:120%;
height:1500px;
position:absolute;
background-image: linear-gradient(to right, rgba(27, 33, 44,1), rgba(27, 33, 44,0.8) 50%, rgb(27, 33, 44, 0.5) 100%), url(./img/shawshank.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
} */
/* .home .home-gradient{
position:absolute;
top:0;
z-index:9999;
width:100%;
height:100%;
right:0%;
background-image: linear-gradient(to right, rgba(27, 33, 44,0.3), rgba(27, 33, 44,0.7) 50%, rgb(27, 33, 44, 1) 100%);
} */
#root .logo-for-movie{
/* background-image: linear-gradient(to right, rgba(27, 33, 44,1), rgba(27, 33, 44,1) 50%, rgb(27, 33, 44, 1) 100%); */
}
.home-container {
text-align: center;
min-height: calc(100vh - 60px);
overflow: auto;
position: relative;
padding-top: 60px;
}
.home-title {
font-size: 1.7rem;
font-weight: 400;
color: rgba(0,0,0,0.70);
margin-top: 50px;
}
.home .animated{
position: relative;
}
#root .label{
position:absolute;
left:0px;
top:-6px;
padding: 4px 23px 4px 23px;
font-size:1.1rem;
font-weight:400;
transition: 250ms;
cursor: default;
}
#root .label-text:after {
display:block;
content: '';
border-bottom: solid 3px #ffffff;
transform: scaleX(0);
transition: transform 250ms ease-in-out;
}
#root .label:hover .label-text:after {
transform: scaleX(1);
}
#root .label:hover{
padding: 4px 40px 4px 40px;
}
/* background wall-paper */
#root .home-background-wallpaper{
margin:0;
height:700px;
width:100%;
background-position: center;
z-index: 100;
background-image: linear-gradient(to right, rgba(0, 0, 0,1), rgba(0, 0, 0, 0.5) 20%, rgba(255, 255, 255,0) 100%),url(./img/netflix-background.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: 100%,100%;
}
#root .home-background-wallpaper::after{
}
#root .home-background-wallpaper .wallpaper-text{
font-size: 1.3rem;
color:white;
}
.wallpaper-text .btn{
font-family: Arial, Helvetica, sans-serif;
} | client/src/css/Home.css | /* background-color:rgb(24, 22, 22); */
position: relative;
}
/* .page-not-found{
width:120%;
height:1500px;
position:absolute;
background-image: linear-gradient(to right, rgba(27, 33, 44,1), rgba(27, 33, 44,0.8) 50%, rgb(27, 33, 44, 0.5) 100%), url(./img/shawshank.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
} */
/* .home .home-gradient{
position:absolute;
top:0;
z-index:9999;
width:100%;
height:100%;
right:0%;
background-image: linear-gradient(to right, rgba(27, 33, 44,0.3), rgba(27, 33, 44,0.7) 50%, rgb(27, 33, 44, 1) 100%);
} */
#root .logo-for-movie{
/* background-image: linear-gradient(to right, rgba(27, 33, 44,1), rgba(27, 33, 44,1) 50%, rgb(27, 33, 44, 1) 100%); */
}
.home-container {
text-align: center;
min-height: calc(100vh - 60px);
overflow: auto;
position: relative;
padding-top: 60px;
}
.home-title {
font-size: 1.7rem;
font-weight: 400;
color: rgba(0,0,0,0.70);
margin-top: 50px;
}
.home .animated{
position: relative;
}
#root .label{
position:absolute;
left:0px;
top:-6px;
padding: 4px 23px 4px 23px;
font-size:1.1rem;
font-weight:400;
transition: 250ms;
cursor: default;
}
#root .label-text:after {
display:block;
content: '';
border-bottom: solid 3px #ffffff;
transform: scaleX(0);
transition: transform 250ms ease-in-out;
}
#root .label:hover .label-text:after {
transform: scaleX(1);
}
#root .label:hover{
padding: 4px 40px 4px 40px;
}
/* background wall-paper */
#root .home-background-wallpaper{
margin:0;
height:700px;
width:100%;
background-position: center;
z-index: 100;
background-image: linear-gradient(to right, rgba(0, 0, 0,1), rgba(0, 0, 0, 0.5) 20%, rgba(255, 255, 255,0) 100%),url(./img/netflix-background.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: 100%,100%;
}
#root .home-background-wallpaper::after{
}
#root .home-background-wallpaper .wallpaper-text{
font-size: 1.3rem;
color:white;
}
.wallpaper-text .btn{
font-family: Arial, Helvetica, sans-serif;
} | 0.334807 | 0.058777 |
.portfolio-item {
margin-bottom: 30px;
}
.card-title {
background: #2a3855;
color: #fff;
padding: 10px;
}
.fail {
background: #d28282;
color: #fff;
padding: 4px;
}
.success {
background: #039f90;
color: #fff;
padding: 4px;
}
.card {
border-color: #c5c5c5 !important;
}
[data-pagination],
[data-pagination] *,
[data-pagination] *:before,
[data-pagination] *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-kerning: auto;
}
[data-pagination] {
font-size: 8pt;
line-height: 1;
font-weight: 400;
font-family: 'Open Sans', 'Source Sans Pro', Roboto, 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', 'Myriad Pro', 'Segoe UI', Myriad, Helvetica, 'Lucida Grande', 'DejaVu Sans Condensed', 'Liberation Sans', 'Nimbus Sans L', Tahoma, Geneva, Arial, sans-serif;
-webkit-text-size-adjust: 100%;
margin: 1em auto;
text-align: center;
transition: font-size .2s ease-in-out;
}
[data-pagination] ul {
list-style-type: none;
display: inline;
font-size: 100%;
margin: 0;
padding: .5em;
}
[data-pagination] ul li {
display: inline-block;
font-size: 100%;
width: auto;
border-radius: 3px;
}
[data-pagination] > a {
font-size: 140%;
}
[data-pagination] a {
color: #777;
font-size: 100%;
padding: .5em;
}
[data-pagination] a:focus,
[data-pagination] a:hover {
color: #f60;
}
[data-pagination] li.current {
background: rgb(42, 56, 85);
padding: 5px 0px 5px 0px;
}
[data-pagination] li.current a{
color:#fff !important;
}
/* Disabled & Hidden Styles */
[data-pagination] .disabled,
[data-pagination] [hidden],
[data-pagination] [disabled] {
opacity: .5;
pointer-events: none;
}
@media (min-width: 350px) {
[data-pagination] {
font-size: 10pt;
}
}
@media (min-width: 500px) {
[data-pagination] {
font-size: 12pt;
}
}
@media (min-width: 700px) {
[data-pagination] {
font-size: 14pt;
}
}
@media (min-width: 900px) {
[data-pagination] {
font-size: 16pt;
}
} | Online Exam Portal/OEP.Web/Content/result-page.css | .portfolio-item {
margin-bottom: 30px;
}
.card-title {
background: #2a3855;
color: #fff;
padding: 10px;
}
.fail {
background: #d28282;
color: #fff;
padding: 4px;
}
.success {
background: #039f90;
color: #fff;
padding: 4px;
}
.card {
border-color: #c5c5c5 !important;
}
[data-pagination],
[data-pagination] *,
[data-pagination] *:before,
[data-pagination] *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-kerning: auto;
}
[data-pagination] {
font-size: 8pt;
line-height: 1;
font-weight: 400;
font-family: 'Open Sans', 'Source Sans Pro', Roboto, 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', 'Myriad Pro', 'Segoe UI', Myriad, Helvetica, 'Lucida Grande', 'DejaVu Sans Condensed', 'Liberation Sans', 'Nimbus Sans L', Tahoma, Geneva, Arial, sans-serif;
-webkit-text-size-adjust: 100%;
margin: 1em auto;
text-align: center;
transition: font-size .2s ease-in-out;
}
[data-pagination] ul {
list-style-type: none;
display: inline;
font-size: 100%;
margin: 0;
padding: .5em;
}
[data-pagination] ul li {
display: inline-block;
font-size: 100%;
width: auto;
border-radius: 3px;
}
[data-pagination] > a {
font-size: 140%;
}
[data-pagination] a {
color: #777;
font-size: 100%;
padding: .5em;
}
[data-pagination] a:focus,
[data-pagination] a:hover {
color: #f60;
}
[data-pagination] li.current {
background: rgb(42, 56, 85);
padding: 5px 0px 5px 0px;
}
[data-pagination] li.current a{
color:#fff !important;
}
/* Disabled & Hidden Styles */
[data-pagination] .disabled,
[data-pagination] [hidden],
[data-pagination] [disabled] {
opacity: .5;
pointer-events: none;
}
@media (min-width: 350px) {
[data-pagination] {
font-size: 10pt;
}
}
@media (min-width: 500px) {
[data-pagination] {
font-size: 12pt;
}
}
@media (min-width: 700px) {
[data-pagination] {
font-size: 14pt;
}
}
@media (min-width: 900px) {
[data-pagination] {
font-size: 16pt;
}
} | 0.263694 | 0.161519 |
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
body {
font-family: 'Open Sans', sans-serif;
margin: 0px;
padding: 0px;
background: linear-gradient(to bottom, #567788 0%, #121f25 100%) no-repeat center center;
font-size: 14px;
color: #333333;
}
nav {
background-color: #eff4f7;
margin: 40px;
position: relative;
z-index: 5
}
nav ul {
text-align: right;
padding: 14px 35px;
}
nav ul li {
display: inline-block;
padding-left: 20px;
}
nav ul li a {
text-decoration: none;
color: #a4a8a9;
}
nav ul li a:hover {
cursor: pointer;
border-bottom: 2px solid #70e9ff;
color: #333;
padding-bottom:10px;
}
.logo {
position: absolute;
z-index: 0;
top: 20px;
left: 550px;
background: #ea3d51;
width: 90px;
height: 90px;
padding: 20px;
}
.logo h1.brand {
color: white;
text-transform: uppercase;
text-align: center;
font-size: 50px;
font-weight: 900;
letter-spacing: 10px;
margin-top: 72px;
}
main {
background-color: #CBD0D9;
width: 80%;
margin: 0 auto;
}
header {
margin-top: 120px;
text-align: center;
}
.book-title {
position: relative;
z-index: 10;
color: #121f25;
font-size: 54px;
margin: 0;
text-transform: uppercase;
font-weight: bold;
}
.book-genre {
position: relative;
z-index: 3;
bottom: 80px;
left: 80px;
color: #6dffb8;
font-size: 120px;
margin: 0;
text-transform: uppercase;
}
.first-section {
position: relative;
z-index: 8;
text-align: center;
color: #ffffff;
width: 300px;
padding: 40px;
margin: 0 auto;
background: linear-gradient(to bottom, #eb3c53 0%, #e6135c 100%) no-repeat center center;
}
img {
display: block;
margin: 0 auto;
width: 100%;
max-width: 80px;
border-radius: 50%;
}
.first-section p:first-of-type {
font-size: 25px;
margin: 10px;
}
.first-section p:nth-of-type(2)::before {
content: ' " ';
color: #af213d;
font-size: 30px;
font-weight: 800;
}
.first-section p:nth-of-type(2)::after {
content: ' " ';
color: #af213d;
font-size: 30px;
font-weight: 800;
}
.first-section button {
background: none;
border: 3px solid #70ecff;
text-transform: uppercase;
font-size: 12px;
color: #ffffff;
padding: 10px 25px;
}
.first-section button:hover {
background: #70ecff;
border-color: #70ecff;
color: #348098;
}
.second-section {
position: relative;
z-index: 4;
top: -250px;
background: #ffffff;
margin: 50px;
padding: 250px 35px 35px 35px;
}
.second-section h1 {
color: #46ee97;
font-size: 42px;
font-weight: bold;
}
.second-section p {
width: 70%;
}
.second-section button {
background: None;
border: 3px solid #628291;
text-transform: uppercase;
font-size: 12px;
color: #333;
padding: 10px 25px;
}
.second-section button:hover {
background: #628291;
cursor: pointer;
color: #6dffb8;
} | 09.CSS Formatting and Positioning-Exercises/P01_BookReview/book-review.css | @import url('https://fonts.googleapis.com/css?family=Open+Sans');
body {
font-family: 'Open Sans', sans-serif;
margin: 0px;
padding: 0px;
background: linear-gradient(to bottom, #567788 0%, #121f25 100%) no-repeat center center;
font-size: 14px;
color: #333333;
}
nav {
background-color: #eff4f7;
margin: 40px;
position: relative;
z-index: 5
}
nav ul {
text-align: right;
padding: 14px 35px;
}
nav ul li {
display: inline-block;
padding-left: 20px;
}
nav ul li a {
text-decoration: none;
color: #a4a8a9;
}
nav ul li a:hover {
cursor: pointer;
border-bottom: 2px solid #70e9ff;
color: #333;
padding-bottom:10px;
}
.logo {
position: absolute;
z-index: 0;
top: 20px;
left: 550px;
background: #ea3d51;
width: 90px;
height: 90px;
padding: 20px;
}
.logo h1.brand {
color: white;
text-transform: uppercase;
text-align: center;
font-size: 50px;
font-weight: 900;
letter-spacing: 10px;
margin-top: 72px;
}
main {
background-color: #CBD0D9;
width: 80%;
margin: 0 auto;
}
header {
margin-top: 120px;
text-align: center;
}
.book-title {
position: relative;
z-index: 10;
color: #121f25;
font-size: 54px;
margin: 0;
text-transform: uppercase;
font-weight: bold;
}
.book-genre {
position: relative;
z-index: 3;
bottom: 80px;
left: 80px;
color: #6dffb8;
font-size: 120px;
margin: 0;
text-transform: uppercase;
}
.first-section {
position: relative;
z-index: 8;
text-align: center;
color: #ffffff;
width: 300px;
padding: 40px;
margin: 0 auto;
background: linear-gradient(to bottom, #eb3c53 0%, #e6135c 100%) no-repeat center center;
}
img {
display: block;
margin: 0 auto;
width: 100%;
max-width: 80px;
border-radius: 50%;
}
.first-section p:first-of-type {
font-size: 25px;
margin: 10px;
}
.first-section p:nth-of-type(2)::before {
content: ' " ';
color: #af213d;
font-size: 30px;
font-weight: 800;
}
.first-section p:nth-of-type(2)::after {
content: ' " ';
color: #af213d;
font-size: 30px;
font-weight: 800;
}
.first-section button {
background: none;
border: 3px solid #70ecff;
text-transform: uppercase;
font-size: 12px;
color: #ffffff;
padding: 10px 25px;
}
.first-section button:hover {
background: #70ecff;
border-color: #70ecff;
color: #348098;
}
.second-section {
position: relative;
z-index: 4;
top: -250px;
background: #ffffff;
margin: 50px;
padding: 250px 35px 35px 35px;
}
.second-section h1 {
color: #46ee97;
font-size: 42px;
font-weight: bold;
}
.second-section p {
width: 70%;
}
.second-section button {
background: None;
border: 3px solid #628291;
text-transform: uppercase;
font-size: 12px;
color: #333;
padding: 10px 25px;
}
.second-section button:hover {
background: #628291;
cursor: pointer;
color: #6dffb8;
} | 0.433262 | 0.108614 |
body.theme-dark .cbp_tmtimeline::before {
background:RGBA(255,255,255,0.06)
}
ul.cbp_tmtimeline {
padding:0
}
div class.cdp_tmlabel > li .cbp_tmlabel {
margin-bottom:0
}
.cbp_tmtimeline {
margin:30px 0 0 0;
padding:0;
list-style:none;
position:relative
}
/* The line */
.cbp_tmtimeline:before {
content:'';
position:absolute;
top:0;
bottom:0;
width:4px;
background:RGBA(0,0,0,0.02);
left:80px;
margin-left:10px
}
/* The date/time */
.cbp_tmtimeline > li .cbp_tmtime {
display:block;
/* width:29%;*/
/* padding-right:110px;*/
max-width:70px;
position:absolute
}
.cbp_tmtimeline > li .cbp_tmtime span {
display:block;
text-align:right
}
.cbp_tmtimeline > li .cbp_tmtime span:first-child {
font-size:0.9em;
color:#bdd0db
}
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
font-size:1.2em;
color:#9BCD9B
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
color:RGBA(255,125,73,0.75)
}
div.cbp_tmlabel > p {
margin-bottom:0
}
/* Right content */
.cbp_tmtimeline > li .cbp_tmlabel {
margin:0 0 45px 65px;
background:#EE9CA7;
color:#fff;
padding:.8em 1.2em .4em 1.2em;
/* font-size:1.2em;*/
font-weight:300;
line-height:1.4;
position:relative;
border-radius:5px;
transition:all 0.3s ease 0s;
box-shadow:0 1px 2px rgba(0,0,0,0.15);
cursor:pointer;
display:block
}
.cbp_tmlabel:hover {
/* transform:scale(1.05);*/
transform:translateY(-3px);
z-index:1;
-webkit-box-shadow:0 15px 32px rgba(0,0,0,0.15) !important
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
background:#EE9999
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
border-right-color:#EE9999;
top: 15px;
}
/* The triangle */
.cbp_tmtimeline > li .cbp_tmlabel:after {
right:100%;
border:solid transparent;
content:" ";
height:0;
width:0;
position:absolute;
pointer-events:none;
border-right-color:#EE9CA7;
border-width:10px;
top:15px
}
p.shuoshuo_time {
margin-top:10px;
border-top:1px dashed #fff;
padding-top:5px;
font-family:Ubuntu
}
/* Media */
@media screen and (max-width:65.375em) {
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
font-size:1.2em
}
}
.shuoshuo_author_img img {
border:1px solid #ddd;
padding:2px;
float:left;
border-radius:64px;
transition:all 1.0s;
width:50px;
height:50px;
}
.avatar {
-webkit-border-radius:100% !important;
-moz-border-radius:100% !important;
box-shadow:inset 0 -1px 0 #3333sf;
-webkit-box-shadow:inset 0 -1px 0 #3333sf;
-webkit-transition:0.4s;
-webkit-transition:-webkit-transform 0.4s ease-out;
transition:transform 0.4s ease-out;
-moz-transition:-moz-transform 0.4s ease-out
}
.zhuan {
transform: rotateZ(720deg);
-webkit-transform: rotateZ(720deg);
-moz-transform: rotateZ(720deg)
} | qingzzcn/static/css/aword.css | body.theme-dark .cbp_tmtimeline::before {
background:RGBA(255,255,255,0.06)
}
ul.cbp_tmtimeline {
padding:0
}
div class.cdp_tmlabel > li .cbp_tmlabel {
margin-bottom:0
}
.cbp_tmtimeline {
margin:30px 0 0 0;
padding:0;
list-style:none;
position:relative
}
/* The line */
.cbp_tmtimeline:before {
content:'';
position:absolute;
top:0;
bottom:0;
width:4px;
background:RGBA(0,0,0,0.02);
left:80px;
margin-left:10px
}
/* The date/time */
.cbp_tmtimeline > li .cbp_tmtime {
display:block;
/* width:29%;*/
/* padding-right:110px;*/
max-width:70px;
position:absolute
}
.cbp_tmtimeline > li .cbp_tmtime span {
display:block;
text-align:right
}
.cbp_tmtimeline > li .cbp_tmtime span:first-child {
font-size:0.9em;
color:#bdd0db
}
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
font-size:1.2em;
color:#9BCD9B
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
color:RGBA(255,125,73,0.75)
}
div.cbp_tmlabel > p {
margin-bottom:0
}
/* Right content */
.cbp_tmtimeline > li .cbp_tmlabel {
margin:0 0 45px 65px;
background:#EE9CA7;
color:#fff;
padding:.8em 1.2em .4em 1.2em;
/* font-size:1.2em;*/
font-weight:300;
line-height:1.4;
position:relative;
border-radius:5px;
transition:all 0.3s ease 0s;
box-shadow:0 1px 2px rgba(0,0,0,0.15);
cursor:pointer;
display:block
}
.cbp_tmlabel:hover {
/* transform:scale(1.05);*/
transform:translateY(-3px);
z-index:1;
-webkit-box-shadow:0 15px 32px rgba(0,0,0,0.15) !important
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
background:#EE9999
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
border-right-color:#EE9999;
top: 15px;
}
/* The triangle */
.cbp_tmtimeline > li .cbp_tmlabel:after {
right:100%;
border:solid transparent;
content:" ";
height:0;
width:0;
position:absolute;
pointer-events:none;
border-right-color:#EE9CA7;
border-width:10px;
top:15px
}
p.shuoshuo_time {
margin-top:10px;
border-top:1px dashed #fff;
padding-top:5px;
font-family:Ubuntu
}
/* Media */
@media screen and (max-width:65.375em) {
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
font-size:1.2em
}
}
.shuoshuo_author_img img {
border:1px solid #ddd;
padding:2px;
float:left;
border-radius:64px;
transition:all 1.0s;
width:50px;
height:50px;
}
.avatar {
-webkit-border-radius:100% !important;
-moz-border-radius:100% !important;
box-shadow:inset 0 -1px 0 #3333sf;
-webkit-box-shadow:inset 0 -1px 0 #3333sf;
-webkit-transition:0.4s;
-webkit-transition:-webkit-transform 0.4s ease-out;
transition:transform 0.4s ease-out;
-moz-transition:-moz-transform 0.4s ease-out
}
.zhuan {
transform: rotateZ(720deg);
-webkit-transform: rotateZ(720deg);
-moz-transform: rotateZ(720deg)
} | 0.25128 | 0.077762 |
-------------------------------------------------------------- */
body
{
margin:0px;
padding:0px;
background:#fff;
font-family: "lucida sans", verdana, arial, helvetica, sans-serif;
color: #232323;
}
.maincontainer
{
width:750px;
height:900px;
background: #fff;
}
.banner
{
background: url(img/banner.jpg);
width: 750px;
height: 302px;
}
.company
{
position: absolute;
margin-left:20px;
margin-top: 85px;
font-size: 18px;
font-weight: bold;
color: #fff;
font-family:arial;
}
.slogan
{
position: absolute;
margin-top: 285px;
margin-left: 0px;
font-family:arial;
font-size: 12px;
font-weight: bold;
color:#3c3c3c;
}
.menu
{
width: 750px;
height: 52px;
background: url(img/backmenu.gif) repeat-x;
}
#topmenu{
list-style: none;
margin: 0px 0;
padding: 10px 0;
text-align: left;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
color: #7b7b7b;
}
#topmenu li{
display: inline;
margin: 0 5px;
text-decoration:none;
}
#topmenu li a{
padding: 20px 18px;
color: #7b7b7b;
text-decoration:none;
}
#topmenu li a:hover{
b/ackground: #7a0089;
color: #595959;
text-decoration:none;
}
.botmenu
{
width: 750px;
height: 11px;
background: url(img/botmenu.png);
}
.contentwrapper
{
margin-top: -10px;
width: 750px;
position:absolute;
height: 100%;
}
.contentcolumn
{
width: 400px;
height: 100%;
margin-top: 20px;
margin-left: 10px;
text-align:left;
float: left;
}
#contentcolumn,
#contentcolumn input,
#contentcolumn textarea {
color: #333;
font-size: 16px;
line-height: 24px;
}
#contentcolumn p,
#contentcolumn ul,
#contentcolumn ol,
#contentcolumn dd,
#contentcolumn pre,
#contentcolumn hr {
margin-bottom: 24px;
}
#contentcolumn ul ul,
#contentcolumn ol ol,
#contentcolumn ul ol,
#contentcolumn ol ul {
margin-bottom: 0;
}
#contentcolumn pre,
#contentcolumn kbd,
#contentcolumn tt,
#contentcolumn var {
font-size: 15px;
line-height: 21px;
}
#contentcolumn code {
font-size: 13px;
}
#contentcolumn dt,
#contentcolumn th {
color: #000;
}
#contentcolumn h1,
#contentcolumn h2,
#contentcolumn h3,
#contentcolumn h4,
#contentcolumn h5,
#contentcolumn h6 {
color: #000;
line-height: 1.5em;
margin: 0 0 20px 0;
}
#contentcolumn table {
border: 1px solid #e7e7e7;
margin: 0 -1px 24px 0;
text-align: left;
width: 100%;
}
#contentcolumn tr th,
#contentcolumn thead th {
color: #888;
font-size: 12px;
font-weight: bold;
line-height: 18px;
padding: 9px 24px;
}
#contentcolumn tr td {
border-top: 1px solid #e7e7e7;
padding: 6px 24px;
}
#contentcolumn tr.odd td {
background: #f2f7fc;
}
#con/tentcolumn .entry-title {
color: #000;
font-size: 21px;
font-weight: bold;
line-height: 1.3em;
margin-bottom: 0;
}
#contentcolumn .entry-summary p:last-child {
margin-bottom: 12px;
}
.leftcolumn
{
width: 258px;
height: 340px;
margin-top: 1px;
margin-left: 20px;
margin-bottom: 30px;
float: left;
background: #f1f1f1;
}
#footer{
clear: left;
width: 100%;
background: e6e6e6;
color: #080808;
text-align: center;
padding: 60px 0 40px;
font-size:12px;
}
#footernav{
list-style: none;
padding: 0;
margin: 20px 0;
font-family: 'ColaborateBoldRegular', Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000;
}
#footernav li{
display: inline;
margin: 0 20px;
}
#footernav li a{
color: #000;
}
#footernav li a:hover{
color: #7a0089;
}
/* =Comments
-------------------------------------------------------------- */
#comments {
clear: both;
}
#comments .navigation {
padding: 0 0 18px 0;
}
h3#comments-title,
h3#reply-title {
color: #000;
font-size: 20px;
font-weight: bold;
margin-bottom: 0;
}
h3#comments-title {
padding: 24px 0;
}
.commentlist {
list-style: none;
margin: 0;
}
.commentlist li.comment {
border-bottom: 1px solid #e7e7e7;
line-height: 24px;
margin: 0 0 24px 0;
padding: 0 0 0 56px;
position: relative;
}
.commentlist li:last-child {
border-bottom: none;
margin-bottom: 0;
}
#comments .comment-body ul,
#comments .comment-body ol {
margin-bottom: 18px;
}
#comments .comment-body p:last-child {
margin-bottom: 6px;
}
#comments .comment-body blockquote p:last-child {
margin-bottom: 24px;
}
.commentlist ol {
list-style: decimal;
}
.commentlist .avatar {
position: absolute;
top: 4px;
left: 0;
}
.comment-author {
}
.comment-author cite {
color: #000;
font-style: normal;
font-weight: bold;
}
.comment-author .says {
font-style: italic;
}
.comment-meta {
font-size: 12px;
margin: 0 0 18px 0;
}
.comment-meta a:link,
.comment-meta a:visited {
color: #888;
text-decoration: none;
}
.comment-meta a:active,
.comment-meta a:hover {
color: #7a0089;
}
.commentlist .even {
}
.commentlist .bypostauthor {
}
.reply {
font-size: 12px;
padding: 0 0 24px 0;
}
.reply a,
a.comment-edit-link {
color: #888;
}
.reply a:hover,
a.comment-edit-link:hover {
color: #7a0089;
}
.commentlist .children {
list-style: none;
margin: 0;
}
.commentlist .children li {
border: none;
margin: 0;
}
.nopassword,
.nocomments {
display: none;
}
#comments .pingback {
border-bottom: 1px solid #e7e7e7;
margin-bottom: 18px;
padding-bottom: 18px;
}
.commentlist li.comment+li.pingback {
margin-top: -6px;
}
#comments .pingback p {
color: #888;
display: block;
font-size: 12px;
line-height: 18px;
margin: 0;
}
#comments .pingback .url {
font-size: 13px;
font-style: italic;
}
/* Comments form */
input[type=submit] {
color: #333;
}
#respond {
border-top: 1px solid #e7e7e7;
margin: 24px 0;
overflow: hidden;
position: relative;
}
#respond p {
margin: 0;
}
#respond .comment-notes {
margin-bottom: 1em;
}
.form-allowed-tags {
line-height: 1em;
}
.children #respond {
margin: 0 48px 0 0;
}
h3#reply-title {
margin: 18px 0;
}
#comments-list #respond {
margin: 0 0 18px 0;
}
#comments-list ul #respond {
margin: 0;
}
#cancel-comment-reply-link {
font-size: 12px;
font-weight: normal;
line-height: 18px;
}
#respond .required {
color: #ff4b33;
font-weight: bold;
}
#respond label {
color: #888;
font-size: 12px;
}
#respond input {
margin: 0 0 9px;
width: 98%;
}
#respond textarea {
width: 98%;
}
#respond .form-allowed-tags {
color: #888;
font-size: 12px;
line-height: 18px;
}
#respond .form-allowed-tags code {
font-size: 11px;
}
#respond .form-submit {
margin: 12px 0;
}
#respond .form-submit input {
font-size: 14px;
width: auto;
}
/* =Widget Areas
-------------------------------------------------------------- */
.widget-area ul {
list-style: none;
margin-left: 0;
}
.widget-area ul ul {
list-style: square;
margin-left: 1.3em;
}
.widget-area select {
max-width: 100%;
}
.widget_search #s {/* This keeps the search inputs in line */
width: 60%;
}
.widget_search label {
display: none;
}
.widget-container {
margin: 0 0 18px 0;
}
.widget-title {
color: #222;
font-weight: bold;
}
.widget-area a:link,
.widget-area a:visited {
text-decoration: none;
}
.widget-area a:active,
.widget-area a:hover {
text-decoration: underline;
}
.widget-area .entry-meta {
font-size: 11px;
}
#wp_tag_cloud div {
line-height: 1.6em;
}
#wp-calendar {
width: 100%;
}
#wp-calendar caption {
color: #222;
font-size: 14px;
font-weight: bold;
padding-bottom: 4px;
text-align: left;
}
#wp-calendar thead {
font-size: 11px;
}
#wp-calendar thead th {
}
#wp-calendar tbody {
color: #aaa;
}
#wp-calendar tbody td {
background: #f5f5f5;
border: 1px solid #fff;
padding: 3px 0 2px;
text-align: center;
}
#wp-calendar tbody .pad {
background: none;
}
#wp-calendar tfoot #next {
text-align: right;
}
.widget_rss a.rsswidget {
color: #000;
}
.widget_rss a.rsswidget:hover {
color: #ff4b33;
}
.widget_rss .widget-title img {
width: 11px;
height: 11px;
}
/* Main sidebars */
#main .widget-area ul {
margin-left: 0;
padding: 0 20px 0 0;
}
#main .widget-area ul ul {
border: none;
margin-left: 1.3em;
padding: 0;
}
#primary {
}
#secondary {
}
/* NAV */
.navigation {
color: #888;
font-size: 12px;
line-height: 18px;
overflow: hidden;
}
.navigation a:link,
.navigation a:visited {
color: #0d0d0d;
text-decoration: none;
}
.navigation a:active,
.navigation a:hover {
color: #7a0089;
}
.nav-previous {
float: left;
width: 50%;
}
.nav-next {
float: right;
text-align: right;
width: 50%;
}
#nav-above {
margin: 0 0 18px 0;
}
#nav-above {
display: block;
}
.paged #nav-above,
.single #nav-above {
display: block;
}
#nav-below {
margin: 10px 0 0 0;
}
.post{
}
.post .title{
color: #0d0d0d;
font-size: 24px;
margin: 20px 10px;
}
.post p{
margin: 10px;
}
.widget{
font-size: 11px;
color: #424242;
margin: 15px 0;
}
.widget .widget-title{
font-family: 'ColaborateBoldRegular', Arial, Helvetica, sans-serif;
font-size: 12px;
padding-bottom: 10px;
border-bottom: 1px solid #d8d8d8;
text-align: center;
margin-bottom: 15px;
}
.widget a{
color: #000;
}
.widget a:hover{
color: #7a0089;
}
.widget .post{
margin: 15px 0;
}
.widget .post .title{
font-size: 11px;
margin: 0 0 10px;
}
.widget .post p{
margin: 10px 0;
}
a:link {
color: #0d0d0d;
}
a:visited {
color: #7a0089;
}
a:active,
a:hover {
color: #7a0089;
} | application/views/layout/css.css | -------------------------------------------------------------- */
body
{
margin:0px;
padding:0px;
background:#fff;
font-family: "lucida sans", verdana, arial, helvetica, sans-serif;
color: #232323;
}
.maincontainer
{
width:750px;
height:900px;
background: #fff;
}
.banner
{
background: url(img/banner.jpg);
width: 750px;
height: 302px;
}
.company
{
position: absolute;
margin-left:20px;
margin-top: 85px;
font-size: 18px;
font-weight: bold;
color: #fff;
font-family:arial;
}
.slogan
{
position: absolute;
margin-top: 285px;
margin-left: 0px;
font-family:arial;
font-size: 12px;
font-weight: bold;
color:#3c3c3c;
}
.menu
{
width: 750px;
height: 52px;
background: url(img/backmenu.gif) repeat-x;
}
#topmenu{
list-style: none;
margin: 0px 0;
padding: 10px 0;
text-align: left;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
color: #7b7b7b;
}
#topmenu li{
display: inline;
margin: 0 5px;
text-decoration:none;
}
#topmenu li a{
padding: 20px 18px;
color: #7b7b7b;
text-decoration:none;
}
#topmenu li a:hover{
b/ackground: #7a0089;
color: #595959;
text-decoration:none;
}
.botmenu
{
width: 750px;
height: 11px;
background: url(img/botmenu.png);
}
.contentwrapper
{
margin-top: -10px;
width: 750px;
position:absolute;
height: 100%;
}
.contentcolumn
{
width: 400px;
height: 100%;
margin-top: 20px;
margin-left: 10px;
text-align:left;
float: left;
}
#contentcolumn,
#contentcolumn input,
#contentcolumn textarea {
color: #333;
font-size: 16px;
line-height: 24px;
}
#contentcolumn p,
#contentcolumn ul,
#contentcolumn ol,
#contentcolumn dd,
#contentcolumn pre,
#contentcolumn hr {
margin-bottom: 24px;
}
#contentcolumn ul ul,
#contentcolumn ol ol,
#contentcolumn ul ol,
#contentcolumn ol ul {
margin-bottom: 0;
}
#contentcolumn pre,
#contentcolumn kbd,
#contentcolumn tt,
#contentcolumn var {
font-size: 15px;
line-height: 21px;
}
#contentcolumn code {
font-size: 13px;
}
#contentcolumn dt,
#contentcolumn th {
color: #000;
}
#contentcolumn h1,
#contentcolumn h2,
#contentcolumn h3,
#contentcolumn h4,
#contentcolumn h5,
#contentcolumn h6 {
color: #000;
line-height: 1.5em;
margin: 0 0 20px 0;
}
#contentcolumn table {
border: 1px solid #e7e7e7;
margin: 0 -1px 24px 0;
text-align: left;
width: 100%;
}
#contentcolumn tr th,
#contentcolumn thead th {
color: #888;
font-size: 12px;
font-weight: bold;
line-height: 18px;
padding: 9px 24px;
}
#contentcolumn tr td {
border-top: 1px solid #e7e7e7;
padding: 6px 24px;
}
#contentcolumn tr.odd td {
background: #f2f7fc;
}
#con/tentcolumn .entry-title {
color: #000;
font-size: 21px;
font-weight: bold;
line-height: 1.3em;
margin-bottom: 0;
}
#contentcolumn .entry-summary p:last-child {
margin-bottom: 12px;
}
.leftcolumn
{
width: 258px;
height: 340px;
margin-top: 1px;
margin-left: 20px;
margin-bottom: 30px;
float: left;
background: #f1f1f1;
}
#footer{
clear: left;
width: 100%;
background: e6e6e6;
color: #080808;
text-align: center;
padding: 60px 0 40px;
font-size:12px;
}
#footernav{
list-style: none;
padding: 0;
margin: 20px 0;
font-family: 'ColaborateBoldRegular', Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000;
}
#footernav li{
display: inline;
margin: 0 20px;
}
#footernav li a{
color: #000;
}
#footernav li a:hover{
color: #7a0089;
}
/* =Comments
-------------------------------------------------------------- */
#comments {
clear: both;
}
#comments .navigation {
padding: 0 0 18px 0;
}
h3#comments-title,
h3#reply-title {
color: #000;
font-size: 20px;
font-weight: bold;
margin-bottom: 0;
}
h3#comments-title {
padding: 24px 0;
}
.commentlist {
list-style: none;
margin: 0;
}
.commentlist li.comment {
border-bottom: 1px solid #e7e7e7;
line-height: 24px;
margin: 0 0 24px 0;
padding: 0 0 0 56px;
position: relative;
}
.commentlist li:last-child {
border-bottom: none;
margin-bottom: 0;
}
#comments .comment-body ul,
#comments .comment-body ol {
margin-bottom: 18px;
}
#comments .comment-body p:last-child {
margin-bottom: 6px;
}
#comments .comment-body blockquote p:last-child {
margin-bottom: 24px;
}
.commentlist ol {
list-style: decimal;
}
.commentlist .avatar {
position: absolute;
top: 4px;
left: 0;
}
.comment-author {
}
.comment-author cite {
color: #000;
font-style: normal;
font-weight: bold;
}
.comment-author .says {
font-style: italic;
}
.comment-meta {
font-size: 12px;
margin: 0 0 18px 0;
}
.comment-meta a:link,
.comment-meta a:visited {
color: #888;
text-decoration: none;
}
.comment-meta a:active,
.comment-meta a:hover {
color: #7a0089;
}
.commentlist .even {
}
.commentlist .bypostauthor {
}
.reply {
font-size: 12px;
padding: 0 0 24px 0;
}
.reply a,
a.comment-edit-link {
color: #888;
}
.reply a:hover,
a.comment-edit-link:hover {
color: #7a0089;
}
.commentlist .children {
list-style: none;
margin: 0;
}
.commentlist .children li {
border: none;
margin: 0;
}
.nopassword,
.nocomments {
display: none;
}
#comments .pingback {
border-bottom: 1px solid #e7e7e7;
margin-bottom: 18px;
padding-bottom: 18px;
}
.commentlist li.comment+li.pingback {
margin-top: -6px;
}
#comments .pingback p {
color: #888;
display: block;
font-size: 12px;
line-height: 18px;
margin: 0;
}
#comments .pingback .url {
font-size: 13px;
font-style: italic;
}
/* Comments form */
input[type=submit] {
color: #333;
}
#respond {
border-top: 1px solid #e7e7e7;
margin: 24px 0;
overflow: hidden;
position: relative;
}
#respond p {
margin: 0;
}
#respond .comment-notes {
margin-bottom: 1em;
}
.form-allowed-tags {
line-height: 1em;
}
.children #respond {
margin: 0 48px 0 0;
}
h3#reply-title {
margin: 18px 0;
}
#comments-list #respond {
margin: 0 0 18px 0;
}
#comments-list ul #respond {
margin: 0;
}
#cancel-comment-reply-link {
font-size: 12px;
font-weight: normal;
line-height: 18px;
}
#respond .required {
color: #ff4b33;
font-weight: bold;
}
#respond label {
color: #888;
font-size: 12px;
}
#respond input {
margin: 0 0 9px;
width: 98%;
}
#respond textarea {
width: 98%;
}
#respond .form-allowed-tags {
color: #888;
font-size: 12px;
line-height: 18px;
}
#respond .form-allowed-tags code {
font-size: 11px;
}
#respond .form-submit {
margin: 12px 0;
}
#respond .form-submit input {
font-size: 14px;
width: auto;
}
/* =Widget Areas
-------------------------------------------------------------- */
.widget-area ul {
list-style: none;
margin-left: 0;
}
.widget-area ul ul {
list-style: square;
margin-left: 1.3em;
}
.widget-area select {
max-width: 100%;
}
.widget_search #s {/* This keeps the search inputs in line */
width: 60%;
}
.widget_search label {
display: none;
}
.widget-container {
margin: 0 0 18px 0;
}
.widget-title {
color: #222;
font-weight: bold;
}
.widget-area a:link,
.widget-area a:visited {
text-decoration: none;
}
.widget-area a:active,
.widget-area a:hover {
text-decoration: underline;
}
.widget-area .entry-meta {
font-size: 11px;
}
#wp_tag_cloud div {
line-height: 1.6em;
}
#wp-calendar {
width: 100%;
}
#wp-calendar caption {
color: #222;
font-size: 14px;
font-weight: bold;
padding-bottom: 4px;
text-align: left;
}
#wp-calendar thead {
font-size: 11px;
}
#wp-calendar thead th {
}
#wp-calendar tbody {
color: #aaa;
}
#wp-calendar tbody td {
background: #f5f5f5;
border: 1px solid #fff;
padding: 3px 0 2px;
text-align: center;
}
#wp-calendar tbody .pad {
background: none;
}
#wp-calendar tfoot #next {
text-align: right;
}
.widget_rss a.rsswidget {
color: #000;
}
.widget_rss a.rsswidget:hover {
color: #ff4b33;
}
.widget_rss .widget-title img {
width: 11px;
height: 11px;
}
/* Main sidebars */
#main .widget-area ul {
margin-left: 0;
padding: 0 20px 0 0;
}
#main .widget-area ul ul {
border: none;
margin-left: 1.3em;
padding: 0;
}
#primary {
}
#secondary {
}
/* NAV */
.navigation {
color: #888;
font-size: 12px;
line-height: 18px;
overflow: hidden;
}
.navigation a:link,
.navigation a:visited {
color: #0d0d0d;
text-decoration: none;
}
.navigation a:active,
.navigation a:hover {
color: #7a0089;
}
.nav-previous {
float: left;
width: 50%;
}
.nav-next {
float: right;
text-align: right;
width: 50%;
}
#nav-above {
margin: 0 0 18px 0;
}
#nav-above {
display: block;
}
.paged #nav-above,
.single #nav-above {
display: block;
}
#nav-below {
margin: 10px 0 0 0;
}
.post{
}
.post .title{
color: #0d0d0d;
font-size: 24px;
margin: 20px 10px;
}
.post p{
margin: 10px;
}
.widget{
font-size: 11px;
color: #424242;
margin: 15px 0;
}
.widget .widget-title{
font-family: 'ColaborateBoldRegular', Arial, Helvetica, sans-serif;
font-size: 12px;
padding-bottom: 10px;
border-bottom: 1px solid #d8d8d8;
text-align: center;
margin-bottom: 15px;
}
.widget a{
color: #000;
}
.widget a:hover{
color: #7a0089;
}
.widget .post{
margin: 15px 0;
}
.widget .post .title{
font-size: 11px;
margin: 0 0 10px;
}
.widget .post p{
margin: 10px 0;
}
a:link {
color: #0d0d0d;
}
a:visited {
color: #7a0089;
}
a:active,
a:hover {
color: #7a0089;
} | 0.215929 | 0.055438 |
.ldcv {
position: fixed;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
opacity: 0;
text-align: center;
perspective: 1024px;
visibility: hidden;
}
.ldcv:before {
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
}
.ldcv:after {
content: " ";
display: inline-block;
height: 100%;
width: 0px;
vertical-align: middle;
margin-right: -0.25em;
}
.ldcv.running,
.ldcv.active {
z-index: 1;
transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.ldcv.no-shadow:before,
.ldcv.bare:before {
display: none;
}
.ldcv.active {
visibility: visible;
opacity: 1;
}
.ldcv > .base > .inner {
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
background: #fff;
padding: 0;
transform: translateZ(0);
transform-origin: 50% 50%;
transition: all 0.2s ease-in-out;
}
.ldcv > .base > .inner > .foot {
padding: 15px;
margin-top: 15px;
border-top: 1px solid #ddd;
}
.ldcv.shown > .base > .inner {
transform: none !important;
}
.ldcv > .base {
text-align: left;
z-index: 5;
max-width: 80%;
max-height: 90%;
display: inline-block;
vertical-align: middle;
}
.ldcv.default-size > .base {
width: 640px;
height: 600px;
}
.ldcv.margin-centered > .base {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
transform: initial;
perspective: 300px;
}
.ldcv.transform-centered > .base {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.ldcv.bare {
position: absolute;
width: auto;
height: auto;
}
.ldcv.bare > .base {
width: auto;
height: auto;
max-width: initial;
max-height: initial;
transform: initial;
top: initial;
left: initial;
right: initial;
bottom: initial;
position: absolute;
}
.ldcv.bare > .base > .inner {
overflow: visible;
}
.ldcv.scroll {
background: rgba(0,0,0,0.5);
overflow-y: scroll;
overflow-x: hidden;
padding-top: 50px;
padding-bottom: 50px;
}
.ldcv.scroll:before {
display: none;
}
.ldcv.scroll > .base {
max-height: initial;
}
/* if we want by default scrolling, we can add this class
.ldcv.noscroll
background: initial
overflow: auto
padding: auto
&:before
display: block
& > .base
max-height: 90%
*/
.ldcv.light:before {
background: rgba(255,255,255,0.8);
}
.ldcv.scroll.light {
background: rgba(255,255,255,0.8);
}
/*
.ldcv > .base > .inner
transform: scaleX(0.9) translateY(-40px)
.ldcv.active > .base. > .inner
transform: scaleX(1.0) translateY(0)
*/
/*
.ldcv > .base > .inner
transform: scaleX(0.9) rotateX(15deg)
transition: all 0.3s ease-in-out
.ldcv.active > .base > .inner
transform: scaleX(1.0) rotateX(0deg)
*/
.ldcv.lg > .base {
width: 960px;
height: 700px;
}
.ldcv.md > .base {
width: 720px;
height: 500px;
}
.ldcv.full > .base {
border: none;
border-radius: 0;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}
.ldcv.full > .base > .inner {
border-radius: 0;
}
.ldcv.mini {
width: auto;
height: auto;
left: auto;
top: auto;
right: auto;
bottom: auto;
}
.ldcv.mini:before,
.ldcv.mini:after {
display: none;
}
.ldcv.mini > .base {
max-width: initial;
max-height: initial;
}
.ldcv.mini > .base > .inner {
width: initial;
height: initial;
}
.ldcv.mini.left {
left: 1.25em;
}
.ldcv.mini.right {
right: 1.25em;
}
.ldcv.mini.top {
top: 1.25em;
}
.ldcv.mini.bottom {
bottom: 1.25em;
} | web/static/assets/lib/ldcover/1.3.3/ldcv.css | .ldcv {
position: fixed;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
opacity: 0;
text-align: center;
perspective: 1024px;
visibility: hidden;
}
.ldcv:before {
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
}
.ldcv:after {
content: " ";
display: inline-block;
height: 100%;
width: 0px;
vertical-align: middle;
margin-right: -0.25em;
}
.ldcv.running,
.ldcv.active {
z-index: 1;
transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.ldcv.no-shadow:before,
.ldcv.bare:before {
display: none;
}
.ldcv.active {
visibility: visible;
opacity: 1;
}
.ldcv > .base > .inner {
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
background: #fff;
padding: 0;
transform: translateZ(0);
transform-origin: 50% 50%;
transition: all 0.2s ease-in-out;
}
.ldcv > .base > .inner > .foot {
padding: 15px;
margin-top: 15px;
border-top: 1px solid #ddd;
}
.ldcv.shown > .base > .inner {
transform: none !important;
}
.ldcv > .base {
text-align: left;
z-index: 5;
max-width: 80%;
max-height: 90%;
display: inline-block;
vertical-align: middle;
}
.ldcv.default-size > .base {
width: 640px;
height: 600px;
}
.ldcv.margin-centered > .base {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
transform: initial;
perspective: 300px;
}
.ldcv.transform-centered > .base {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.ldcv.bare {
position: absolute;
width: auto;
height: auto;
}
.ldcv.bare > .base {
width: auto;
height: auto;
max-width: initial;
max-height: initial;
transform: initial;
top: initial;
left: initial;
right: initial;
bottom: initial;
position: absolute;
}
.ldcv.bare > .base > .inner {
overflow: visible;
}
.ldcv.scroll {
background: rgba(0,0,0,0.5);
overflow-y: scroll;
overflow-x: hidden;
padding-top: 50px;
padding-bottom: 50px;
}
.ldcv.scroll:before {
display: none;
}
.ldcv.scroll > .base {
max-height: initial;
}
/* if we want by default scrolling, we can add this class
.ldcv.noscroll
background: initial
overflow: auto
padding: auto
&:before
display: block
& > .base
max-height: 90%
*/
.ldcv.light:before {
background: rgba(255,255,255,0.8);
}
.ldcv.scroll.light {
background: rgba(255,255,255,0.8);
}
/*
.ldcv > .base > .inner
transform: scaleX(0.9) translateY(-40px)
.ldcv.active > .base. > .inner
transform: scaleX(1.0) translateY(0)
*/
/*
.ldcv > .base > .inner
transform: scaleX(0.9) rotateX(15deg)
transition: all 0.3s ease-in-out
.ldcv.active > .base > .inner
transform: scaleX(1.0) rotateX(0deg)
*/
.ldcv.lg > .base {
width: 960px;
height: 700px;
}
.ldcv.md > .base {
width: 720px;
height: 500px;
}
.ldcv.full > .base {
border: none;
border-radius: 0;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}
.ldcv.full > .base > .inner {
border-radius: 0;
}
.ldcv.mini {
width: auto;
height: auto;
left: auto;
top: auto;
right: auto;
bottom: auto;
}
.ldcv.mini:before,
.ldcv.mini:after {
display: none;
}
.ldcv.mini > .base {
max-width: initial;
max-height: initial;
}
.ldcv.mini > .base > .inner {
width: initial;
height: initial;
}
.ldcv.mini.left {
left: 1.25em;
}
.ldcv.mini.right {
right: 1.25em;
}
.ldcv.mini.top {
top: 1.25em;
}
.ldcv.mini.bottom {
bottom: 1.25em;
} | 0.660391 | 0.116011 |
#settings-icon {
position: absolute;
bottom: 5vh;
right: 5vh;
cursor: pointer;
background: none;
color: currentColor;
}
/* SETTINGS MENU STYLES */
#settings-container {
display: flex;
justify-content: center;
flex-direction: column;
position: fixed;
top: 0;
left: 0;
margin: 5vh 5vw;
width: 90vw;
height: 90vh;
overflow: auto;
}
.settings-panel {
color: #303842;
background: white;
margin: auto;
overflow: auto;
padding: 1.5em;
}
.settings-card {
margin: 0;
padding: 0;
}
.settings-title {
font-weight: bold;
text-align: center;
margin: 0 0 2em 0;
}
.settings-header {
margin: 2em 0 0 0;
font-variant: small-caps;
opacity: 0.5;
border-bottom: 1px solid currentColor;
}
.settings-input, .settings-button {
margin: 0 0 0 0.2em;
background-color: #30384222;
font-family: inherit;
font-size: inherit;
color: inherit;
border: none;
padding: 0.1em 0 0 0.2em;
height: 1.5em;
text-decoration: none;
/*display: inline-block;*/
float: right;
transform: translateY(-0.2em);
}
.settings-input:hover, .settings-button:hover {
background-color: #30384255;
}
.settings-button, .settings-color, .settings-reset, .settings-submit, .settings-file {
padding: 0em 0.2em;
border: 0.1em solid #303842;
}
.settings-text, .settings-url, .settings-email, .settings-tel, .settings-number, .settings-password, .settings-search, .settings-datetime-local, .settings-date, .settings-month, .settings-time, .settings-week {
border-top: none;
border-right: none;
border-left: none;
border-bottom: 0.1em solid #303842;
}
.settings-datetime-local, .settings-date, .settings-month, .settings-time, .settings-week {
padding: 0em 0em 0em 0.4em;
}
/* Date/Time Entry Icons
::-webkit-calendar-picker-indicator {
filter: invert(1);
}
*/
.settings-text, .settings-tel, .settings-search {
width: 5.663em;
}
.settings-number {
width: 3.5em;
}
.settings-checkbox, .settings-radio {
/* todo later replace with svg toggles */
width: 1.2em;
margin: 0;
border: 2px solid #303842;
}
.settings-range {
width: 7em;
height: 1em;
}
/* SCROLLBAR STYLES */
/* width */
::-webkit-scrollbar {
width: .7vw;
}
/* Track */
::-webkit-scrollbar-track {
background: #303842;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #ffffff55;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #ffffff;
}
/* Adaptive Design (todo) */
@media all and (max-width: 70rem) {
#widescreen, #mobile { opacity: 0; }
}
@media print {} | settings/style.css | #settings-icon {
position: absolute;
bottom: 5vh;
right: 5vh;
cursor: pointer;
background: none;
color: currentColor;
}
/* SETTINGS MENU STYLES */
#settings-container {
display: flex;
justify-content: center;
flex-direction: column;
position: fixed;
top: 0;
left: 0;
margin: 5vh 5vw;
width: 90vw;
height: 90vh;
overflow: auto;
}
.settings-panel {
color: #303842;
background: white;
margin: auto;
overflow: auto;
padding: 1.5em;
}
.settings-card {
margin: 0;
padding: 0;
}
.settings-title {
font-weight: bold;
text-align: center;
margin: 0 0 2em 0;
}
.settings-header {
margin: 2em 0 0 0;
font-variant: small-caps;
opacity: 0.5;
border-bottom: 1px solid currentColor;
}
.settings-input, .settings-button {
margin: 0 0 0 0.2em;
background-color: #30384222;
font-family: inherit;
font-size: inherit;
color: inherit;
border: none;
padding: 0.1em 0 0 0.2em;
height: 1.5em;
text-decoration: none;
/*display: inline-block;*/
float: right;
transform: translateY(-0.2em);
}
.settings-input:hover, .settings-button:hover {
background-color: #30384255;
}
.settings-button, .settings-color, .settings-reset, .settings-submit, .settings-file {
padding: 0em 0.2em;
border: 0.1em solid #303842;
}
.settings-text, .settings-url, .settings-email, .settings-tel, .settings-number, .settings-password, .settings-search, .settings-datetime-local, .settings-date, .settings-month, .settings-time, .settings-week {
border-top: none;
border-right: none;
border-left: none;
border-bottom: 0.1em solid #303842;
}
.settings-datetime-local, .settings-date, .settings-month, .settings-time, .settings-week {
padding: 0em 0em 0em 0.4em;
}
/* Date/Time Entry Icons
::-webkit-calendar-picker-indicator {
filter: invert(1);
}
*/
.settings-text, .settings-tel, .settings-search {
width: 5.663em;
}
.settings-number {
width: 3.5em;
}
.settings-checkbox, .settings-radio {
/* todo later replace with svg toggles */
width: 1.2em;
margin: 0;
border: 2px solid #303842;
}
.settings-range {
width: 7em;
height: 1em;
}
/* SCROLLBAR STYLES */
/* width */
::-webkit-scrollbar {
width: .7vw;
}
/* Track */
::-webkit-scrollbar-track {
background: #303842;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #ffffff55;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #ffffff;
}
/* Adaptive Design (todo) */
@media all and (max-width: 70rem) {
#widescreen, #mobile { opacity: 0; }
}
@media print {} | 0.265309 | 0.048677 |
@import url("https://fonts.googleapis.com/css?family=Nunito");
.main_header {
background-color: #bf0b24 !important;
}
.navbar-light .navbar-nav .nav-link {
color: white;
}
.x-spreadsheet-toolbar {
width: 100% !important;
}
.x-spreadsheet-sheet {
width: 100% !important;
}
.x-spreadsheet-sheet .x-spreadsheet-overlayer {
width: 100% !important;
}
.button-group button.btn {
border-radius: 0rem;
}
.button-group .btn-success {
color: #fff !important;
background-color: #218838 !important;
border-color: #218838 !important;
}
.button-group .btn-info {
color: #fff !important;
background-color: #17a2b8 !important;
border-color: #17a2b8 !important;
}
.button-group .btn-primary {
color: #fff !important;
background-color: #007bff !important;
border-color: #007bff !important;
}
.button-group .btn-danger {
color: #fff !important;
background-color: #c82333 !important;
border-color: #c82333 !important;
}
#actualVersionButton span button.btn {
border-radius: 0rem;
}
[type=file] {
height: 0;
overflow: hidden;
width: 0;
}
[type=file] label {
margin: 0;
}
[type=file] + label {
color: #fff;
cursor: pointer;
display: inline-block;
text-align: center;
margin-top: 0.5rem;
outline: none;
padding: 0.375rem 0.75rem;
position: relative;
transition: all 0.3s;
vertical-align: middle;
}
[type=file] + label.btn-3 {
border-radius: 0.25rem;
background-color: #17a2b8;
overflow: hidden;
}
[type=file] + label.btn-3 span {
display: inline-block;
height: 100%;
transition: all 0.3s;
width: 100%;
}
#panel-preview .card .card-body, #panel-actual .card .card-body {
padding: 0rem !important;
}
.btn-group-vertical button {
text-align: left;
}
.circle {
width: 80px;
height: 80px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.backgroud-green {
background: #14b966;
}
.backgroud-red {
background: #f3341b;
}
.backgroud-blue {
background: #9fe8eb;
}
.square {
width: 100px;
position: relative;
}
.circle p {
position: absolute;
left: 25%;
top: 25%;
font-size: 1.2rem;
}
.row #drag-container {
background-color: #e4e4e4;
min-height: 600px;
}
.inside_step .card {
border: none !important;
}
.card-step {
padding: 5%;
}
.card-step input {
margin-bottom: 5%;
width: 100%;
}
.card-step button.btn {
border-radius: 0rem;
}
.card-step label {
margin: 1%;
color: white;
}
.card_size {
padding: 0;
width: 7%;
}
.special_card {
padding: 0;
width: 130px;
}
.card-shadow-info {
box-shadow: 0 0 20px #3490dc !important;
}
#create-wrapper button {
border-radius: 0rem;
}
.body_table_line tr td, .head_table tr th {
text-align: center;
}
.body_table_permission tr td {
text-align: center !important;
}
.staticPosition {
position: relative !important;
z-index: 10;
}
.staticPositionDiv {
position: relative !important;
z-index: 1;
background-color: white;
}
#drag-container-wrapper {
padding: 0px;
}
#drag-container-bottom {
position: absolute;
margin-bottom: 0%;
width: 100%;
height: 100%;
background-color: white;
z-index: 1;
background-color: white;
}
/*# sourceMappingURL=app.css.map */ | resources/css/app.css | @import url("https://fonts.googleapis.com/css?family=Nunito");
.main_header {
background-color: #bf0b24 !important;
}
.navbar-light .navbar-nav .nav-link {
color: white;
}
.x-spreadsheet-toolbar {
width: 100% !important;
}
.x-spreadsheet-sheet {
width: 100% !important;
}
.x-spreadsheet-sheet .x-spreadsheet-overlayer {
width: 100% !important;
}
.button-group button.btn {
border-radius: 0rem;
}
.button-group .btn-success {
color: #fff !important;
background-color: #218838 !important;
border-color: #218838 !important;
}
.button-group .btn-info {
color: #fff !important;
background-color: #17a2b8 !important;
border-color: #17a2b8 !important;
}
.button-group .btn-primary {
color: #fff !important;
background-color: #007bff !important;
border-color: #007bff !important;
}
.button-group .btn-danger {
color: #fff !important;
background-color: #c82333 !important;
border-color: #c82333 !important;
}
#actualVersionButton span button.btn {
border-radius: 0rem;
}
[type=file] {
height: 0;
overflow: hidden;
width: 0;
}
[type=file] label {
margin: 0;
}
[type=file] + label {
color: #fff;
cursor: pointer;
display: inline-block;
text-align: center;
margin-top: 0.5rem;
outline: none;
padding: 0.375rem 0.75rem;
position: relative;
transition: all 0.3s;
vertical-align: middle;
}
[type=file] + label.btn-3 {
border-radius: 0.25rem;
background-color: #17a2b8;
overflow: hidden;
}
[type=file] + label.btn-3 span {
display: inline-block;
height: 100%;
transition: all 0.3s;
width: 100%;
}
#panel-preview .card .card-body, #panel-actual .card .card-body {
padding: 0rem !important;
}
.btn-group-vertical button {
text-align: left;
}
.circle {
width: 80px;
height: 80px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.backgroud-green {
background: #14b966;
}
.backgroud-red {
background: #f3341b;
}
.backgroud-blue {
background: #9fe8eb;
}
.square {
width: 100px;
position: relative;
}
.circle p {
position: absolute;
left: 25%;
top: 25%;
font-size: 1.2rem;
}
.row #drag-container {
background-color: #e4e4e4;
min-height: 600px;
}
.inside_step .card {
border: none !important;
}
.card-step {
padding: 5%;
}
.card-step input {
margin-bottom: 5%;
width: 100%;
}
.card-step button.btn {
border-radius: 0rem;
}
.card-step label {
margin: 1%;
color: white;
}
.card_size {
padding: 0;
width: 7%;
}
.special_card {
padding: 0;
width: 130px;
}
.card-shadow-info {
box-shadow: 0 0 20px #3490dc !important;
}
#create-wrapper button {
border-radius: 0rem;
}
.body_table_line tr td, .head_table tr th {
text-align: center;
}
.body_table_permission tr td {
text-align: center !important;
}
.staticPosition {
position: relative !important;
z-index: 10;
}
.staticPositionDiv {
position: relative !important;
z-index: 1;
background-color: white;
}
#drag-container-wrapper {
padding: 0px;
}
#drag-container-bottom {
position: absolute;
margin-bottom: 0%;
width: 100%;
height: 100%;
background-color: white;
z-index: 1;
background-color: white;
}
/*# sourceMappingURL=app.css.map */ | 0.370339 | 0.068881 |
.mapp.ios {
margin-left: 0;
padding-right: 65%;
}
.mapp {
margin-left: 55%;
padding-right: 5%;
}
.mapp h1.heading {
margin-bottom: 30px;
color: #fff;
opacity: 0.8;
}
.mapp h1.heading span {
padding-left: 10%;
}
.mapp ul li {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.mapp ul li span.icon {
padding-right: 15px;
width: 120px;
}
.mapp ul li span.text {
color: #fff;
font-size: 24px;
width: 100%;
font-family: 'clarkson2';
line-height: 1.2;
}
.mapp ul li span.icon img {
border: 2px solid #03ebf0;
border-radius: 100%;
padding: 10px;
background-color: #000;
}
/*=== 1024px && 1279px ===*/
@media (min-width: 1024px) and (max-width: 1279px){
.mapp {
margin-left: 40%;
}
.single-template {
background-position: center center !important;
min-height: auto !important;
}
.mapp {
padding: 30px;
background-color: #1987b8d6;
border-radius: 15px;
margin: 0;
}
.mapp.ios {
margin-left: 0;
padding-right: 0;
padding-right: 33%;
background-color: #281c4af2;
padding: 30px;
border-radius: 15px;
}
.mapp.react {
background-color: #030f1bd9;
}
}
/*=== 1023px ===*/
@media (max-width: 1023px){
.single-template {
background-position: center center !important;
min-height: auto !important;
}
.mapp {
padding: 30px;
background-color: #1987b8d6;
border-radius: 15px;
margin: 0;
}
.mapp.ios {
margin-left: 0;
padding-right: 0;
padding-right: 33%;
background-color: #281c4af2;
padding: 30px;
border-radius: 15px;
}
.mapp.react {
background-color: #030f1bd9;
}
}
/*=== 767px ===*/
@media (max-width: 767px){
.mapp ul {
margin-bottom: 25px;
}
.mapp h1.heading {
opacity: 1;
}
.mapp h1.heading span {
padding-left: 0;
}
.mapp ul li {
margin-bottom: 5px;
}
.mapp ul li span.icon {
width: 55px;
padding-right: 5px;
}
.mapp ul li span.text {
font-size: 18px;
}
.mapp ul li span.icon img {
padding: 5px;
}
}
/*=== 460px ===*/
@media (max-width: 460px){
.mapp {
padding: 10px 10px 30px;
}
.mapp h1.heading {
margin-bottom: 10px;
}
} | assets/css/single-mapp.css | .mapp.ios {
margin-left: 0;
padding-right: 65%;
}
.mapp {
margin-left: 55%;
padding-right: 5%;
}
.mapp h1.heading {
margin-bottom: 30px;
color: #fff;
opacity: 0.8;
}
.mapp h1.heading span {
padding-left: 10%;
}
.mapp ul li {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.mapp ul li span.icon {
padding-right: 15px;
width: 120px;
}
.mapp ul li span.text {
color: #fff;
font-size: 24px;
width: 100%;
font-family: 'clarkson2';
line-height: 1.2;
}
.mapp ul li span.icon img {
border: 2px solid #03ebf0;
border-radius: 100%;
padding: 10px;
background-color: #000;
}
/*=== 1024px && 1279px ===*/
@media (min-width: 1024px) and (max-width: 1279px){
.mapp {
margin-left: 40%;
}
.single-template {
background-position: center center !important;
min-height: auto !important;
}
.mapp {
padding: 30px;
background-color: #1987b8d6;
border-radius: 15px;
margin: 0;
}
.mapp.ios {
margin-left: 0;
padding-right: 0;
padding-right: 33%;
background-color: #281c4af2;
padding: 30px;
border-radius: 15px;
}
.mapp.react {
background-color: #030f1bd9;
}
}
/*=== 1023px ===*/
@media (max-width: 1023px){
.single-template {
background-position: center center !important;
min-height: auto !important;
}
.mapp {
padding: 30px;
background-color: #1987b8d6;
border-radius: 15px;
margin: 0;
}
.mapp.ios {
margin-left: 0;
padding-right: 0;
padding-right: 33%;
background-color: #281c4af2;
padding: 30px;
border-radius: 15px;
}
.mapp.react {
background-color: #030f1bd9;
}
}
/*=== 767px ===*/
@media (max-width: 767px){
.mapp ul {
margin-bottom: 25px;
}
.mapp h1.heading {
opacity: 1;
}
.mapp h1.heading span {
padding-left: 0;
}
.mapp ul li {
margin-bottom: 5px;
}
.mapp ul li span.icon {
width: 55px;
padding-right: 5px;
}
.mapp ul li span.text {
font-size: 18px;
}
.mapp ul li span.icon img {
padding: 5px;
}
}
/*=== 460px ===*/
@media (max-width: 460px){
.mapp {
padding: 10px 10px 30px;
}
.mapp h1.heading {
margin-bottom: 10px;
}
} | 0.240061 | 0.15131 |
@font-face {
font-family: "TrueBoldSpecial";
font-style: normal;
font-weight: normal;
font-display: swap;
src: url("/static/fonts/Brandon_bld.otf") format("embedded-opentype"),
url("/static/fonts/Brandon_med_it.otf") format("embedded-opentype"),
url("/static/fonts/Brandon_reg.otf") format("woff2");
/* url("/static/fonts/TrueBoldSpecial/true_bold_special-webfont.woff")
format("woff"),
url("/static/fonts/TrueBoldSpecial/true_bold_special-webfont.ttf")
format("truetype"); */
}
html { font-family: TrueBoldSpecial; }
.ui.menu {
border-radius: 0px !important;
}
/* Make clicks pass-through */
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: #058dfc;
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
/* Fancy blur effect */
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #058dfc, 0 0 5px #058dfc;
opacity: 1;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
display: block;
position: fixed;
z-index: 1031;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: #058dfc;
border-left-color: #058dfc;
border-radius: 50%;
-webkit-animation: nprogress-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes nprogress-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} | public/nprogress.css | @font-face {
font-family: "TrueBoldSpecial";
font-style: normal;
font-weight: normal;
font-display: swap;
src: url("/static/fonts/Brandon_bld.otf") format("embedded-opentype"),
url("/static/fonts/Brandon_med_it.otf") format("embedded-opentype"),
url("/static/fonts/Brandon_reg.otf") format("woff2");
/* url("/static/fonts/TrueBoldSpecial/true_bold_special-webfont.woff")
format("woff"),
url("/static/fonts/TrueBoldSpecial/true_bold_special-webfont.ttf")
format("truetype"); */
}
html { font-family: TrueBoldSpecial; }
.ui.menu {
border-radius: 0px !important;
}
/* Make clicks pass-through */
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: #058dfc;
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
/* Fancy blur effect */
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #058dfc, 0 0 5px #058dfc;
opacity: 1;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
display: block;
position: fixed;
z-index: 1031;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: #058dfc;
border-left-color: #058dfc;
border-radius: 50%;
-webkit-animation: nprogress-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes nprogress-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} | 0.337968 | 0.079139 |
d-article a.undecorated {
border-bottom: none;
}
.subgrid {
grid-column: screen;
display: grid;
grid-template-columns: inherit;
grid-template-rows: inherit;
grid-column-gap: inherit;
grid-row-gap: inherit;
}
d-figure.base-grid {
grid-column: screen;
background: hsl(0, 0%, 97%);
padding: 20px 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
d-figure {
margin-top: 1.5em;
margin-bottom: 2.5em;
position: relative;
}
d-figure > figure {
margin-top: 0;
margin-bottom: 0;
}
d-title > figure:last-child {
margin-bottom: 1.5em;
}
a.section-number::before {
content: "Section ";
}
a.figure-number::before {
content: "Figure ";
}
a.figure-number,
a.section-number {
border-bottom-color: hsla(206, 90%, 20%, 0.3);
text-transform: uppercase;
font-size: 0.85em;
color: hsla(206, 90%, 20%, 0.7);
}
a.figure-number:hover,
a.section-number:hover {
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: hsla(206, 90%, 20%, 0.7);
}
.shaded-figure {
background-color: hsl(0, 0%, 97%);
border-top: 1px solid hsla(0, 0%, 0%, 0.1);
border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
padding: 30px 0;
}
.pointer {
position: absolute;
width: 26px;
height: 26px;
top: 26px;
left: -48px;
}
.todo {
padding: 0.5em;
background-color: hsla(50, 100%, 50%, 0.25);
border: 1px solid hsla(50, 100%, 50%, 0.5);
border-radius: 4px;
color: hsl(45, 100%, 20%);
}
.todo::before {
display: inline-block;
content: "⚠️";
vertical-align: baseline;
position: relative;
font-size: 135%;
top: 4px;
margin: 0 0.25em;
text-decoration: none !important;
}
.todo.done::before {
content: "✅";
}
.todo.done {
background-color: hsla(120, 20%, 60%, 0.25);
border: 1px solid hsla(120, 20%, 60%, 0.5);
color: hsl(45, 0%, 20%);
text-decoration: line-through;
text-decoration-color: hsla(45, 0%, 20%, 50%);
}
/* Color Legends */
.color-legend {
display: inline-block;
width: 64px;
width: 4em;
height: 8px;
height: calc(1ex + 1px);
position: relative;
bottom: 1px;
vertical-align: baseline;
}
.color-legend.viridis {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAA7ElEQVQ4T4WRi23EMAxDSXu1jtD9R4kPIiVbTosWh0Ci+PRJjl/8XuAAB9EjpAmOoYgdCXKg/MsLTmzGN9e8pRzm83nXulZO8yv7VuqoF1tceY7QTZW/vR9a82Nm7ssZd3/5uXvzvbczeUfjFn6p1b3/zDv3xZCzp9f3u3Ptd7/6tCu9vMU9K7913Wfdvfg7Lg5mmL0nmgvtv/lw/rzHGzs3W3rgpZML394Sez34q/aY3cyDubW9KS9zeVWv2qP+KebZfPXNxospFt5lP/pqd0TrYjVLfs13n3f4RudwBDCVM/OITE1Mho5f5M4+UeiJCh70oMIAAAAASUVORK5CYII=");
background-size: contain;
}
.color-legend.pn {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAACCAIAAABnm03uAAAAL0lEQVR4nGNkqP/PwcKAB3Gy4pXFq5eDhYGV4TfDnx940Xd8sr/xyv75wcQwxAEA8tZAggq3EssAAAAASUVORK5CYII=");
background-size: contain;
}
.legend-label {
padding: 1px 4px;
border-radius: 2px;
color: rgba(0, 0, 0, 0.8);
}
.legend-label.support {
background-color: #EE880088;
}
.legend-label.inhibit {
background-color: #0088EE88;
}
.legend-label.support-rb {
color: white;
background-color: #CE1E34CC;
}
.legend-label.inhibit-rb {
color: white;
background-color: #0571B0CC;
}
#figure-3 > figure {
display: grid;
grid-row-gap: 0.5em;
}
/* ************
* Thread Info
* ************/
.thread-info {
background-color: hsl(54, 78%, 96%);
border-left: solid hsl(54, 33%, 67%) 1px;
padding: 1em;
color: hsla(0, 0%, 0%, 0.67);
}
#thread-nav {
margin-top: 20;
margin-bottom: 1.5rem;
display: grid;
grid-template-columns: 45px 2fr 3fr;
grid-template-areas:
"icon explanation explanation "
"icon prev next";
grid-column-gap: 1.5em;
}
@media (min-width: 768px){
#thread-nav {
grid-template-columns: 65px 2fr 3fr;
}
}
#thread-nav .icon {
grid-area: icon;
padding: 0.5em;
justify-self: center;
}
#thread-nav .explanation {
grid-area: explanation;
font-size: 85%;
color: hsl(0, 0%, 0.33);
}
#thread-nav .prev {
grid-area: prev;
}
#thread-nav .prev::before {
content: "← Previous Article";
}
#thread-nav .overview {
scroll-behavior: smooth;
}
#thread-nav .overview::before {
content: "↑";
white-space: nowrap;
margin-right: 0.5em;
}
#thread-nav .next {
grid-area: next;
scroll-behavior: smooth;
}
#thread-nav .next::before {
content: "Next Article →";
}
#thread-nav .next::before, #thread-nav .prev::before {
display: block;
white-space: nowrap;
padding: 0.5em 0;
font-size: 80%;
font-weight: bold;
margin-top: 0px;
margin-right: 0.5em;
text-transform: uppercase;
}
#thread-nav .prev,
#thread-nav .next,
#thread-nav .overview {
font-size: 80%;
line-height: 1.5em;
font-weight: 600;
border-bottom: none;
color: #2e6db7;
/* margin-top: 0.25em; */
letter-spacing: 0.25px;
} | static/styles.css | d-article a.undecorated {
border-bottom: none;
}
.subgrid {
grid-column: screen;
display: grid;
grid-template-columns: inherit;
grid-template-rows: inherit;
grid-column-gap: inherit;
grid-row-gap: inherit;
}
d-figure.base-grid {
grid-column: screen;
background: hsl(0, 0%, 97%);
padding: 20px 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
d-figure {
margin-top: 1.5em;
margin-bottom: 2.5em;
position: relative;
}
d-figure > figure {
margin-top: 0;
margin-bottom: 0;
}
d-title > figure:last-child {
margin-bottom: 1.5em;
}
a.section-number::before {
content: "Section ";
}
a.figure-number::before {
content: "Figure ";
}
a.figure-number,
a.section-number {
border-bottom-color: hsla(206, 90%, 20%, 0.3);
text-transform: uppercase;
font-size: 0.85em;
color: hsla(206, 90%, 20%, 0.7);
}
a.figure-number:hover,
a.section-number:hover {
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: hsla(206, 90%, 20%, 0.7);
}
.shaded-figure {
background-color: hsl(0, 0%, 97%);
border-top: 1px solid hsla(0, 0%, 0%, 0.1);
border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
padding: 30px 0;
}
.pointer {
position: absolute;
width: 26px;
height: 26px;
top: 26px;
left: -48px;
}
.todo {
padding: 0.5em;
background-color: hsla(50, 100%, 50%, 0.25);
border: 1px solid hsla(50, 100%, 50%, 0.5);
border-radius: 4px;
color: hsl(45, 100%, 20%);
}
.todo::before {
display: inline-block;
content: "⚠️";
vertical-align: baseline;
position: relative;
font-size: 135%;
top: 4px;
margin: 0 0.25em;
text-decoration: none !important;
}
.todo.done::before {
content: "✅";
}
.todo.done {
background-color: hsla(120, 20%, 60%, 0.25);
border: 1px solid hsla(120, 20%, 60%, 0.5);
color: hsl(45, 0%, 20%);
text-decoration: line-through;
text-decoration-color: hsla(45, 0%, 20%, 50%);
}
/* Color Legends */
.color-legend {
display: inline-block;
width: 64px;
width: 4em;
height: 8px;
height: calc(1ex + 1px);
position: relative;
bottom: 1px;
vertical-align: baseline;
}
.color-legend.viridis {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAYAAAAxWXB3AAAA7ElEQVQ4T4WRi23EMAxDSXu1jtD9R4kPIiVbTosWh0Ci+PRJjl/8XuAAB9EjpAmOoYgdCXKg/MsLTmzGN9e8pRzm83nXulZO8yv7VuqoF1tceY7QTZW/vR9a82Nm7ssZd3/5uXvzvbczeUfjFn6p1b3/zDv3xZCzp9f3u3Ptd7/6tCu9vMU9K7913Wfdvfg7Lg5mmL0nmgvtv/lw/rzHGzs3W3rgpZML394Sez34q/aY3cyDubW9KS9zeVWv2qP+KebZfPXNxospFt5lP/pqd0TrYjVLfs13n3f4RudwBDCVM/OITE1Mho5f5M4+UeiJCh70oMIAAAAASUVORK5CYII=");
background-size: contain;
}
.color-legend.pn {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAACCAIAAABnm03uAAAAL0lEQVR4nGNkqP/PwcKAB3Gy4pXFq5eDhYGV4TfDnx940Xd8sr/xyv75wcQwxAEA8tZAggq3EssAAAAASUVORK5CYII=");
background-size: contain;
}
.legend-label {
padding: 1px 4px;
border-radius: 2px;
color: rgba(0, 0, 0, 0.8);
}
.legend-label.support {
background-color: #EE880088;
}
.legend-label.inhibit {
background-color: #0088EE88;
}
.legend-label.support-rb {
color: white;
background-color: #CE1E34CC;
}
.legend-label.inhibit-rb {
color: white;
background-color: #0571B0CC;
}
#figure-3 > figure {
display: grid;
grid-row-gap: 0.5em;
}
/* ************
* Thread Info
* ************/
.thread-info {
background-color: hsl(54, 78%, 96%);
border-left: solid hsl(54, 33%, 67%) 1px;
padding: 1em;
color: hsla(0, 0%, 0%, 0.67);
}
#thread-nav {
margin-top: 20;
margin-bottom: 1.5rem;
display: grid;
grid-template-columns: 45px 2fr 3fr;
grid-template-areas:
"icon explanation explanation "
"icon prev next";
grid-column-gap: 1.5em;
}
@media (min-width: 768px){
#thread-nav {
grid-template-columns: 65px 2fr 3fr;
}
}
#thread-nav .icon {
grid-area: icon;
padding: 0.5em;
justify-self: center;
}
#thread-nav .explanation {
grid-area: explanation;
font-size: 85%;
color: hsl(0, 0%, 0.33);
}
#thread-nav .prev {
grid-area: prev;
}
#thread-nav .prev::before {
content: "← Previous Article";
}
#thread-nav .overview {
scroll-behavior: smooth;
}
#thread-nav .overview::before {
content: "↑";
white-space: nowrap;
margin-right: 0.5em;
}
#thread-nav .next {
grid-area: next;
scroll-behavior: smooth;
}
#thread-nav .next::before {
content: "Next Article →";
}
#thread-nav .next::before, #thread-nav .prev::before {
display: block;
white-space: nowrap;
padding: 0.5em 0;
font-size: 80%;
font-weight: bold;
margin-top: 0px;
margin-right: 0.5em;
text-transform: uppercase;
}
#thread-nav .prev,
#thread-nav .next,
#thread-nav .overview {
font-size: 80%;
line-height: 1.5em;
font-weight: 600;
border-bottom: none;
color: #2e6db7;
/* margin-top: 0.25em; */
letter-spacing: 0.25px;
} | 0.381335 | 0.111773 |
.feed_cont {float:left;width:635px;margin:0 30px 0;}
/*动态发布*/
.feed_post {width:100%;margin-bottom:20px;padding:30px 40px;border-radius:3px;background:white;}
.feed_post .input-wrap {position: relative;width: 100%;min-height: 158px;}
.feed_post .input-wrap .post_textarea {display: block;position: absolute;width:100%;height:100%;overflow: hidden auto;outline: none;resize: none;white-space: pre-wrap;cursor: auto;padding: 10px;z-index: 101;top: 0;border: 1px solid #ededed;background-color: #f3f6f7;}
.feed_post .input-wrap #mirror {z-index: 101;}
.feed_post .input-wrap #feed_content {z-index: 102;}
.feed_post .input-wrap .dy_cs {position:absolute;right:15px;bottom:10px;font-size:12px;z-index: 109;}
.feed_post #mention_list {position: absolute;background-color: #fff;z-index: 105;display: none;padding: 8px;border: 1px solid #ccc;border-radius: 2px;box-shadow: 0 2px 8px 1px rgba(0, 0, 9, .2);}
.feed_post #mention_list .list-content,
.feed_post #mention_list .list-title {font-size: 12px;cursor: pointer;list-style: none;}
.feed_post #mention_list .list-content.active {color: #59b6d7; background-color: #fff;}
.feed_post .post_extra {position:relative;line-height:31px;margin-top:10px;}
.feed_post .post_extra span {cursor:pointer;line-height:37px;display:inline-block;color:#666;}
.feed_post .post_extra svg {display:inline-block;margin-right:2px;margin-bottom:2px;font-size:20px;}
.feed_post .topic-btn,
.feed_post .mention-btn {position: relative;}
.feed_post .topic-btn .dialog-topic-select,
.feed_post .mention-btn .dialog-mention-select {position: absolute;display: flex;left: 0;top: 100%;width: 400px;height: 300px;z-index: 10;padding: 20px 40px;background-color: #fff;box-shadow: 0px 2px 9px 0px rgba(22, 23, 23, 0.09);flex-direction: column;cursor: default;}
.feed_post .post_button {line-height:32px;float:right;width:85px;height:32px;text-align:center;color:#fff;border:0;border-radius:3px;background:#59b6d7;/* margin-right:40px;.del_huifu */}
.feed_post .feed_select {float:right;margin-right:10px;font-size:14px;color:#666;}
.feed_post .feed_select i {margin-top:10px;}
.feed_post .feed_select ul {margin-top:0px;padding:10px 0px 5px;width:100px}
.feed_post .feed_select ul li {margin-bottom:10px;}
.feed_post .feed_picture {display:none;overflow:hidden;height:60px;margin-top:20px;}
.feed_post .feed_picture_span {position:relative;display:inline-block;float:left;width:59px;height:59px;margin-right:3px;border:1px solid #ededed;}
.uploadify-queue-add {background-image:url(../images/picture-add.png);background-repeat:no-repeat;background-size:cover;}
.feed_picture_span .imgload {position:absolute;top:18px;left:18px;transform:translateY(-50%) translateX(-50%);-webkit-animation:icon-load 1.5s infinite linear;animation:icon-load 1.5s infinite linear;}
@-webkit-keyframes icon-load {from {-webkit-transform:rotate(0deg);transform:rotate(0deg);}
to {-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
@keyframes icon-load {from {-webkit-transform:rotate(0deg);transform:rotate(0deg);}
to {-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
.feed_picture_span .imgloaded {width:59px;height:59px;}
.feed_picture_span span {line-height:8px;position:absolute;right:5px;bottom:5px;display:inline-block;width:14px;height:14px;text-align:center;border-radius:50%;background:#000;}
.feed_picture_span svg {fill:#fff;font-size:14px !important;cursor:pointer;}
.feed_picture_span span {display:none;}
.feed_picture_span:hover span {display:block;}
.feed_picture .feed_picture_span:last-child {margin-right:0 !important;}
.feed_picture_span_img {width:59px;height:59px;}
/*动态分类*/
.feed_content {width:100%;padding:22px 40px;border-radius:3px;background:white;}
.feed_content .feed_menu a {color:#999;}
.feed_content .feed_menu a {margin-right:20px;}
.feed_content .feed_menu a:hover {color:#333;}
.feed_content .feed_menu .selected {color:#333 !important;}
/*动态右侧*/
.feed_right {float:left;width:235px;}
/*动态列表*/
.feed_item .feed_title {margin-top:30px;}
.feed_item .feed_title .feed_uname {display:inline-block;margin-left:20px;color:#333;}
.feed_item .feed_title .date {float:right;margin-top:17px;color:#ccc;text-align:right;}
.feed_item .feed_title .date>span {min-width:60px;}
.feed_item .feed_title .date>span:first-child {display:inline-block;}
.feed_item .feed_title .pinned {float:right;margin-top:19px;color:#67b595;margin-right:10px;}
.feed_item .feed_body {text-align:left;word-wrap:break-word;word-break:break-all;}
.feed_item .feed_body .feed_text {font-size:14px;line-height:24px;display:-webkit-box;overflow:hidden;margin:15px 0;word-break:break-word;color:#666;-webkit-line-clamp:3;-webkit-box-orient:vertical;}
.feed_item .feed_body .feed_text .more {color:#59b6d7;}
.feed_item .feed_body .feed_pay_text {cursor:pointer;text-shadow:0 0 8px #000;color:rgba(255,255,255,0);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
.feed_item .feed_body .feed_images {position:relative;margin-bottom:8px;}
.feed_item .feed_body .feed_images img {cursor:url(../images/big.cur),pointer;}
.feed_item .feed_body .more_count_div{position:absolute;width:33.3%;height:33.3%;right:1px;top: 66.6%;background: #000;opacity: 0.2;border:1px solid #fff;}
.feed_item .feed_body .more_count{position:absolute;right:65px;top:420px;color:#fff;font-size:56px;}
/* 多图片样式 */
.image_box_one {position: relative;display: inline-block;}
.image_box {position:relative;left:-1px;overflow:hidden;margin-bottom:2px;padding:0 2px;}
.image_box .per_image {position:absolute;top:0;left:2px;width:100%;height:100%;object-fit:cover;}
.image_box .gif_badge, .image_box_one .gif_badge {position: absolute;bottom: 0;right: 0;background-color: #5dc8ab;color: #fff;font-size: 80%;padding: 1px 4px;}
.image_box .long_badge {position: absolute;bottom: 0;right: 0;background-color: #c8a06c;color: #fff;font-size: 80%;padding: 1px 4px;}
.image_box.playing .gif_badge{display: none;}
.image_box:before {display:block;padding-top:100%;content:'';}
.feed_item .feed_bottom {margin-top:20px;}
.feed_item .feed_bottom .feed_datas {position:relative;clear:both;margin-top: 20px;}
.feed_datas .collect,
.feed_datas .digg,
.feed_datas .comment,
.feed_datas .view {font-size:14px;display:inline-block;margin-right:50px;cursor:pointer;color:#ccc;}
.feed_datas svg {font-size:24px;vertical-align:-7px;}
.comments_box .line {margin-top:5px;}
.comments_box .comment_body {font-size:12px;color:#999;}
.feed_line {width:100%;height:6px;margin:30px auto;background:#f3f6f7;}
.dy_comit p {margin-bottom:16px;word-break:break-all;}
.dy_comit span {color:#333;}
.comit_all {color:#333;}
/*动态详情*/
.feed_left {position:relative;width:815px;background:#fff;margin-right:30px;padding:20px 40px;}
.detail_images {background:#f3f6f7;position:relative;}
.detail_images img {display:block;max-width:675px;margin:10px auto;}
.detail_body {margin:20px 0;word-break:break-all;text-align:justify;line-height:24px;letter-spacing:1px;color:#666;font-size:14px;}
.detail_body a {color:#59b6d7;}
.detail_share {padding-bottom:40px;border-bottom:1px solid #ededed;}
.detail_share span a {font-size:14px;line-height:40px;display:inline-block;width:120px;text-align:center;color:#666;border:1px solid #ededed;border-radius:3px;}
.detail_share span a.act {color:#59b6d7;border:1px solid #59b6d7;}
.detail_share span i {font-size:18px;margin-right:8px;vertical-align:-1px;}
.detail_share span:first-child {margin-right:10px;}
/* 右边 */
.right_about {width:100%;background-color:#fff;margin-bottom:30px}
.right_about .info {display:flex;padding:30px 30px 15px 15px;}
.right_about .info .auth_header {position:relative;float:left;overflow:hidden;width:60px;height:60px;line-height:60px;text-align:center;flex-grow:0;flex-shrink:0;}
.info .auth_header .role-icon {position:absolute;right:4px;bottom:1px;width:18px;height:18px;border-radius:50%;}
.auth_info {width:125px;float:left;margin-left:15px;}
.auth_info .info_name a {display:block;margin-bottom:10px;margin-top:5px;font-size:16px;color:#333;}
.auth_info .info_bio {font-size:14px;max-height:44px;line-height:22px;color:#999;margin-top:10px;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;display:-webkit-box;text-overflow: ellipsis;word-break: break-all;word-wrap: break-word}
.right_about .auth_fans {font-size:0;}
.right_about .auth_fans li {display:inline-block;border-top:1px solid #ededed;width:50%;height:49px;line-height:47px;font-size:14px;text-align:center;}
.right_about .auth_fans li:nth-child(even) {border-left:1px solid #ededed;}
.right_about .auth_fans li a>span {color:#000;margin-left:3px;font-size:18px;}
/*动态付费弹窗*/
.feed_pay_box {width:587px;}
.feed_pay_box .pay_title {font-size:20px;font-weight:500;}
.feed_pay_box .pay_images {width:100%;}
.feed_pay_box .pay_images .pay_image {display:inline-block;position:relative;margin-right:3px;}
.feed_pay_box .pay_images .pay_image img {width:59px;height:59px;display:inline-block;box-sizing:border-box;}
.feed_pay_box .pay_images .pay_image svg {position:absolute;top:0;left:0;bottom:0;right:0;margin:auto;width:20px;height:20px;fill:white;}
.feed_pay_box .pay_images .pay_image img.current {border:1px solid #59b6d7;}
.feed_pay_box .pay_images .triangle {margin-top:8px;margin-left:23px;border-bottom:8px solid #f3f6f7;}
.feed_pay_box .pay_info {padding:20px;background:#f3f6f7;font-size:14px;}
.feed_pay_box .pay_info .pay_head {width:100%;}
.feed_pay_box .pay_info .pay_head span {cursor:pointer;}
.feed_pay_box .pay_info .pay_head .pay_text {float:left;}
.feed_pay_box .pay_info .pay_head .pay_btn {margin-left:20px;float:right}
.feed_pay_box .pay_info .pay_head .pay_btn_yes {color:#59b6d7;}
.feed_pay_box .pay_info .pay_body {margin-top:10px;}
.feed_pay_box .pay_info .pay_body span {cursor:pointer;text-align:center;display:inline-block;width:78px;height:28px;line-height:28px;border:1px solid #ccc;color:#666;margin-right:10px;}
.feed_pay_box .pay_info .pay_body span.current {border:1px solid #59b6d7;color:#59b6d7;}
.feed_pay_box .pay_info .pay_body input {margin-left:20px;outline:none;text-indent:10px;background-color:transparent;height:28px;line-height:28px;width:263px;border:1px solid #ccc;vertical-align:bottom;border-radius:5px;}
.feed_left .user-box {padding-bottom:20px;border-bottom:1px solid #ededed;}
.feed_left .u-tt {font-weight:normal;font-size:28px;} | packages/zhiyicx-plus-pc/resources/assets/web/css/feed.css | .feed_cont {float:left;width:635px;margin:0 30px 0;}
/*动态发布*/
.feed_post {width:100%;margin-bottom:20px;padding:30px 40px;border-radius:3px;background:white;}
.feed_post .input-wrap {position: relative;width: 100%;min-height: 158px;}
.feed_post .input-wrap .post_textarea {display: block;position: absolute;width:100%;height:100%;overflow: hidden auto;outline: none;resize: none;white-space: pre-wrap;cursor: auto;padding: 10px;z-index: 101;top: 0;border: 1px solid #ededed;background-color: #f3f6f7;}
.feed_post .input-wrap #mirror {z-index: 101;}
.feed_post .input-wrap #feed_content {z-index: 102;}
.feed_post .input-wrap .dy_cs {position:absolute;right:15px;bottom:10px;font-size:12px;z-index: 109;}
.feed_post #mention_list {position: absolute;background-color: #fff;z-index: 105;display: none;padding: 8px;border: 1px solid #ccc;border-radius: 2px;box-shadow: 0 2px 8px 1px rgba(0, 0, 9, .2);}
.feed_post #mention_list .list-content,
.feed_post #mention_list .list-title {font-size: 12px;cursor: pointer;list-style: none;}
.feed_post #mention_list .list-content.active {color: #59b6d7; background-color: #fff;}
.feed_post .post_extra {position:relative;line-height:31px;margin-top:10px;}
.feed_post .post_extra span {cursor:pointer;line-height:37px;display:inline-block;color:#666;}
.feed_post .post_extra svg {display:inline-block;margin-right:2px;margin-bottom:2px;font-size:20px;}
.feed_post .topic-btn,
.feed_post .mention-btn {position: relative;}
.feed_post .topic-btn .dialog-topic-select,
.feed_post .mention-btn .dialog-mention-select {position: absolute;display: flex;left: 0;top: 100%;width: 400px;height: 300px;z-index: 10;padding: 20px 40px;background-color: #fff;box-shadow: 0px 2px 9px 0px rgba(22, 23, 23, 0.09);flex-direction: column;cursor: default;}
.feed_post .post_button {line-height:32px;float:right;width:85px;height:32px;text-align:center;color:#fff;border:0;border-radius:3px;background:#59b6d7;/* margin-right:40px;.del_huifu */}
.feed_post .feed_select {float:right;margin-right:10px;font-size:14px;color:#666;}
.feed_post .feed_select i {margin-top:10px;}
.feed_post .feed_select ul {margin-top:0px;padding:10px 0px 5px;width:100px}
.feed_post .feed_select ul li {margin-bottom:10px;}
.feed_post .feed_picture {display:none;overflow:hidden;height:60px;margin-top:20px;}
.feed_post .feed_picture_span {position:relative;display:inline-block;float:left;width:59px;height:59px;margin-right:3px;border:1px solid #ededed;}
.uploadify-queue-add {background-image:url(../images/picture-add.png);background-repeat:no-repeat;background-size:cover;}
.feed_picture_span .imgload {position:absolute;top:18px;left:18px;transform:translateY(-50%) translateX(-50%);-webkit-animation:icon-load 1.5s infinite linear;animation:icon-load 1.5s infinite linear;}
@-webkit-keyframes icon-load {from {-webkit-transform:rotate(0deg);transform:rotate(0deg);}
to {-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
@keyframes icon-load {from {-webkit-transform:rotate(0deg);transform:rotate(0deg);}
to {-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
.feed_picture_span .imgloaded {width:59px;height:59px;}
.feed_picture_span span {line-height:8px;position:absolute;right:5px;bottom:5px;display:inline-block;width:14px;height:14px;text-align:center;border-radius:50%;background:#000;}
.feed_picture_span svg {fill:#fff;font-size:14px !important;cursor:pointer;}
.feed_picture_span span {display:none;}
.feed_picture_span:hover span {display:block;}
.feed_picture .feed_picture_span:last-child {margin-right:0 !important;}
.feed_picture_span_img {width:59px;height:59px;}
/*动态分类*/
.feed_content {width:100%;padding:22px 40px;border-radius:3px;background:white;}
.feed_content .feed_menu a {color:#999;}
.feed_content .feed_menu a {margin-right:20px;}
.feed_content .feed_menu a:hover {color:#333;}
.feed_content .feed_menu .selected {color:#333 !important;}
/*动态右侧*/
.feed_right {float:left;width:235px;}
/*动态列表*/
.feed_item .feed_title {margin-top:30px;}
.feed_item .feed_title .feed_uname {display:inline-block;margin-left:20px;color:#333;}
.feed_item .feed_title .date {float:right;margin-top:17px;color:#ccc;text-align:right;}
.feed_item .feed_title .date>span {min-width:60px;}
.feed_item .feed_title .date>span:first-child {display:inline-block;}
.feed_item .feed_title .pinned {float:right;margin-top:19px;color:#67b595;margin-right:10px;}
.feed_item .feed_body {text-align:left;word-wrap:break-word;word-break:break-all;}
.feed_item .feed_body .feed_text {font-size:14px;line-height:24px;display:-webkit-box;overflow:hidden;margin:15px 0;word-break:break-word;color:#666;-webkit-line-clamp:3;-webkit-box-orient:vertical;}
.feed_item .feed_body .feed_text .more {color:#59b6d7;}
.feed_item .feed_body .feed_pay_text {cursor:pointer;text-shadow:0 0 8px #000;color:rgba(255,255,255,0);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
.feed_item .feed_body .feed_images {position:relative;margin-bottom:8px;}
.feed_item .feed_body .feed_images img {cursor:url(../images/big.cur),pointer;}
.feed_item .feed_body .more_count_div{position:absolute;width:33.3%;height:33.3%;right:1px;top: 66.6%;background: #000;opacity: 0.2;border:1px solid #fff;}
.feed_item .feed_body .more_count{position:absolute;right:65px;top:420px;color:#fff;font-size:56px;}
/* 多图片样式 */
.image_box_one {position: relative;display: inline-block;}
.image_box {position:relative;left:-1px;overflow:hidden;margin-bottom:2px;padding:0 2px;}
.image_box .per_image {position:absolute;top:0;left:2px;width:100%;height:100%;object-fit:cover;}
.image_box .gif_badge, .image_box_one .gif_badge {position: absolute;bottom: 0;right: 0;background-color: #5dc8ab;color: #fff;font-size: 80%;padding: 1px 4px;}
.image_box .long_badge {position: absolute;bottom: 0;right: 0;background-color: #c8a06c;color: #fff;font-size: 80%;padding: 1px 4px;}
.image_box.playing .gif_badge{display: none;}
.image_box:before {display:block;padding-top:100%;content:'';}
.feed_item .feed_bottom {margin-top:20px;}
.feed_item .feed_bottom .feed_datas {position:relative;clear:both;margin-top: 20px;}
.feed_datas .collect,
.feed_datas .digg,
.feed_datas .comment,
.feed_datas .view {font-size:14px;display:inline-block;margin-right:50px;cursor:pointer;color:#ccc;}
.feed_datas svg {font-size:24px;vertical-align:-7px;}
.comments_box .line {margin-top:5px;}
.comments_box .comment_body {font-size:12px;color:#999;}
.feed_line {width:100%;height:6px;margin:30px auto;background:#f3f6f7;}
.dy_comit p {margin-bottom:16px;word-break:break-all;}
.dy_comit span {color:#333;}
.comit_all {color:#333;}
/*动态详情*/
.feed_left {position:relative;width:815px;background:#fff;margin-right:30px;padding:20px 40px;}
.detail_images {background:#f3f6f7;position:relative;}
.detail_images img {display:block;max-width:675px;margin:10px auto;}
.detail_body {margin:20px 0;word-break:break-all;text-align:justify;line-height:24px;letter-spacing:1px;color:#666;font-size:14px;}
.detail_body a {color:#59b6d7;}
.detail_share {padding-bottom:40px;border-bottom:1px solid #ededed;}
.detail_share span a {font-size:14px;line-height:40px;display:inline-block;width:120px;text-align:center;color:#666;border:1px solid #ededed;border-radius:3px;}
.detail_share span a.act {color:#59b6d7;border:1px solid #59b6d7;}
.detail_share span i {font-size:18px;margin-right:8px;vertical-align:-1px;}
.detail_share span:first-child {margin-right:10px;}
/* 右边 */
.right_about {width:100%;background-color:#fff;margin-bottom:30px}
.right_about .info {display:flex;padding:30px 30px 15px 15px;}
.right_about .info .auth_header {position:relative;float:left;overflow:hidden;width:60px;height:60px;line-height:60px;text-align:center;flex-grow:0;flex-shrink:0;}
.info .auth_header .role-icon {position:absolute;right:4px;bottom:1px;width:18px;height:18px;border-radius:50%;}
.auth_info {width:125px;float:left;margin-left:15px;}
.auth_info .info_name a {display:block;margin-bottom:10px;margin-top:5px;font-size:16px;color:#333;}
.auth_info .info_bio {font-size:14px;max-height:44px;line-height:22px;color:#999;margin-top:10px;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;display:-webkit-box;text-overflow: ellipsis;word-break: break-all;word-wrap: break-word}
.right_about .auth_fans {font-size:0;}
.right_about .auth_fans li {display:inline-block;border-top:1px solid #ededed;width:50%;height:49px;line-height:47px;font-size:14px;text-align:center;}
.right_about .auth_fans li:nth-child(even) {border-left:1px solid #ededed;}
.right_about .auth_fans li a>span {color:#000;margin-left:3px;font-size:18px;}
/*动态付费弹窗*/
.feed_pay_box {width:587px;}
.feed_pay_box .pay_title {font-size:20px;font-weight:500;}
.feed_pay_box .pay_images {width:100%;}
.feed_pay_box .pay_images .pay_image {display:inline-block;position:relative;margin-right:3px;}
.feed_pay_box .pay_images .pay_image img {width:59px;height:59px;display:inline-block;box-sizing:border-box;}
.feed_pay_box .pay_images .pay_image svg {position:absolute;top:0;left:0;bottom:0;right:0;margin:auto;width:20px;height:20px;fill:white;}
.feed_pay_box .pay_images .pay_image img.current {border:1px solid #59b6d7;}
.feed_pay_box .pay_images .triangle {margin-top:8px;margin-left:23px;border-bottom:8px solid #f3f6f7;}
.feed_pay_box .pay_info {padding:20px;background:#f3f6f7;font-size:14px;}
.feed_pay_box .pay_info .pay_head {width:100%;}
.feed_pay_box .pay_info .pay_head span {cursor:pointer;}
.feed_pay_box .pay_info .pay_head .pay_text {float:left;}
.feed_pay_box .pay_info .pay_head .pay_btn {margin-left:20px;float:right}
.feed_pay_box .pay_info .pay_head .pay_btn_yes {color:#59b6d7;}
.feed_pay_box .pay_info .pay_body {margin-top:10px;}
.feed_pay_box .pay_info .pay_body span {cursor:pointer;text-align:center;display:inline-block;width:78px;height:28px;line-height:28px;border:1px solid #ccc;color:#666;margin-right:10px;}
.feed_pay_box .pay_info .pay_body span.current {border:1px solid #59b6d7;color:#59b6d7;}
.feed_pay_box .pay_info .pay_body input {margin-left:20px;outline:none;text-indent:10px;background-color:transparent;height:28px;line-height:28px;width:263px;border:1px solid #ccc;vertical-align:bottom;border-radius:5px;}
.feed_left .user-box {padding-bottom:20px;border-bottom:1px solid #ededed;}
.feed_left .u-tt {font-weight:normal;font-size:28px;} | 0.3295 | 0.053651 |
.faded-text, .header-text, input::placeholder, input:-ms-input-placeholder, input::-ms-input-placeholder {
color: #133337;
color: rgba(19, 51, 55, 0.6);
}
.base-active-item {
background-color: #133337 !important;
color: white !important;
}
.base-border {
border: 1px solid #c9c9c9;
}
.theme-heritage-green {
background-color: #009677;
color: white;
border-color: #00634f !important;
border-width: 1px;
border-style: solid;
}
.bg-heritage-green {
background-color: #009677;
}
.bg-fresh-green {
background-color: #50b848;
}
.bg-future-green {
background-color: #8dc63f;
}
.bg-sky {
background-color: #00c0e8;
}
.bg-sun {
background-color: #fff200;
}
.bg-naartjie {
background-color: #f37021;
}
.bg-cerise {
background-color: #ed0080;
}
.text-heritage-green {
color: #009677;
}
.text-fresh-green {
color: #50b848;
}
.text-future-green {
color: #8dc63f;
}
.text-sky {
color: #00c0e8;
}
.text-sun {
color: #fff200;
}
.text-naartjie {
color: #f37021;
}
.text-cerise {
color: #ed0080;
}
.border-heritage-green {
border-color: #009677 !important;
}
.border-fresh-green {
border-color: #50b848 !important;
}
.border-future-green {
border-color: #8dc63f !important;
}
.border-sky {
border-color: #00c0e8 !important;
}
.border-sun {
border-color: #fff200 !important;
}
.border-naartjie {
border-color: #f37021 !important;
}
.border-cerise {
border-color: #ed0080 !important;
}
body {
font-family: Roboto, Bookman, sans-serif;
font-size: 1rem;
line-height: 1.4;
}
::-webkit-scrollbar-track {
border-radius: 10px;
background-color: transparent;
}
::-webkit-scrollbar {
width: 12px;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: rgba(19, 51, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
background-color: #133337;
}
input::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
opacity: 1;
/* Firefox */
}
input:-ms-input-placeholder {
/* Internet Explorer 10-11 */
}
input::-ms-input-placeholder {
/* Microsoft Edge */
}
.form-control,
.form-control-sm {
border: 0 !important;
border-radius: 0 !important;
color: #133337 !important;
background: white !important;
border-bottom: 1px solid #c9c9c9 !important;
border-bottom: 1px solid rgba(201, 201, 201, 0.1) !important;
}
.form-control,
.form-control-sm,
.setting {
font-size: 0.8rem !important;
}
p.setting {
color: #133337;
font-weight: bold;
text-transform: uppercase;
border-bottom: 1px solid #c9c9c9;
}
label.setting {
color: #133337;
color: rgba(19, 51, 55, 0.5);
width: 50px;
text-align: right;
padding-right: 5px;
}
label {
color: #133337;
color: rgba(19, 51, 55, 0.5);
font-weight: bold;
}
input.setting {
width: 80px !important;
min-width: 80px !important;
}
.biznous-glow {
box-shadow: 0px 0px 10px #133337;
}
.ui-overlay {
background: white !important;
background: rgba(255, 255, 255, 0.4) !important;
}
.popup-card {
background-color: white;
}
.popup-card .header-row {
margin-bottom: 5px;
}
.popup-card .title {
width: 100%;
cursor: move;
padding: 5px;
min-height: 40px;
max-height: 40px;
overflow: hidden;
}
.ui-overlay {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 99999;
}
.ui-resizable-n,
.ui-resizable-s {
height: 10px;
}
.ui-resizable-e,
.ui-resizable-w {
width: 10px;
}
@media screen and (max-width: 500px) {
.popup-card {
width: 100vw !important;
max-width: 100vw !important;
min-width: 100vw !important;
}
} | style/controls.css | .faded-text, .header-text, input::placeholder, input:-ms-input-placeholder, input::-ms-input-placeholder {
color: #133337;
color: rgba(19, 51, 55, 0.6);
}
.base-active-item {
background-color: #133337 !important;
color: white !important;
}
.base-border {
border: 1px solid #c9c9c9;
}
.theme-heritage-green {
background-color: #009677;
color: white;
border-color: #00634f !important;
border-width: 1px;
border-style: solid;
}
.bg-heritage-green {
background-color: #009677;
}
.bg-fresh-green {
background-color: #50b848;
}
.bg-future-green {
background-color: #8dc63f;
}
.bg-sky {
background-color: #00c0e8;
}
.bg-sun {
background-color: #fff200;
}
.bg-naartjie {
background-color: #f37021;
}
.bg-cerise {
background-color: #ed0080;
}
.text-heritage-green {
color: #009677;
}
.text-fresh-green {
color: #50b848;
}
.text-future-green {
color: #8dc63f;
}
.text-sky {
color: #00c0e8;
}
.text-sun {
color: #fff200;
}
.text-naartjie {
color: #f37021;
}
.text-cerise {
color: #ed0080;
}
.border-heritage-green {
border-color: #009677 !important;
}
.border-fresh-green {
border-color: #50b848 !important;
}
.border-future-green {
border-color: #8dc63f !important;
}
.border-sky {
border-color: #00c0e8 !important;
}
.border-sun {
border-color: #fff200 !important;
}
.border-naartjie {
border-color: #f37021 !important;
}
.border-cerise {
border-color: #ed0080 !important;
}
body {
font-family: Roboto, Bookman, sans-serif;
font-size: 1rem;
line-height: 1.4;
}
::-webkit-scrollbar-track {
border-radius: 10px;
background-color: transparent;
}
::-webkit-scrollbar {
width: 12px;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: rgba(19, 51, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
background-color: #133337;
}
input::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
opacity: 1;
/* Firefox */
}
input:-ms-input-placeholder {
/* Internet Explorer 10-11 */
}
input::-ms-input-placeholder {
/* Microsoft Edge */
}
.form-control,
.form-control-sm {
border: 0 !important;
border-radius: 0 !important;
color: #133337 !important;
background: white !important;
border-bottom: 1px solid #c9c9c9 !important;
border-bottom: 1px solid rgba(201, 201, 201, 0.1) !important;
}
.form-control,
.form-control-sm,
.setting {
font-size: 0.8rem !important;
}
p.setting {
color: #133337;
font-weight: bold;
text-transform: uppercase;
border-bottom: 1px solid #c9c9c9;
}
label.setting {
color: #133337;
color: rgba(19, 51, 55, 0.5);
width: 50px;
text-align: right;
padding-right: 5px;
}
label {
color: #133337;
color: rgba(19, 51, 55, 0.5);
font-weight: bold;
}
input.setting {
width: 80px !important;
min-width: 80px !important;
}
.biznous-glow {
box-shadow: 0px 0px 10px #133337;
}
.ui-overlay {
background: white !important;
background: rgba(255, 255, 255, 0.4) !important;
}
.popup-card {
background-color: white;
}
.popup-card .header-row {
margin-bottom: 5px;
}
.popup-card .title {
width: 100%;
cursor: move;
padding: 5px;
min-height: 40px;
max-height: 40px;
overflow: hidden;
}
.ui-overlay {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 99999;
}
.ui-resizable-n,
.ui-resizable-s {
height: 10px;
}
.ui-resizable-e,
.ui-resizable-w {
width: 10px;
}
@media screen and (max-width: 500px) {
.popup-card {
width: 100vw !important;
max-width: 100vw !important;
min-width: 100vw !important;
}
} | 0.412294 | 0.075176 |
:root {
--app-height: 100%;
}
html, body {
width:100%;
overflow: hidden;
min-height: var(--app-height);
}
h1 {
font-size: 2.5em;
}
#column-container {
min-height:var(--app-height);
}
#word-div {
position:relative;
overflow:hidden;
margin-top: 20px;
margin-bottom: 20px;
}
.blurred-edge {
-webkit-mask-image: linear-gradient(transparent 0%, black 15%, black 85%, transparent 100%);
mask-image: linear-gradient(transparent 0%, black 15%, black 85%, transparent 100%);
}
#selector {
position:absolute;
margin:0px;
padding:0px;
top:50%;
left:50%;
transform: translateY(-50%) translateX(-50%);
width:100%;
background-color: var(--bs-secondary);
pointer-events: none;
}
#timer-div {
width:100%;
font-size:24px;
}
.letter-picker {
position:absolute;
margin:0px;
padding:0px;
top:50%;
left:50%;
transform: translateY(-50%) translateX(-50%);
}
.letter-picker-letter {
padding:0px;
width:100%;
text-align:center;
line-height:normal;
user-select: none;
border:1px solid;
border-radius: 10px;
background-color: var(--bs-white);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.no-select {
user-select: none;
}
.stats-data {
font-size:xx-large;
}
.stats-label {
color: var(--bs-secondary);
font-size:x-small;
}
.rotate {
left:50%;
transform: rotate(270deg);
transform-origin:top;
}
@keyframes wobble {
0% {transform: rotate(0deg);}
25% {transform: rotate(-45deg);}
75% {transform: rotate(45deg);}
100% {transform: rotate(0deg);}
}
@keyframes shake {
25% {transform:translateX(-5px);}
75% {transform:translateX(10px);}
100% {transform:translateX(-5px);}
}
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
100% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
} | css/index.css | :root {
--app-height: 100%;
}
html, body {
width:100%;
overflow: hidden;
min-height: var(--app-height);
}
h1 {
font-size: 2.5em;
}
#column-container {
min-height:var(--app-height);
}
#word-div {
position:relative;
overflow:hidden;
margin-top: 20px;
margin-bottom: 20px;
}
.blurred-edge {
-webkit-mask-image: linear-gradient(transparent 0%, black 15%, black 85%, transparent 100%);
mask-image: linear-gradient(transparent 0%, black 15%, black 85%, transparent 100%);
}
#selector {
position:absolute;
margin:0px;
padding:0px;
top:50%;
left:50%;
transform: translateY(-50%) translateX(-50%);
width:100%;
background-color: var(--bs-secondary);
pointer-events: none;
}
#timer-div {
width:100%;
font-size:24px;
}
.letter-picker {
position:absolute;
margin:0px;
padding:0px;
top:50%;
left:50%;
transform: translateY(-50%) translateX(-50%);
}
.letter-picker-letter {
padding:0px;
width:100%;
text-align:center;
line-height:normal;
user-select: none;
border:1px solid;
border-radius: 10px;
background-color: var(--bs-white);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.no-select {
user-select: none;
}
.stats-data {
font-size:xx-large;
}
.stats-label {
color: var(--bs-secondary);
font-size:x-small;
}
.rotate {
left:50%;
transform: rotate(270deg);
transform-origin:top;
}
@keyframes wobble {
0% {transform: rotate(0deg);}
25% {transform: rotate(-45deg);}
75% {transform: rotate(45deg);}
100% {transform: rotate(0deg);}
}
@keyframes shake {
25% {transform:translateX(-5px);}
75% {transform:translateX(10px);}
100% {transform:translateX(-5px);}
}
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
100% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
} | 0.600891 | 0.181227 |
html {
background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg");
}
#navbar {
background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg");
}
#nav-bar {
cursor: pointer;
}
.tabs {
background-color: black;
opacity: 70%;
position: relative;
animation: flip 2s;
background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg");
}
@keyframes flip {
0% {
right: 1200px;
}
100% {
right: 0px;
}
from {
background-color: white;
}
to {
background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg");
}
}
#top-tab {
font-size: 25px;
background-color: black;
}
#me {
height: 100px;
width: 90px;
outline: 1px solid white;
}
#home {
color: #b125dc;
font-size: 25px;
background-color: black;
}
#bio {
color: rgb(250, 234, 4);
font-size: 25px;
background-color: black;
}
#bio-box {
color: white;
outline: 2px solid white;
background-color: black;
opacity: 85%;
text-align: center;
font-size: 40px;
font-weight: 500;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
#bio-txt {
color: white;
font-size: 20px;
text-align: justify;
}
#work {
color: #2598dc;
font-size: 25px;
background-color: black;
}
#education {
color: #dc2525;
font-size: 25px;
background-color: black;
}
#projects {
color: #4adc25;
font-size: 25px;
background-color: black;
}
#info-box {
outline: 1px solid white;
height: 70px;
color: rgb(250, 234, 4);
font-size: 12px;
background-color: black;
height: 100px;
width: 90px;
}
#bio-pic {
height: 250px;
width: 220px;
z-index: -1;
}
#brand {
/* background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg"); */
background-color: black;
color: #fa0404;
font-size: 24px;
}
.fade-in {
animation: fadeIn ease 12s;
-webkit-animation: fadeIn ease 12s;
-moz-animation: fadeIn ease 12s;
-o-animation: fadeIn ease 12s;
-ms-animation: fadeIn ease 12s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
} | css/bio.css | html {
background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg");
}
#navbar {
background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg");
}
#nav-bar {
cursor: pointer;
}
.tabs {
background-color: black;
opacity: 70%;
position: relative;
animation: flip 2s;
background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg");
}
@keyframes flip {
0% {
right: 1200px;
}
100% {
right: 0px;
}
from {
background-color: white;
}
to {
background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg");
}
}
#top-tab {
font-size: 25px;
background-color: black;
}
#me {
height: 100px;
width: 90px;
outline: 1px solid white;
}
#home {
color: #b125dc;
font-size: 25px;
background-color: black;
}
#bio {
color: rgb(250, 234, 4);
font-size: 25px;
background-color: black;
}
#bio-box {
color: white;
outline: 2px solid white;
background-color: black;
opacity: 85%;
text-align: center;
font-size: 40px;
font-weight: 500;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
#bio-txt {
color: white;
font-size: 20px;
text-align: justify;
}
#work {
color: #2598dc;
font-size: 25px;
background-color: black;
}
#education {
color: #dc2525;
font-size: 25px;
background-color: black;
}
#projects {
color: #4adc25;
font-size: 25px;
background-color: black;
}
#info-box {
outline: 1px solid white;
height: 70px;
color: rgb(250, 234, 4);
font-size: 12px;
background-color: black;
height: 100px;
width: 90px;
}
#bio-pic {
height: 250px;
width: 220px;
z-index: -1;
}
#brand {
/* background-image: url("https://edge.alluremedia.com.au/m/l/2015/06/CodingSnippet.jpg"); */
background-color: black;
color: #fa0404;
font-size: 24px;
}
.fade-in {
animation: fadeIn ease 12s;
-webkit-animation: fadeIn ease 12s;
-moz-animation: fadeIn ease 12s;
-o-animation: fadeIn ease 12s;
-ms-animation: fadeIn ease 12s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
} | 0.459804 | 0.147494 |
body.dark-theme {
background: #000;
color: #e8e8e8;
}
/* Dropdowns */
.dark-theme .dropdown-content {
background-color: #333;
}
.dark-theme .select-wrapper span.caret {
color: #e8e8e8;
}
.dark-theme .dropdown-content li {
color: #e8e8e8;
}
.dark-theme .dropdown-content li:hover,
.dark-theme .dropdown-content li.active,
.dark-theme .dropdown-content li.selected {
background-color: #555;
}
.dark-theme .dropdown-content li > a,
.dark-theme .dropdown-content li > span {
color: #3cf;
}
/* Inputs */
.dark-theme .input-field label {
color: #bbb;
}
.dark-theme input:not([type]), .dark-theme input[type=text],
.dark-theme input[type=password], .dark-theme input[type=email],
.dark-theme input[type=url], .dark-theme input[type=time],
.dark-theme input[type=date], .dark-theme input[type=datetime],
.dark-theme input[type=datetime-local], .dark-theme input[type=tel],
.dark-theme input[type=number], .dark-theme input[type=search],
.dark-theme textarea.materialize-textarea {
border-bottom-color: #777;
}
.dark-theme input[type=text]:focus:not([readonly]), .dark-theme input[type=password]:focus:not([readonly]),
.dark-theme input[type=email]:focus:not([readonly]), .dark-theme input[type=url]:focus:not([readonly]),
.dark-theme input[type=time]:focus:not([readonly]), .dark-theme input[type=date]:focus:not([readonly]),
.dark-theme input[type=datetime-local]:focus:not([readonly]), .dark-theme input[type=tel]:focus:not([readonly]),
.dark-theme input[type=number]:focus:not([readonly]), .dark-theme input[type=search]:focus:not([readonly]),
.dark-theme textarea.materialize-textarea:focus:not([readonly]) {
border-bottom: 1px solid #3cf;
box-shadow: 0 1px 0 0 #3cf;
}
.dark-theme input[type=text]:focus:not([readonly]) + label, .dark-theme input[type=password]:focus:not([readonly]) + label,
.dark-theme input[type=email]:focus:not([readonly]) + label, .dark-theme input[type=url]:focus:not([readonly]) + label,
.dark-theme input[type=time]:focus:not([readonly]) + label, .dark-theme input[type=date]:focus:not([readonly]) + label,
.dark-theme input[type=datetime-local]:focus:not([readonly]) + label, .dark-theme input[type=tel]:focus:not([readonly]) + label,
.dark-theme input[type=number]:focus:not([readonly]) + label, .dark-theme input[type=search]:focus:not([readonly]) + label,
.dark-theme textarea.materialize-textarea:focus:not([readonly]) + label {
color: #3cf;
}
/* Checkboxes */
.dark-theme [type="checkbox"] + label:before,
.dark-theme [type="checkbox"]:not(.filled-in) + label:after {
border-color: #a5a5a5;
}
.dark-theme [type="checkbox"]:checked + label:before {
border-left-color: transparent;
border-top-color: transparent;
border-right-color: #3cf;
border-bottom-color: #3cf;
}
.dark-theme [type="checkbox"].filled-in:checked + label:before {
border-right-color: #fff;
border-bottom-color: #fff;
}
/* Buttons */
.dark-theme .btn-flat {
color: #e8e8e8;
}
/* Cards */
.dark-theme .card {
background-color: #333;
}
/* Side nav */
.dark-theme .side-nav {
background-color: #181818;
}
.dark-theme .side-nav a {
color: #e8e8e8;
}
.dark-theme .side-nav li.nav-display-mode,
.dark-theme .side-nav li.nav-display-mode:hover {
background: none !important;
}
.dark-theme #side-nav li.nav-selected {
background-color: #484848;
}
.dark-theme .side-nav li:hover,
.dark-theme .side-nav li.active {
background-color: #333;
}
.dark-theme .side-nav a:hover {
background-color: #555;
}
.dark-theme .side-nav li > a > i,
.dark-theme .side-nav li > a > [class^="mdi-"],
.dark-theme .side-nav li > a > [class*="mdi-"],
.dark-theme .side-nav li > a > i.material-icons {
color: rgba(255, 255, 255, 0.8);
}
.dark-theme .nav-item-count {
background: rgba(255, 255, 255, 0.2);
}
.dark-theme #side-nav li.nav-selected .nav-item-text,
.dark-theme #side-nav li.nav-selected .nav-item-icon,
.dark-theme #side-nav li.nav-display-mode-selected a {
color: #3cf;
}
.dark-theme #side-nav .nav-unimportant a,
.dark-theme #side-nav .nav-unimportant i {
color: #999 !important;
}
/* Collections */
.dark-theme .collection {
border-color: #181818;
}
.dark-theme .collection .collection-item {
background-color: #333;
border-bottom-color: #181818;
}
/* Modals */
.dark-theme .modal {
background-color: #555;
}
.dark-theme .modal .modal-footer {
background-color: #555;
}
.dark-theme .edit-dialog .modal-footer,
.dark-theme .upload-dialog .modal-footer {
border-top: #333;
background-color: #555;
}
.dark-theme .picker {
color: #e8e8e8;
}
.dark-theme .picker__box {
background: #555;
}
.dark-theme .picker__day--infocus {
color: #e8e8e8;
}
.dark-theme .picker__nav--prev:before,
.dark-theme .picker__nav--next:before {
border-left-color: #a8a8a8;
border-right-color: #a8a8a8;
}
.dark-theme .picker__nav--prev:hover,
.dark-theme .picker__nav--next:hover {
background: #666;
}
/* Tags screen */
.dark-theme.select-tags-screen .tag-text,
.dark-theme.browse-by-tags-screen .tag-text {
color: #e8e8e8;
}
.dark-theme .num-places-tagged,
.dark-theme .untagged-text {
color: #aaa;
}
.dark-theme.select-tags-screen .tag-buttons a,
.dark-theme.browse-by-tags-screen .tag-buttons a {
color: #3cf;
}
.dark-theme.select-tags-screen .tag-buttons a:hover,
.dark-theme.browse-by-tags-screen .tag-buttons a:hover {
background-color: #555;
}
.dark-theme .chip {
color: #e8e8e8;
background-color: #555;
}
/* Detail screen */
.dark-theme.detail-screen .card {
color: #e8e8e8;
}
.dark-theme.detail-screen .card-icon {
color: #ddd;
}
.dark-theme .card-notes-toolbar {
border-top-color: #555;
}
.dark-theme.detail-screen .empty-text {
color: #999;
}
.dark-theme .address-title {
color: #999;
}
/* Map detail screen */
.dark-theme.map-detail-screen .address {
color: #000;
}
/* Settings screen */
.dark-theme .setting label {
color: #e8e8e8;
}
.dark-theme .setting label.select-label {
color: #e8e8e8 ;
}
/* Misc */
.dark-theme .action-not-implemented {
color: #999 !important;
} | css/dark_theme.css | body.dark-theme {
background: #000;
color: #e8e8e8;
}
/* Dropdowns */
.dark-theme .dropdown-content {
background-color: #333;
}
.dark-theme .select-wrapper span.caret {
color: #e8e8e8;
}
.dark-theme .dropdown-content li {
color: #e8e8e8;
}
.dark-theme .dropdown-content li:hover,
.dark-theme .dropdown-content li.active,
.dark-theme .dropdown-content li.selected {
background-color: #555;
}
.dark-theme .dropdown-content li > a,
.dark-theme .dropdown-content li > span {
color: #3cf;
}
/* Inputs */
.dark-theme .input-field label {
color: #bbb;
}
.dark-theme input:not([type]), .dark-theme input[type=text],
.dark-theme input[type=password], .dark-theme input[type=email],
.dark-theme input[type=url], .dark-theme input[type=time],
.dark-theme input[type=date], .dark-theme input[type=datetime],
.dark-theme input[type=datetime-local], .dark-theme input[type=tel],
.dark-theme input[type=number], .dark-theme input[type=search],
.dark-theme textarea.materialize-textarea {
border-bottom-color: #777;
}
.dark-theme input[type=text]:focus:not([readonly]), .dark-theme input[type=password]:focus:not([readonly]),
.dark-theme input[type=email]:focus:not([readonly]), .dark-theme input[type=url]:focus:not([readonly]),
.dark-theme input[type=time]:focus:not([readonly]), .dark-theme input[type=date]:focus:not([readonly]),
.dark-theme input[type=datetime-local]:focus:not([readonly]), .dark-theme input[type=tel]:focus:not([readonly]),
.dark-theme input[type=number]:focus:not([readonly]), .dark-theme input[type=search]:focus:not([readonly]),
.dark-theme textarea.materialize-textarea:focus:not([readonly]) {
border-bottom: 1px solid #3cf;
box-shadow: 0 1px 0 0 #3cf;
}
.dark-theme input[type=text]:focus:not([readonly]) + label, .dark-theme input[type=password]:focus:not([readonly]) + label,
.dark-theme input[type=email]:focus:not([readonly]) + label, .dark-theme input[type=url]:focus:not([readonly]) + label,
.dark-theme input[type=time]:focus:not([readonly]) + label, .dark-theme input[type=date]:focus:not([readonly]) + label,
.dark-theme input[type=datetime-local]:focus:not([readonly]) + label, .dark-theme input[type=tel]:focus:not([readonly]) + label,
.dark-theme input[type=number]:focus:not([readonly]) + label, .dark-theme input[type=search]:focus:not([readonly]) + label,
.dark-theme textarea.materialize-textarea:focus:not([readonly]) + label {
color: #3cf;
}
/* Checkboxes */
.dark-theme [type="checkbox"] + label:before,
.dark-theme [type="checkbox"]:not(.filled-in) + label:after {
border-color: #a5a5a5;
}
.dark-theme [type="checkbox"]:checked + label:before {
border-left-color: transparent;
border-top-color: transparent;
border-right-color: #3cf;
border-bottom-color: #3cf;
}
.dark-theme [type="checkbox"].filled-in:checked + label:before {
border-right-color: #fff;
border-bottom-color: #fff;
}
/* Buttons */
.dark-theme .btn-flat {
color: #e8e8e8;
}
/* Cards */
.dark-theme .card {
background-color: #333;
}
/* Side nav */
.dark-theme .side-nav {
background-color: #181818;
}
.dark-theme .side-nav a {
color: #e8e8e8;
}
.dark-theme .side-nav li.nav-display-mode,
.dark-theme .side-nav li.nav-display-mode:hover {
background: none !important;
}
.dark-theme #side-nav li.nav-selected {
background-color: #484848;
}
.dark-theme .side-nav li:hover,
.dark-theme .side-nav li.active {
background-color: #333;
}
.dark-theme .side-nav a:hover {
background-color: #555;
}
.dark-theme .side-nav li > a > i,
.dark-theme .side-nav li > a > [class^="mdi-"],
.dark-theme .side-nav li > a > [class*="mdi-"],
.dark-theme .side-nav li > a > i.material-icons {
color: rgba(255, 255, 255, 0.8);
}
.dark-theme .nav-item-count {
background: rgba(255, 255, 255, 0.2);
}
.dark-theme #side-nav li.nav-selected .nav-item-text,
.dark-theme #side-nav li.nav-selected .nav-item-icon,
.dark-theme #side-nav li.nav-display-mode-selected a {
color: #3cf;
}
.dark-theme #side-nav .nav-unimportant a,
.dark-theme #side-nav .nav-unimportant i {
color: #999 !important;
}
/* Collections */
.dark-theme .collection {
border-color: #181818;
}
.dark-theme .collection .collection-item {
background-color: #333;
border-bottom-color: #181818;
}
/* Modals */
.dark-theme .modal {
background-color: #555;
}
.dark-theme .modal .modal-footer {
background-color: #555;
}
.dark-theme .edit-dialog .modal-footer,
.dark-theme .upload-dialog .modal-footer {
border-top: #333;
background-color: #555;
}
.dark-theme .picker {
color: #e8e8e8;
}
.dark-theme .picker__box {
background: #555;
}
.dark-theme .picker__day--infocus {
color: #e8e8e8;
}
.dark-theme .picker__nav--prev:before,
.dark-theme .picker__nav--next:before {
border-left-color: #a8a8a8;
border-right-color: #a8a8a8;
}
.dark-theme .picker__nav--prev:hover,
.dark-theme .picker__nav--next:hover {
background: #666;
}
/* Tags screen */
.dark-theme.select-tags-screen .tag-text,
.dark-theme.browse-by-tags-screen .tag-text {
color: #e8e8e8;
}
.dark-theme .num-places-tagged,
.dark-theme .untagged-text {
color: #aaa;
}
.dark-theme.select-tags-screen .tag-buttons a,
.dark-theme.browse-by-tags-screen .tag-buttons a {
color: #3cf;
}
.dark-theme.select-tags-screen .tag-buttons a:hover,
.dark-theme.browse-by-tags-screen .tag-buttons a:hover {
background-color: #555;
}
.dark-theme .chip {
color: #e8e8e8;
background-color: #555;
}
/* Detail screen */
.dark-theme.detail-screen .card {
color: #e8e8e8;
}
.dark-theme.detail-screen .card-icon {
color: #ddd;
}
.dark-theme .card-notes-toolbar {
border-top-color: #555;
}
.dark-theme.detail-screen .empty-text {
color: #999;
}
.dark-theme .address-title {
color: #999;
}
/* Map detail screen */
.dark-theme.map-detail-screen .address {
color: #000;
}
/* Settings screen */
.dark-theme .setting label {
color: #e8e8e8;
}
.dark-theme .setting label.select-label {
color: #e8e8e8 ;
}
/* Misc */
.dark-theme .action-not-implemented {
color: #999 !important;
} | 0.396185 | 0.050028 |
:root {
scroll-behavior: smooth;
}
body {
/* font-family: "Open Sans", sans-serif; */
font-family: "Quicksand", sans-serif;
color: #444444;
}
a {
color: #4154f1;
text-decoration: none;
}
a:hover {
color: #717ff5;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Quicksand", sans-serif;
}
input:focus {
box-shadow: none !important;
border-bottom: 1px solid #289d7d;
}
/*--------------------------------------------------------------
# Custom Button and Theme
--------------------------------------------------------------*/
.btn-custom {
border-radius: 10px;
outline: none;
border: none;
box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
}
.btn-theme {
background-color: #289d7d;
}
.btn-theme:hover {
background-color: #1f8064;
}
.prim-color {
color: #289d7d;
}
.section-header p {
position: relative;
top: 2px;
color: #289d7d;
}
.custom-color {
color: #1f8064;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
padding: 60px 0;
overflow: hidden;
}
.section-header {
text-align: center;
padding-bottom: 40px;
}
.section-header h2 {
font-size: 13px;
letter-spacing: 1px;
font-weight: 700;
margin: 0;
color: #4154f1;
text-transform: uppercase;
}
.section-header p {
margin: 10px 0 0 0;
padding: 0;
font-size: 38px;
line-height: 42px;
font-weight: 700;
color: #289d7d;
}
@media (max-width: 768px) {
.section-header p {
font-size: 28px;
line-height: 32px;
}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* .back-to-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 1;
background: #ffffff;
width: 60px;
height: 60px;
border-radius: 50%;
transition: all 0.4s;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.back-to-top i {
font-size: 24px;
color: #289d7d;
line-height: 0;
}
.back-to-top:hover {
background: #ddd;
color: #289d7d;
}
.back-to-top.active {
visibility: visible;
opacity: 1;
} */
/*--------------------------------------------------------------
# Cart button
--------------------------------------------------------------*/
.cart-btn {
position: fixed;
visibility: visible;
opacity: 1;
right: 30px;
bottom: 30px;
z-index: 1;
background: #ffffff;
width: 65px;
height: 65px;
border-radius: 50%;
transition: all 0.4s;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
outline: none;
border: none;
}
.cart-btn i {
font-size: 26px;
color: #289d7d;
line-height: 0;
}
.cart-btn:hover {
background: #ddd;
color: #289d7d;
}
/* .cart-btn.active {
visibility: visible;
opacity: 1;
} */
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
transition: all 0.5s;
z-index: 9999;
padding: 20px 0;
backface-visibility: hidden;
background-color: #fff;
}
.header.header-scrolled {
background: #fff;
padding: 15px 0;
box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.header .logo {
margin-top: 15px;
line-height: 0;
font-family: "krinkes", sans-serif;
font-size: 36px;
color: #289d7d;
}
.header.header-scrolled .logo {
color: #289d7d;
}
.header.header-scrolled .navbar a {
color: #289d7d;
}
.header.header-scrolled .navbar a:hover {
color: #1f8064;
}
.header.header-scrolled .navbar .signup a {
color: #fff;
}
.header.header-scrolled .mobile-nav-toggle {
color: #289d7d;
}
/* .header .logo img {
max-height: 40px;
margin-right: 6px;
} */
@font-face {
font-family: "krinkes";
src: url(../font/krinkes/KrinkesRegularPERSONAL.ttf);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
padding: 0;
}
.navbar ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}
.navbar li {
position: relative;
}
.navbar a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 30px;
font-family: "Poppins", sans-serif;
font-size: 16px;
font-weight: 500;
color: #289d7d;
white-space: nowrap;
transition: 0.3s;
/* text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); */
}
.navbar a i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
color: #1f8064;
text-shadow: none;
}
.navbar .dropdown ul {
display: block;
position: absolute;
left: 40px;
top: calc(100% + 30px);
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 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: 500;
color: #289d7d;
text-shadow: none;
}
.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: #1f8064;
}
.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 a.btn-primary {
background-color: #289d7d;
border: none;
position: relative;
width: 100px;
height: 40px;
left: 0;
border-radius: 10px;
margin-left: 10px;
}
.navbar a.btn-primary p {
position: relative;
right: 10px;
top: 8px;
color: #fff;
}
.navbar a.btn-primary:hover {
color: #fff;
background-color: #1f8064;
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
color: #fff;
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
z-index: 2;
}
.mobile-nav-toggle.bi-x {
margin-top: 12px;
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(0, 0, 0, 0.5);
transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
position: absolute;
top: 15px;
right: 15px;
}
.navbar-mobile ul {
display: block;
position: absolute;
height: max-content;
top: 75px;
right: 15px;
bottom: 15px;
left: 15px;
padding: 10px 0;
border-radius: 10px;
background-color: #fff;
transition: 0.3s;
}
.navbar-mobile a {
padding: 10px 20px;
font-size: 15px;
color: #289d7d;
}
.navbar-mobile a .wisata {
margin: 0 auto;
position: relative;
left: 0 !important;
}
.navbar-mobile a .tools {
margin: 0 auto;
position: relative;
left: -10px !important;
}
.navbar-mobile .login {
margin: 0 15vh;
position: relative;
top: 40px;
z-index: 999;
width: fit-content;
}
.navbar-mobile .btn-primary {
position: relative;
left: 250px !important;
}
.navbar-mobile .btn-primary p {
position: relative;
left: 0;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
color: #f0b245;
}
.navbar-mobile .dropdown ul {
position: static;
display: none;
margin: -5px 20px;
padding: 10px 0;
z-index: 99;
opacity: 1;
visibility: visible;
background: #fff;
box-shadow: 0px 0px 0px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
min-width: 200px;
visibility: visible;
}
.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: #f0b245;
}
.navbar-mobile .dropdown>.dropdown-active {
display: block;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
color: #1f8064;
}
.navbar-mobile .dropdown>.dropdown-active {
display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
margin-top: 200px;
}
.hero {
height: 100vh;
width: 100%;
margin-top: 0 !important;
background: url(../img/bg-hero.png) no-repeat;
background-size: cover;
}
.hero .container {
margin-top: 260px !important;
}
.hero img {
position: relative;
top: -40px;
}
.hero h1 {
margin: 0;
font-size: 48px;
font-weight: 700;
/* color: #289d7d; */
color: #fff;
text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.hero h5 {
color: #fff;
position: relative;
top: -50px;
font-weight: bold;
font-size: 30px;
margin-top: 10px;
}
.hero h6 {
margin-top: 30px;
font-size: 20px;
/* font-weight: 800; */
/* color: #1f6b57; */
color: #fff;
text-shadow: 0 2px rgba(0, 0, 0, 0.1);
}
.hero ul {
margin-left: -36px;
}
.hero ul li {
list-style: none;
display: inline;
margin-left: 5px;
}
.hero li img {
border-radius: 10px;
}
@media (max-width: 991px) {
.hero {
height: auto;
padding: 120px 0 60px 0;
}
}
@media (max-width: 768px) {
.hero img {
margin: 0 auto;
margin-top: -100px;
}
.hero h1 {
font-size: 28px;
margin-top: 40px;
text-align: center !important;
}
.hero h5 {
text-align: center;
margin-bottom: 20px;
margin-top: 50px;
top: -100px;
font-size: 28px;
font-weight: 600;
}
.hero h6 {
text-align: center !important;
margin-bottom: 50px;
font-size: 18px;
font-weight: 600;
}
.hero ul {
margin-left: 35px;
}
}
/*--------------------------------------------------------------
# Destinasi Wisata
--------------------------------------------------------------*/
.destinasi {
height: max-content;
}
.destinasi .card {
width: max-content;
border: none;
border-radius: 10px;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.destinasi img {
width: 300px !important;
height: 170px;
border-radius: 10px 10px 0 0;
}
.destinasi .controls-btns-jabar {
position: absolute;
top: 42%;
cursor: pointer;
color: #1f8064;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
transition: all .3s;
}
.destinasi .controls-btns-jabar:hover {
background-color: #ddd;
}
.destinasi .controls-btns-jabar i {
font-size: 24px;
}
.destinasi #prev-slide-jabar {
left: 250px;
/* margin-top: -10px; */
}
.destinasi #next-slide-jabar {
right: 258px;
/* margin-top: -10px; */
}
.destinasi .controls-btns-jateng {
position: absolute;
top: 84%;
cursor: pointer;
color: #1f8064;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
transition: all .3s;
}
.destinasi .controls-btns-jateng:hover {
background-color: #ddd;
}
.destinasi .controls-btns-jateng i {
font-size: 24px;
}
.destinasi #prev-slide-jateng {
left: 250px;
/* margin-top: -10px; */
}
.destinasi #next-slide-jateng {
right: 258px;
/* margin-top: -10px; */
}
.destinasi .controls-btns-jatim {
position: absolute;
top: 123%;
cursor: pointer;
color: #1f8064;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
transition: all .3s;
}
.destinasi .controls-btns-jatim:hover {
background-color: #ddd;
}
.destinasi .controls-btns-jatim i {
font-size: 24px;
}
.destinasi #prev-slide-jatim {
left: 250px;
/* margin-top: -10px; */
}
.destinasi #next-slide-jatim {
right: 258px;
/* margin-top: -10px; */
}
.detail-destinasi {
height: 1000px;
}
@media (max-width: 1366px) {
.destinasi .controls-btns-jabar {
top: 52%;
}
.destinasi .controls-btns-jateng {
top: 102%;
}
.destinasi .controls-btns-jatim {
top: 151%;
}
.destinasi #prev-slide-jabar,
.destinasi #prev-slide-jateng,
.destinasi #prev-slide-jatim {
left: 50px;
}
.destinasi #next-slide-jabar,
.destinasi #next-slide-jateng,
.destinasi #next-slide-jatim {
right: 105px;
}
}
/*--------------------------------------------------------------
# Tentang Kami
--------------------------------------------------------------*/
.tentang-kami {
margin-top: -100px;
}
.tentang-kami header p {
color: #289d7d;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
background: rgba(0, 0, 0, 0.05);
padding: 0 0 30px 0;
font-size: 14px;
border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer .copyright {
text-align: center;
padding-top: 30px;
color: black;
}
.footer .copyright .social-links a {
font-size: 20px;
display: inline-block;
/* color: rgba(1, 41, 112, 0.5); */
color: rgba(0, 0, 0, 0.5);
line-height: 0;
margin-right: 10px;
transition: 0.3s;
}
.footer .copyright .social-links a:hover {
/* color: #289D7D; */
color: black;
}
/*--------------------------------------------------------------
# Keranjang
--------------------------------------------------------------*/
.keranjang {
margin-top: 80px;
height: 1100px;
}
.keranjang-line {
background: #289d7d;
height: 2px;
width: 13%;
}
.keranjang .card {
border: none;
border-radius: 6px;
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
padding-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Peralatan
--------------------------------------------------------------*/
.peralatan {
margin-top: 80px;
}
.peralatan.hiking {
height: max-content;
}
.peralatan.surfing {
height: 800px;
}
.custom-card {
border-radius: 15px;
border: none;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.custom-img {
border-radius: 8px;
}
/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout {
margin-top: 80px;
height: 950px;
}
.checkout-line {
background: #289d7d;
height: 2px;
width: 12%;
}
.checkout .card {
border: none;
border-radius: 6px;
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
padding-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Received
--------------------------------------------------------------*/
.received {
margin-top: 80px;
height: 760px;
}
.received-line {
background: #289d7d;
height: 2px;
width: 17%;
}
.received .card {
border: none;
border-radius: 6px;
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
padding-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Login / Sign Up
--------------------------------------------------------------*/
#loginModal .modal-content,
#signupModal .modal-content {
padding: 10px;
}
#loginModal .form-control,
#signupModal .form-control {
border: none;
border-bottom: 1px solid #ddd;
border-radius: 0 !important;
}
#signupModal a {
text-decoration: #4154f1;
}
/*--------------------------------------------------------------
# Profil
--------------------------------------------------------------*/
.riwayat {
height: 1000px;
}
.edit {
height: 800px;
}
.profil a {
color: #666;
font-size: 15px;
font-weight: 500;
}
.profil .card.menu {
border-radius: 10px;
border: none;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.profil .nama,
.profil .email {
font-weight: 500;
font-size: 13px;
}
.profil .card.menu i,
.profil .input-group-text {
color: #666;
}
.profil .card.outer {
border-radius: 10px;
}
.profil .card.inner {
border-radius: 10px;
border: none;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.profil .card-header {
background-color: #fff;
border-radius: 10px 10px 0 0;
}
.profil input:focus,
select:focus {
box-shadow: none !important;
}
.profil input {
border-radius: 8px;
}
.profil select {
border-radius: 8px !important;
}
.profil .datepicker {
cursor: context-menu;
background-color: #fff;
}
.profil .btn-show {
background-color: #289d7d;
border-radius: 8px;
border: none;
width: 136px;
transition: all .3s;
}
.profil .btn-show:hover {
background-color: #1f8064;
}
.profil .inner p {
font-size: 15px;
}
.profil .inner .tanggal {
margin-top: -8px;
}
.profil .inner .detail {
color: #289d7d;
cursor: pointer;
}
.profil .modal-detail .modal-content {
border-radius: 10px;
border: none;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.profil .modal-dialog span {
font-size: 14px;
}
.profil .modal-dialog span.kode,
.profil .modal-dialog span.status,
.profil .modal-dialog span.tanggal {
color: #2baf8c;
font-weight: bold;
}
.profil .select2-selection__rendered {
line-height: 36px !important;
}
.profil .select2-container .select2-selection--single {
height: 38px !important;
}
.profil .select2-selection__arrow {
height: 34px !important;
}
/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination>li {
margin: 0 5px;
}
.pagination .page-link {
border-radius: 50% !important;
width: 35px;
height: 35px;
display: flex;
justify-content: center;
}
.pagination .page-link i {
font-size: 10px;
line-height: 23px;
}
.pagination li.disabled span.page-link,
.pagination li span.page-link,
.pagination li.disabled a.page-link {
border: none;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.pagination li.active .page-link,
.pagination li .page-link,
.pagination li .page {
line-height: 22px !important;
border: none;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.pagination>li.active>a {
background-color: white;
color: purple;
}
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
box-shadow: none !important;
color: #289d7d;
}
.pagination>li.active>a,
.pagination>li.active>span {
background-color: #289d7d !important;
border: none;
cursor: context-menu;
}
.pagination>li.active>a:focus,
.pagination>li.active>a:hover,
.pagination>li.active>span:focus,
.pagination>li.active>span:hover {
color: white;
} | public/travel-alam/assets/css/style.css | :root {
scroll-behavior: smooth;
}
body {
/* font-family: "Open Sans", sans-serif; */
font-family: "Quicksand", sans-serif;
color: #444444;
}
a {
color: #4154f1;
text-decoration: none;
}
a:hover {
color: #717ff5;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Quicksand", sans-serif;
}
input:focus {
box-shadow: none !important;
border-bottom: 1px solid #289d7d;
}
/*--------------------------------------------------------------
# Custom Button and Theme
--------------------------------------------------------------*/
.btn-custom {
border-radius: 10px;
outline: none;
border: none;
box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
}
.btn-theme {
background-color: #289d7d;
}
.btn-theme:hover {
background-color: #1f8064;
}
.prim-color {
color: #289d7d;
}
.section-header p {
position: relative;
top: 2px;
color: #289d7d;
}
.custom-color {
color: #1f8064;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
padding: 60px 0;
overflow: hidden;
}
.section-header {
text-align: center;
padding-bottom: 40px;
}
.section-header h2 {
font-size: 13px;
letter-spacing: 1px;
font-weight: 700;
margin: 0;
color: #4154f1;
text-transform: uppercase;
}
.section-header p {
margin: 10px 0 0 0;
padding: 0;
font-size: 38px;
line-height: 42px;
font-weight: 700;
color: #289d7d;
}
@media (max-width: 768px) {
.section-header p {
font-size: 28px;
line-height: 32px;
}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* .back-to-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 1;
background: #ffffff;
width: 60px;
height: 60px;
border-radius: 50%;
transition: all 0.4s;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.back-to-top i {
font-size: 24px;
color: #289d7d;
line-height: 0;
}
.back-to-top:hover {
background: #ddd;
color: #289d7d;
}
.back-to-top.active {
visibility: visible;
opacity: 1;
} */
/*--------------------------------------------------------------
# Cart button
--------------------------------------------------------------*/
.cart-btn {
position: fixed;
visibility: visible;
opacity: 1;
right: 30px;
bottom: 30px;
z-index: 1;
background: #ffffff;
width: 65px;
height: 65px;
border-radius: 50%;
transition: all 0.4s;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
outline: none;
border: none;
}
.cart-btn i {
font-size: 26px;
color: #289d7d;
line-height: 0;
}
.cart-btn:hover {
background: #ddd;
color: #289d7d;
}
/* .cart-btn.active {
visibility: visible;
opacity: 1;
} */
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
transition: all 0.5s;
z-index: 9999;
padding: 20px 0;
backface-visibility: hidden;
background-color: #fff;
}
.header.header-scrolled {
background: #fff;
padding: 15px 0;
box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.header .logo {
margin-top: 15px;
line-height: 0;
font-family: "krinkes", sans-serif;
font-size: 36px;
color: #289d7d;
}
.header.header-scrolled .logo {
color: #289d7d;
}
.header.header-scrolled .navbar a {
color: #289d7d;
}
.header.header-scrolled .navbar a:hover {
color: #1f8064;
}
.header.header-scrolled .navbar .signup a {
color: #fff;
}
.header.header-scrolled .mobile-nav-toggle {
color: #289d7d;
}
/* .header .logo img {
max-height: 40px;
margin-right: 6px;
} */
@font-face {
font-family: "krinkes";
src: url(../font/krinkes/KrinkesRegularPERSONAL.ttf);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
padding: 0;
}
.navbar ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}
.navbar li {
position: relative;
}
.navbar a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 30px;
font-family: "Poppins", sans-serif;
font-size: 16px;
font-weight: 500;
color: #289d7d;
white-space: nowrap;
transition: 0.3s;
/* text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); */
}
.navbar a i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
color: #1f8064;
text-shadow: none;
}
.navbar .dropdown ul {
display: block;
position: absolute;
left: 40px;
top: calc(100% + 30px);
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 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: 500;
color: #289d7d;
text-shadow: none;
}
.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: #1f8064;
}
.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 a.btn-primary {
background-color: #289d7d;
border: none;
position: relative;
width: 100px;
height: 40px;
left: 0;
border-radius: 10px;
margin-left: 10px;
}
.navbar a.btn-primary p {
position: relative;
right: 10px;
top: 8px;
color: #fff;
}
.navbar a.btn-primary:hover {
color: #fff;
background-color: #1f8064;
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
color: #fff;
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
z-index: 2;
}
.mobile-nav-toggle.bi-x {
margin-top: 12px;
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(0, 0, 0, 0.5);
transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
position: absolute;
top: 15px;
right: 15px;
}
.navbar-mobile ul {
display: block;
position: absolute;
height: max-content;
top: 75px;
right: 15px;
bottom: 15px;
left: 15px;
padding: 10px 0;
border-radius: 10px;
background-color: #fff;
transition: 0.3s;
}
.navbar-mobile a {
padding: 10px 20px;
font-size: 15px;
color: #289d7d;
}
.navbar-mobile a .wisata {
margin: 0 auto;
position: relative;
left: 0 !important;
}
.navbar-mobile a .tools {
margin: 0 auto;
position: relative;
left: -10px !important;
}
.navbar-mobile .login {
margin: 0 15vh;
position: relative;
top: 40px;
z-index: 999;
width: fit-content;
}
.navbar-mobile .btn-primary {
position: relative;
left: 250px !important;
}
.navbar-mobile .btn-primary p {
position: relative;
left: 0;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
color: #f0b245;
}
.navbar-mobile .dropdown ul {
position: static;
display: none;
margin: -5px 20px;
padding: 10px 0;
z-index: 99;
opacity: 1;
visibility: visible;
background: #fff;
box-shadow: 0px 0px 0px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
min-width: 200px;
visibility: visible;
}
.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: #f0b245;
}
.navbar-mobile .dropdown>.dropdown-active {
display: block;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
color: #1f8064;
}
.navbar-mobile .dropdown>.dropdown-active {
display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
margin-top: 200px;
}
.hero {
height: 100vh;
width: 100%;
margin-top: 0 !important;
background: url(../img/bg-hero.png) no-repeat;
background-size: cover;
}
.hero .container {
margin-top: 260px !important;
}
.hero img {
position: relative;
top: -40px;
}
.hero h1 {
margin: 0;
font-size: 48px;
font-weight: 700;
/* color: #289d7d; */
color: #fff;
text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.hero h5 {
color: #fff;
position: relative;
top: -50px;
font-weight: bold;
font-size: 30px;
margin-top: 10px;
}
.hero h6 {
margin-top: 30px;
font-size: 20px;
/* font-weight: 800; */
/* color: #1f6b57; */
color: #fff;
text-shadow: 0 2px rgba(0, 0, 0, 0.1);
}
.hero ul {
margin-left: -36px;
}
.hero ul li {
list-style: none;
display: inline;
margin-left: 5px;
}
.hero li img {
border-radius: 10px;
}
@media (max-width: 991px) {
.hero {
height: auto;
padding: 120px 0 60px 0;
}
}
@media (max-width: 768px) {
.hero img {
margin: 0 auto;
margin-top: -100px;
}
.hero h1 {
font-size: 28px;
margin-top: 40px;
text-align: center !important;
}
.hero h5 {
text-align: center;
margin-bottom: 20px;
margin-top: 50px;
top: -100px;
font-size: 28px;
font-weight: 600;
}
.hero h6 {
text-align: center !important;
margin-bottom: 50px;
font-size: 18px;
font-weight: 600;
}
.hero ul {
margin-left: 35px;
}
}
/*--------------------------------------------------------------
# Destinasi Wisata
--------------------------------------------------------------*/
.destinasi {
height: max-content;
}
.destinasi .card {
width: max-content;
border: none;
border-radius: 10px;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.destinasi img {
width: 300px !important;
height: 170px;
border-radius: 10px 10px 0 0;
}
.destinasi .controls-btns-jabar {
position: absolute;
top: 42%;
cursor: pointer;
color: #1f8064;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
transition: all .3s;
}
.destinasi .controls-btns-jabar:hover {
background-color: #ddd;
}
.destinasi .controls-btns-jabar i {
font-size: 24px;
}
.destinasi #prev-slide-jabar {
left: 250px;
/* margin-top: -10px; */
}
.destinasi #next-slide-jabar {
right: 258px;
/* margin-top: -10px; */
}
.destinasi .controls-btns-jateng {
position: absolute;
top: 84%;
cursor: pointer;
color: #1f8064;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
transition: all .3s;
}
.destinasi .controls-btns-jateng:hover {
background-color: #ddd;
}
.destinasi .controls-btns-jateng i {
font-size: 24px;
}
.destinasi #prev-slide-jateng {
left: 250px;
/* margin-top: -10px; */
}
.destinasi #next-slide-jateng {
right: 258px;
/* margin-top: -10px; */
}
.destinasi .controls-btns-jatim {
position: absolute;
top: 123%;
cursor: pointer;
color: #1f8064;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
transition: all .3s;
}
.destinasi .controls-btns-jatim:hover {
background-color: #ddd;
}
.destinasi .controls-btns-jatim i {
font-size: 24px;
}
.destinasi #prev-slide-jatim {
left: 250px;
/* margin-top: -10px; */
}
.destinasi #next-slide-jatim {
right: 258px;
/* margin-top: -10px; */
}
.detail-destinasi {
height: 1000px;
}
@media (max-width: 1366px) {
.destinasi .controls-btns-jabar {
top: 52%;
}
.destinasi .controls-btns-jateng {
top: 102%;
}
.destinasi .controls-btns-jatim {
top: 151%;
}
.destinasi #prev-slide-jabar,
.destinasi #prev-slide-jateng,
.destinasi #prev-slide-jatim {
left: 50px;
}
.destinasi #next-slide-jabar,
.destinasi #next-slide-jateng,
.destinasi #next-slide-jatim {
right: 105px;
}
}
/*--------------------------------------------------------------
# Tentang Kami
--------------------------------------------------------------*/
.tentang-kami {
margin-top: -100px;
}
.tentang-kami header p {
color: #289d7d;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
background: rgba(0, 0, 0, 0.05);
padding: 0 0 30px 0;
font-size: 14px;
border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer .copyright {
text-align: center;
padding-top: 30px;
color: black;
}
.footer .copyright .social-links a {
font-size: 20px;
display: inline-block;
/* color: rgba(1, 41, 112, 0.5); */
color: rgba(0, 0, 0, 0.5);
line-height: 0;
margin-right: 10px;
transition: 0.3s;
}
.footer .copyright .social-links a:hover {
/* color: #289D7D; */
color: black;
}
/*--------------------------------------------------------------
# Keranjang
--------------------------------------------------------------*/
.keranjang {
margin-top: 80px;
height: 1100px;
}
.keranjang-line {
background: #289d7d;
height: 2px;
width: 13%;
}
.keranjang .card {
border: none;
border-radius: 6px;
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
padding-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Peralatan
--------------------------------------------------------------*/
.peralatan {
margin-top: 80px;
}
.peralatan.hiking {
height: max-content;
}
.peralatan.surfing {
height: 800px;
}
.custom-card {
border-radius: 15px;
border: none;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.custom-img {
border-radius: 8px;
}
/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout {
margin-top: 80px;
height: 950px;
}
.checkout-line {
background: #289d7d;
height: 2px;
width: 12%;
}
.checkout .card {
border: none;
border-radius: 6px;
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
padding-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Received
--------------------------------------------------------------*/
.received {
margin-top: 80px;
height: 760px;
}
.received-line {
background: #289d7d;
height: 2px;
width: 17%;
}
.received .card {
border: none;
border-radius: 6px;
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
padding-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Login / Sign Up
--------------------------------------------------------------*/
#loginModal .modal-content,
#signupModal .modal-content {
padding: 10px;
}
#loginModal .form-control,
#signupModal .form-control {
border: none;
border-bottom: 1px solid #ddd;
border-radius: 0 !important;
}
#signupModal a {
text-decoration: #4154f1;
}
/*--------------------------------------------------------------
# Profil
--------------------------------------------------------------*/
.riwayat {
height: 1000px;
}
.edit {
height: 800px;
}
.profil a {
color: #666;
font-size: 15px;
font-weight: 500;
}
.profil .card.menu {
border-radius: 10px;
border: none;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.profil .nama,
.profil .email {
font-weight: 500;
font-size: 13px;
}
.profil .card.menu i,
.profil .input-group-text {
color: #666;
}
.profil .card.outer {
border-radius: 10px;
}
.profil .card.inner {
border-radius: 10px;
border: none;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.profil .card-header {
background-color: #fff;
border-radius: 10px 10px 0 0;
}
.profil input:focus,
select:focus {
box-shadow: none !important;
}
.profil input {
border-radius: 8px;
}
.profil select {
border-radius: 8px !important;
}
.profil .datepicker {
cursor: context-menu;
background-color: #fff;
}
.profil .btn-show {
background-color: #289d7d;
border-radius: 8px;
border: none;
width: 136px;
transition: all .3s;
}
.profil .btn-show:hover {
background-color: #1f8064;
}
.profil .inner p {
font-size: 15px;
}
.profil .inner .tanggal {
margin-top: -8px;
}
.profil .inner .detail {
color: #289d7d;
cursor: pointer;
}
.profil .modal-detail .modal-content {
border-radius: 10px;
border: none;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.profil .modal-dialog span {
font-size: 14px;
}
.profil .modal-dialog span.kode,
.profil .modal-dialog span.status,
.profil .modal-dialog span.tanggal {
color: #2baf8c;
font-weight: bold;
}
.profil .select2-selection__rendered {
line-height: 36px !important;
}
.profil .select2-container .select2-selection--single {
height: 38px !important;
}
.profil .select2-selection__arrow {
height: 34px !important;
}
/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination>li {
margin: 0 5px;
}
.pagination .page-link {
border-radius: 50% !important;
width: 35px;
height: 35px;
display: flex;
justify-content: center;
}
.pagination .page-link i {
font-size: 10px;
line-height: 23px;
}
.pagination li.disabled span.page-link,
.pagination li span.page-link,
.pagination li.disabled a.page-link {
border: none;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.pagination li.active .page-link,
.pagination li .page-link,
.pagination li .page {
line-height: 22px !important;
border: none;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.pagination>li.active>a {
background-color: white;
color: purple;
}
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
box-shadow: none !important;
color: #289d7d;
}
.pagination>li.active>a,
.pagination>li.active>span {
background-color: #289d7d !important;
border: none;
cursor: context-menu;
}
.pagination>li.active>a:focus,
.pagination>li.active>a:hover,
.pagination>li.active>span:focus,
.pagination>li.active>span:hover {
color: white;
} | 0.52074 | 0.128498 |
header {
text-align: center;
}
th, td {
padding: 15px;
}
select {
padding: 2px 15px;
background-color: rgb(181, 222, 255);
font-weight: 600;
padding: 5px 0;
}
select option {
font-size: 11px;
}
.innerControls input {
font-weight: normal;
float: right;
}
#controls {
display: flex;
flex-direction: column;
width: 80%;
max-width: 1200px;
margin: 0 auto 20px auto;
border: 1px solid #606060;
overflow: hidden;
}
.demo-controls-wrapper {
flex: 1 1 auto;
max-width: 100%;
padding: 5px 5px 0 3px;
}
.config-editor-wrapper {
flex: 1 1 auto;
display: flex;
flex-direction: column;
border-top: solid 1px #ccc;
height: 256px;
}
.config-editor-container {
flex: 1 1 auto;
position: relative;
width: 100%;
height: 100%;
}
#config-editor {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.config-editor-commands {
flex: 1 1 auto;
background-color: #ddd;
border-top: solid 1px #ccc;
padding: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.config-editor-commands label {
margin-bottom: 0;
}
.config-editor-commands button {
padding: 5px 8px;
font-size: 14px;
}
.innerControls {
display: flex;
font-size: 12px;
align-items: center;
margin-bottom: 5px;
padding-left: 5px;
justify-content: space-between;
}
.videoCentered {
width: 720px;
margin-left: auto;
margin-right: auto;
display: block
}
.center {
width: 70%;
min-width: 615px;
overflow: hidden;
margin-left: auto;
margin-right: auto;
display: block
}
#toggleButtons button {
width: 19%;
display : inline-block;
text-align: center;
font-size: 10pt;
font-weight: bolder;
background-color: rgb(181, 222, 255)
}
#statusOut {
height: auto;
max-height: 4em;
overflow: auto;
}
#errorOut {
height: auto;
max-height: 4em;
overflow: auto;
}
#streamURL,
#streamSelect {
width: calc(100% - 4px);
margin-left: 3px;
}
#streamURL {
margin-bottom: 10px;
padding-left: 3px;
}
#streamSelect {
padding: 5px 0;
}
#StreamPermalink {
flex: 1 1 auto;
min-width: 0;
overflow-wrap: break-word;
overflow: hidden; /* for IE11 */
padding: 10px 0 0 10px;
}
#StreamPermalink a {
font-size: 10px;
font-family: monospace;
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
#controls {
flex-direction: row;
}
.demo-controls-wrapper {
max-width: 50%;
}
.config-editor-wrapper {
height: auto;
border-top: 0;
border-left: solid 1px #ccc;
}
} | labfiles/lab04/nginx2/nginx2-src/html/style.css | header {
text-align: center;
}
th, td {
padding: 15px;
}
select {
padding: 2px 15px;
background-color: rgb(181, 222, 255);
font-weight: 600;
padding: 5px 0;
}
select option {
font-size: 11px;
}
.innerControls input {
font-weight: normal;
float: right;
}
#controls {
display: flex;
flex-direction: column;
width: 80%;
max-width: 1200px;
margin: 0 auto 20px auto;
border: 1px solid #606060;
overflow: hidden;
}
.demo-controls-wrapper {
flex: 1 1 auto;
max-width: 100%;
padding: 5px 5px 0 3px;
}
.config-editor-wrapper {
flex: 1 1 auto;
display: flex;
flex-direction: column;
border-top: solid 1px #ccc;
height: 256px;
}
.config-editor-container {
flex: 1 1 auto;
position: relative;
width: 100%;
height: 100%;
}
#config-editor {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.config-editor-commands {
flex: 1 1 auto;
background-color: #ddd;
border-top: solid 1px #ccc;
padding: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.config-editor-commands label {
margin-bottom: 0;
}
.config-editor-commands button {
padding: 5px 8px;
font-size: 14px;
}
.innerControls {
display: flex;
font-size: 12px;
align-items: center;
margin-bottom: 5px;
padding-left: 5px;
justify-content: space-between;
}
.videoCentered {
width: 720px;
margin-left: auto;
margin-right: auto;
display: block
}
.center {
width: 70%;
min-width: 615px;
overflow: hidden;
margin-left: auto;
margin-right: auto;
display: block
}
#toggleButtons button {
width: 19%;
display : inline-block;
text-align: center;
font-size: 10pt;
font-weight: bolder;
background-color: rgb(181, 222, 255)
}
#statusOut {
height: auto;
max-height: 4em;
overflow: auto;
}
#errorOut {
height: auto;
max-height: 4em;
overflow: auto;
}
#streamURL,
#streamSelect {
width: calc(100% - 4px);
margin-left: 3px;
}
#streamURL {
margin-bottom: 10px;
padding-left: 3px;
}
#streamSelect {
padding: 5px 0;
}
#StreamPermalink {
flex: 1 1 auto;
min-width: 0;
overflow-wrap: break-word;
overflow: hidden; /* for IE11 */
padding: 10px 0 0 10px;
}
#StreamPermalink a {
font-size: 10px;
font-family: monospace;
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
#controls {
flex-direction: row;
}
.demo-controls-wrapper {
max-width: 50%;
}
.config-editor-wrapper {
height: auto;
border-top: 0;
border-left: solid 1px #ccc;
}
} | 0.493409 | 0.112991 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);
body {
background: #2b3d6b;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
color: #fff;
}
.col-centered {
min-height: 100%;
min-height: 100vh;
display: flex;
align-items: center;
}
a,
a:hover {
text-decoration: none;
color: #fff;
}
.login-panel {
background: #355d98;
padding: 50px;
min-height: 20px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.login-panel-title {
color: #fff;
font-weight: 600;
margin: 0 0 5px 0;
}
.login-panel-tagline {
color: #fff;
font-weight: 300;
}
.login-panel input {
font-weight: 300;
background: #2b3d6b;
color: #fbfbfb;
border: none;
border-radius: 25px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.login-panel button {
font-weight: 600;
background: #2b3d6b;
color: #fbfbfb;
border: none;
border-radius: 25px;
font-size: 12px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.login-panel button:hover {
background: #3184b7;
background: -moz-radial-gradient(center, ellipse cover, #3184b7 0%, #2b3d6b 100%);
background: -webkit-radial-gradient(center, ellipse cover, #3184b7 0%, #2b3d6b 100%);
background: radial-gradient(ellipse at center, #3184b7 0%, #2b3d6b 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#3184b7', endColorstr='#2b3d6b', GradientType=1);
color: #fff;
}
.login-panel-section {
margin-top: 40px;
}
.checkbox {
font-size: 12px;
}
.input-group-addon{
background-color: #2db456;
border:none;
color:#fff;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
}
.header-ribbon{
background-color: #355d98;
width: 100%;
height: 5px;
display: block;
}
.login-panel-footer{
clear: both;
vertical-align: bottom;
width: 100%;
height: 25px;
} | assets/css/style.css | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);
body {
background: #2b3d6b;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
color: #fff;
}
.col-centered {
min-height: 100%;
min-height: 100vh;
display: flex;
align-items: center;
}
a,
a:hover {
text-decoration: none;
color: #fff;
}
.login-panel {
background: #355d98;
padding: 50px;
min-height: 20px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.login-panel-title {
color: #fff;
font-weight: 600;
margin: 0 0 5px 0;
}
.login-panel-tagline {
color: #fff;
font-weight: 300;
}
.login-panel input {
font-weight: 300;
background: #2b3d6b;
color: #fbfbfb;
border: none;
border-radius: 25px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.login-panel button {
font-weight: 600;
background: #2b3d6b;
color: #fbfbfb;
border: none;
border-radius: 25px;
font-size: 12px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.login-panel button:hover {
background: #3184b7;
background: -moz-radial-gradient(center, ellipse cover, #3184b7 0%, #2b3d6b 100%);
background: -webkit-radial-gradient(center, ellipse cover, #3184b7 0%, #2b3d6b 100%);
background: radial-gradient(ellipse at center, #3184b7 0%, #2b3d6b 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#3184b7', endColorstr='#2b3d6b', GradientType=1);
color: #fff;
}
.login-panel-section {
margin-top: 40px;
}
.checkbox {
font-size: 12px;
}
.input-group-addon{
background-color: #2db456;
border:none;
color:#fff;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
}
.header-ribbon{
background-color: #355d98;
width: 100%;
height: 5px;
display: block;
}
.login-panel-footer{
clear: both;
vertical-align: bottom;
width: 100%;
height: 25px;
} | 0.348645 | 0.147555 |
body {
/* width: 990px;
height: 1320px; */
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
}
header {
width: 100%;
height: 45px;
border-radius: 5px 5px 0 0;
background-color: #2f364a;
}
footer {
width: 100%;
height: 45px;
border-radius: 0 0 5px 5px;
background-color: #181e2c;
}
.Bar {
display: flex;
align-items: center;
justify-content: center;
position: relative;
flex-direction: column;
width: 200px;
height: 1000px;
background-color: #1f2637;
}
button {
/* position: relative; */
top: 30px;
left: 25px;
width: 160px;
height: 40px;
border-radius: 4px;
background-color: #f2795a;
border: 0px solid red;
color:#ffffff;
}
.Bar .button i {
position: absolute;
height: 13px;
width: 13px;
left: 40px;
top: 68px;
z-index: 9;
color: #ffffff;
}
.navList li {
position: relative;
margin-left: 30px;
}
a {
text-decoration: none;
color: #78829d;
font-size: 13px;
font-weight: 400;
line-height: 26px;
margin-left: -15px;
}
.navList {
list-style-type: none;
}
.navigation .navList li .list i {
width: 15px;
height: 15px;
top: 16px;
left: -50px;
position: absolute;
color: #78829d;
}
.navigation {
position: relative;
top: 20px;
width: 200px;
border-top: 4px solid #181e2c;
border-bottom: 4px solid #181e2c;
}
.list {
height: 38px;
display: flex;
align-items: center;
padding: 5px;
}
.categories {
position: relative;
top: 20px;
width: 200px;
border-bottom: 4px solid #181e2c;
}
.categories .navList li::before {
content: "";
position: absolute;
top: 10px;
left: -40px;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: #e64c66;
}
.categories .navList li {
margin-left: 16px;
position: relative;
margin-bottom: 20px;
}
.categories .navList li a {
margin-left: -10px;
}
.categories .navList li:nth-child(2)::before{
background-color: #ffab00;
}
.categories .navList li:nth-child(3)::before{
background-color: #00bfdd;
}
.categories .navList li:nth-child(4)::before{
background-color: #7874cf;
}
.Developments {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
position: relative;
}
.Event{
display: flex;
}
.EventText {
width: 129px;
}
.EventText p {
color: #97b3ce;
font-size: 12px;
font-weight: 400;
line-height: 18px;
}
.EventText p:nth-child(1) {
margin-bottom: 18px;
}
.Icon i {
color: #97b3ce;
margin-right: 11px;
}
.Event:nth-child(1) {
margin: 50px 0 37px 0;
}
.EventText span {
color: #6f7d95;
} | src/ex11_html-css-advanced/task-04.css | body {
/* width: 990px;
height: 1320px; */
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
}
header {
width: 100%;
height: 45px;
border-radius: 5px 5px 0 0;
background-color: #2f364a;
}
footer {
width: 100%;
height: 45px;
border-radius: 0 0 5px 5px;
background-color: #181e2c;
}
.Bar {
display: flex;
align-items: center;
justify-content: center;
position: relative;
flex-direction: column;
width: 200px;
height: 1000px;
background-color: #1f2637;
}
button {
/* position: relative; */
top: 30px;
left: 25px;
width: 160px;
height: 40px;
border-radius: 4px;
background-color: #f2795a;
border: 0px solid red;
color:#ffffff;
}
.Bar .button i {
position: absolute;
height: 13px;
width: 13px;
left: 40px;
top: 68px;
z-index: 9;
color: #ffffff;
}
.navList li {
position: relative;
margin-left: 30px;
}
a {
text-decoration: none;
color: #78829d;
font-size: 13px;
font-weight: 400;
line-height: 26px;
margin-left: -15px;
}
.navList {
list-style-type: none;
}
.navigation .navList li .list i {
width: 15px;
height: 15px;
top: 16px;
left: -50px;
position: absolute;
color: #78829d;
}
.navigation {
position: relative;
top: 20px;
width: 200px;
border-top: 4px solid #181e2c;
border-bottom: 4px solid #181e2c;
}
.list {
height: 38px;
display: flex;
align-items: center;
padding: 5px;
}
.categories {
position: relative;
top: 20px;
width: 200px;
border-bottom: 4px solid #181e2c;
}
.categories .navList li::before {
content: "";
position: absolute;
top: 10px;
left: -40px;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: #e64c66;
}
.categories .navList li {
margin-left: 16px;
position: relative;
margin-bottom: 20px;
}
.categories .navList li a {
margin-left: -10px;
}
.categories .navList li:nth-child(2)::before{
background-color: #ffab00;
}
.categories .navList li:nth-child(3)::before{
background-color: #00bfdd;
}
.categories .navList li:nth-child(4)::before{
background-color: #7874cf;
}
.Developments {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
position: relative;
}
.Event{
display: flex;
}
.EventText {
width: 129px;
}
.EventText p {
color: #97b3ce;
font-size: 12px;
font-weight: 400;
line-height: 18px;
}
.EventText p:nth-child(1) {
margin-bottom: 18px;
}
.Icon i {
color: #97b3ce;
margin-right: 11px;
}
.Event:nth-child(1) {
margin: 50px 0 37px 0;
}
.EventText span {
color: #6f7d95;
} | 0.408985 | 0.07208 |
body {
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
font-family: var(--vscode-font-family);
font-weight: var(--vscode-font-weight);
font-size: var(--vscode-font-size);
margin: 0;
padding: 0 20px;
}
.finder {
display: block;
position: fixed;
width: 250px;
right: 5px;
top: 5px;
padding: 10px 10px;
background-color: rgba(0, 0, 0, 0.7);
}
.finder input {
width: 220px;
padding: 5px 5px;
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
outline: none;
border: none;
}
.badge {
background-color: var(--vscode-activityBarBadge-background);
color: var(--vscode-activityBarBadge-foreground);
border-radius: 5px;
font-size: 9px;
padding: 2px 4px;
}
mark{
background: orange;
color: black;
}
.list {
padding: 5px 5px;
display: block;
width: 100%;
margin: 2px 2px;
}
.list:hover, .list.active {
background-color: rgba(0, 0, 0, 0.2);
}
a {
cursor: pointer;
}
#viewer {
padding-top: 10px;
display: flex;
flex-direction: row;
}
.remotecalls {
padding-right: 0px;
max-height: 98vh;
overflow-y: scroll;
overflow-x: hidden;
}
/* width */
.remotecalls::-webkit-scrollbar,.tab-content::-webkit-scrollbar {
width: 2px;
}
.rcdetails {
white-space: -webkit-pre-wrap;
/* Chrome & Safari */
white-space: pre-wrap;
/* CSS3 */
word-break: break-all;
white-space: normal;
}
p.code span {
white-space: pre-wrap;
/* CSS3 */
word-break: break-all;
color: var(--vscode-textPreformat-foreground);
}
p.code textarea{
width: 95%;
max-width: 95%;
min-width: 95%;
height: 300px;
margin-left: 45px;
color: var(--vscode-textPreformat-foreground);
background-color: var(--vscode-editor-background);
}
.rcdetails .tab-content {
padding: 10px 15px;
max-height: 90vh;
overflow-y: scroll;
}
.gutter.gutter-horizontal {
cursor: ew-resize;
background-color: var(--vscode-dropdown-background);
}
.tab {
display: flex;
width: 100%;
flex-direction: row;
}
.tab > a {
padding: 10px 10px;
background-color: var(--vscode-titleBar-activeBackground);
}
.tab > a.active {
background-color: var(--vscode-titleBar-inactiveBackground);
}
.tab > a.active::before {
content: "> ";
border-top: 2px solid var(--vscode-textLink-activeForeground);
}
/*
.tab > a.active::after {
content: " < ";
} */
.long-content {
/* white-space: nowrap; */
/* width: calc(100% - 40em); */
/* overflow: hidden; */
text-overflow: ellipsis;
} | ui-bundle/css/har.css | body {
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
font-family: var(--vscode-font-family);
font-weight: var(--vscode-font-weight);
font-size: var(--vscode-font-size);
margin: 0;
padding: 0 20px;
}
.finder {
display: block;
position: fixed;
width: 250px;
right: 5px;
top: 5px;
padding: 10px 10px;
background-color: rgba(0, 0, 0, 0.7);
}
.finder input {
width: 220px;
padding: 5px 5px;
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
outline: none;
border: none;
}
.badge {
background-color: var(--vscode-activityBarBadge-background);
color: var(--vscode-activityBarBadge-foreground);
border-radius: 5px;
font-size: 9px;
padding: 2px 4px;
}
mark{
background: orange;
color: black;
}
.list {
padding: 5px 5px;
display: block;
width: 100%;
margin: 2px 2px;
}
.list:hover, .list.active {
background-color: rgba(0, 0, 0, 0.2);
}
a {
cursor: pointer;
}
#viewer {
padding-top: 10px;
display: flex;
flex-direction: row;
}
.remotecalls {
padding-right: 0px;
max-height: 98vh;
overflow-y: scroll;
overflow-x: hidden;
}
/* width */
.remotecalls::-webkit-scrollbar,.tab-content::-webkit-scrollbar {
width: 2px;
}
.rcdetails {
white-space: -webkit-pre-wrap;
/* Chrome & Safari */
white-space: pre-wrap;
/* CSS3 */
word-break: break-all;
white-space: normal;
}
p.code span {
white-space: pre-wrap;
/* CSS3 */
word-break: break-all;
color: var(--vscode-textPreformat-foreground);
}
p.code textarea{
width: 95%;
max-width: 95%;
min-width: 95%;
height: 300px;
margin-left: 45px;
color: var(--vscode-textPreformat-foreground);
background-color: var(--vscode-editor-background);
}
.rcdetails .tab-content {
padding: 10px 15px;
max-height: 90vh;
overflow-y: scroll;
}
.gutter.gutter-horizontal {
cursor: ew-resize;
background-color: var(--vscode-dropdown-background);
}
.tab {
display: flex;
width: 100%;
flex-direction: row;
}
.tab > a {
padding: 10px 10px;
background-color: var(--vscode-titleBar-activeBackground);
}
.tab > a.active {
background-color: var(--vscode-titleBar-inactiveBackground);
}
.tab > a.active::before {
content: "> ";
border-top: 2px solid var(--vscode-textLink-activeForeground);
}
/*
.tab > a.active::after {
content: " < ";
} */
.long-content {
/* white-space: nowrap; */
/* width: calc(100% - 40em); */
/* overflow: hidden; */
text-overflow: ellipsis;
} | 0.413951 | 0.13681 |
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&family=Roboto&display=swap");
/* variable declarations */
:root {
--blue: #00a6ed;
--grey: #d5d8d5;
--orange: #fa8334;
--dark_blue: #0d2c54;
}
/* Styling for all elements */
* {
box-sizing: border-box;
margin: 0;
}
a {
text-decoration: none;
color: var(--orange);
}
/* Styling for the entire body */
body {
background: var(--grey);
}
/* The first thing someone sees */
.intro {
font-family: "Ubuntu", sans-serif;
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
url("./Images/background3.jpg");
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 100vh;
position: relative;
color: var(--blue);
}
.name_container {
position: absolute;
top: 45%;
left: 50%;
width: 100%;
transform: translate(-50%, -50%);
}
/* My name */
.name {
text-align: center;
width: 100%;
top: 50%;
font-size: 4rem;
}
.name:hover {
text-shadow: -2px -2px 1px var(--orange);
}
/* .name::before {
content: "<NAME>";
z-index: -2;
width: 100%;
position: absolute;
color: var(--orange);
font-weight: 600;
transition: all 100ms linear;
}
.name:hover::before {
transform: translate(-2px, -2px);
} */
#social_links {
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: 30px;
}
/* #social_links > .social {
font-family: "Ubuntu", sans-serif;
display: inline-block;
margin: auto 50px;
font-weight: 600;
font-size: 1.6rem;
color: var(--blue);
z-index: 3;
} */
#social_links * {
display: inline;
margin: auto 30px;
color: var(--grey);
font-size: 4rem;
}
#social_links *:hover {
color: var(--blue);
}
.intro > .fas {
position: absolute;
left: 50%;
top: 85vh;
display: block;
font-size: 3rem;
color: var(--blue);
animation: up_and_down 1.7s infinite;
}
@keyframes up_and_down {
50% {
transform: translateY(10px);
}
75% {
transform: translateY(-15px);
}
100% {
transform: translateY(5px);
}
}
.second_part {
font-family: "Roboto", sans-serif;
/* background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)); */
/* url("./Images/alt_background.jpg") center/cover no-repeat fixed; */
height: 100vh;
position: relative;
}
.second_part h1 {
margin: 50px auto;
margin-top: 100px;
text-align: center;
font-family: "Ubuntu", sans-serif;
color: var(--dark_blue);
font-size: 5rem;
}
.second_part h1:hover {
text-shadow: -2px -2px 2px var(--blue);
}
.intro_para {
font-size: clamp(0.7rem, 2vw, 1.5rem);
font-weight: 500;
width: 50vw;
margin: auto;
color: var(--dark_blue);
position: absolute;
left: 50%;
transform: translateX(-50%);
letter-spacing: 1.3px;
line-height: 40px;
}
.intro_para a {
font-weight: 600;
}
.intro_para a:hover {
font-size: 1.6rem;
}
#falling_left {
width: 30px;
height: 70px;
background: var(--dark_blue);
margin: 10px 70px;
/* animation-name: falling;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in; */
}
#falling_right {
width: 30px;
height: 70px;
background: var(--orange);
float: right;
margin: 10px 70px;
/* animation: falling 3s 2.1s infinite ease-in; */
}
@keyframes falling {
100% {
transform: translateY(100vh);
}
}
@media screen and (max-width: 1057px) {
.name,
.second_part h1 {
font-size: 7vw;
}
#social_links *,
.intro > .fas {
font-size: 5.5vw;
}
#social_links * {
margin: auto 2vw;
}
.intro > .fas {
top: 80vh;
}
}
@media screen and (max-width: 550px) {
.name,
.second_part h1 {
font-size: min(50px, 15vw);
}
#social_links *,
.intro > .fas {
font-size: min(50px, 8vw);
}
} | css/index.css | @import url("https://fonts.googleapis.com/css2?family=Ubuntu&family=Roboto&display=swap");
/* variable declarations */
:root {
--blue: #00a6ed;
--grey: #d5d8d5;
--orange: #fa8334;
--dark_blue: #0d2c54;
}
/* Styling for all elements */
* {
box-sizing: border-box;
margin: 0;
}
a {
text-decoration: none;
color: var(--orange);
}
/* Styling for the entire body */
body {
background: var(--grey);
}
/* The first thing someone sees */
.intro {
font-family: "Ubuntu", sans-serif;
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
url("./Images/background3.jpg");
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 100vh;
position: relative;
color: var(--blue);
}
.name_container {
position: absolute;
top: 45%;
left: 50%;
width: 100%;
transform: translate(-50%, -50%);
}
/* My name */
.name {
text-align: center;
width: 100%;
top: 50%;
font-size: 4rem;
}
.name:hover {
text-shadow: -2px -2px 1px var(--orange);
}
/* .name::before {
content: "<NAME>";
z-index: -2;
width: 100%;
position: absolute;
color: var(--orange);
font-weight: 600;
transition: all 100ms linear;
}
.name:hover::before {
transform: translate(-2px, -2px);
} */
#social_links {
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: 30px;
}
/* #social_links > .social {
font-family: "Ubuntu", sans-serif;
display: inline-block;
margin: auto 50px;
font-weight: 600;
font-size: 1.6rem;
color: var(--blue);
z-index: 3;
} */
#social_links * {
display: inline;
margin: auto 30px;
color: var(--grey);
font-size: 4rem;
}
#social_links *:hover {
color: var(--blue);
}
.intro > .fas {
position: absolute;
left: 50%;
top: 85vh;
display: block;
font-size: 3rem;
color: var(--blue);
animation: up_and_down 1.7s infinite;
}
@keyframes up_and_down {
50% {
transform: translateY(10px);
}
75% {
transform: translateY(-15px);
}
100% {
transform: translateY(5px);
}
}
.second_part {
font-family: "Roboto", sans-serif;
/* background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)); */
/* url("./Images/alt_background.jpg") center/cover no-repeat fixed; */
height: 100vh;
position: relative;
}
.second_part h1 {
margin: 50px auto;
margin-top: 100px;
text-align: center;
font-family: "Ubuntu", sans-serif;
color: var(--dark_blue);
font-size: 5rem;
}
.second_part h1:hover {
text-shadow: -2px -2px 2px var(--blue);
}
.intro_para {
font-size: clamp(0.7rem, 2vw, 1.5rem);
font-weight: 500;
width: 50vw;
margin: auto;
color: var(--dark_blue);
position: absolute;
left: 50%;
transform: translateX(-50%);
letter-spacing: 1.3px;
line-height: 40px;
}
.intro_para a {
font-weight: 600;
}
.intro_para a:hover {
font-size: 1.6rem;
}
#falling_left {
width: 30px;
height: 70px;
background: var(--dark_blue);
margin: 10px 70px;
/* animation-name: falling;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in; */
}
#falling_right {
width: 30px;
height: 70px;
background: var(--orange);
float: right;
margin: 10px 70px;
/* animation: falling 3s 2.1s infinite ease-in; */
}
@keyframes falling {
100% {
transform: translateY(100vh);
}
}
@media screen and (max-width: 1057px) {
.name,
.second_part h1 {
font-size: 7vw;
}
#social_links *,
.intro > .fas {
font-size: 5.5vw;
}
#social_links * {
margin: auto 2vw;
}
.intro > .fas {
top: 80vh;
}
}
@media screen and (max-width: 550px) {
.name,
.second_part h1 {
font-size: min(50px, 15vw);
}
#social_links *,
.intro > .fas {
font-size: min(50px, 8vw);
}
} | 0.528047 | 0.1011 |
.inner_container:before, .inner_container:after { content: '.'; display: block; overflow: hidden; visibility: hidden; font-size: 0; line-height: 0; width: 0; height: 0; }
.inner_container:after { clear: both; }
.inner_container { zoom: 1; width: 102%; margin-left: -1%; }
[class*="col_"] { display: inline; float: left; margin-right: 1%; margin-left: 1%; }
.col_1of4 { width: 23%; }
.col_2of4 { width: 48%; }
.col_3of4 { width: 73%; }
.col_1of2 { width: 48%; }
.col_1of3 { width: 31.33333333333333%; }
.col_2of3 { width: 64.6666666666666%; }
.col_1of1 { width: 98%; }
.col_1of5 { width: 18%; }
.col_2of5 { width: 38%; }
.col_3of5 { width: 58%; }
.col_4of5 { width: 78%; }
/*
* Classes set to extend wordpresses default
*/
.button-secondary { }
.wp-core-ui .button-secondary {
background: #dd1a2e;
background: -moz-linear-gradient(top, #dd1a2e 0%, #a01315 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dd1a2e), color-stop(100%,#a01315));
background: -webkit-linear-gradient(top, #dd1a2e 0%,#a01315 100%);
background: -o-linear-gradient(top, #dd1a2e 0%,#a01315 100%);
background: -ms-linear-gradient(top, #dd1a2e 0%,#a01315 100%);
background: linear-gradient(to bottom, #dd1a2e 0%,#a01315 100%);
border-color: #A01315;
border-bottom-color: #A01315;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
color: #FFF;
text-decoration: none;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.wp-core-ui .button-secondary.hover, .wp-core-ui .button-secondary:hover, .wp-core-ui .button-secondary.focus, .wp-core-ui .button-secondary:focus {
background: #dd1a2e;
background: -moz-linear-gradient(top, #dd1a2e 0%, #891010 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dd1a2e), color-stop(100%,#891010));
background: -webkit-linear-gradient(top, #dd1a2e 0%,#891010 100%);
background: -o-linear-gradient(top, #dd1a2e 0%,#891010 100%);
background: -ms-linear-gradient(top, #dd1a2e 0%,#891010 100%);
background: linear-gradient(to bottom, #dd1a2e 0%,#891010 100%);
border-color: #891010;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
color: #FFF;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.form-group {
margin-top: 10px;
margin-bottom: 10px;
}
#poststuff .sp_metabox {
border-radius: 5px;
}
#poststuff .sp_metabox .header {
background: #333333;
color: #fff;
padding: 0 10px;
border-radius: 5px 5px 0 0;
}
#poststuff .sp_metabox .header h2 {
line-height: 1em;
color: #fff;
padding: 10px 0;
text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
margin: 0;
font-size: 1.2em;
}
#poststuff .sp_metabox .body {
background: #fff;
border-top: none;
font-family: 'Open Sans', sans-serif;
padding: 10px;
border-right: 1px solid #dfdfdf;
border-left: 1px solid #dfdfdf;
}
#poststuff .sp_metabox .body hr {
border: none; border-top: 1px solid #ccc; border-bottom: 1px solid #FFF; margin: 20px 0;
}
#poststuff .sp_metabox .footer { background:#f8f8f8; border-radius: 0 0 5px 5px; padding: 10px; border: 1px solid #dfdfdf; }
#poststuff .sp_metabox img { max-width: 100%; width: auto; height: auto; } | a_sp_core/css/sp.core.css | .inner_container:before, .inner_container:after { content: '.'; display: block; overflow: hidden; visibility: hidden; font-size: 0; line-height: 0; width: 0; height: 0; }
.inner_container:after { clear: both; }
.inner_container { zoom: 1; width: 102%; margin-left: -1%; }
[class*="col_"] { display: inline; float: left; margin-right: 1%; margin-left: 1%; }
.col_1of4 { width: 23%; }
.col_2of4 { width: 48%; }
.col_3of4 { width: 73%; }
.col_1of2 { width: 48%; }
.col_1of3 { width: 31.33333333333333%; }
.col_2of3 { width: 64.6666666666666%; }
.col_1of1 { width: 98%; }
.col_1of5 { width: 18%; }
.col_2of5 { width: 38%; }
.col_3of5 { width: 58%; }
.col_4of5 { width: 78%; }
/*
* Classes set to extend wordpresses default
*/
.button-secondary { }
.wp-core-ui .button-secondary {
background: #dd1a2e;
background: -moz-linear-gradient(top, #dd1a2e 0%, #a01315 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dd1a2e), color-stop(100%,#a01315));
background: -webkit-linear-gradient(top, #dd1a2e 0%,#a01315 100%);
background: -o-linear-gradient(top, #dd1a2e 0%,#a01315 100%);
background: -ms-linear-gradient(top, #dd1a2e 0%,#a01315 100%);
background: linear-gradient(to bottom, #dd1a2e 0%,#a01315 100%);
border-color: #A01315;
border-bottom-color: #A01315;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
color: #FFF;
text-decoration: none;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.wp-core-ui .button-secondary.hover, .wp-core-ui .button-secondary:hover, .wp-core-ui .button-secondary.focus, .wp-core-ui .button-secondary:focus {
background: #dd1a2e;
background: -moz-linear-gradient(top, #dd1a2e 0%, #891010 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dd1a2e), color-stop(100%,#891010));
background: -webkit-linear-gradient(top, #dd1a2e 0%,#891010 100%);
background: -o-linear-gradient(top, #dd1a2e 0%,#891010 100%);
background: -ms-linear-gradient(top, #dd1a2e 0%,#891010 100%);
background: linear-gradient(to bottom, #dd1a2e 0%,#891010 100%);
border-color: #891010;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
color: #FFF;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.form-group {
margin-top: 10px;
margin-bottom: 10px;
}
#poststuff .sp_metabox {
border-radius: 5px;
}
#poststuff .sp_metabox .header {
background: #333333;
color: #fff;
padding: 0 10px;
border-radius: 5px 5px 0 0;
}
#poststuff .sp_metabox .header h2 {
line-height: 1em;
color: #fff;
padding: 10px 0;
text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
margin: 0;
font-size: 1.2em;
}
#poststuff .sp_metabox .body {
background: #fff;
border-top: none;
font-family: 'Open Sans', sans-serif;
padding: 10px;
border-right: 1px solid #dfdfdf;
border-left: 1px solid #dfdfdf;
}
#poststuff .sp_metabox .body hr {
border: none; border-top: 1px solid #ccc; border-bottom: 1px solid #FFF; margin: 20px 0;
}
#poststuff .sp_metabox .footer { background:#f8f8f8; border-radius: 0 0 5px 5px; padding: 10px; border: 1px solid #dfdfdf; }
#poststuff .sp_metabox img { max-width: 100%; width: auto; height: auto; } | 0.424412 | 0.238462 |
body {
background-color: #eee;
-webkit-text-size-adjust: 100%;
font-size: 15px;
}
#contents {
position: relative;
}
/* for PC */
@media screen and (min-width:992px) {
nav {
bottom: auto;
box-sizing: border-box;
left: auto;
padding: 0 15px;
position: absolute;
right: auto;
top: 0;
width: 34%;
}
article {
bottom: auto;
box-sizing: border-box;
left: 34%;
padding: 0 15px;
position: relative;
right: auto;
top: 0;
width: 66%;
}
}
/* for Smart Phone */
@media screen and (max-width:991px) {
nav {
bottom: auto;
box-sizing: border-box;
left: auto;
padding: 0 15px;
position: static;
right: auto;
top: auto;
width: 100%;
}
article {
bottom: auto;
box-sizing: border-box;
left: auto;
padding: 0 15px;
position: static;
right: auto;
top: auto;
width: 100%;
}
}
footer {
background: #eee;
}
footer div {
padding: 16px 0;
text-align: right;
}
h6 {
color: #777;
font-size: 14px;
}
#list4 th:nth-child(3) {
min-width: 120px;
}
pre {
font-size: 15px;
}
article form a.btn,
article form input,
article form button {
margin-bottom: 4px;
}
.green {
color: #5cb85c;
}
.red {
color: #d9534f;
}
#jump_to_top {
bottom: 16px;
position: fixed;
right: 16px;
}
#jump_to_top a,
#jump_to_top a:hover {
color: #aa9;
font-size: 2.5em;
text-decoration: none;
}
.btn-container {
margin-bottom: 1.2em;
}
/**
* 見出し横に表示される、自身へのリンク
*/
.js-anchor {
font-size: 14px;
visibility: hidden;
margin-left: -14px;
}
.panel-heading:hover .js-anchor {
visibility: visible;
}
.js-anchor,
.js-anchor:hover,
.js-anchor:active {
color: inherit;
}
/**
* Override Bootstrap3
*/
.jumbotron {
background-color: #486;
background-image: linear-gradient(30deg, #3d8260 12%, transparent 12.5%, transparent 87%, #3d8260 87.5%, #3d8260),
linear-gradient(150deg, #3d8260 12%, transparent 12.5%, transparent 87%, #3d8260 87.5%, #3d8260),
linear-gradient(30deg, #3d8260 12%, transparent 12.5%, transparent 87%, #3d8260 87.5%, #3d8260),
linear-gradient(150deg, #3d8260 12%, transparent 12.5%, transparent 87%, #3d8260 87.5%, #3d8260),
linear-gradient(60deg, #4a8e6c 25%, transparent 25.5%, transparent 75%, #4a8e6c 75%, #4a8e6c),
linear-gradient(60deg, #4a8e6c 25%, transparent 25.5%, transparent 75%, #4a8e6c 75%, #4a8e6c);
background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
background-size: 80px 140px;
box-shadow: 0 1px 2px #666;
color: #fff;
text-shadow: 0 1px 1px #333;
}
.page-title {
font-family: Arial;
}
.jumbotron-link,
.jumbotron-link:hover {
color: inherit;
}
.list-group-item:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.list-group-item:last-child {
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
.panel-primary {
border: 0;
border-radius: 2px;
box-shadow: 0 1px 2px #aaa;
margin-bottom: 30px;
}
.panel-primary > .panel-heading {
background-color: #777;
border-color: #777;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.btn-primary {
background-color: #597;
border-color: #509472;
}
.btn-primary:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover {
background-color: #486;
border-color: #3f8361;
}
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:focus {
background-color: #375;
border-color: #2d7250;
}
a,
a:active {
color: #486;
}
a:hover,
a:focus {
color: #375;
} | public/packages/sleepingowl/jquery.add-input-area-master/demo/sample.css | body {
background-color: #eee;
-webkit-text-size-adjust: 100%;
font-size: 15px;
}
#contents {
position: relative;
}
/* for PC */
@media screen and (min-width:992px) {
nav {
bottom: auto;
box-sizing: border-box;
left: auto;
padding: 0 15px;
position: absolute;
right: auto;
top: 0;
width: 34%;
}
article {
bottom: auto;
box-sizing: border-box;
left: 34%;
padding: 0 15px;
position: relative;
right: auto;
top: 0;
width: 66%;
}
}
/* for Smart Phone */
@media screen and (max-width:991px) {
nav {
bottom: auto;
box-sizing: border-box;
left: auto;
padding: 0 15px;
position: static;
right: auto;
top: auto;
width: 100%;
}
article {
bottom: auto;
box-sizing: border-box;
left: auto;
padding: 0 15px;
position: static;
right: auto;
top: auto;
width: 100%;
}
}
footer {
background: #eee;
}
footer div {
padding: 16px 0;
text-align: right;
}
h6 {
color: #777;
font-size: 14px;
}
#list4 th:nth-child(3) {
min-width: 120px;
}
pre {
font-size: 15px;
}
article form a.btn,
article form input,
article form button {
margin-bottom: 4px;
}
.green {
color: #5cb85c;
}
.red {
color: #d9534f;
}
#jump_to_top {
bottom: 16px;
position: fixed;
right: 16px;
}
#jump_to_top a,
#jump_to_top a:hover {
color: #aa9;
font-size: 2.5em;
text-decoration: none;
}
.btn-container {
margin-bottom: 1.2em;
}
/**
* 見出し横に表示される、自身へのリンク
*/
.js-anchor {
font-size: 14px;
visibility: hidden;
margin-left: -14px;
}
.panel-heading:hover .js-anchor {
visibility: visible;
}
.js-anchor,
.js-anchor:hover,
.js-anchor:active {
color: inherit;
}
/**
* Override Bootstrap3
*/
.jumbotron {
background-color: #486;
background-image: linear-gradient(30deg, #3d8260 12%, transparent 12.5%, transparent 87%, #3d8260 87.5%, #3d8260),
linear-gradient(150deg, #3d8260 12%, transparent 12.5%, transparent 87%, #3d8260 87.5%, #3d8260),
linear-gradient(30deg, #3d8260 12%, transparent 12.5%, transparent 87%, #3d8260 87.5%, #3d8260),
linear-gradient(150deg, #3d8260 12%, transparent 12.5%, transparent 87%, #3d8260 87.5%, #3d8260),
linear-gradient(60deg, #4a8e6c 25%, transparent 25.5%, transparent 75%, #4a8e6c 75%, #4a8e6c),
linear-gradient(60deg, #4a8e6c 25%, transparent 25.5%, transparent 75%, #4a8e6c 75%, #4a8e6c);
background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
background-size: 80px 140px;
box-shadow: 0 1px 2px #666;
color: #fff;
text-shadow: 0 1px 1px #333;
}
.page-title {
font-family: Arial;
}
.jumbotron-link,
.jumbotron-link:hover {
color: inherit;
}
.list-group-item:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.list-group-item:last-child {
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
.panel-primary {
border: 0;
border-radius: 2px;
box-shadow: 0 1px 2px #aaa;
margin-bottom: 30px;
}
.panel-primary > .panel-heading {
background-color: #777;
border-color: #777;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.btn-primary {
background-color: #597;
border-color: #509472;
}
.btn-primary:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover {
background-color: #486;
border-color: #3f8361;
}
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:focus {
background-color: #375;
border-color: #2d7250;
}
a,
a:active {
color: #486;
}
a:hover,
a:focus {
color: #375;
} | 0.423577 | 0.096834 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: black;
color: grey;
}
/* nav bar */
header {
padding: 10px;
background-color: rgba(0, 0, 0);
border-bottom: 2px solid white;
flex-wrap: wrap;
position: sticky;
position: -webkit-sticky;
top: 0;
background-size: cover;
background-attachment: fixed;
background-position: 80%;
z-index: 9999;
}
header h1 {
font-weight: bold;
margin: 0;
padding: 10px;
font-size: 36px;
color: rgba(100, 60, 160);
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
header a {
text-decoration: none;
color: rgba(100, 60, 160);
}
header a:hover {
text-decoration: none;
color: white;
}
header nav {
display: flex;
justify-content: space-between;
}
header nav ul {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
list-style: none;
}
header nav ul li a {
padding: 10px 15px;
font-weight: lighter;
font-size: 1.55vw;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
header nav ul li a:hover {
text-decoration: none;
color: white;
border-bottom: 3px solid rgba(100, 60, 160);
text-shadow: none;
}
.btn, .btn-no-style {
text-decoration: none;
color: rgba(100, 60, 160);
background-color: transparent;
border: none;
padding: 10px 15px;
font-weight: lighter;
font-size: 1.55vw;
text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
.btn:hover, .btn-no-style:hover {
text-decoration: none;
color: white;
}
button {
padding: 2px;
background-color: grey;
}
/* hero */
.hero {
border: solid 1px rgba(0, 0, 0);
}
#hero-headline {
color: rgba(100, 60, 160);
font-weight: bold;
border-bottom: solid 3px rgba(100, 60, 160);
}
#hero-textblock {
color: rgba(0, 0, 0);
}
/* main body */
.topFive {
justify-content: center;
color:rgba(100, 60, 160);
border-bottom: solid 3px white;
}
main section div a:hover {
border:solid 4px rgba(100, 60, 160);
}
.movie-boxes {
padding: 20px;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 0 2 2 2;
background-color: rgba(0, 0, 0);
}
.movie-sections {
margin-bottom: 5px;
border-bottom: 3px solid white;
}
/* login and signup */
.login-form, .signup-form {
margin: 20px;
padding: 20px;
display: flex;
justify-content: space-evenly;
}
.row {
margin: 20px;
padding: 20px;
display: flex;
justify-content: space-around;
}
.column {
margin: 10px;
padding: 10px;
}
.movie-list {
margin: 10px;
padding: 10px;
list-style: none;
}
.card {
background-color: black;
}
input {
background-color: lightgray;
}
footer {
display: flex;
justify-content: center;
padding: 1%;
font-size: 110%;
border-top: 2px inset white;
} | public/stylesheets/style.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: black;
color: grey;
}
/* nav bar */
header {
padding: 10px;
background-color: rgba(0, 0, 0);
border-bottom: 2px solid white;
flex-wrap: wrap;
position: sticky;
position: -webkit-sticky;
top: 0;
background-size: cover;
background-attachment: fixed;
background-position: 80%;
z-index: 9999;
}
header h1 {
font-weight: bold;
margin: 0;
padding: 10px;
font-size: 36px;
color: rgba(100, 60, 160);
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
header a {
text-decoration: none;
color: rgba(100, 60, 160);
}
header a:hover {
text-decoration: none;
color: white;
}
header nav {
display: flex;
justify-content: space-between;
}
header nav ul {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
list-style: none;
}
header nav ul li a {
padding: 10px 15px;
font-weight: lighter;
font-size: 1.55vw;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
header nav ul li a:hover {
text-decoration: none;
color: white;
border-bottom: 3px solid rgba(100, 60, 160);
text-shadow: none;
}
.btn, .btn-no-style {
text-decoration: none;
color: rgba(100, 60, 160);
background-color: transparent;
border: none;
padding: 10px 15px;
font-weight: lighter;
font-size: 1.55vw;
text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
.btn:hover, .btn-no-style:hover {
text-decoration: none;
color: white;
}
button {
padding: 2px;
background-color: grey;
}
/* hero */
.hero {
border: solid 1px rgba(0, 0, 0);
}
#hero-headline {
color: rgba(100, 60, 160);
font-weight: bold;
border-bottom: solid 3px rgba(100, 60, 160);
}
#hero-textblock {
color: rgba(0, 0, 0);
}
/* main body */
.topFive {
justify-content: center;
color:rgba(100, 60, 160);
border-bottom: solid 3px white;
}
main section div a:hover {
border:solid 4px rgba(100, 60, 160);
}
.movie-boxes {
padding: 20px;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 0 2 2 2;
background-color: rgba(0, 0, 0);
}
.movie-sections {
margin-bottom: 5px;
border-bottom: 3px solid white;
}
/* login and signup */
.login-form, .signup-form {
margin: 20px;
padding: 20px;
display: flex;
justify-content: space-evenly;
}
.row {
margin: 20px;
padding: 20px;
display: flex;
justify-content: space-around;
}
.column {
margin: 10px;
padding: 10px;
}
.movie-list {
margin: 10px;
padding: 10px;
list-style: none;
}
.card {
background-color: black;
}
input {
background-color: lightgray;
}
footer {
display: flex;
justify-content: center;
padding: 1%;
font-size: 110%;
border-top: 2px inset white;
} | 0.49048 | 0.127843 |
html, body {
height: 100%;
min-width: 1024px;
width: 100%;
}
html{
color:#000;
background:#FFF}
body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,pre,code,
form,fieldset,legend,input,
textarea,p,blockquote,th,td{
margin:0;
padding:0}
table{
border-collapse:collapse;
border-spacing:0}
fieldset,img{
border:0}
address,caption,cite,code,
dfn,em,strong,th,var{
font-style:normal;
font-weight:normal}
ol,ul{
list-style:none}
caption,th{
text-align:left}
h1,h2,h3,h4,h5,h6{
font-size:100%;
font-weight:normal}
q:before,q:after{
content:''}
abbr,acronym{
border:0;
font-variant:normal}
sup{
vertical-align:text-top}
sub{
vertical-align:text-bottom}
input,textarea,select{
font-family:inherit;
font-size:inherit;
font-weight:inherit;
height: inherit}
input,textarea,select{
*font-size:100%}
legend{
color:#000}
#yui3-css-stamp.cssreset{display:none}
/* END YUI CSS reset */
#ytplayer {
position:absolute;
width:1px;
height:1px;
margin:0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
top:0px;
left:0px;
}
#unsupported {
position:relative;
display:none;
width: 90%;
height: 96%;
margin: 0px 0px 0px 0px;
padding: 1em 1.5em 0em 1em;
overflow: scroll;
font-size: 96px;
line-height: 102px;
color:rgb(20,20,20);
}
/* MENU */
#menu {
position:relative;
width: 100%;
height: 96%;
margin: 0px 0px 0px 0px;
padding: 1em 1.5em 0em 1em;
overflow: scroll;
}
.menuHeading {
font-size:1em;
color:rgb(255,255,255);
text-decoration:underline;
margin: 0 0 0.5em 0;
}
#templateHeading {
margin-top: 24px;
}
#transforms {
margin-bottom: 50px;
}
.column {
position:absolute;
width:460px;
}
#columnLeft {
left: 1.5em;
top: 36px;
}
#columnLeft.delay {
animation-delay: .5s;
-webkit-animation-delay: .5s;
}
#columnRight {
left: 600px;
top: 36px;
}
#columnRight.delay {
animation-delay: .6s;
-webkit-animation-delay: .6s;
}
#columnRight a {
color: rgb(30,30,30);
/*text-decoration:none;*/
}
#templates .modeName {
margin-bottom: -4px;
}
.modeName {
position:static;
display:inline-block;
font-size: 3.0em;
margin: 0px 0px 4px 0px;
padding: 0 0.1em 0 0.1em;
/*cursor: hand;*/
cursor: pointer;
text-transform: uppercase;
}
hr.menu {
color: rgb(255,255,255);
}
#about {
position:absolute;
font-size: 1em;
left:520px;
top: 350px;
width:400px;
}
#aboutBody {
font-size: 1em;
color: rgb(50,50,50);
}
p.aboutIntro {
font-size:2em;
line-height:1.25em;
}
/* MODES */
#modes {
position: relative;
display: none;
top: 0em;
width: 100%;
height: 96%; /* #navBar: 3.5%, #progressBarBox: 0.5% ==> total: 100%; */
margin: 0px 0px 0px 0px;
}
#videoInfo {
display:none;
}
.modeContainer {
position:absolute;
left:0em;
top:0em;
width:100%;
height:100%;
overflow-y:auto;
overflow-x:hidden;
}
body {
background-color: rgb(162, 163, 160);
overflow:hidden;
}
.titleText {
font-size: 64px;
font-family: Helvetica;
font-weight: bold;
color: white;
}
.darkGray { color: rgb(40,40,40); }
.medGray { color:rgb(110,110,110); }
.white { color:rgb(255,255,255); }
.blackOnWhite {
color: rgb(0,0,0);
background-color: rgb(255,255,255);
}
.whiteOnGray {
color: rgb(255,255,255);
background-color: rgb(120,120,120);
}
a.fill {
margin-bottom: 10px;
text-decoration: none;
display: block;
}
a.fill:hover .modeName,
a.fill:hover .modeAuthor {
color: rgb(255,255,255);
/*background-color: rgb(242,0,255);*/
background-color: rgb(0,174,242);
/*cursor: hand;*/
cursor: pointer;
}
.modeAuthor {
padding: 0 10px;
}
.size-512{
font-size: 512px;
}
.size-128{
font-size: 128px;
}
.size-64{
font-size: 64px;
}
.size-32{
font-size: 32px;
} | css/style.css | html, body {
height: 100%;
min-width: 1024px;
width: 100%;
}
html{
color:#000;
background:#FFF}
body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,pre,code,
form,fieldset,legend,input,
textarea,p,blockquote,th,td{
margin:0;
padding:0}
table{
border-collapse:collapse;
border-spacing:0}
fieldset,img{
border:0}
address,caption,cite,code,
dfn,em,strong,th,var{
font-style:normal;
font-weight:normal}
ol,ul{
list-style:none}
caption,th{
text-align:left}
h1,h2,h3,h4,h5,h6{
font-size:100%;
font-weight:normal}
q:before,q:after{
content:''}
abbr,acronym{
border:0;
font-variant:normal}
sup{
vertical-align:text-top}
sub{
vertical-align:text-bottom}
input,textarea,select{
font-family:inherit;
font-size:inherit;
font-weight:inherit;
height: inherit}
input,textarea,select{
*font-size:100%}
legend{
color:#000}
#yui3-css-stamp.cssreset{display:none}
/* END YUI CSS reset */
#ytplayer {
position:absolute;
width:1px;
height:1px;
margin:0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
top:0px;
left:0px;
}
#unsupported {
position:relative;
display:none;
width: 90%;
height: 96%;
margin: 0px 0px 0px 0px;
padding: 1em 1.5em 0em 1em;
overflow: scroll;
font-size: 96px;
line-height: 102px;
color:rgb(20,20,20);
}
/* MENU */
#menu {
position:relative;
width: 100%;
height: 96%;
margin: 0px 0px 0px 0px;
padding: 1em 1.5em 0em 1em;
overflow: scroll;
}
.menuHeading {
font-size:1em;
color:rgb(255,255,255);
text-decoration:underline;
margin: 0 0 0.5em 0;
}
#templateHeading {
margin-top: 24px;
}
#transforms {
margin-bottom: 50px;
}
.column {
position:absolute;
width:460px;
}
#columnLeft {
left: 1.5em;
top: 36px;
}
#columnLeft.delay {
animation-delay: .5s;
-webkit-animation-delay: .5s;
}
#columnRight {
left: 600px;
top: 36px;
}
#columnRight.delay {
animation-delay: .6s;
-webkit-animation-delay: .6s;
}
#columnRight a {
color: rgb(30,30,30);
/*text-decoration:none;*/
}
#templates .modeName {
margin-bottom: -4px;
}
.modeName {
position:static;
display:inline-block;
font-size: 3.0em;
margin: 0px 0px 4px 0px;
padding: 0 0.1em 0 0.1em;
/*cursor: hand;*/
cursor: pointer;
text-transform: uppercase;
}
hr.menu {
color: rgb(255,255,255);
}
#about {
position:absolute;
font-size: 1em;
left:520px;
top: 350px;
width:400px;
}
#aboutBody {
font-size: 1em;
color: rgb(50,50,50);
}
p.aboutIntro {
font-size:2em;
line-height:1.25em;
}
/* MODES */
#modes {
position: relative;
display: none;
top: 0em;
width: 100%;
height: 96%; /* #navBar: 3.5%, #progressBarBox: 0.5% ==> total: 100%; */
margin: 0px 0px 0px 0px;
}
#videoInfo {
display:none;
}
.modeContainer {
position:absolute;
left:0em;
top:0em;
width:100%;
height:100%;
overflow-y:auto;
overflow-x:hidden;
}
body {
background-color: rgb(162, 163, 160);
overflow:hidden;
}
.titleText {
font-size: 64px;
font-family: Helvetica;
font-weight: bold;
color: white;
}
.darkGray { color: rgb(40,40,40); }
.medGray { color:rgb(110,110,110); }
.white { color:rgb(255,255,255); }
.blackOnWhite {
color: rgb(0,0,0);
background-color: rgb(255,255,255);
}
.whiteOnGray {
color: rgb(255,255,255);
background-color: rgb(120,120,120);
}
a.fill {
margin-bottom: 10px;
text-decoration: none;
display: block;
}
a.fill:hover .modeName,
a.fill:hover .modeAuthor {
color: rgb(255,255,255);
/*background-color: rgb(242,0,255);*/
background-color: rgb(0,174,242);
/*cursor: hand;*/
cursor: pointer;
}
.modeAuthor {
padding: 0 10px;
}
.size-512{
font-size: 512px;
}
.size-128{
font-size: 128px;
}
.size-64{
font-size: 64px;
}
.size-32{
font-size: 32px;
} | 0.293303 | 0.071851 |
body{
margin: 0;
background-color: rgba(158,158,158,0.44);
}
h1, h2, h3, h4{
font-family: Arial;
}
header{
margin: auto;
width: 80%;
}
section{
background-color: rgba(158,158,158,0.44);
margin: auto;
width: 80%;
overflow: hidden;
padding-top: 100px;
}
.mainInfo{
background-color: rgba(158,158,158,1);
position: fixed;
margin: auto;
width: 80%;
height: 100px;
overflow: hidden;
z-index: 9;
}
.mainInfoList{
font-family: Arial;
font-size: 18pt;
list-style: none;
}
.mainInfoList li{
display: inline-block;
margin-right: 10px;
}
.mainInfoList button{
font-size: 15pt;
background-color: rgba(255,166,0,1.00);
width: 100px;
height: 50px;
border: 1px solid;
}
.mainInfoList button:hover{
background-color: rgba(255,195,83,1.00);
width: 100px;
height: 50px;
border: 1px solid;
}
.mainInfoList button:focus{
outline: none;
}
#moneyDisplay::before{
content: "Dinheiro: ";
}
#time::before{
content: "Horário: "
}
.block{
background-color: rgba(158,158,158,0.44);
width: 50%;
height: 300px;
float: left;
border-bottom: 1px solid;
min-width: 372px;
}
.info{
width: 69%;
border-left: 0 !important;
overflow: hidden;
float: left;
}
.infoList{
text-align: center
}
.infoList li{
font-family: Arial;
list-style: none;
font-size: 19pt;
margin-left: -40px;
}
.infoList button{
font-size: 18pt;
background-color: rgba(158,158,158,0.70);
border: 0;
width: 100%;
height: 35px;
}
.infoList button:hover{
background-color: rgba(158,158,158,0.50);
border: 1px solid;
}
.infoList button:focus{
outline: none;
}
.topic{
font-weight: 500;
width: 200px;
}
.slot{
width: 30%;
height: 300px;
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
float: left;
}
/*BATERIA*/
#batery{
background-color: rgba(158,158,158,0.44);
width: 100px;
height: 200px;
border: 1px solid;
display: flex;
align-items:flex-end;
flex-direction: row;
justify-content: center;
overflow: hidden;
}
#currentEnergyBatery::before{
content: "Atual: "
}
#maxCapacityBatery::before{
content: "Max: "
}
#capacity{
background-color: green;
width: 100px;
}
#levelUp_capacity_batery::after{
content: ")"
}
#levelUp_capacity_batery::before{
content: "Capacidade ("
}
/*GERADOR MANUAl*/
#manualGenerator{
width: 100px;
height: 110px;
border: 1px solid;
border-radius: 10px;
cursor: pointer;
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
overflow: hidden;
}
#handCrank{
background-color: rgba(22,49,152,1.00);
width: 10px;
height: 90px;
border: 1px solid;
border-radius: 5px;
}
#heatManualGenerator::after{
content: " °C"
}
#manualGeneratorLife::before{
content: "Vida útil: "
}
#manualGeneratorLife::after{
content: "%"
}
#levelUp_efficiency_manualGenerator::after{
content: ")"
}
#levelUp_efficiency_manualGenerator::before{
content: "Eficiência ("
}
#levelUp_cooler_manualGenerator::after{
content: ")"
}
#levelUp_cooler_manualGenerator::before{
content: "Resfriador ("
}
/*GERADOR A VAPOR*/
#coalGenerator{
font-size: 40px;
width: 100px;
height: 180px;
border: 1px solid;
border-radius: 10px;
cursor: pointer;
float: left;
}
#coalGeneratorRotor{
font-size: 50px;
width: 50px;
height: 64px;
margin-top: 20px;
margin-bottom: 25px;
margin-left: 20px;
}
#coalGeneratorFire{
margin-left: 30px;
}
#fuelCoalGenerator::after{
content: "%"
}
#fuelCoalGenerator::before{
content: "Combustível: "
}
#levelUp_efficiency_coalGenerator::after{
content: ")"
}
#levelUp_efficiency_coalGenerator::before{
content: "Eficiência ("
}
#solarGenerator{
font-size: 40px;
width: 100px;
height: 140px;
border: 1px solid;
border-radius: 10px;
cursor: pointer;
float: left;
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
image-rendering: pixelated;
}
#solarGenerator img{
width: 90%;
height: 90%;
}
#expositionSolarGenerator::before{
content: "Exposição: "
} | main.css | body{
margin: 0;
background-color: rgba(158,158,158,0.44);
}
h1, h2, h3, h4{
font-family: Arial;
}
header{
margin: auto;
width: 80%;
}
section{
background-color: rgba(158,158,158,0.44);
margin: auto;
width: 80%;
overflow: hidden;
padding-top: 100px;
}
.mainInfo{
background-color: rgba(158,158,158,1);
position: fixed;
margin: auto;
width: 80%;
height: 100px;
overflow: hidden;
z-index: 9;
}
.mainInfoList{
font-family: Arial;
font-size: 18pt;
list-style: none;
}
.mainInfoList li{
display: inline-block;
margin-right: 10px;
}
.mainInfoList button{
font-size: 15pt;
background-color: rgba(255,166,0,1.00);
width: 100px;
height: 50px;
border: 1px solid;
}
.mainInfoList button:hover{
background-color: rgba(255,195,83,1.00);
width: 100px;
height: 50px;
border: 1px solid;
}
.mainInfoList button:focus{
outline: none;
}
#moneyDisplay::before{
content: "Dinheiro: ";
}
#time::before{
content: "Horário: "
}
.block{
background-color: rgba(158,158,158,0.44);
width: 50%;
height: 300px;
float: left;
border-bottom: 1px solid;
min-width: 372px;
}
.info{
width: 69%;
border-left: 0 !important;
overflow: hidden;
float: left;
}
.infoList{
text-align: center
}
.infoList li{
font-family: Arial;
list-style: none;
font-size: 19pt;
margin-left: -40px;
}
.infoList button{
font-size: 18pt;
background-color: rgba(158,158,158,0.70);
border: 0;
width: 100%;
height: 35px;
}
.infoList button:hover{
background-color: rgba(158,158,158,0.50);
border: 1px solid;
}
.infoList button:focus{
outline: none;
}
.topic{
font-weight: 500;
width: 200px;
}
.slot{
width: 30%;
height: 300px;
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
float: left;
}
/*BATERIA*/
#batery{
background-color: rgba(158,158,158,0.44);
width: 100px;
height: 200px;
border: 1px solid;
display: flex;
align-items:flex-end;
flex-direction: row;
justify-content: center;
overflow: hidden;
}
#currentEnergyBatery::before{
content: "Atual: "
}
#maxCapacityBatery::before{
content: "Max: "
}
#capacity{
background-color: green;
width: 100px;
}
#levelUp_capacity_batery::after{
content: ")"
}
#levelUp_capacity_batery::before{
content: "Capacidade ("
}
/*GERADOR MANUAl*/
#manualGenerator{
width: 100px;
height: 110px;
border: 1px solid;
border-radius: 10px;
cursor: pointer;
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
overflow: hidden;
}
#handCrank{
background-color: rgba(22,49,152,1.00);
width: 10px;
height: 90px;
border: 1px solid;
border-radius: 5px;
}
#heatManualGenerator::after{
content: " °C"
}
#manualGeneratorLife::before{
content: "Vida útil: "
}
#manualGeneratorLife::after{
content: "%"
}
#levelUp_efficiency_manualGenerator::after{
content: ")"
}
#levelUp_efficiency_manualGenerator::before{
content: "Eficiência ("
}
#levelUp_cooler_manualGenerator::after{
content: ")"
}
#levelUp_cooler_manualGenerator::before{
content: "Resfriador ("
}
/*GERADOR A VAPOR*/
#coalGenerator{
font-size: 40px;
width: 100px;
height: 180px;
border: 1px solid;
border-radius: 10px;
cursor: pointer;
float: left;
}
#coalGeneratorRotor{
font-size: 50px;
width: 50px;
height: 64px;
margin-top: 20px;
margin-bottom: 25px;
margin-left: 20px;
}
#coalGeneratorFire{
margin-left: 30px;
}
#fuelCoalGenerator::after{
content: "%"
}
#fuelCoalGenerator::before{
content: "Combustível: "
}
#levelUp_efficiency_coalGenerator::after{
content: ")"
}
#levelUp_efficiency_coalGenerator::before{
content: "Eficiência ("
}
#solarGenerator{
font-size: 40px;
width: 100px;
height: 140px;
border: 1px solid;
border-radius: 10px;
cursor: pointer;
float: left;
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
image-rendering: pixelated;
}
#solarGenerator img{
width: 90%;
height: 90%;
}
#expositionSolarGenerator::before{
content: "Exposição: "
} | 0.291082 | 0.047514 |
/* General styles ------------------------------------- */
*{
-fx-background-radius: 0px;
-fx-focus-color: transparent;
-fx-background-insets: 0, 0, 0;
-fx-highlight-fill: #498f49;
}
.tooltip{
-fx-font-size: 10px;
}
.scroll-bar{
-fx-border-color: transparent;
-fx-background-color: #000000;
-fx-background-insets: 0, 0, 0;
-fx-background-radius: 0px;
}
.track{
-fx-pref-width: 7px;
-fx-pref-height: 7px;
-background-radius: 0px;
-fx-background-color: #000000;
}
.thumb{
-fx-pref-width: 7px;
-fx-pref-height: 7px;
-fx-border-width: 0px;
-fx-background-radius: 0px;
-fx-background-color: #535353;
-fx-background-insets: 0, 0, 0;
}
.thumb:hover, .thumb:pressed{
-fx-background-color: #858585;
}
.increment-button, .decrement-button, .increment-arrow, .decrement-arrow{
-fx-pref-width: 7px;
-fx-pref-height: 7px;
-fx-padding: 0px;
-fx-background-color: transparent;
-fx-border-color: transparent;
}
/* Main App Colors ------------------------------------ */
/* -------------------------------------------- menuBar */
#menuBar{
-fx-background-color: #3fa73f;
}
#menuTitle{
-fx-font-size: 12px;
-fx-font-family: 'Georgia';
}
.menuBarButton{
-fx-background-color: #3fa73f;
}
.menuBarButton:hover{
-fx-background-color: #005a00;
-fx-text-fill: #f3f3f3;
}
.menuBarButton:pressed{
-fx-background-color: #57ca57;
}
/* ----------------------------------------selectionBar */
#selectionBar{
-fx-background-color: #161616;
}
#savedGoals{
-fx-background-color: #272727;
}
#savedGoalsContainer{
-fx-background-color: #272727;
}
#savedGoalsContainer .viewport{
-fx-background-color: #272727;
}
#newGoal{
-fx-background-radius: 50px;
-fx-background-color: #45a338;
-fx-font-size: 20px;
}
#newGoal:hover{
-fx-background-color: #60cf51;
}
#newGoal:pressed{
-fx-background-color: #44883b;
}
.goalFace{
-fx-font-size: 23px;
-fx-text-fill: #c4c4c4;
}
.goalTitle{
-fx-font-size: 12px;
-fx-text-overrun: ellipsis;
-fx-text-fill: #c4c4c4;
}
.goalCompletion{
-fx-font-size: 9px;
-fx-text-fill: #c4c4c4;
}
.selection{
-fx-background-color: #2c2c2c;
-fx-border-width: 2px;
-fx-border-color: #6ace70;
-fx-border-radius: 18px;
-fx-background-radius: 18px;
}
.selection:hover{
-fx-background-color: #161616;
-fx-border-color: #949494;
-fx-translate-y: -3px;
}
.selection:pressed{
-fx-background-color: #3d3d3d;
}
#deleteContainer{
-fx-background-color: #1d1d1d;
-fx-border-width: 2px;
-fx-border-color: #b4b4b4;
}
#deleteContainer:hover{
-fx-border-color: #3ccf4d;
}
#deleteDialogue{
-fx-font-size: 20px;
-fx-text-fill: #c4c4c4;
}
.deleteButton{
-fx-font-size: 15px;
-fx-background-color: #1d1d1d;
-fx-text-fill: #c4c4c4;
}
.deleteButton:hover, .additionButton:hover{
-fx-background-color: #000000;
}
.deleteButton:pressed, .additionButton:pressed{
-fx-background-color: #292929;
}
.additionButton{
-fx-background-color: #1d1d1d;
-fx-text-fill: #c4c4c4;
}
/* ---------------------------------------- progressBar */
#progressBar{
-fx-background-color: #161616;
}
#checksContainer{
-fx-background-color: transparent;
}
#checks{
-fx-background-color: #161616;
}
#checkList{
-fx-background-color: transparent;
}
#goalTitle{
-fx-control-inner-background: #161616;
-fx-border-color: #505050;
-fx-background-color: transparent;
-fx-font-family: 'Georgia';
-fx-font-size: 15px;
-fx-text-fill: #c4c4c4;
-fx-border-width: 0 0 2px;
}
#newTask{
-fx-background-color: #252525;
-fx-font-size: 12px;
-fx-text-fill: #c4c4c4;
}
#newTask:hover{
-fx-background-color: #111111;
}
#newTask:pressed{
-fx-background-color: #000000;
}
#goalTitle:focused{
-fx-border-color: #818181;
}
#notes{
-fx-background-color: #000000;
-fx-text-fill: #d1d1d1;
-fx-font-family: 'Georgia';
-fx-font-size: 20px;
}
#notes .content{
-fx-background-color: #000000;
}
.task{
-fx-background-color: #303030;
-fx-border-width: 0 0 0 5px;
-fx-border-color: #000000;
}
.task:hover{
-fx-background-color: #252525;
-fx-border-color: #36d453;
}
.removeTask{
-fx-font-size: 15px;
-fx-text-fill: #c4c4c4;
-fx-background-color: transparent;
}
.removeTask:hover, .check:hover{
-fx-background-color: #0f0f0f;
}
.removeTask:pressed{
-fx-background-color: #552222;
}
.check:pressed{
-fx-background-color: #272727;
}
.check{
-fx-background-color: transparent;
-fx-padding: 7px;
}
.box{
-fx-background-color: transparent;
-fx-border-radius: 20px;
-fx-border-width: 1px;
-fx-border-color: #dfdfdf;
}
.taskDescription{
-fx-background-color: transparent;
-fx-control-inner-background: transparent;
-fx-text-fill: #c9c9c9;
-fx-font-family: "Georgia";
} | src/main/resources/css/StrikerGreen.css | /* General styles ------------------------------------- */
*{
-fx-background-radius: 0px;
-fx-focus-color: transparent;
-fx-background-insets: 0, 0, 0;
-fx-highlight-fill: #498f49;
}
.tooltip{
-fx-font-size: 10px;
}
.scroll-bar{
-fx-border-color: transparent;
-fx-background-color: #000000;
-fx-background-insets: 0, 0, 0;
-fx-background-radius: 0px;
}
.track{
-fx-pref-width: 7px;
-fx-pref-height: 7px;
-background-radius: 0px;
-fx-background-color: #000000;
}
.thumb{
-fx-pref-width: 7px;
-fx-pref-height: 7px;
-fx-border-width: 0px;
-fx-background-radius: 0px;
-fx-background-color: #535353;
-fx-background-insets: 0, 0, 0;
}
.thumb:hover, .thumb:pressed{
-fx-background-color: #858585;
}
.increment-button, .decrement-button, .increment-arrow, .decrement-arrow{
-fx-pref-width: 7px;
-fx-pref-height: 7px;
-fx-padding: 0px;
-fx-background-color: transparent;
-fx-border-color: transparent;
}
/* Main App Colors ------------------------------------ */
/* -------------------------------------------- menuBar */
#menuBar{
-fx-background-color: #3fa73f;
}
#menuTitle{
-fx-font-size: 12px;
-fx-font-family: 'Georgia';
}
.menuBarButton{
-fx-background-color: #3fa73f;
}
.menuBarButton:hover{
-fx-background-color: #005a00;
-fx-text-fill: #f3f3f3;
}
.menuBarButton:pressed{
-fx-background-color: #57ca57;
}
/* ----------------------------------------selectionBar */
#selectionBar{
-fx-background-color: #161616;
}
#savedGoals{
-fx-background-color: #272727;
}
#savedGoalsContainer{
-fx-background-color: #272727;
}
#savedGoalsContainer .viewport{
-fx-background-color: #272727;
}
#newGoal{
-fx-background-radius: 50px;
-fx-background-color: #45a338;
-fx-font-size: 20px;
}
#newGoal:hover{
-fx-background-color: #60cf51;
}
#newGoal:pressed{
-fx-background-color: #44883b;
}
.goalFace{
-fx-font-size: 23px;
-fx-text-fill: #c4c4c4;
}
.goalTitle{
-fx-font-size: 12px;
-fx-text-overrun: ellipsis;
-fx-text-fill: #c4c4c4;
}
.goalCompletion{
-fx-font-size: 9px;
-fx-text-fill: #c4c4c4;
}
.selection{
-fx-background-color: #2c2c2c;
-fx-border-width: 2px;
-fx-border-color: #6ace70;
-fx-border-radius: 18px;
-fx-background-radius: 18px;
}
.selection:hover{
-fx-background-color: #161616;
-fx-border-color: #949494;
-fx-translate-y: -3px;
}
.selection:pressed{
-fx-background-color: #3d3d3d;
}
#deleteContainer{
-fx-background-color: #1d1d1d;
-fx-border-width: 2px;
-fx-border-color: #b4b4b4;
}
#deleteContainer:hover{
-fx-border-color: #3ccf4d;
}
#deleteDialogue{
-fx-font-size: 20px;
-fx-text-fill: #c4c4c4;
}
.deleteButton{
-fx-font-size: 15px;
-fx-background-color: #1d1d1d;
-fx-text-fill: #c4c4c4;
}
.deleteButton:hover, .additionButton:hover{
-fx-background-color: #000000;
}
.deleteButton:pressed, .additionButton:pressed{
-fx-background-color: #292929;
}
.additionButton{
-fx-background-color: #1d1d1d;
-fx-text-fill: #c4c4c4;
}
/* ---------------------------------------- progressBar */
#progressBar{
-fx-background-color: #161616;
}
#checksContainer{
-fx-background-color: transparent;
}
#checks{
-fx-background-color: #161616;
}
#checkList{
-fx-background-color: transparent;
}
#goalTitle{
-fx-control-inner-background: #161616;
-fx-border-color: #505050;
-fx-background-color: transparent;
-fx-font-family: 'Georgia';
-fx-font-size: 15px;
-fx-text-fill: #c4c4c4;
-fx-border-width: 0 0 2px;
}
#newTask{
-fx-background-color: #252525;
-fx-font-size: 12px;
-fx-text-fill: #c4c4c4;
}
#newTask:hover{
-fx-background-color: #111111;
}
#newTask:pressed{
-fx-background-color: #000000;
}
#goalTitle:focused{
-fx-border-color: #818181;
}
#notes{
-fx-background-color: #000000;
-fx-text-fill: #d1d1d1;
-fx-font-family: 'Georgia';
-fx-font-size: 20px;
}
#notes .content{
-fx-background-color: #000000;
}
.task{
-fx-background-color: #303030;
-fx-border-width: 0 0 0 5px;
-fx-border-color: #000000;
}
.task:hover{
-fx-background-color: #252525;
-fx-border-color: #36d453;
}
.removeTask{
-fx-font-size: 15px;
-fx-text-fill: #c4c4c4;
-fx-background-color: transparent;
}
.removeTask:hover, .check:hover{
-fx-background-color: #0f0f0f;
}
.removeTask:pressed{
-fx-background-color: #552222;
}
.check:pressed{
-fx-background-color: #272727;
}
.check{
-fx-background-color: transparent;
-fx-padding: 7px;
}
.box{
-fx-background-color: transparent;
-fx-border-radius: 20px;
-fx-border-width: 1px;
-fx-border-color: #dfdfdf;
}
.taskDescription{
-fx-background-color: transparent;
-fx-control-inner-background: transparent;
-fx-text-fill: #c9c9c9;
-fx-font-family: "Georgia";
} | 0.213623 | 0.042404 |
body {
width: 95%;
margin: auto;
display: flex;
flex-direction: column;
}
header {
width: 95%;
display: flex;
flex-direction: row;
align-content: space-between;
align-items: center;
position: fixed;
obackground-image: linear-gradient(to bottom, tan, white);
background-color: white;
border-bottom: solid 3px green;
}
.headerLogo {
padding: 10px;
flex-grow: 1;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: x-large;
letter-spacing: 0.1em;
}
.headerLogo img{
max-width: 250px;
}
.headerMenu {
padding: 10px;
flex-grow: 4;
justify-content: flex-end;
align-items: flex-end;
margin-left: auto;
}
.headerMenu ul {
display: flex;
align-content: flex-end;
align-items: center;
flex-wrap: wrap;
margin: 0px;
padding: 0px;
float: right;
}
.headerMenu li {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-variant: small-caps;
font-size: x-large;
display: inline;
padding: 0px 10px 0px 10px;
margin: 0px;
width: 75px;
border: dotted 1px grey;
}
main {
display: flex;
flex-direction: row;
min-height: 100vh;
margin-top: 40px;
}
.container {
display: flex;
flex-direction: column;
}
.splash {
width: 100%;
height: 175px;
background-color: lightgrey;
background-image: url(splash.jpg);
background-repeat: no-repeat;
}
.splash img {
width: 100%;
height: 175px;
overflow: hidden;
}
.content {
display: flex;
flex-direction: row;
}
.subContent {
width: 33%;
padding: 10px;
}
.subContent h1 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: lighter;
font-size: large;
background-image: linear-gradient(to bottom, tan, white);
border-top: solid 1px tan;
padding: 5px;
margin-bottom: 10px;
text-transform: capitalize;
}
.subContent h2 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-variant: small-caps;
font-size: xx-large;
font-weight: lighter;
margin: 0px;
}
.subContent h3 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: large;
font-weight: lighter;
margin-top: 0px;
}
.subContent img {
width: 99%;
border: solid 3px darkgrey;
}
.subContent p {
font-family: Georgia, 'Times New Roman', Times, serif;
}
.subContent p.category {
margin: 0px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-variant: small-caps;
padding: 3px;
margin: 1px;
margin-bottom: 10px;
display: inline-block;
float:right;
}
.subContent p.category.food {
color: darkred;
border-bottom: solid 3px darkred;
}
.subContent p.more {
float: right;
font-style: italic;
margin-right: 10px;
}
footer {
width: 100%;
display: flex;
align-content: space-around;
background-image: linear-gradient(to top, tan, white);
height: 20px;
padding: 5px;
text-align: center;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.headerLogo img{
max-width: 100%;
border: solid 1px lightgrey;
}
.container {
width: 98%;
flex-direction: column;
}
.content {
flex-direction: column;
}
.subContent {
width: 100%;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) {
.container {
width: 99%;
flex-direction: column;
}
.content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.subContent {
width: 45%;
padding: 10px;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.container {
width: 99%;
flex-direction: column;
}
.content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.subContent {
width: 30%;
padding: 10px;
}
} | style.css | body {
width: 95%;
margin: auto;
display: flex;
flex-direction: column;
}
header {
width: 95%;
display: flex;
flex-direction: row;
align-content: space-between;
align-items: center;
position: fixed;
obackground-image: linear-gradient(to bottom, tan, white);
background-color: white;
border-bottom: solid 3px green;
}
.headerLogo {
padding: 10px;
flex-grow: 1;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: x-large;
letter-spacing: 0.1em;
}
.headerLogo img{
max-width: 250px;
}
.headerMenu {
padding: 10px;
flex-grow: 4;
justify-content: flex-end;
align-items: flex-end;
margin-left: auto;
}
.headerMenu ul {
display: flex;
align-content: flex-end;
align-items: center;
flex-wrap: wrap;
margin: 0px;
padding: 0px;
float: right;
}
.headerMenu li {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-variant: small-caps;
font-size: x-large;
display: inline;
padding: 0px 10px 0px 10px;
margin: 0px;
width: 75px;
border: dotted 1px grey;
}
main {
display: flex;
flex-direction: row;
min-height: 100vh;
margin-top: 40px;
}
.container {
display: flex;
flex-direction: column;
}
.splash {
width: 100%;
height: 175px;
background-color: lightgrey;
background-image: url(splash.jpg);
background-repeat: no-repeat;
}
.splash img {
width: 100%;
height: 175px;
overflow: hidden;
}
.content {
display: flex;
flex-direction: row;
}
.subContent {
width: 33%;
padding: 10px;
}
.subContent h1 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: lighter;
font-size: large;
background-image: linear-gradient(to bottom, tan, white);
border-top: solid 1px tan;
padding: 5px;
margin-bottom: 10px;
text-transform: capitalize;
}
.subContent h2 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-variant: small-caps;
font-size: xx-large;
font-weight: lighter;
margin: 0px;
}
.subContent h3 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: large;
font-weight: lighter;
margin-top: 0px;
}
.subContent img {
width: 99%;
border: solid 3px darkgrey;
}
.subContent p {
font-family: Georgia, 'Times New Roman', Times, serif;
}
.subContent p.category {
margin: 0px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-variant: small-caps;
padding: 3px;
margin: 1px;
margin-bottom: 10px;
display: inline-block;
float:right;
}
.subContent p.category.food {
color: darkred;
border-bottom: solid 3px darkred;
}
.subContent p.more {
float: right;
font-style: italic;
margin-right: 10px;
}
footer {
width: 100%;
display: flex;
align-content: space-around;
background-image: linear-gradient(to top, tan, white);
height: 20px;
padding: 5px;
text-align: center;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.headerLogo img{
max-width: 100%;
border: solid 1px lightgrey;
}
.container {
width: 98%;
flex-direction: column;
}
.content {
flex-direction: column;
}
.subContent {
width: 100%;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) {
.container {
width: 99%;
flex-direction: column;
}
.content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.subContent {
width: 45%;
padding: 10px;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.container {
width: 99%;
flex-direction: column;
}
.content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.subContent {
width: 30%;
padding: 10px;
}
} | 0.64579 | 0.107531 |
html {
scroll-behavior: smooth;
background-color: rgb(44, 44, 44);
color: white;
height: 100%;
}
*::-webkit-scrollbar {
display: none;
}
* {
scrollbar-width: none;
}
@media (min-width: 950px) {
#signup {
text-align: center;
margin-top: 10%;
width: 100%;
font-family: sans-serif;
font-size: 80px;
}
.explainer {
margin-left: auto;
margin-right: auto;
width: 40%;
border-radius: 10px;
color: black;
background: white;
font-family: 'DejaVu Sans', sans-serif;
}
#signup>img {
height: 150px;
}
#down-signup {
font-size: 60px;
width: 100%;
text-align: center;
padding-top: 10%;
color: white;
padding-bottom: 10%;
position: relative;
animation: hover 1s alternate infinite ease-in-out, fadein 4s;
}
#ads {
width: 800px;
height: 365.333px;
float: left;
}
}
.openbutton {
width: 200px;
height: 50px;
border-radius: 4px;
margin-bottom: 10px;
font-family: 'DejaVu Sans', sans-serif;
vertical-align: middle;
display: inline-block;
cursor: pointer;
transition: 0.6s;
}
.blue {
background: rgb(10, 77, 153);
}
.grey {
background: rgb(88, 88, 88);
}
.openbutton:hover {
box-shadow: rgb(15, 15, 15) 4px 8px 10px;
}
.center {
margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (max-width: 949px) {
#signup {
text-align: center;
margin-top: 10%;
width: 100%;
font-family: sans-serif;
font-size: 60px;
}
.explainer {
margin-left: auto;
margin-right: auto;
width: 80%;
border-radius: 10px;
color: black;
background: white;
font-family: 'DejaVu Sans', sans-serif;
}
#signup>img {
height: 130px;
}
#ads {
width: 400px;
height: 182px;
float: left;
}
#down-signup {
font-size: 60px;
width: 100%;
text-align: center;
padding-top: 20%;
color: white;
padding-bottom: 20%;
bottom: 0;
position: relative;
animation: hover 1s alternate infinite ease-in-out, fadein 4s;
}
}
.explainer>h1 {
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
}
h1 {
font-family: sans-serif !important;
}
.explainer>p {
text-align: center;
padding-left: 15px;
padding-right: 15px;
}
.become-patron {
background: #e85b46;
color: white;
text-decoration: none;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 15px;
padding-right: 15px;
border-radius: 20px;
font-size: 14px;
margin-left: auto;
margin-right: auto;
width: 70%;
text-align: center;
cursor: pointer;
}
.why-explainer {
display: block;
padding-left: 20px;
position: relative;
background: #3e3e3e;
float: left;
padding-right: 20px;
}
.why-segment{
width: 100%;
}
.nonono {
animation: nonono 0.35s ease-in-out;
}
#subbed {
color: rgb(0, 165, 0);
text-align: center;
}
#notsubbed {
color: rgb(255, 0, 0);
text-align: center;
}
#why {
background-color: rgb(62, 62, 62);
width: 100%;
font-family: 'DejaVu Sans', sans-serif;
float: left;
left: 0;
margin: 0;
padding:0;
position: absolute;
}
a {
color: white;
text-decoration: none;
}
#patron-name {
width: 70%;
display: block;
margin: 0 auto;
border-radius: 5px;
border: 2px solid rgb(187, 183, 183);
padding: 5px;
font-family: 'DejaVu Sans', sans-serif;
color: rgb(43, 43, 43);
}
@keyframes fadein {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
} | signup.css | html {
scroll-behavior: smooth;
background-color: rgb(44, 44, 44);
color: white;
height: 100%;
}
*::-webkit-scrollbar {
display: none;
}
* {
scrollbar-width: none;
}
@media (min-width: 950px) {
#signup {
text-align: center;
margin-top: 10%;
width: 100%;
font-family: sans-serif;
font-size: 80px;
}
.explainer {
margin-left: auto;
margin-right: auto;
width: 40%;
border-radius: 10px;
color: black;
background: white;
font-family: 'DejaVu Sans', sans-serif;
}
#signup>img {
height: 150px;
}
#down-signup {
font-size: 60px;
width: 100%;
text-align: center;
padding-top: 10%;
color: white;
padding-bottom: 10%;
position: relative;
animation: hover 1s alternate infinite ease-in-out, fadein 4s;
}
#ads {
width: 800px;
height: 365.333px;
float: left;
}
}
.openbutton {
width: 200px;
height: 50px;
border-radius: 4px;
margin-bottom: 10px;
font-family: 'DejaVu Sans', sans-serif;
vertical-align: middle;
display: inline-block;
cursor: pointer;
transition: 0.6s;
}
.blue {
background: rgb(10, 77, 153);
}
.grey {
background: rgb(88, 88, 88);
}
.openbutton:hover {
box-shadow: rgb(15, 15, 15) 4px 8px 10px;
}
.center {
margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (max-width: 949px) {
#signup {
text-align: center;
margin-top: 10%;
width: 100%;
font-family: sans-serif;
font-size: 60px;
}
.explainer {
margin-left: auto;
margin-right: auto;
width: 80%;
border-radius: 10px;
color: black;
background: white;
font-family: 'DejaVu Sans', sans-serif;
}
#signup>img {
height: 130px;
}
#ads {
width: 400px;
height: 182px;
float: left;
}
#down-signup {
font-size: 60px;
width: 100%;
text-align: center;
padding-top: 20%;
color: white;
padding-bottom: 20%;
bottom: 0;
position: relative;
animation: hover 1s alternate infinite ease-in-out, fadein 4s;
}
}
.explainer>h1 {
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
}
h1 {
font-family: sans-serif !important;
}
.explainer>p {
text-align: center;
padding-left: 15px;
padding-right: 15px;
}
.become-patron {
background: #e85b46;
color: white;
text-decoration: none;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 15px;
padding-right: 15px;
border-radius: 20px;
font-size: 14px;
margin-left: auto;
margin-right: auto;
width: 70%;
text-align: center;
cursor: pointer;
}
.why-explainer {
display: block;
padding-left: 20px;
position: relative;
background: #3e3e3e;
float: left;
padding-right: 20px;
}
.why-segment{
width: 100%;
}
.nonono {
animation: nonono 0.35s ease-in-out;
}
#subbed {
color: rgb(0, 165, 0);
text-align: center;
}
#notsubbed {
color: rgb(255, 0, 0);
text-align: center;
}
#why {
background-color: rgb(62, 62, 62);
width: 100%;
font-family: 'DejaVu Sans', sans-serif;
float: left;
left: 0;
margin: 0;
padding:0;
position: absolute;
}
a {
color: white;
text-decoration: none;
}
#patron-name {
width: 70%;
display: block;
margin: 0 auto;
border-radius: 5px;
border: 2px solid rgb(187, 183, 183);
padding: 5px;
font-family: 'DejaVu Sans', sans-serif;
color: rgb(43, 43, 43);
}
@keyframes fadein {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
} | 0.521227 | 0.060114 |
body {
height: auto;
margin: 0 !important;
/*background-image: url(../images/body_bg.png);*/
transition: all .3s ease-in-out;
}
.body_limit {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
a {
cursor: pointer;
}
select {
padding: 0 !important;
height: auto !important;
margin: 0 3px;
border-radius: 3px;
}
.top {
box-sizing: border-box;
background: #263238;
height: 45px;
padding: 12px 0 0;
z-index: 3;
}
.top .top-menu {
margin: 0 5% 0 0;
}
.margin-right-10px {
margin: 0 10px 0 0;
}
.f26 {
font-size: 26px;
}
.cw {
color: #fff;
}
.mt28 {
margin-top: 28px;
}
.logo {
display: none;
float: left;
height: 40px;
margin: 0 0 0 5%;
}
.logo_name {
display: inline-block;
float: left;
font-size: 17px;
font-weight: bold;
color: #fff;
line-height: 16px;
margin: 0 0 0 5%;
}
.bgm {
background: #7c99e5;
}
.ml10p {
margin-left: 10%;
}
.ml30p {
margin-left: 30%;
}
.ml90 {
margin-left: 90px;
}
.nav_2 {
background: #eee;
}
.nav_2 ul li {
width: 8%;
}
.nav_2 ul li a:hover {
color: #7c99e5;
}
.content {
width: 100%;
}
.content_case_box {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 107px 0 0;
margin: auto;
}
.content_case {
width: 100%;
height: 100%;
}
.layui-btn-xs {
height: 20px;
}
.content_case iframe {
width: 100%;
height: 100% !important;
border: none;
overflow: auto;
}
.content .user-order {
background: #fff;
border: 1px solid #e1e6ef;
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
padding: 7px 10px;
}
.user-order .fa:first-child {
font-size: 16px;
margin: 0 5px 0 0;
}
.bgg {
background: #eee;
}
.user-order span a:hover {
color: #7c99e5;
}
.btn_plus {
border: 1px solid #666;
border-radius: 4px;
padding: 8px 10px;
width: 50%;
margin: 10px auto 20px;
background: #fff;
font-size: 14px;
}
.clear_input {
display: inline-block;
height: 25px;
font-size: 14px;
line-height: 25px;
color: #555;
border: 1px solid #bbb;
border-radius: 3px;
width: 150px;
margin: 10px auto;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05);
}
.ml10p {
margin-left: 10%;
}
.btn_submit {
background: #7c99e5;
border: none;
border-radius: 4px;
padding: 5px 10px;
width: 100px;
margin: 10px auto 20px;
display: block;
}
.btn_search,
.btn-cancel {
letter-spacing: 1px;
/* width: auto!important;*/
text-decoration: none;
box-shadow: none;
border: 1px solid transparent;
border-radius: 4px;
line-height: 23px;
padding: 0px 8px;
vertical-align: middle;
display: inline-block;
font-size: 13px;
}
.btn_search {
color: #fff;
background-color: #7c99e5;
border-color: #7c99e5;
text-align: center;
}
.btn-cancel {
color: #333;
background-color: #fff;
border-color: #dddddd;
text-align: center;
}
.btn_search:hover {
/* background-color: #6d8dd5;
border-color: #6d8dd5;*/
text-decoration: none;
cursor: pointer;
/* color: #ffffff;*/
}
.btn-cancel:hover {
color: #6d8dd5;
background-color: #ffffff;
/*border-color: #dddddd;*/
text-decoration: none;
cursor: pointer;
}
.bgbm {
background: #7c99e5;
}
.cbm {
color: #7c99e5;
}
.user_info table tr td,
.user_info table tr th {
color: #333;
text-align: center;
}
.user_info table tr:last-child > td {
border: none;
}
/*.user_info table thead tr{
background:#f1f4fb;
}*/
.user_info table tr {
height: 40px;
}
.user_info table tr td i:hover {
color: #7c99e5;
cursor: pointer;
}
.menu_list {
flex: auto;
text-align: center;
letter-spacing: 0.5px;
height: 100%;
position: relative;
list-style: none;
}
.menu_list li,
.menu_list li a {
height: 100%;
}
.menu_tit {
cursor: pointer;
color: #fff;
white-space: nowrap;
overflow: hidden;
}
.menu_selected .menu_tit,
.menu_list:hover > .menu_tit {
border-bottom: 2px solid #6d8dd5;
}
.menu_tit .fa-sort-down {
font-size: 12px;
color: #374767;
position: relative;
top: -3px;
left: 3px;
}
.menu_selected .menu_tit,
.menu_selected,
menu_tit .fa,
.menu_list:hover > .menu_tit,
.menu_list:hover > .menu_tit > .fa {
color: #6d8dd5;
}
.menu_selected .menu_tit,
.menu_list:hover > .menu_tit {
background: -webkit-linear-gradient(top, rgba(38, 50, 56, 0.03), rgba(255, 255, 255, 1)) !important;
}
.menu_list a {
box-sizing: border-box;
display: block;
text-decoration: none;
height: 100%;
line-height: 29.5px;
padding: 13px 0 0 0px !important;
font-weight: 500;
color: #374767;
font-size: 12px;
letter-spacing: 0.3px;
border-left: 1px solid #e7ecf5;
border-bottom: 2px solid #fff;
position: relative;
z-index: 10000;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: .3s;
transition-duration: .3s;
background-color: transparent;
outline: 0;
}
.dhu-menu > .menu_list:last-child > a {
border-right: 1px solid #e7ecf5;
}
.dhu-menu > .menu_list:last-child .menu_tit {
border-right: 1px solid #e7ecf5;
}
.layui-table-cell {
padding: 0 5px;
}
.layui-btn + .layui-btn {
margin-left: 2px;
}
.sub_menu {
display: none;
top: 63px;
left: 0;
box-shadow: 1px 1px 3px rgba(0, 0, 0, .15);
background: #fff;
z-index: 9;
min-width: 100%;
}
.add_sub {
width: 90%;
left: 5%;
top: 43px;
height: 25px;
line-height: 25px;
font-size: 14px;
background: #E4EAEA;
margin: auto;
z-index: 3;
}
.header {
width: 100%;
height: 62px;
background: #fff;
box-shadow: 0 2px 2px #e1e6ef, 0 1px 0 #e1e6ef;
border: none;
padding: 0;
margin: 0;
position: relative;
z-index: 2;
}
.dhu-menu {
display: flex;
box-sizing: border-box;
margin: 0;
padding: 0;
height: 100%;
}
.menu_box {
width: 90%;
height: 100%;
margin: auto;
position: relative;
}
.menu_box_top {
width: 100%;
background: #fff;
height: 64px;
box-shadow: 0 2px 15px #999, 0 1px 0 #ccc;
margin: auto;
position: fixed;
top: 0;
box-sizing: border-box;
padding: 0 5%;
z-index: 9999;
}
.sub_selected {
background: #F5F5F5;
}
.sub_list a:hover {
color: #7c99e5;
}
.nav-top {
box-sizing: border-box;
font-size: 12px;
color: #eaeaea;
text-align: center;
text-decoration: none;
border: 1px solid transparent;
border-left: 1px solid rgba(255, 255, 255, 0.15);
padding: 1px 6px;
display: block;
transition: all 0.2s;
}
.nav-top:hover {
color: #80a7d6;
background-color: rgba(255, 255, 255, 0.3);
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) inset;
}
.nav-top:first-child {
border-left: none;
}
.nav-top:last-child {
width: 16px;
border: none;
padding: 0;
margin: 2px 0 0 3px;
}
.nav-top:last-child:hover {
border: none !important;
background: none;
box-shadow: none;
}
.nav-top .fa {
display: none;
font-size: 12px;
color: #eaeaea;;
margin: 0 0 0 2px;
text-shadow: 0.5px 0.5px 0.5px #000;
transition: all 0.1s;
}
.nav-top:hover > .fa {
color: #80a7d6;
}
.nav-top:last-child .fa {
display: inline-block;
font-size: 15px;
font-weight: bold;
color: #e20a0a;
text-shadow: none;
}
.nav-top:last-child .fa:hover {
color: #ff0000;
}
.center_switch,
.jurisdiction_switch {
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
cursor: pointer;
}
.center_switch:hover,
.jurisdiction_switch:hover .js_hint {
color: #bfd8f1;
border-bottom: 1px solid #aac9e8;
}
.center_switch {
float: right;
top: 3.5px;
font-size: 12px;
color: #96c1ef;
text-decoration: none;
border-bottom: 1px solid #73a2dc;
line-height: 16px;
margin: 2px 6px;
}
.jurisdiction_switch {
float: right;
padding: 0px 6px 3px;
margin: 1px 0;
position: relative;
}
.js_hint,
.jurisdiction_switch > div {
float: left;
}
.js_hint {
position: relative;
top: 0.5px;
font-size: 12px;
color: #96c1ef;
text-decoration: none;
border-bottom: 1px solid #73a2dc;
line-height: 16px;
}
.jurisdiction_switch:hover .js_box {
display: block;
background: #333;
}
.js_box {
display: none;
position: absolute;
top: 100%;
left: -20px;
font-size: 12px;
background: #263338d4;
z-index: 10001;
padding: 6px 0 1px;
color: #333;
}
.js_box > div {
line-height: 41px;
color: #eee;
position: relative;
transition: all 0.3s;
}
.js_box > div:hover {
cursor: pointer;
background: #263338;
}
.js_box > div > span {
display: block;
color: #eee;
}
.js_box > div:hover > a {
}
.js_box > div a {
display: block;
white-space: nowrap;
color: #eee;
padding: 0 20px;
transition: all 0.3s;
}
.js_box > div a:hover {
color: #fff;
background: #555;
padding: 0 10px 0 30px;
}
.page {
width: 97.5%;
margin: 15px auto 0;
background: #f1f4fb;
height: 35px;
line-height: 35px;
font-size: 14px;
padding-left: 10px;
}
.page a:hover {
color: #008bff;
text-decoration: underline;
}
.sub_ul li a {
box-sizing: border-box;
display: block;
clear: both;
width: 100%;
height: 41px;
line-height: 41px;
text-align: center;
border-bottom: 1px solid #e7ecf5 !important;
color: #374767;
font-size: 12px;
border-left: none;
padding: 0 7px !important;
white-space: nowrap;
-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;
}
.sub_ul li:last-child > a {
border: none !important;
}
.sub_ul li a:hover {
color: #6d8dd5;
background-color: #f8f9fa;
padding: 0 1px 0 13px !important;
}
.hide_none {
display: none;
}
.content-toolbar {
background-image: none;
background: #ecebeb;
background: -moz-linear-gradient(#f0f0f0 20%, #efefef 50%, #f0f0f0 52%, #dfdfdf 100%);
background: linear-gradient(#f0f0f0 20%, #efefef 50%, #f0f0f0 52%, #dfdfdf 100%);
background: -webkit-linear-gradient(#f0f0f0 20%, #efefef 50%, #f0f0f0 52%, #dfdfdf 100%);
background: -o-linear-gradient(#f0f0f0 20%, #efefef 50%, #f0f0f0 52%, #dfdfdf 100%);
}
.filter:hover {
color: #7c99e5;
}
.equipment_img,
.equipment_box {
width: 25%;
}
.btn-new {
font-size: 13px;
letter-spacing: 2px;
width: 50px;
height: 35px;
background: #7c99e5;
color: #333;
padding: 5px 8px;
border-radius: 4px;
}
.btn-new:hover {
text-decoration: none;
/* background: #6d8dd5;
box-shadow: 1px 1px 1px rgba(0,0,0,0.2) inset;*/
}
.btn-collect {
font-size: 18px;
float: right;
margin: 0 5px;
}
.btn-new:hover {
color: #fff;
}
a:hover {
color: #7c99e5;
}
.downborder {
border: 1px solid #ccc;
box-shadow: 0 0 3px #aaa;
}
.menu {
border: none;
}
#instru_table tr td,
#instru_table tr th {
text-align: center;
}
#instru_table tr th {
background: #88abbf;
color: #fff;
}
#detail_table tr td,
#detail_table tr th {
border: 1px solid #ddd;
}
.instru_name,
.instru_name2 {
background: #7c99e5;
color: #fff;
border-radius: 4px;
padding-left: 10px;
font-size: 16px;
font-weight: normal;
}
.nav_button {
height: 35px;
background: #7c99e5;
line-height: 35px;
padding: 0 7px;
border-radius: 4px;
margin-right: 15px;
}
.nav_button:hover {
background: #7C83E5;
}
.nav_a:hover {
color: #fff;
}
.access_left li {
box-sizing: border-box;
/*background: #acbbe4;*/
font-size: 13px;
color: #fff;
border-radius: 20px;
line-height: 31px;
text-align: center;
margin-bottom: 15px;
width: 105%;
cursor: pointer;
}
.access_left li:hover,
.access_left li a:hover,
.access_left li:hover a {
/* background: #fefeff;
color: #637ebd;*/
}
.access_left li a {
color: #fff;
}
.access_left li#left_choose a {
color: #625bc3;
}
.r_save {
height: 25px;
line-height: 25px;
background: #fff;
border: none;
border-radius: 4px;
margin-right: 10px;
margin-top: 7.3px;
padding: 0 4px;
}
.r_save_2 {
height: 25px;
line-height: 25px;
background: #7c99e5;
border: none;
border-radius: 4px;
margin-right: 10px;
margin-top: 5px;
}
.r_save3 {
font-size: 13px;
color: #333;
letter-spacing: 2px;
margin: -3px 3px 0 0;
padding: 0px 8px;
line-height: 23px;
background: #ffffff;
box-sizing: border-box;
border: 1px solid #ddd;
border-radius: 3px;
}
.r_save3:hover {
/*
border-color: #709de0!important;*/
/*color: #6d8dd5!important;*/
/*background: #fcfdff!important;*/
}
.classteam td {
border: none;
}
.btnbw {
color: #333;
background: #7c99e5;
padding: 5px 8px;
border-radius: 5px;
}
.btnbw:hover {
color: #fff;
}
.fade {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
position: fixed;
left: 0;
top: 0;
z-index: 99;
}
.addMemberDiv {
width: 350px;
height: 200px;
background: #fff;
position: fixed;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -150px;
z-index: 999;
border-radius: 5px;
border: 1px solid #ddd;
}
.addMemberDiv .close {
width: 36px;
height: 36px;
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
.addMemberDiv .close i {
width: 20px;
height: 20px;
position: absolute;
left: 50%;
top: 50%;
margin: -10px 0 0 -10px;
/*background: url(../images/msg_close.png) 0 0 no-repeat;*/
}
.nav_choose {
border: 1px solid #7c99e5;
background: #fafafa;
}
.nav_choose .nav_a {
color: #333;
}
.tit_icon {
color: #374767;
display: block;
width: 100%;
font-size: 19px;
height: 16px;
padding-bottom: 1px;
text-align: center;
}
.sub_ul {
margin: 0;
padding: 0;
}
.sub_ul li {
display: block;
width: 100%;
list-style: none;
}
#left_choose {
/* background: #fff!important;
color: #1e1c94!important;
border: 2px solid #7c99e5!important;*/
}
.equipment_introduce li {
text-align: left;
}
/*.user-order{
margin-top:20px!important;
padding: 12px 15px;
background: #fdfdff;
border: 1px solid #e1e6ef;
}*/
.text_input {
/* border-radius: 0;
box-shadow: none;
border: 1px solid #e4e5e7;
display: block;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;*/
margin-left: 5px;
color: #000;
outline: none;
margin-right: 10px;
font-family: inherit;
border-radius: 3px !important;
border: 1px solid #dcdfe6;
width: 160px;
height: 24px;
line-height: 23px;
padding: 0 7px;
background-color: white;
}
.text_input:focus {
border-color: #558B2F;
box-shadow: none;
}
.page-content {
width: 90%;
margin: 0 auto;
}
.ant-modal-wrap {
position: fixed;
overflow: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1000;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.ant-modal-mask {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: rgba(55, 55, 55, .6);
height: 100%;
z-index: 1000;
filter: alpha(opacity=50);
}
.add_wrapper {
position: absolute;
top: 200px;
left: 30%;
width: 520px;
transform-origin: 932px 46.8px 0;
}
.add_content {
position: relative;
background-color: #fff;
border: 0;
border-radius: 3px;
background-clip: padding-box;
box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}
.ant-modal-close {
cursor: pointer;
border: 0;
background: transparent;
position: absolute;
right: 0;
top: 0;
z-index: 10;
font-weight: 700;
line-height: 1;
text-decoration: none;
-webkit-transition: color .3s ease;
transition: color .3s ease;
color: rgba(0, 0, 0, .43);
outline: 0;
}
.ant-modal-header {
padding: 13px 16px;
border-radius: 3px 3px 0 0;
background: #fff;
color: #666;
border-bottom: 1px solid #f4f4f4;
}
.ant-modal-title {
margin: 0;
font-size: 14px;
line-height: 21px;
font-weight: 500;
color: rgba(0, 0, 0, .85);
}
.ant-row {
position: relative;
margin-left: 0;
margin-right: 0;
zoom: 1;
display: block;
height: 35px;
}
.ant-form-item {
font-size: 12px;
color: #666;
vertical-align: top;
margin-bottom: 10px !important;
}
.ant-form-item-label {
text-align: right;
vertical-align: middle;
line-height: 32px;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ant-col-6 {
display: block;
width: 25%;
float: left;
}
.ant-form-item-label label {
color: #666;
position: relative;
font-size: 12px;
}
.ant-col-14 {
display: block;
width: 58.33333333%;
float: left;
}
.ant-form-item-control {
vertical-align: middle;
line-height: 32px;
position: relative;
zoom: 1;
}
.ant-input-lg {
padding: 6px 7px;
height: 32px;
}
.ant-input {
position: relative;
display: inline-block;
padding: 4px 7px;
width: 100%;
height: 28px;
cursor: text;
font-size: 12px;
line-height: 1.5;
color: #666;
background-color: #fff;
background-image: none;
border: 1px solid #bbb;
border-radius: 3px;
-webkit-transition: all .3s;
transition: all .3s;
}
.vertical-center-modal .ant-modal .ant-modal-body {
max-height: 500px;
overflow-y: auto;
}
.ant-modal-body {
padding: 16px;
font-size: 12px;
line-height: 1.5;
}
.ant-modal-footer {
border-top: 1px solid #f4f4f4;
padding: 10px 16px 10px 10px;
text-align: right;
border-radius: 0 0 3px 3px;
}
.ant-btn,
.ant-btn-group,
.ant-radio-group {
margin-bottom: 5px;
}
.ant-btn-lg {
padding: 0 15px;
font-size: 14px;
border-radius: 3px;
height: 32px;
}
.ant-btn,
.ant-btn:active,
.ant-btn:focus {
outline: 0;
}
.ant-btn {
display: inline-block;
margin-bottom: 0;
font-weight: 500;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid #e5e5e5;
white-space: nowrap;
line-height: 1.5;
padding: 0 15px;
font-size: 12px;
border-radius: 3px;
height: 28px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
transition: all .3s cubic-bezier(.645, .045, .355, 1);
position: relative;
color: #666;
background-color: #fff;
}
.ant-btn-primary {
color: #fff;
background-color: #108ee9;
border-color: #108ee9;
}
#editForm td {
padding: 5px 0;
}
/*添加的设备信息框属性*/
.tool-box1 {
margin-top: 20px;
line-height: 24px;
width: 100%;
background: #fff;
border: 1px solid #e1e6ef;
border-radius: 5px;
padding: 15px;
}
.tool-box1 table {
border: 1px solid #ccc;
width: 100%;
}
div.tool-box1 table tr {
/*border-bottom:1px dashed #aeacac;*/
box-sizing: border-box;
background: none !important;
height: 24px;
}
div.tool-box1 table tr td,
div.tool-box1 table tr th {
padding: 5px;
font-size: 12px;
border: 1px solid #ccc !important;
}
/*.tool-box1 table th span{
display:block;
border-right:1px dashed #aeacac;
font-size:12px;
line-height:14px;
}*/
.tool-box1 table td {
border: none;
padding-left: 10px;
}
/*仪器管理页面选择框边距*/
.equip_img_tab,
.equip_img_tab tbody,
.equip_img_tab tr {
width: 100%;
display: block;
overflow: hidden;
}
.equip_img_tab tr {
height: auto !important;
}
.equip_img_tab td {
float: left;
box-sizing: border-box;
width: 50%;
padding: 0 4% 0 0;
height: 240px;
display: block;
}
.equipment_box .equip_pic {
width: auto;
height: 100%;
box-sizing: border-box;
padding: 0 350px 5px 0;
margin: 0 0 0 10px;
position: relative;
}
.equipment_box .equip_pic > div {
position: absolute;
/*width: 100%;*/
width: 93%;
/*height:100%;*/
height: 93%;
}
.equip_img_limit {
position: relative;
width: auto;
height: 100%;
padding: 30px 250px 30px 10px;
}
.equip_img {
width: 100%;
height: 100%;
border: 1px solid #e4e7ec;
background: #fafaff;
position: relative;
}
.equip_img img {
max-width: 95%;
max-height: 95%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.equip_lnn {
position: absolute;
right: 4%;
top: 0;
margin: 30px 0;
}
.search,
.cancel {
margin-top: 0px;
float: left;
cursor: pointer;
margin-left: 13px;
letter-spacing: 1px;
text-decoration: none;
box-shadow: none;
border: 1px solid transparent;
border-radius: 4px;
line-height: 23px;
padding: 0px 8px;
vertical-align: middle;
display: inline-block;
font-size: 13px;
white-space: nowrap;
}
.search {
color: #fff;
background: #7c99e5;
border-color: #7c99e5;
}
.search:hover {
/* background-color: #6d8dd5;
border-color: #6d8dd5;*/
text-decoration: none;
/* color: #ffffff!important;*/
cursor: pointer;
}
.cancel {
background: #ffffff;
border: 1px solid #dddddd;
}
.cancel:hover {
/*color: #6d8dd5;
background-color: #ffffff;
border-color: #dddddd;*/
box-shadow: none;
text-decoration: none;
cursor: pointer;
}
.toolbar_top {
background: #fdfdff;
border: 1px solid #e1e6ef;
padding: 7px;
}
.equip_select {
width: 100%;
height: 30px !important;
color: #333;
background-color: #fff;
border-color: #ccc;
}
.mt_5 {
margin-top: -5px;
}
@media (max-width: 1095px) {
.nav-top {
padding: 1px 2px;
}
}
@media (max-width: 900px) {
.logo_name {
display: none;
}
.nav-top {
padding: 1px 2px;
}
}
/*整体修改样式覆盖*/
input[type=button] {
background: #4093ff;
color: #fff;
border: none;
padding: 2px 5px;
border-radius: 3px;
}
input[type=button]:hover {
opacity: 0.7;
cursor: pointer;
}
.user-order {
box-sizing: border-box;
color: #888;
text-align: right;
padding: 0;
margin: 20px 0 20px;
}
.user-order * {
display: inline-block;
height: 24px;
line-height: 24px;
}
.user-order .r {
float: left;
}
.user-order .r .fa {
display: none;
}
.user-order .r span {
font-size: 17px;
font-weight: bold;
color: #5b5f6d;
padding: 0 0 0 10px;
border-left: 5px solid #409eff;
}
.toolbar_top {
background: transparent;
border: none;
padding: 0;
}
.equip_btn_box * {
box-sizing: border-box;
float: left;
display: inline-block;
height: 24px;
line-height: 24px !important;
}
.equip_btn_box span {
margin: 0 !important;
margin-left: 0;
}
.normal_input {
border: 1px solid #dcdfe6;
padding: 0 7px;
border-radius: 3px;
}
input[type=text]:focus,
textarea:focus,
.normal_input:focus {
border: 1px solid #409eff;
}
.equip_btn_box button {
font-size: 14px;
color: #fff;
background: #409eff;
border: none;
padding: 0 8px;
border-radius: 3px;
margin: 0 0 0 5px;
}
.layui-table-view .layui-table {
width: 100%;
}
.layui-table-view .layui-table td:first-child,
.layui-table-view .layui-table th:first-child {
border-left: none;
}
.layui-table-view .layui-table[lay-size=sm] .layui-table-cell {
height: 21px;
line-height: 21px;
}
.layui-table[lay-size=sm] .layui-table-cell .layui-btn {
box-sizing: border-box;
color: #409eff;
height: 20px;
line-height: 20px;
border: 1px solid #409eff;
}
.layui-table[lay-size=sm] .layui-table-cell .layui-btn:hover {
color: #fff;
background: #409eff;
}
.layui-table-view .layui-table[lay-size=sm] .layui-form-checkbox {
height: 20px;
line-height: 20px;
}
.layui-table[lay-size=sm] .layui-form-checkbox span {
font-size: 12px;
}
.layui-table[lay-size=sm] .layui-form-checkbox i {
height: 20px;
}
.layui-form-checked,
.layui-form-checked:hover {
border-color: #409eff;
}
.layui-form-checked span,
.layui-form-checked:hover span {
background: #409eff;
}
.layui-form-checked i,
.layui-form-checked:hover i {
color: #409eff;
}
.layui-layer-content {
padding: 10px 20px;
}
.layui-layer-wrap {
border: 1px solid #e4e5e7;
}
.layui-layer-wrap li {
box-sizing: border-box;
color: #444;
padding: 5px 7px;
}
.layui-layer-wrap li + li {
border-top: 1px solid #e4e5e7;
}
.layui-layer-wrap li:nth-child(even) {
background: #fafafa;
}
textarea {
box-sizing: border-box;
resize: none;
padding: 5px;
border-radius: 3px;
border: 1px solid #dcdfe6;
} | usercenter-front/src/main/resources/static/modules/datashare/static/css/index.css | body {
height: auto;
margin: 0 !important;
/*background-image: url(../images/body_bg.png);*/
transition: all .3s ease-in-out;
}
.body_limit {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
a {
cursor: pointer;
}
select {
padding: 0 !important;
height: auto !important;
margin: 0 3px;
border-radius: 3px;
}
.top {
box-sizing: border-box;
background: #263238;
height: 45px;
padding: 12px 0 0;
z-index: 3;
}
.top .top-menu {
margin: 0 5% 0 0;
}
.margin-right-10px {
margin: 0 10px 0 0;
}
.f26 {
font-size: 26px;
}
.cw {
color: #fff;
}
.mt28 {
margin-top: 28px;
}
.logo {
display: none;
float: left;
height: 40px;
margin: 0 0 0 5%;
}
.logo_name {
display: inline-block;
float: left;
font-size: 17px;
font-weight: bold;
color: #fff;
line-height: 16px;
margin: 0 0 0 5%;
}
.bgm {
background: #7c99e5;
}
.ml10p {
margin-left: 10%;
}
.ml30p {
margin-left: 30%;
}
.ml90 {
margin-left: 90px;
}
.nav_2 {
background: #eee;
}
.nav_2 ul li {
width: 8%;
}
.nav_2 ul li a:hover {
color: #7c99e5;
}
.content {
width: 100%;
}
.content_case_box {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 107px 0 0;
margin: auto;
}
.content_case {
width: 100%;
height: 100%;
}
.layui-btn-xs {
height: 20px;
}
.content_case iframe {
width: 100%;
height: 100% !important;
border: none;
overflow: auto;
}
.content .user-order {
background: #fff;
border: 1px solid #e1e6ef;
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
padding: 7px 10px;
}
.user-order .fa:first-child {
font-size: 16px;
margin: 0 5px 0 0;
}
.bgg {
background: #eee;
}
.user-order span a:hover {
color: #7c99e5;
}
.btn_plus {
border: 1px solid #666;
border-radius: 4px;
padding: 8px 10px;
width: 50%;
margin: 10px auto 20px;
background: #fff;
font-size: 14px;
}
.clear_input {
display: inline-block;
height: 25px;
font-size: 14px;
line-height: 25px;
color: #555;
border: 1px solid #bbb;
border-radius: 3px;
width: 150px;
margin: 10px auto;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05);
}
.ml10p {
margin-left: 10%;
}
.btn_submit {
background: #7c99e5;
border: none;
border-radius: 4px;
padding: 5px 10px;
width: 100px;
margin: 10px auto 20px;
display: block;
}
.btn_search,
.btn-cancel {
letter-spacing: 1px;
/* width: auto!important;*/
text-decoration: none;
box-shadow: none;
border: 1px solid transparent;
border-radius: 4px;
line-height: 23px;
padding: 0px 8px;
vertical-align: middle;
display: inline-block;
font-size: 13px;
}
.btn_search {
color: #fff;
background-color: #7c99e5;
border-color: #7c99e5;
text-align: center;
}
.btn-cancel {
color: #333;
background-color: #fff;
border-color: #dddddd;
text-align: center;
}
.btn_search:hover {
/* background-color: #6d8dd5;
border-color: #6d8dd5;*/
text-decoration: none;
cursor: pointer;
/* color: #ffffff;*/
}
.btn-cancel:hover {
color: #6d8dd5;
background-color: #ffffff;
/*border-color: #dddddd;*/
text-decoration: none;
cursor: pointer;
}
.bgbm {
background: #7c99e5;
}
.cbm {
color: #7c99e5;
}
.user_info table tr td,
.user_info table tr th {
color: #333;
text-align: center;
}
.user_info table tr:last-child > td {
border: none;
}
/*.user_info table thead tr{
background:#f1f4fb;
}*/
.user_info table tr {
height: 40px;
}
.user_info table tr td i:hover {
color: #7c99e5;
cursor: pointer;
}
.menu_list {
flex: auto;
text-align: center;
letter-spacing: 0.5px;
height: 100%;
position: relative;
list-style: none;
}
.menu_list li,
.menu_list li a {
height: 100%;
}
.menu_tit {
cursor: pointer;
color: #fff;
white-space: nowrap;
overflow: hidden;
}
.menu_selected .menu_tit,
.menu_list:hover > .menu_tit {
border-bottom: 2px solid #6d8dd5;
}
.menu_tit .fa-sort-down {
font-size: 12px;
color: #374767;
position: relative;
top: -3px;
left: 3px;
}
.menu_selected .menu_tit,
.menu_selected,
menu_tit .fa,
.menu_list:hover > .menu_tit,
.menu_list:hover > .menu_tit > .fa {
color: #6d8dd5;
}
.menu_selected .menu_tit,
.menu_list:hover > .menu_tit {
background: -webkit-linear-gradient(top, rgba(38, 50, 56, 0.03), rgba(255, 255, 255, 1)) !important;
}
.menu_list a {
box-sizing: border-box;
display: block;
text-decoration: none;
height: 100%;
line-height: 29.5px;
padding: 13px 0 0 0px !important;
font-weight: 500;
color: #374767;
font-size: 12px;
letter-spacing: 0.3px;
border-left: 1px solid #e7ecf5;
border-bottom: 2px solid #fff;
position: relative;
z-index: 10000;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: .3s;
transition-duration: .3s;
background-color: transparent;
outline: 0;
}
.dhu-menu > .menu_list:last-child > a {
border-right: 1px solid #e7ecf5;
}
.dhu-menu > .menu_list:last-child .menu_tit {
border-right: 1px solid #e7ecf5;
}
.layui-table-cell {
padding: 0 5px;
}
.layui-btn + .layui-btn {
margin-left: 2px;
}
.sub_menu {
display: none;
top: 63px;
left: 0;
box-shadow: 1px 1px 3px rgba(0, 0, 0, .15);
background: #fff;
z-index: 9;
min-width: 100%;
}
.add_sub {
width: 90%;
left: 5%;
top: 43px;
height: 25px;
line-height: 25px;
font-size: 14px;
background: #E4EAEA;
margin: auto;
z-index: 3;
}
.header {
width: 100%;
height: 62px;
background: #fff;
box-shadow: 0 2px 2px #e1e6ef, 0 1px 0 #e1e6ef;
border: none;
padding: 0;
margin: 0;
position: relative;
z-index: 2;
}
.dhu-menu {
display: flex;
box-sizing: border-box;
margin: 0;
padding: 0;
height: 100%;
}
.menu_box {
width: 90%;
height: 100%;
margin: auto;
position: relative;
}
.menu_box_top {
width: 100%;
background: #fff;
height: 64px;
box-shadow: 0 2px 15px #999, 0 1px 0 #ccc;
margin: auto;
position: fixed;
top: 0;
box-sizing: border-box;
padding: 0 5%;
z-index: 9999;
}
.sub_selected {
background: #F5F5F5;
}
.sub_list a:hover {
color: #7c99e5;
}
.nav-top {
box-sizing: border-box;
font-size: 12px;
color: #eaeaea;
text-align: center;
text-decoration: none;
border: 1px solid transparent;
border-left: 1px solid rgba(255, 255, 255, 0.15);
padding: 1px 6px;
display: block;
transition: all 0.2s;
}
.nav-top:hover {
color: #80a7d6;
background-color: rgba(255, 255, 255, 0.3);
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) inset;
}
.nav-top:first-child {
border-left: none;
}
.nav-top:last-child {
width: 16px;
border: none;
padding: 0;
margin: 2px 0 0 3px;
}
.nav-top:last-child:hover {
border: none !important;
background: none;
box-shadow: none;
}
.nav-top .fa {
display: none;
font-size: 12px;
color: #eaeaea;;
margin: 0 0 0 2px;
text-shadow: 0.5px 0.5px 0.5px #000;
transition: all 0.1s;
}
.nav-top:hover > .fa {
color: #80a7d6;
}
.nav-top:last-child .fa {
display: inline-block;
font-size: 15px;
font-weight: bold;
color: #e20a0a;
text-shadow: none;
}
.nav-top:last-child .fa:hover {
color: #ff0000;
}
.center_switch,
.jurisdiction_switch {
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
cursor: pointer;
}
.center_switch:hover,
.jurisdiction_switch:hover .js_hint {
color: #bfd8f1;
border-bottom: 1px solid #aac9e8;
}
.center_switch {
float: right;
top: 3.5px;
font-size: 12px;
color: #96c1ef;
text-decoration: none;
border-bottom: 1px solid #73a2dc;
line-height: 16px;
margin: 2px 6px;
}
.jurisdiction_switch {
float: right;
padding: 0px 6px 3px;
margin: 1px 0;
position: relative;
}
.js_hint,
.jurisdiction_switch > div {
float: left;
}
.js_hint {
position: relative;
top: 0.5px;
font-size: 12px;
color: #96c1ef;
text-decoration: none;
border-bottom: 1px solid #73a2dc;
line-height: 16px;
}
.jurisdiction_switch:hover .js_box {
display: block;
background: #333;
}
.js_box {
display: none;
position: absolute;
top: 100%;
left: -20px;
font-size: 12px;
background: #263338d4;
z-index: 10001;
padding: 6px 0 1px;
color: #333;
}
.js_box > div {
line-height: 41px;
color: #eee;
position: relative;
transition: all 0.3s;
}
.js_box > div:hover {
cursor: pointer;
background: #263338;
}
.js_box > div > span {
display: block;
color: #eee;
}
.js_box > div:hover > a {
}
.js_box > div a {
display: block;
white-space: nowrap;
color: #eee;
padding: 0 20px;
transition: all 0.3s;
}
.js_box > div a:hover {
color: #fff;
background: #555;
padding: 0 10px 0 30px;
}
.page {
width: 97.5%;
margin: 15px auto 0;
background: #f1f4fb;
height: 35px;
line-height: 35px;
font-size: 14px;
padding-left: 10px;
}
.page a:hover {
color: #008bff;
text-decoration: underline;
}
.sub_ul li a {
box-sizing: border-box;
display: block;
clear: both;
width: 100%;
height: 41px;
line-height: 41px;
text-align: center;
border-bottom: 1px solid #e7ecf5 !important;
color: #374767;
font-size: 12px;
border-left: none;
padding: 0 7px !important;
white-space: nowrap;
-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;
}
.sub_ul li:last-child > a {
border: none !important;
}
.sub_ul li a:hover {
color: #6d8dd5;
background-color: #f8f9fa;
padding: 0 1px 0 13px !important;
}
.hide_none {
display: none;
}
.content-toolbar {
background-image: none;
background: #ecebeb;
background: -moz-linear-gradient(#f0f0f0 20%, #efefef 50%, #f0f0f0 52%, #dfdfdf 100%);
background: linear-gradient(#f0f0f0 20%, #efefef 50%, #f0f0f0 52%, #dfdfdf 100%);
background: -webkit-linear-gradient(#f0f0f0 20%, #efefef 50%, #f0f0f0 52%, #dfdfdf 100%);
background: -o-linear-gradient(#f0f0f0 20%, #efefef 50%, #f0f0f0 52%, #dfdfdf 100%);
}
.filter:hover {
color: #7c99e5;
}
.equipment_img,
.equipment_box {
width: 25%;
}
.btn-new {
font-size: 13px;
letter-spacing: 2px;
width: 50px;
height: 35px;
background: #7c99e5;
color: #333;
padding: 5px 8px;
border-radius: 4px;
}
.btn-new:hover {
text-decoration: none;
/* background: #6d8dd5;
box-shadow: 1px 1px 1px rgba(0,0,0,0.2) inset;*/
}
.btn-collect {
font-size: 18px;
float: right;
margin: 0 5px;
}
.btn-new:hover {
color: #fff;
}
a:hover {
color: #7c99e5;
}
.downborder {
border: 1px solid #ccc;
box-shadow: 0 0 3px #aaa;
}
.menu {
border: none;
}
#instru_table tr td,
#instru_table tr th {
text-align: center;
}
#instru_table tr th {
background: #88abbf;
color: #fff;
}
#detail_table tr td,
#detail_table tr th {
border: 1px solid #ddd;
}
.instru_name,
.instru_name2 {
background: #7c99e5;
color: #fff;
border-radius: 4px;
padding-left: 10px;
font-size: 16px;
font-weight: normal;
}
.nav_button {
height: 35px;
background: #7c99e5;
line-height: 35px;
padding: 0 7px;
border-radius: 4px;
margin-right: 15px;
}
.nav_button:hover {
background: #7C83E5;
}
.nav_a:hover {
color: #fff;
}
.access_left li {
box-sizing: border-box;
/*background: #acbbe4;*/
font-size: 13px;
color: #fff;
border-radius: 20px;
line-height: 31px;
text-align: center;
margin-bottom: 15px;
width: 105%;
cursor: pointer;
}
.access_left li:hover,
.access_left li a:hover,
.access_left li:hover a {
/* background: #fefeff;
color: #637ebd;*/
}
.access_left li a {
color: #fff;
}
.access_left li#left_choose a {
color: #625bc3;
}
.r_save {
height: 25px;
line-height: 25px;
background: #fff;
border: none;
border-radius: 4px;
margin-right: 10px;
margin-top: 7.3px;
padding: 0 4px;
}
.r_save_2 {
height: 25px;
line-height: 25px;
background: #7c99e5;
border: none;
border-radius: 4px;
margin-right: 10px;
margin-top: 5px;
}
.r_save3 {
font-size: 13px;
color: #333;
letter-spacing: 2px;
margin: -3px 3px 0 0;
padding: 0px 8px;
line-height: 23px;
background: #ffffff;
box-sizing: border-box;
border: 1px solid #ddd;
border-radius: 3px;
}
.r_save3:hover {
/*
border-color: #709de0!important;*/
/*color: #6d8dd5!important;*/
/*background: #fcfdff!important;*/
}
.classteam td {
border: none;
}
.btnbw {
color: #333;
background: #7c99e5;
padding: 5px 8px;
border-radius: 5px;
}
.btnbw:hover {
color: #fff;
}
.fade {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
position: fixed;
left: 0;
top: 0;
z-index: 99;
}
.addMemberDiv {
width: 350px;
height: 200px;
background: #fff;
position: fixed;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -150px;
z-index: 999;
border-radius: 5px;
border: 1px solid #ddd;
}
.addMemberDiv .close {
width: 36px;
height: 36px;
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
.addMemberDiv .close i {
width: 20px;
height: 20px;
position: absolute;
left: 50%;
top: 50%;
margin: -10px 0 0 -10px;
/*background: url(../images/msg_close.png) 0 0 no-repeat;*/
}
.nav_choose {
border: 1px solid #7c99e5;
background: #fafafa;
}
.nav_choose .nav_a {
color: #333;
}
.tit_icon {
color: #374767;
display: block;
width: 100%;
font-size: 19px;
height: 16px;
padding-bottom: 1px;
text-align: center;
}
.sub_ul {
margin: 0;
padding: 0;
}
.sub_ul li {
display: block;
width: 100%;
list-style: none;
}
#left_choose {
/* background: #fff!important;
color: #1e1c94!important;
border: 2px solid #7c99e5!important;*/
}
.equipment_introduce li {
text-align: left;
}
/*.user-order{
margin-top:20px!important;
padding: 12px 15px;
background: #fdfdff;
border: 1px solid #e1e6ef;
}*/
.text_input {
/* border-radius: 0;
box-shadow: none;
border: 1px solid #e4e5e7;
display: block;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;*/
margin-left: 5px;
color: #000;
outline: none;
margin-right: 10px;
font-family: inherit;
border-radius: 3px !important;
border: 1px solid #dcdfe6;
width: 160px;
height: 24px;
line-height: 23px;
padding: 0 7px;
background-color: white;
}
.text_input:focus {
border-color: #558B2F;
box-shadow: none;
}
.page-content {
width: 90%;
margin: 0 auto;
}
.ant-modal-wrap {
position: fixed;
overflow: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1000;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.ant-modal-mask {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: rgba(55, 55, 55, .6);
height: 100%;
z-index: 1000;
filter: alpha(opacity=50);
}
.add_wrapper {
position: absolute;
top: 200px;
left: 30%;
width: 520px;
transform-origin: 932px 46.8px 0;
}
.add_content {
position: relative;
background-color: #fff;
border: 0;
border-radius: 3px;
background-clip: padding-box;
box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}
.ant-modal-close {
cursor: pointer;
border: 0;
background: transparent;
position: absolute;
right: 0;
top: 0;
z-index: 10;
font-weight: 700;
line-height: 1;
text-decoration: none;
-webkit-transition: color .3s ease;
transition: color .3s ease;
color: rgba(0, 0, 0, .43);
outline: 0;
}
.ant-modal-header {
padding: 13px 16px;
border-radius: 3px 3px 0 0;
background: #fff;
color: #666;
border-bottom: 1px solid #f4f4f4;
}
.ant-modal-title {
margin: 0;
font-size: 14px;
line-height: 21px;
font-weight: 500;
color: rgba(0, 0, 0, .85);
}
.ant-row {
position: relative;
margin-left: 0;
margin-right: 0;
zoom: 1;
display: block;
height: 35px;
}
.ant-form-item {
font-size: 12px;
color: #666;
vertical-align: top;
margin-bottom: 10px !important;
}
.ant-form-item-label {
text-align: right;
vertical-align: middle;
line-height: 32px;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ant-col-6 {
display: block;
width: 25%;
float: left;
}
.ant-form-item-label label {
color: #666;
position: relative;
font-size: 12px;
}
.ant-col-14 {
display: block;
width: 58.33333333%;
float: left;
}
.ant-form-item-control {
vertical-align: middle;
line-height: 32px;
position: relative;
zoom: 1;
}
.ant-input-lg {
padding: 6px 7px;
height: 32px;
}
.ant-input {
position: relative;
display: inline-block;
padding: 4px 7px;
width: 100%;
height: 28px;
cursor: text;
font-size: 12px;
line-height: 1.5;
color: #666;
background-color: #fff;
background-image: none;
border: 1px solid #bbb;
border-radius: 3px;
-webkit-transition: all .3s;
transition: all .3s;
}
.vertical-center-modal .ant-modal .ant-modal-body {
max-height: 500px;
overflow-y: auto;
}
.ant-modal-body {
padding: 16px;
font-size: 12px;
line-height: 1.5;
}
.ant-modal-footer {
border-top: 1px solid #f4f4f4;
padding: 10px 16px 10px 10px;
text-align: right;
border-radius: 0 0 3px 3px;
}
.ant-btn,
.ant-btn-group,
.ant-radio-group {
margin-bottom: 5px;
}
.ant-btn-lg {
padding: 0 15px;
font-size: 14px;
border-radius: 3px;
height: 32px;
}
.ant-btn,
.ant-btn:active,
.ant-btn:focus {
outline: 0;
}
.ant-btn {
display: inline-block;
margin-bottom: 0;
font-weight: 500;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid #e5e5e5;
white-space: nowrap;
line-height: 1.5;
padding: 0 15px;
font-size: 12px;
border-radius: 3px;
height: 28px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
transition: all .3s cubic-bezier(.645, .045, .355, 1);
position: relative;
color: #666;
background-color: #fff;
}
.ant-btn-primary {
color: #fff;
background-color: #108ee9;
border-color: #108ee9;
}
#editForm td {
padding: 5px 0;
}
/*添加的设备信息框属性*/
.tool-box1 {
margin-top: 20px;
line-height: 24px;
width: 100%;
background: #fff;
border: 1px solid #e1e6ef;
border-radius: 5px;
padding: 15px;
}
.tool-box1 table {
border: 1px solid #ccc;
width: 100%;
}
div.tool-box1 table tr {
/*border-bottom:1px dashed #aeacac;*/
box-sizing: border-box;
background: none !important;
height: 24px;
}
div.tool-box1 table tr td,
div.tool-box1 table tr th {
padding: 5px;
font-size: 12px;
border: 1px solid #ccc !important;
}
/*.tool-box1 table th span{
display:block;
border-right:1px dashed #aeacac;
font-size:12px;
line-height:14px;
}*/
.tool-box1 table td {
border: none;
padding-left: 10px;
}
/*仪器管理页面选择框边距*/
.equip_img_tab,
.equip_img_tab tbody,
.equip_img_tab tr {
width: 100%;
display: block;
overflow: hidden;
}
.equip_img_tab tr {
height: auto !important;
}
.equip_img_tab td {
float: left;
box-sizing: border-box;
width: 50%;
padding: 0 4% 0 0;
height: 240px;
display: block;
}
.equipment_box .equip_pic {
width: auto;
height: 100%;
box-sizing: border-box;
padding: 0 350px 5px 0;
margin: 0 0 0 10px;
position: relative;
}
.equipment_box .equip_pic > div {
position: absolute;
/*width: 100%;*/
width: 93%;
/*height:100%;*/
height: 93%;
}
.equip_img_limit {
position: relative;
width: auto;
height: 100%;
padding: 30px 250px 30px 10px;
}
.equip_img {
width: 100%;
height: 100%;
border: 1px solid #e4e7ec;
background: #fafaff;
position: relative;
}
.equip_img img {
max-width: 95%;
max-height: 95%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.equip_lnn {
position: absolute;
right: 4%;
top: 0;
margin: 30px 0;
}
.search,
.cancel {
margin-top: 0px;
float: left;
cursor: pointer;
margin-left: 13px;
letter-spacing: 1px;
text-decoration: none;
box-shadow: none;
border: 1px solid transparent;
border-radius: 4px;
line-height: 23px;
padding: 0px 8px;
vertical-align: middle;
display: inline-block;
font-size: 13px;
white-space: nowrap;
}
.search {
color: #fff;
background: #7c99e5;
border-color: #7c99e5;
}
.search:hover {
/* background-color: #6d8dd5;
border-color: #6d8dd5;*/
text-decoration: none;
/* color: #ffffff!important;*/
cursor: pointer;
}
.cancel {
background: #ffffff;
border: 1px solid #dddddd;
}
.cancel:hover {
/*color: #6d8dd5;
background-color: #ffffff;
border-color: #dddddd;*/
box-shadow: none;
text-decoration: none;
cursor: pointer;
}
.toolbar_top {
background: #fdfdff;
border: 1px solid #e1e6ef;
padding: 7px;
}
.equip_select {
width: 100%;
height: 30px !important;
color: #333;
background-color: #fff;
border-color: #ccc;
}
.mt_5 {
margin-top: -5px;
}
@media (max-width: 1095px) {
.nav-top {
padding: 1px 2px;
}
}
@media (max-width: 900px) {
.logo_name {
display: none;
}
.nav-top {
padding: 1px 2px;
}
}
/*整体修改样式覆盖*/
input[type=button] {
background: #4093ff;
color: #fff;
border: none;
padding: 2px 5px;
border-radius: 3px;
}
input[type=button]:hover {
opacity: 0.7;
cursor: pointer;
}
.user-order {
box-sizing: border-box;
color: #888;
text-align: right;
padding: 0;
margin: 20px 0 20px;
}
.user-order * {
display: inline-block;
height: 24px;
line-height: 24px;
}
.user-order .r {
float: left;
}
.user-order .r .fa {
display: none;
}
.user-order .r span {
font-size: 17px;
font-weight: bold;
color: #5b5f6d;
padding: 0 0 0 10px;
border-left: 5px solid #409eff;
}
.toolbar_top {
background: transparent;
border: none;
padding: 0;
}
.equip_btn_box * {
box-sizing: border-box;
float: left;
display: inline-block;
height: 24px;
line-height: 24px !important;
}
.equip_btn_box span {
margin: 0 !important;
margin-left: 0;
}
.normal_input {
border: 1px solid #dcdfe6;
padding: 0 7px;
border-radius: 3px;
}
input[type=text]:focus,
textarea:focus,
.normal_input:focus {
border: 1px solid #409eff;
}
.equip_btn_box button {
font-size: 14px;
color: #fff;
background: #409eff;
border: none;
padding: 0 8px;
border-radius: 3px;
margin: 0 0 0 5px;
}
.layui-table-view .layui-table {
width: 100%;
}
.layui-table-view .layui-table td:first-child,
.layui-table-view .layui-table th:first-child {
border-left: none;
}
.layui-table-view .layui-table[lay-size=sm] .layui-table-cell {
height: 21px;
line-height: 21px;
}
.layui-table[lay-size=sm] .layui-table-cell .layui-btn {
box-sizing: border-box;
color: #409eff;
height: 20px;
line-height: 20px;
border: 1px solid #409eff;
}
.layui-table[lay-size=sm] .layui-table-cell .layui-btn:hover {
color: #fff;
background: #409eff;
}
.layui-table-view .layui-table[lay-size=sm] .layui-form-checkbox {
height: 20px;
line-height: 20px;
}
.layui-table[lay-size=sm] .layui-form-checkbox span {
font-size: 12px;
}
.layui-table[lay-size=sm] .layui-form-checkbox i {
height: 20px;
}
.layui-form-checked,
.layui-form-checked:hover {
border-color: #409eff;
}
.layui-form-checked span,
.layui-form-checked:hover span {
background: #409eff;
}
.layui-form-checked i,
.layui-form-checked:hover i {
color: #409eff;
}
.layui-layer-content {
padding: 10px 20px;
}
.layui-layer-wrap {
border: 1px solid #e4e5e7;
}
.layui-layer-wrap li {
box-sizing: border-box;
color: #444;
padding: 5px 7px;
}
.layui-layer-wrap li + li {
border-top: 1px solid #e4e5e7;
}
.layui-layer-wrap li:nth-child(even) {
background: #fafafa;
}
textarea {
box-sizing: border-box;
resize: none;
padding: 5px;
border-radius: 3px;
border: 1px solid #dcdfe6;
} | 0.411939 | 0.099645 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
}
.App {
width: 100%;
display: flex;
flex-flow: column nowrap;
justify-content: center;
}
.header-link {
display: flex;
flex-flow: row nowrap;
justify-content: center;
width: 90%;
margin: auto;
}
@media (max-width: 508px) {
.header-link {
flex-flow: row wrap;
}
}
.link {
align-self: flex-end;
margin-left: 2%;
}
form {
margin: auto;
}
html {
font-size: 14px;
font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir,
"helvetica neue", helvetica, ubuntu, roboto, noto, "segoe ui", arial,
sans-serif;
margin: 0;
padding: 0;
text-decoration-skip-ink: "auto";
}
:root {
--gray-900: #1a202c;
--gray-800: #2d3748;
--gray-700: #4a5568;
--gray-600: #718096;
--gray-500: #a0aec0;
--gray-400: #cbd5e0;
--gray-300: #e2e8f0;
--gray-200: #edf2f7;
--gray-100: #f7fafc;
--red-100: #fff5f5;
--red-200: #fed7d7;
--red-300: #feb2b2;
--red-400: #fc8181;
--red-500: #f56565;
--red-600: #e53e3e;
--red-700: #c53030;
--red-800: #9b2c2c;
--red-900: #742a2a;
--blue-100: #ebf8ff;
--blue-200: #bee3f8;
--blue-300: #90cdf4;
--blue-400: #63b3ed;
--blue-500: #4299e1;
--blue-600: #3182ce;
--blue-700: #2b6cb0;
--blue-800: #2c5282;
--blue-900: #2a4365;
--white: white;
--red: #f56565;
--text-decoration-color: var(--gray-400);
--text-color: var(--gray-800);
--focus-ring-color: var(--blue-500);
}
body {
padding: 0;
margin: calc((100vh / 25) * 1.563) calc((100vw / 25) * 1.563);
background-color:var(--gray-900);
font-weight: 400;
line-height: 1.563;
color: white;
caret-color: var(--text-color);
}
@media (prefers-color-scheme: dark) {
body {
color: white;
background-color: var(--gray-900);
caret-color: white;
}
}
/* Typography
––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 1rem;
margin-top: 1em;
font-weight: bold;
}
h1 {
font-size: 3.052rem;
letter-spacing: -0.15rem;
line-height: 1;
margin-bottom: 1px;
}
h2 {
font-size: 2.441rem;
letter-spacing: -0.12rem;
line-height: 1.2;
}
h3 {
font-size: 1.953rem;
letter-spacing: -0.09rem;
line-height: 1.2;
}
h4 {
font-size: 1.563rem;
letter-spacing: -0.06rem;
line-height: 1.3;
}
h5 {
font-size: 1.25rem;
letter-spacing: -0.03rem;
line-height: 1.4;
}
h6 {
font-size: 1rem;
letter-spacing: 0;
line-height: 1.5;
}
p {
margin-bottom: 1.563rem;
}
p > *:last-child {
margin-bottom: 0;
}
a {
color: inherit;
text-decoration: underline;
text-decoration-color: var(--text-decoration-color);
-webkit-text-decoration-color: var(--text-decoration-color);
border-radius: 5px;
text-underline-offset: 2px;
text-decoration-thickness: 2px;
}
.mJdvx {
margin-bottom: 1% !important;
}
@media (hover: hover) {
a:hover {
text-decoration-color: var(--gray-800);
}
}
@media (hover: hover) and (prefers-color-scheme: dark) {
a:hover {
text-decoration-color: white;
}
}
@media (prefers-color-scheme: dark) {
a {
text-decoration-color: var(--gray-700);
-webkit-text-decoration-color: var(--gray-700);
}
}
a:focus-visible {
box-shadow: 0 0 0 2px var(--focus-ring-color);
outline: none;
}
small {
font-size: 0.888rem;
}
hr {
border: 1px solid var(--gray-700);
margin: 3.052rem 0;
}
/* Form
––––––––––––––––––––––––––––––––– */
label {
font-weight: bold;
display: flex;
}
input[type="username"],
input[type="text"],
input[type="password"] {
padding: 0.65rem 0.5rem;
font-size: 1rem;
border: 2px solid var(--gray-200);
background-color: var(--gray-100);
color: var(--gray-800);
border-radius: 10px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@media (prefers-color-scheme: dark) {
input[type="username"],
input[type="text"],
input[type="password"] {
background-color: var(--gray-800);
border-color: var(--gray-700);
color: white;
}
input[type="username"]::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
select,
textarea {
color: var(--gray-500);
}
}
input[type="username"],
input[type="text"],
input[type="password"],
textarea,
select {
width: 400px;
}
select {
margin: 0;
-webkit-appearance: none;
box-sizing: border-box;
padding: 0.65rem 0.5rem;
font-size: 1rem;
border: 2px solid var(--gray-200);
border-radius: 10px;
color: var(--gray-700);
height: auto;
background-color: var(--gray-100);
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 125.304 125.304"><path d="M62.652 103.895L0 21.41h125.304" fill="%23343334"/></svg>');
background-repeat: no-repeat;
background-size: 1rem;
background-position: center right 0.5rem;
}
@media (prefers-color-scheme: dark) {
select {
background-color: var(--gray-800);
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 125.304 125.304"><path d="M62.652 103.895L0 21.41h125.304" fill="%23ffffff"/></svg>');
border-color: var(--gray-700);
color: white;
}
}
textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-size: 1rem;
border: 2px solid var(--gray-200);
color: var(--gray-700);
border-radius: 10px;
resize: vertical;
background-color: var(--gray-100);
box-sizing: border-box;
padding: 0.65rem 0.5rem;
font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir,
"helvetica neue", helvetica, ubuntu, roboto, noto, "segoe ui", arial,
sans-serif;
}
@media (prefers-color-scheme: dark) {
textarea {
background-color: var(--gray-800);
border-color: var(--gray-700);
color: white;
}
}
input:focus,
select:focus,
textarea:focus {
outline: none;
border: 2px solid var(--focus-ring-color);
}
input:invalid,
select:invalid,
textarea:invalid {
border: 2px solid #ff7d87;
box-shadow: none;
}
input[type="checkbox"] {
display: inline-block;
height: 1rem;
font-size: 1rem;
border-radius: 5px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 2px solid var(--gray-300);
width: 1rem;
background-color: white;
align-self: center;
margin-right: 0.5rem;
}
@media (prefers-color-scheme: dark) {
input[type="checkbox"] {
background-color: var(--gray-800);
border-color: var(--gray-600);
}
}
input[type="checkbox"]:hover {
cursor: pointer;
}
input[type="checkbox"]:checked {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="78.369" height="78.369" viewBox="0 0 78.369 78.369"><path fill="white" d="M78.05 19.015l-48.592 48.59c-.428.43-1.12.43-1.548 0L.32 40.016c-.427-.426-.427-1.12 0-1.547l6.704-6.704c.428-.427 1.12-.427 1.548 0l20.113 20.112 41.113-41.113c.43-.427 1.12-.427 1.548 0l6.703 6.704c.427.427.427 1.12 0 1.548z"/></svg>');
background-size: contain;
background-color: var(--gray-700);
border: 2px solid var(--gray-700);
}
input[type="checkbox"]:focus-visible,
input[type="checkbox"]:checked:focus-visible {
border-color: var(--focus-ring-color);
}
@media (prefers-color-scheme: dark) {
input[type="checkbox"]:checked {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="78.369" height="78.369" viewBox="0 0 78.369 78.369"><path fill="%23343434" d="M78.05 19.015l-48.592 48.59c-.428.43-1.12.43-1.548 0L.32 40.016c-.427-.426-.427-1.12 0-1.547l6.704-6.704c.428-.427 1.12-.427 1.548 0l20.113 20.112 41.113-41.113c.43-.427 1.12-.427 1.548 0l6.703 6.704c.427.427.427 1.12 0 1.548z"/></svg>');
background-color: white;
border: 2px solid white;
}
}
input[type="radio"] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 50%;
border: 2px solid var(--gray-300);
height: 1rem;
width: 1rem;
margin-right: 0.5rem;
align-self: center;
justify-content: center;
position: relative;
display: flex;
}
@media (prefers-color-scheme: dark) {
input[type="radio"] {
border: 2px solid white;
}
}
@media (hover: hover) {
input[type="radio"]:hover {
cursor: pointer;
}
}
input[type="radio"]:checked {
border: 2px solid var(--gray-700);
}
input[type="radio"]:focus-visible,
input[type="radio"]:checked:focus-visible {
border-color: var(--focus-ring-color);
}
@media (prefers-color-scheme: dark) {
input[type="radio"]:checked {
border: 2px solid white;
}
}
input[type="radio"]:checked::before {
content: "";
width: calc(100% - 4px);
height: calc(100% - 4px);
background-color: var(--gray-700);
align-self: center;
border-radius: 50%;
}
@media (prefers-color-scheme: dark) {
input[type="radio"]:checked::before {
background-color: white;
}
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
padding: 0.5rem 1.25rem;
font-size: 1rem;
border-radius: 10px;
background-color: var(--gray-700);
border: 2px solid var(--gray-700);
color: white;
text-decoration: none;
font-weight: bold;
margin-bottom: 1rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: inline-block;
line-height: initial;
transition: background-color 200ms ease-in-out, border 200ms ease-in-out,
transform 200ms ease-in-out;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
@media (prefers-color-scheme: dark) {
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
background-color: white;
border: 2px solid white;
color: var(--gray-800);
}
}
@media (hover: hover) {
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
cursor: pointer;
background-color: var(--gray-800);
}
}
@media (hover: hover) and (prefers-color-scheme: dark) {
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
cursor: pointer;
background-color: var(--gray-300);
}
}
button:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible,
input[type="button"]:focus-visible {
border-color: var(--focus-ring-color);
outline: none;
}
/* Tables
––––––––––––––––––––––––––––––––– */
table {
width: 100%;
border-spacing: 0;
margin-bottom: 1.563rem;
font-variant-numeric: tabular-nums;
}
th,
td {
padding: 0.5rem 0.5rem 0.5rem 0;
margin: 0;
}
th {
font-weight: bold;
text-align: left;
border-bottom: 2px solid var(--gray-300);
color: var(--gray-300);
}
@media (prefers-color-scheme: dark) {
th {
border-color: var(--gray-700);
color: var(--gray-700);
}
}
td {
border-bottom: 2px solid var(--gray-300);
}
@media (prefers-color-scheme: dark) {
td {
border-color: var(--gray-700);
}
}
/* Code
––––––––––––––––––––––––––––––––– */
code {
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
monospace;
font-size: 0.8rem;
white-space: nowrap;
background: var(--gray-100);
padding: 0 0.328rem;
display: inline-block;
vertical-align: middle;
border-radius: 10px;
}
@media (prefers-color-scheme: dark) {
code {
background-color: var(--gray-700);
}
}
p > code {
white-space: normal;
}
pre > code {
line-height: 1.563em;
display: block;
padding: 1rem;
white-space: pre;
margin-bottom: 1.563rem;
overflow: scroll;
}
/* Forces a new-line at the end of a code block for layout purposes. */
pre > code::after {
content: " ";
}
/* Blockquote
––––––––––––––––––––––––––––––––– */
blockquote {
border-left: 0.25rem solid var(--gray-100);
padding: 0 1rem;
margin-bottom: 1.563rem;
}
@media (prefers-color-scheme: dark) {
blockquote {
border-left: 0.25rem solid var(--gray-700);
}
}
/* List
––––––––––––––––––––––––––––––––– */
ul {
margin: 0;
padding: 0 1px;
list-style: disc outside;
font-variant-numeric: tabular-nums;
}
ol {
list-style: decimal outside;
}
ol,
ul {
padding-left: 0;
margin-top: 0;
margin-bottom: 1.563rem;
}
li {
list-style-position: inside;
}
/* Keyboard
––––––––––––––––––––––––––––––––– */
kbd {
display: inline-block;
padding: 0 0.328rem;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
monospace;
font-size: 0.64rem;
color: var(--gray-700);
vertical-align: middle;
background-color: var(--gray-100);
border: solid 1px var(--gray-300);
border-bottom: solid 2px var(--gray-500);
border-radius: 5px;
}
/* Abbreviation
––––––––––––––––––––––––––––––––– */
abbr {
text-decoration: none;
border-bottom: 2px dashed var(--gray-600);
}
@media (hover: hover) {
abbr:hover {
cursor: help;
}
}
.error {
font-size: 12px;
color: var(--red-600);
margin-top: 0.25rem;
}
@media (prefers-color-scheme: dark) {
.error {
color: var(--red-400);
}
}
button:disabled {
opacity: 0.5;
cursor: not-allowed !important;
}
button + button {
margin-left: 0.5rem;
}
button.secondary,
button[type="reset"] {
background-color: var(--gray-300);
border: 2px solid var(--gray-300);
color: var(--gray-900);
}
button.secondary:hover,
button[type="reset"]:hover {
background-color: var(--gray-400);
}
/* custom */
input[type="username"],
input[type="text"],
input[type="password"],
textarea,
select {
width: 400px;
}
label {
margin-top: 1rem;
}
label.checkbox {
font-weight: normal;
}
button[type="submit"] {
margin-top: 1rem;
} | salty-hacker-trolls/src/styles.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
}
.App {
width: 100%;
display: flex;
flex-flow: column nowrap;
justify-content: center;
}
.header-link {
display: flex;
flex-flow: row nowrap;
justify-content: center;
width: 90%;
margin: auto;
}
@media (max-width: 508px) {
.header-link {
flex-flow: row wrap;
}
}
.link {
align-self: flex-end;
margin-left: 2%;
}
form {
margin: auto;
}
html {
font-size: 14px;
font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir,
"helvetica neue", helvetica, ubuntu, roboto, noto, "segoe ui", arial,
sans-serif;
margin: 0;
padding: 0;
text-decoration-skip-ink: "auto";
}
:root {
--gray-900: #1a202c;
--gray-800: #2d3748;
--gray-700: #4a5568;
--gray-600: #718096;
--gray-500: #a0aec0;
--gray-400: #cbd5e0;
--gray-300: #e2e8f0;
--gray-200: #edf2f7;
--gray-100: #f7fafc;
--red-100: #fff5f5;
--red-200: #fed7d7;
--red-300: #feb2b2;
--red-400: #fc8181;
--red-500: #f56565;
--red-600: #e53e3e;
--red-700: #c53030;
--red-800: #9b2c2c;
--red-900: #742a2a;
--blue-100: #ebf8ff;
--blue-200: #bee3f8;
--blue-300: #90cdf4;
--blue-400: #63b3ed;
--blue-500: #4299e1;
--blue-600: #3182ce;
--blue-700: #2b6cb0;
--blue-800: #2c5282;
--blue-900: #2a4365;
--white: white;
--red: #f56565;
--text-decoration-color: var(--gray-400);
--text-color: var(--gray-800);
--focus-ring-color: var(--blue-500);
}
body {
padding: 0;
margin: calc((100vh / 25) * 1.563) calc((100vw / 25) * 1.563);
background-color:var(--gray-900);
font-weight: 400;
line-height: 1.563;
color: white;
caret-color: var(--text-color);
}
@media (prefers-color-scheme: dark) {
body {
color: white;
background-color: var(--gray-900);
caret-color: white;
}
}
/* Typography
––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 1rem;
margin-top: 1em;
font-weight: bold;
}
h1 {
font-size: 3.052rem;
letter-spacing: -0.15rem;
line-height: 1;
margin-bottom: 1px;
}
h2 {
font-size: 2.441rem;
letter-spacing: -0.12rem;
line-height: 1.2;
}
h3 {
font-size: 1.953rem;
letter-spacing: -0.09rem;
line-height: 1.2;
}
h4 {
font-size: 1.563rem;
letter-spacing: -0.06rem;
line-height: 1.3;
}
h5 {
font-size: 1.25rem;
letter-spacing: -0.03rem;
line-height: 1.4;
}
h6 {
font-size: 1rem;
letter-spacing: 0;
line-height: 1.5;
}
p {
margin-bottom: 1.563rem;
}
p > *:last-child {
margin-bottom: 0;
}
a {
color: inherit;
text-decoration: underline;
text-decoration-color: var(--text-decoration-color);
-webkit-text-decoration-color: var(--text-decoration-color);
border-radius: 5px;
text-underline-offset: 2px;
text-decoration-thickness: 2px;
}
.mJdvx {
margin-bottom: 1% !important;
}
@media (hover: hover) {
a:hover {
text-decoration-color: var(--gray-800);
}
}
@media (hover: hover) and (prefers-color-scheme: dark) {
a:hover {
text-decoration-color: white;
}
}
@media (prefers-color-scheme: dark) {
a {
text-decoration-color: var(--gray-700);
-webkit-text-decoration-color: var(--gray-700);
}
}
a:focus-visible {
box-shadow: 0 0 0 2px var(--focus-ring-color);
outline: none;
}
small {
font-size: 0.888rem;
}
hr {
border: 1px solid var(--gray-700);
margin: 3.052rem 0;
}
/* Form
––––––––––––––––––––––––––––––––– */
label {
font-weight: bold;
display: flex;
}
input[type="username"],
input[type="text"],
input[type="password"] {
padding: 0.65rem 0.5rem;
font-size: 1rem;
border: 2px solid var(--gray-200);
background-color: var(--gray-100);
color: var(--gray-800);
border-radius: 10px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@media (prefers-color-scheme: dark) {
input[type="username"],
input[type="text"],
input[type="password"] {
background-color: var(--gray-800);
border-color: var(--gray-700);
color: white;
}
input[type="username"]::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
select,
textarea {
color: var(--gray-500);
}
}
input[type="username"],
input[type="text"],
input[type="password"],
textarea,
select {
width: 400px;
}
select {
margin: 0;
-webkit-appearance: none;
box-sizing: border-box;
padding: 0.65rem 0.5rem;
font-size: 1rem;
border: 2px solid var(--gray-200);
border-radius: 10px;
color: var(--gray-700);
height: auto;
background-color: var(--gray-100);
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 125.304 125.304"><path d="M62.652 103.895L0 21.41h125.304" fill="%23343334"/></svg>');
background-repeat: no-repeat;
background-size: 1rem;
background-position: center right 0.5rem;
}
@media (prefers-color-scheme: dark) {
select {
background-color: var(--gray-800);
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 125.304 125.304"><path d="M62.652 103.895L0 21.41h125.304" fill="%23ffffff"/></svg>');
border-color: var(--gray-700);
color: white;
}
}
textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-size: 1rem;
border: 2px solid var(--gray-200);
color: var(--gray-700);
border-radius: 10px;
resize: vertical;
background-color: var(--gray-100);
box-sizing: border-box;
padding: 0.65rem 0.5rem;
font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir,
"helvetica neue", helvetica, ubuntu, roboto, noto, "segoe ui", arial,
sans-serif;
}
@media (prefers-color-scheme: dark) {
textarea {
background-color: var(--gray-800);
border-color: var(--gray-700);
color: white;
}
}
input:focus,
select:focus,
textarea:focus {
outline: none;
border: 2px solid var(--focus-ring-color);
}
input:invalid,
select:invalid,
textarea:invalid {
border: 2px solid #ff7d87;
box-shadow: none;
}
input[type="checkbox"] {
display: inline-block;
height: 1rem;
font-size: 1rem;
border-radius: 5px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 2px solid var(--gray-300);
width: 1rem;
background-color: white;
align-self: center;
margin-right: 0.5rem;
}
@media (prefers-color-scheme: dark) {
input[type="checkbox"] {
background-color: var(--gray-800);
border-color: var(--gray-600);
}
}
input[type="checkbox"]:hover {
cursor: pointer;
}
input[type="checkbox"]:checked {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="78.369" height="78.369" viewBox="0 0 78.369 78.369"><path fill="white" d="M78.05 19.015l-48.592 48.59c-.428.43-1.12.43-1.548 0L.32 40.016c-.427-.426-.427-1.12 0-1.547l6.704-6.704c.428-.427 1.12-.427 1.548 0l20.113 20.112 41.113-41.113c.43-.427 1.12-.427 1.548 0l6.703 6.704c.427.427.427 1.12 0 1.548z"/></svg>');
background-size: contain;
background-color: var(--gray-700);
border: 2px solid var(--gray-700);
}
input[type="checkbox"]:focus-visible,
input[type="checkbox"]:checked:focus-visible {
border-color: var(--focus-ring-color);
}
@media (prefers-color-scheme: dark) {
input[type="checkbox"]:checked {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="78.369" height="78.369" viewBox="0 0 78.369 78.369"><path fill="%23343434" d="M78.05 19.015l-48.592 48.59c-.428.43-1.12.43-1.548 0L.32 40.016c-.427-.426-.427-1.12 0-1.547l6.704-6.704c.428-.427 1.12-.427 1.548 0l20.113 20.112 41.113-41.113c.43-.427 1.12-.427 1.548 0l6.703 6.704c.427.427.427 1.12 0 1.548z"/></svg>');
background-color: white;
border: 2px solid white;
}
}
input[type="radio"] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 50%;
border: 2px solid var(--gray-300);
height: 1rem;
width: 1rem;
margin-right: 0.5rem;
align-self: center;
justify-content: center;
position: relative;
display: flex;
}
@media (prefers-color-scheme: dark) {
input[type="radio"] {
border: 2px solid white;
}
}
@media (hover: hover) {
input[type="radio"]:hover {
cursor: pointer;
}
}
input[type="radio"]:checked {
border: 2px solid var(--gray-700);
}
input[type="radio"]:focus-visible,
input[type="radio"]:checked:focus-visible {
border-color: var(--focus-ring-color);
}
@media (prefers-color-scheme: dark) {
input[type="radio"]:checked {
border: 2px solid white;
}
}
input[type="radio"]:checked::before {
content: "";
width: calc(100% - 4px);
height: calc(100% - 4px);
background-color: var(--gray-700);
align-self: center;
border-radius: 50%;
}
@media (prefers-color-scheme: dark) {
input[type="radio"]:checked::before {
background-color: white;
}
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
padding: 0.5rem 1.25rem;
font-size: 1rem;
border-radius: 10px;
background-color: var(--gray-700);
border: 2px solid var(--gray-700);
color: white;
text-decoration: none;
font-weight: bold;
margin-bottom: 1rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: inline-block;
line-height: initial;
transition: background-color 200ms ease-in-out, border 200ms ease-in-out,
transform 200ms ease-in-out;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
@media (prefers-color-scheme: dark) {
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
background-color: white;
border: 2px solid white;
color: var(--gray-800);
}
}
@media (hover: hover) {
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
cursor: pointer;
background-color: var(--gray-800);
}
}
@media (hover: hover) and (prefers-color-scheme: dark) {
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
cursor: pointer;
background-color: var(--gray-300);
}
}
button:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible,
input[type="button"]:focus-visible {
border-color: var(--focus-ring-color);
outline: none;
}
/* Tables
––––––––––––––––––––––––––––––––– */
table {
width: 100%;
border-spacing: 0;
margin-bottom: 1.563rem;
font-variant-numeric: tabular-nums;
}
th,
td {
padding: 0.5rem 0.5rem 0.5rem 0;
margin: 0;
}
th {
font-weight: bold;
text-align: left;
border-bottom: 2px solid var(--gray-300);
color: var(--gray-300);
}
@media (prefers-color-scheme: dark) {
th {
border-color: var(--gray-700);
color: var(--gray-700);
}
}
td {
border-bottom: 2px solid var(--gray-300);
}
@media (prefers-color-scheme: dark) {
td {
border-color: var(--gray-700);
}
}
/* Code
––––––––––––––––––––––––––––––––– */
code {
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
monospace;
font-size: 0.8rem;
white-space: nowrap;
background: var(--gray-100);
padding: 0 0.328rem;
display: inline-block;
vertical-align: middle;
border-radius: 10px;
}
@media (prefers-color-scheme: dark) {
code {
background-color: var(--gray-700);
}
}
p > code {
white-space: normal;
}
pre > code {
line-height: 1.563em;
display: block;
padding: 1rem;
white-space: pre;
margin-bottom: 1.563rem;
overflow: scroll;
}
/* Forces a new-line at the end of a code block for layout purposes. */
pre > code::after {
content: " ";
}
/* Blockquote
––––––––––––––––––––––––––––––––– */
blockquote {
border-left: 0.25rem solid var(--gray-100);
padding: 0 1rem;
margin-bottom: 1.563rem;
}
@media (prefers-color-scheme: dark) {
blockquote {
border-left: 0.25rem solid var(--gray-700);
}
}
/* List
––––––––––––––––––––––––––––––––– */
ul {
margin: 0;
padding: 0 1px;
list-style: disc outside;
font-variant-numeric: tabular-nums;
}
ol {
list-style: decimal outside;
}
ol,
ul {
padding-left: 0;
margin-top: 0;
margin-bottom: 1.563rem;
}
li {
list-style-position: inside;
}
/* Keyboard
––––––––––––––––––––––––––––––––– */
kbd {
display: inline-block;
padding: 0 0.328rem;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
monospace;
font-size: 0.64rem;
color: var(--gray-700);
vertical-align: middle;
background-color: var(--gray-100);
border: solid 1px var(--gray-300);
border-bottom: solid 2px var(--gray-500);
border-radius: 5px;
}
/* Abbreviation
––––––––––––––––––––––––––––––––– */
abbr {
text-decoration: none;
border-bottom: 2px dashed var(--gray-600);
}
@media (hover: hover) {
abbr:hover {
cursor: help;
}
}
.error {
font-size: 12px;
color: var(--red-600);
margin-top: 0.25rem;
}
@media (prefers-color-scheme: dark) {
.error {
color: var(--red-400);
}
}
button:disabled {
opacity: 0.5;
cursor: not-allowed !important;
}
button + button {
margin-left: 0.5rem;
}
button.secondary,
button[type="reset"] {
background-color: var(--gray-300);
border: 2px solid var(--gray-300);
color: var(--gray-900);
}
button.secondary:hover,
button[type="reset"]:hover {
background-color: var(--gray-400);
}
/* custom */
input[type="username"],
input[type="text"],
input[type="password"],
textarea,
select {
width: 400px;
}
label {
margin-top: 1rem;
}
label.checkbox {
font-weight: normal;
}
button[type="submit"] {
margin-top: 1rem;
} | 0.422505 | 0.125977 |
@font-face {
font-family: Gilroy-Light;
src: url("../media/fonts/Gilroy-Light.otf");
}
body{
max-width: 100%;
overflow-x: hidden;
font-family: "Inter", sans-serif;
color: #10163A;
margin-left: 0px;
margin-right: 0px;
padding: 0;
background-color: #202020;
}
.container{
max-width: 100%;
font-family: Gilroy-Light;
box-sizing: border-box;
}
.logo{
height:60%;
width: 60%;
margin: 0 0;
}
.navbar{
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 0;
}
.toggleicon{
display: none;
}
.navbar-links{
display: grid;
grid-template-columns: repeat(5, 1fr);
/* justify-items: center; */
}
.links{
padding-right: 3rem;
text-align: center;
}
.links a:hover,.links a:active,.links a:focus{
/* padding: 0.1rem 0.6rem; */
border-bottom:0.1rem solid #ffffff;
/* border-right: 0.1rem solid #ffffff;
border-top: 0.1rem solid #ffffff;
border-left: 0.1rem solid #ffffff; */
/* transition: padding 0.5s ease-in-out; */
/* transition: border-bottom 1s ease-in-out, border-right 0.5s ease-in-out, border-top 0.65s ease-in-out, border-left 1s ease-in-out; */
transition: border-bottom 1s ease-in-out;
}
.links a{
text-decoration: none;
color: azure;
font-size: 1.5rem;
font-family: Gilroy-Light;
/* padding: 0.5rem 0.3rem; */
}
.container-logo{
padding-left: 5rem;
}
.links a{
transition: all 0.5s ease-in-out;
}
.links:hover{
/* transform: translateX(0.5rem);
transform: translateY(0.3rem); */
/* border-bottom:0.1rem solid #ffffff; */
transition: border-bottom 1s ease-in-out;
}
@media (max-width:1189px){
.container-logo{
padding-left: 1rem;
}
.links{
padding-right: 0.1rem!important;
}
}
@media (max-width:1200px){
.links{
padding-right: 1rem;
}
}
@media (max-width:1320px){
.links{
padding-right: 2rem;
}
}
@media (max-width: 1000px) {
.logo{
height:50%;
width: 50%;
}
.links a {
font-size: 1rem;
}
.container-logo{
padding-left: 0rem;
}
}
@media (max-width:576px){
.container-logo{
padding-left: 0rem;
}
ol,ul{
padding-left: 0rem;
}
.body-container{
width: 100%;
font-family: Gilroy-Light;
box-sizing: border-box;
}
.toggleicon{
font-size: 1.5rem;
display: block;
}
.navbar-links{
display: none !important;
}
.navactive{
display: flex;
}
.navbar{
justify-content: space-evenly;
}
.mobnav-li:hover , .mobnav-li:focus, .mobnav-li:active{
border-bottom:0.1rem solid #ffffff;
transition: border-bottom 0.2s ease-in-out, border-right 0.4s ease-in-out, border-top 0.6s ease-in-out, border-left 0.8s ease-in-out;
width: 60%;
margin: auto;
text-align: center;
border-right: 0.1rem solid #ffffff;
border-top: 0.1rem solid #ffffff;
border-left: 0.1rem solid #ffffff;
padding: 0.5rem;
}
.mobnav{
width: 100%;
height: 84vh;
background: #202020;
position: absolute;
top:16vh;
left: 0;
z-index: 6;
font-family: Gilroy-Light;
transition: all 1s ease-in-out;
}
.mobnav-ul{
margin-top: 15%;
/* margin-left: 30%; */
}
.mobnav-ul>li{
margin-top: 3rem;
margin-bottom: 2.5rem;
font-size: 2.5rem;
}
.mobnav-li{
text-decoration: none;
list-style: none;
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
/* margin-top: 10rem; */
}
.mobnav-li>a{
text-decoration: none;
color: white;
text-align: center;
}
/* .clicked{
color: #d10e0e67!important;
} */
}
@media (max-width:480px){
.mobnav-li{
font-size: 1.8rem!important;
}
}
@media (max-width:320px){
.toggleicon{
font-size: 1.5rem;
}
.logo{
width: 39%;
height: auto;
}
.mobnav-li{
font-size: 1.5rem!important;
}
} | css/navbar.css | @font-face {
font-family: Gilroy-Light;
src: url("../media/fonts/Gilroy-Light.otf");
}
body{
max-width: 100%;
overflow-x: hidden;
font-family: "Inter", sans-serif;
color: #10163A;
margin-left: 0px;
margin-right: 0px;
padding: 0;
background-color: #202020;
}
.container{
max-width: 100%;
font-family: Gilroy-Light;
box-sizing: border-box;
}
.logo{
height:60%;
width: 60%;
margin: 0 0;
}
.navbar{
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 0;
}
.toggleicon{
display: none;
}
.navbar-links{
display: grid;
grid-template-columns: repeat(5, 1fr);
/* justify-items: center; */
}
.links{
padding-right: 3rem;
text-align: center;
}
.links a:hover,.links a:active,.links a:focus{
/* padding: 0.1rem 0.6rem; */
border-bottom:0.1rem solid #ffffff;
/* border-right: 0.1rem solid #ffffff;
border-top: 0.1rem solid #ffffff;
border-left: 0.1rem solid #ffffff; */
/* transition: padding 0.5s ease-in-out; */
/* transition: border-bottom 1s ease-in-out, border-right 0.5s ease-in-out, border-top 0.65s ease-in-out, border-left 1s ease-in-out; */
transition: border-bottom 1s ease-in-out;
}
.links a{
text-decoration: none;
color: azure;
font-size: 1.5rem;
font-family: Gilroy-Light;
/* padding: 0.5rem 0.3rem; */
}
.container-logo{
padding-left: 5rem;
}
.links a{
transition: all 0.5s ease-in-out;
}
.links:hover{
/* transform: translateX(0.5rem);
transform: translateY(0.3rem); */
/* border-bottom:0.1rem solid #ffffff; */
transition: border-bottom 1s ease-in-out;
}
@media (max-width:1189px){
.container-logo{
padding-left: 1rem;
}
.links{
padding-right: 0.1rem!important;
}
}
@media (max-width:1200px){
.links{
padding-right: 1rem;
}
}
@media (max-width:1320px){
.links{
padding-right: 2rem;
}
}
@media (max-width: 1000px) {
.logo{
height:50%;
width: 50%;
}
.links a {
font-size: 1rem;
}
.container-logo{
padding-left: 0rem;
}
}
@media (max-width:576px){
.container-logo{
padding-left: 0rem;
}
ol,ul{
padding-left: 0rem;
}
.body-container{
width: 100%;
font-family: Gilroy-Light;
box-sizing: border-box;
}
.toggleicon{
font-size: 1.5rem;
display: block;
}
.navbar-links{
display: none !important;
}
.navactive{
display: flex;
}
.navbar{
justify-content: space-evenly;
}
.mobnav-li:hover , .mobnav-li:focus, .mobnav-li:active{
border-bottom:0.1rem solid #ffffff;
transition: border-bottom 0.2s ease-in-out, border-right 0.4s ease-in-out, border-top 0.6s ease-in-out, border-left 0.8s ease-in-out;
width: 60%;
margin: auto;
text-align: center;
border-right: 0.1rem solid #ffffff;
border-top: 0.1rem solid #ffffff;
border-left: 0.1rem solid #ffffff;
padding: 0.5rem;
}
.mobnav{
width: 100%;
height: 84vh;
background: #202020;
position: absolute;
top:16vh;
left: 0;
z-index: 6;
font-family: Gilroy-Light;
transition: all 1s ease-in-out;
}
.mobnav-ul{
margin-top: 15%;
/* margin-left: 30%; */
}
.mobnav-ul>li{
margin-top: 3rem;
margin-bottom: 2.5rem;
font-size: 2.5rem;
}
.mobnav-li{
text-decoration: none;
list-style: none;
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
/* margin-top: 10rem; */
}
.mobnav-li>a{
text-decoration: none;
color: white;
text-align: center;
}
/* .clicked{
color: #d10e0e67!important;
} */
}
@media (max-width:480px){
.mobnav-li{
font-size: 1.8rem!important;
}
}
@media (max-width:320px){
.toggleicon{
font-size: 1.5rem;
}
.logo{
width: 39%;
height: auto;
}
.mobnav-li{
font-size: 1.5rem!important;
}
} | 0.314577 | 0.08292 |
body {
margin: auto;
font-family: Arial;
}
main {
display: flex;
}
#logo {
min-width: 900px;
max-width: 1200px;
display: flex;
margin: auto;
}
header {
margin: auto;
display: flex;
position: fixed;
z-index: 1;
top: 0;
width: 100%;
background-color: gainsboro;
}
theater {
margin-bottom: 60px;
}
performances {
margin-top: 150px;
}
.close {
cursor: pointer;
}
#popup {
display: flex;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
max-width: 768px;
}
#logo h2 {
margin-left: 80px;
align-self: center;
}
a:active, a:hover, a:visited, a:link {
text-decoration: none;
}
h4 {
text-transform: uppercase;
font-size: 1.125em;
line-height: 1.1;
font-weight: 700;
}
h5 {
margin: 1.2em 0 0 0;
text-transform: uppercase;
font-size: 0.9em;
}
.title p {
margin: .5rem 0 0;
}
.vertical_align_middle {
vertical-align: middle;
}
.all_dates {
border-radius: 2em;
border: 2px solid black;
text-align: center;
text-transform: uppercase;
display: block;
margin: 0 20px 30px 20px;
}
.seat {
width: 25px;
height: 25px;
margin: 2px;
cursor: pointer;
border: 0 none;
border-radius: 8px;
color: #ffffff;
background-color: #416dea;
}
.seat:hover {
transition: all 150ms linear;
opacity: .85;
}
.choose_seat {
background-color: greenyellow;
}
.occupied {
background-color: red;
}
#booking {
display: flex;
flex-direction: column;
align-items: center;
}
#booking_seats {
display: flex;
justify-content: space-between;
height: 160px;
}
#booking_seats_form {
padding: 25px;
width: 180px;
}
#msg {
position: fixed;
width: 180px;
}
.msg {
font-size: 20px;
position: fixed;
margin-left: 40px;
}
.submit_btn {
margin-top: 20px;
cursor: pointer;
width: 100px;
border-radius: 2em;
text-align: center;
text-transform: uppercase;
background-color: limegreen;
font-size: 18px;
font-weight: bold;
color: ghostwhite;
}
#booking table {
padding: 0 70px 0 70px;
}
#chosen_seats {
border: none;
box-shadow: none;
}
#chosen_seats:focus {
outline: none;
box-shadow: none;
}
#confirm_booking {
margin: 100px auto auto auto;
width: 400px;
}
.title {
flex-basis: 25%;
min-width: 260px;
}
.title_top {
height: 300px;
padding: 15px;
background-color: aliceblue;
margin: 0 15px 0 15px;
}
.title_btn {
background-color: aliceblue;
margin: 0 15px 30px 15px;
padding: 10px;
}
#titles {
display: flex;
flex-wrap: wrap;
margin: 30px;
max-width: 1400px;
}
.info {
width: 360px;
}
.date {
padding: 20px;
}
.date_box a:active, .date_box a:hover, .date_box a:visited, .date_box a:link {
color: black;
}
.date div {
margin-bottom: 25px;
}
.performance_weekday {
width: 80px;
padding: 10px;
border: 1px dashed black;
}
.poster {
margin: 20px 20px 0 0;
}
.na {
font-style: italic;
color: gray;
}
.top_padding {
padding-top: 150px;
}
.flex {
display: flex;
justify-content: space-evenly;
}
.flex_ div {
margin: 8px;
}
.margin_auto {
margin: auto;
}
.message {
margin: 10px 0 0 0;
}
.space-between {
justify-content: space-between;
}
.margin-bottom {
margin-bottom: 50px;
}
.margin-top {
margin-top: 150px;
}
.title_description {
max-width: 460px;
}
.btn_edit, .btn_delete, .btn_add, .btn_bck, .btn_book, .btn_log {
cursor: pointer;
border: 0 none;
border-radius: 9px;
color: #ffffff;
padding: 8px;
margin: 5px;
}
.btn_edit {
background-color: green;
}
.btn_delete {
background-color: crimson;
}
.btn_add {
background-color: blue;
}
.btn_bck {
background-color: gold;
}
.btn_book {
background-color: darkorange;
}
.btn_log {
background-color: darkorchid;
}
.btn_edit:hover ,btn_delete:hover {
transition: all 150ms linear;
opacity: .85;
}
.info_table {
min-width: 700px;
max-width: 1200px;
border-collapse: collapse;
margin-bottom: 60px;
width: 100%;
}
.info_table td {
padding: 12px;
text-align: center;
}
.info_table td:last-child {
text-align: right;
}
.info_table td {
border-top: 1px solid lightgray;
} | src/main/resources/static/style.css | body {
margin: auto;
font-family: Arial;
}
main {
display: flex;
}
#logo {
min-width: 900px;
max-width: 1200px;
display: flex;
margin: auto;
}
header {
margin: auto;
display: flex;
position: fixed;
z-index: 1;
top: 0;
width: 100%;
background-color: gainsboro;
}
theater {
margin-bottom: 60px;
}
performances {
margin-top: 150px;
}
.close {
cursor: pointer;
}
#popup {
display: flex;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
max-width: 768px;
}
#logo h2 {
margin-left: 80px;
align-self: center;
}
a:active, a:hover, a:visited, a:link {
text-decoration: none;
}
h4 {
text-transform: uppercase;
font-size: 1.125em;
line-height: 1.1;
font-weight: 700;
}
h5 {
margin: 1.2em 0 0 0;
text-transform: uppercase;
font-size: 0.9em;
}
.title p {
margin: .5rem 0 0;
}
.vertical_align_middle {
vertical-align: middle;
}
.all_dates {
border-radius: 2em;
border: 2px solid black;
text-align: center;
text-transform: uppercase;
display: block;
margin: 0 20px 30px 20px;
}
.seat {
width: 25px;
height: 25px;
margin: 2px;
cursor: pointer;
border: 0 none;
border-radius: 8px;
color: #ffffff;
background-color: #416dea;
}
.seat:hover {
transition: all 150ms linear;
opacity: .85;
}
.choose_seat {
background-color: greenyellow;
}
.occupied {
background-color: red;
}
#booking {
display: flex;
flex-direction: column;
align-items: center;
}
#booking_seats {
display: flex;
justify-content: space-between;
height: 160px;
}
#booking_seats_form {
padding: 25px;
width: 180px;
}
#msg {
position: fixed;
width: 180px;
}
.msg {
font-size: 20px;
position: fixed;
margin-left: 40px;
}
.submit_btn {
margin-top: 20px;
cursor: pointer;
width: 100px;
border-radius: 2em;
text-align: center;
text-transform: uppercase;
background-color: limegreen;
font-size: 18px;
font-weight: bold;
color: ghostwhite;
}
#booking table {
padding: 0 70px 0 70px;
}
#chosen_seats {
border: none;
box-shadow: none;
}
#chosen_seats:focus {
outline: none;
box-shadow: none;
}
#confirm_booking {
margin: 100px auto auto auto;
width: 400px;
}
.title {
flex-basis: 25%;
min-width: 260px;
}
.title_top {
height: 300px;
padding: 15px;
background-color: aliceblue;
margin: 0 15px 0 15px;
}
.title_btn {
background-color: aliceblue;
margin: 0 15px 30px 15px;
padding: 10px;
}
#titles {
display: flex;
flex-wrap: wrap;
margin: 30px;
max-width: 1400px;
}
.info {
width: 360px;
}
.date {
padding: 20px;
}
.date_box a:active, .date_box a:hover, .date_box a:visited, .date_box a:link {
color: black;
}
.date div {
margin-bottom: 25px;
}
.performance_weekday {
width: 80px;
padding: 10px;
border: 1px dashed black;
}
.poster {
margin: 20px 20px 0 0;
}
.na {
font-style: italic;
color: gray;
}
.top_padding {
padding-top: 150px;
}
.flex {
display: flex;
justify-content: space-evenly;
}
.flex_ div {
margin: 8px;
}
.margin_auto {
margin: auto;
}
.message {
margin: 10px 0 0 0;
}
.space-between {
justify-content: space-between;
}
.margin-bottom {
margin-bottom: 50px;
}
.margin-top {
margin-top: 150px;
}
.title_description {
max-width: 460px;
}
.btn_edit, .btn_delete, .btn_add, .btn_bck, .btn_book, .btn_log {
cursor: pointer;
border: 0 none;
border-radius: 9px;
color: #ffffff;
padding: 8px;
margin: 5px;
}
.btn_edit {
background-color: green;
}
.btn_delete {
background-color: crimson;
}
.btn_add {
background-color: blue;
}
.btn_bck {
background-color: gold;
}
.btn_book {
background-color: darkorange;
}
.btn_log {
background-color: darkorchid;
}
.btn_edit:hover ,btn_delete:hover {
transition: all 150ms linear;
opacity: .85;
}
.info_table {
min-width: 700px;
max-width: 1200px;
border-collapse: collapse;
margin-bottom: 60px;
width: 100%;
}
.info_table td {
padding: 12px;
text-align: center;
}
.info_table td:last-child {
text-align: right;
}
.info_table td {
border-top: 1px solid lightgray;
} | 0.438304 | 0.091018 |
/*
Theme Name: MyDream
Theme URI: http://www.ricemouse.com
Description: 梦想,一个迷人而又绚丽的代名词
Version: V1.8.1
Author: 聆听天笑
Author URI: http://www.ricemouse.com/27.html
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{border: 0;font-family: inherit;font-size: 100%;font-style: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
html{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;font-size: 62.5%;overflow-y: scroll;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;}
*,*:before,*:after{-webkit-box-sizing: inherit;-moz-box-sizing: inherit;box-sizing: inherit;}
body,button,input,select,textarea{font: 15px "Trebuchet MS",Helvetica,Arial,'PingFang SC','Hiragino Sans GB','STHeiti Light','Microsoft YaHei',SimHei,'WenQuanYi Micro Hei',sans-serif;color: #304040;line-height: 180%;}
a:hover,a:active{outline: 0;}
a img{border: 0;}
a{color: #304040;text-decoration: none;position:relative;}
a:visited{color: #555;}
a:hover{color: #1DC6F4}
.clear{clear: both;}
:focus{outline: 0}
ol,ul{list-style: none;}
*,*:before,*:after {-webkit-box-sizing: inherit;-moz-box-sizing: inherit;box-sizing: inherit;}
/**动态效果**/
@keyframes fade-in {
0%{opacity:0;transform:translateY(50px)}
50%{opacity:0;transform:translateY(25px)}
100%{opacity:1;transform:translateY(0)}
}
@-webkit-keyframes fade-in {
0%{opacity:0;transform:translateY(50px)}
50%{opacity:0;transform:translateY(25px)}
100%{opacity:1;transform:translateY(0)}
}
.icon-spin{
-webkit-animation:icon-spin 2s infinite linear;
animation:icon-spin 2s infinite linear}
@-webkit-keyframes icon-spin{
0%{-webkit-transform:rotate(0deg);
transform:rotate(0deg)}
100%{-webkit-transform:rotate(359deg);
transform:rotate(359deg)}}
@keyframes icon-spin{
0%{-webkit-transform:rotate(0deg);
transform:rotate(0deg)}
100%{-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}}
#slider{animation:fade-in 1s}
#primary{animation:fade-in 1.2s}
#sidebar{animation:fade-in 1.8s}
/**表格**/
table a:link {color: #666;font-weight: bold;text-decoration: none;}
table a:visited {color: #999999;font-weight: bold;text-decoration: none;}
table a:active,
table a:hover {color: #bd5a35;text-decoration: underline;}
table {
font:15px "Trebuchet MS",Helvetica,Arial,'PingFang SC','Hiragino Sans GB','STHeiti Light','Microsoft YaHei',SimHei,'WenQuanYi Micro Hei',sans-serif;
line-height:1.8;
color: #304040;
border: #ddd 1px solid;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 2px #d1d1d1;
box-shadow: 0 1px 2px #d1d1d1;
}
table > thead th {padding: 21px 25px 22px 25px;border-top: 1px solid #fafafa;border-bottom: 1px solid #e0e0e0;
background: #ededed; /* Old browsers */
}
table > thead th:first-child{text-align: left;padding: 5px 5px 5px 10px;}
table > thead > tr:first-child > th:first-child {-webkit-border-top-left-radius: 3px;border-top-left-radius: 3px;}
table > thead > tr:first-child > th:last-child {-webkit-border-top-right-radius: 3px;border-top-right-radius: 3px;}
table > tbody > tr {text-align: left;padding: 5px 5px 5px 10px;}
table > tbody > tr > td:first-child {text-align: left;padding: 5px 5px 5px 10px;border-left: 0;}
table > tbody > tr > td {vertical-align:top;padding:5px 5px 5px 10px;border-top: 1px solid #ffffff;border-bottom: 1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
background: #f1f1f1;
}
table > tbody > tr:nth-child(even) > td{
background: #fff; /* Old browsers */
}
table > tbody > tr:last-child > td{border-bottom: 0;}
table > tbody > tr:last-child > td:first-child {-webkit-border-bottom-left-radius: 3px;border-bottom-left-radius: 3px;}
table > tbody > tr:last-child > td:last-child {-webkit-border-bottom-right-radius: 3px;border-bottom-right-radius: 3px;}
/** 头部 **/
#masthead{}
/** logo **/
.logo-sites{width: 220px;max-height: 50px;overflow: hidden;transition-duration: .5s;position:absolute;}
.logo-sites img{width: 220px;max-height: 50px;}
/** 底部页面导航 **/
.bottom-nav{margin:0 auto;}
.bottom-menu {text-align:center;margin: 0 8px 0 0;}
.bottom-menu li {display:inline;padding: 0 5px;}
.bottom-menu i{padding-right:5px}
.bottom-menu a{color: #e5e5e5;}
.bottom-menu a:hover {color: #1DC6F4;}
.default-menu li a {float: right;color: #2f889a;margin: 0 10px 0 0;}
/** 前端登录 **/
#user-profile{float:right;line-height:50px}
#user-profile .nav-login a{padding: 2px 15px;background: #0AB59B;color:#e5e5e5}
#user-profile .nav-login a:hover{background: #D2514B;}
#lean_overlay {position: fixed;z-index: 10004;top: 0px;left: 0px;height: 100%;width: 100%;background: #000;display: none;}
#login {display: none;width: 350px;}
.login-t, .login-t a {background: #304040;font-size: 18px;font-weight: 300;text-align: center;color: #fff;padding: 25px 0;border-radius: 2px 2px 0 0;}
#login form, .login-user {background: #f8f8f8;padding: 20px;}
.login-user .login-text{float:left;line-height:180%}
.nav-login i:before{padding-right:5px}
#login form p{margin:10px auto;position:relative}
#login form p.status{white-space:nowrap;}
#login form label.error{color:#FFF;background-color:#7656E8;padding:0 4px;position:absolute;z-index:5;right:10px;top:11px}
#login form label.icon{position:absolute;right:10px;top:10px;color:#999;font-size:20px;color:rgba(0,0,0,.3)}
#login form label.icon i{width:20px;text-align:center}
#login form input{border:1px solid #ddd;padding:10px;width:100%;box-sizing:border-box}
#login ::-webkit-input-placeholder{color:#999}
#login form input:focus{border:1px solid #999}
#login input:-moz-placeholder{color:#999}
#login input.input-control{padding-right:35px}
#login form .submit{cursor:pointer;background-color:#304040;color:#FFF;border:0 none;}
#login form .submit:hover{background-color:#00b5a9}
#login form .submit:focus{border:0 none}
#login form .safe{color:#999;margin-top:20px}
#login form .rememberme{width:inherit;margin-right:3px}
#login form .lost{float:right}
#login img {float: left;width: 80px;height: 80px;margin: 0 20px 0 0;}
.login-b {background: #304040;height: 40px; border-radius: 0 0 2px 2px;}
#login .close{position: absolute;right: 15px;top: 0;width: 30px;height: 35px;border-radius: 0 0 30px 30px;text-align: center;line-height: 35px;background-color: #fff;font-size: 15px;color: #304040;}
#login .close i{-webkit-transition:all ease-out .3s;-moz-transition:all ease-out .3s;-o-transition:all ease-out .3s;transition:all ease-out .3s}
#login .close:hover {color:#00b5a9}
/** 主导航 **/
#menu-box {width: 100%;margin:0 auto;z-index: 999;*+right: 0;border-bottom: 1px solid rgba(64,64,64,0.5);
box-shadow: 0 1px 1px rgba(64,64,64,0.5);background:#304040}
#menu-box.shadow {top: 0;position: fixed;background: rgba(48, 64, 64, 0.9);}
#site-nav .default-menu li a {margin: 10px 10px 0 0;}
/** 菜单 **/
#main-menu {width: 1200px;display: table;transition-duration: .5s;margin: 0 auto;padding:20px 0; }
.shadow #main-menu {transition-duration: .5s;padding:0;height:50px}
.nav-menu,
.nav-menu *{margin: 0;padding: 0;list-style: none;_float: left;}
.nav-menu li{position: relative;}
.nav-menu ul{position: absolute;display: none;top: 100%;left: 0;min-width: 160px;*width: 160px;z-index: 10001;}
.nav-menu > li{float: left;}
.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul{display: block;}
.nav-menu a{display: block;position: relative;zoom: 1;}
.nav-menu ul ul{top: 0;left: 100%;}
.nav-menu{float: left;}
.nav-menu li{position: relative;white-space: nowrap;*white-space: normal;-webkit-transition: background .2s;transition: background .2s;}
.nav-menu li:hover,
.nav-menu li.sfHover{-webkit-transition: none;transition: none;}
.nav-menu .sf-mega{position: absolute;display: none;top: 100%;left: 0;z-index: 99;}
.nav-menu li:hover > .sf-mega,
.nav-menu li.sfHover > .sf-mega{display: block;}
/*一级样式*/
#site-nav-wrap{float: left;margin-left:240px}
#site-nav{}
#site-nav .down-menu li{display: block;float: left;height: 50px;line-height: 50px;}
#site-nav .down-menu li :before{padding-right:5px}
#site-nav .down-menu a{padding: 0 13px;color: #e5e5e5;text-align: left;transition-duration: .8s;}
#site-nav .down-menu > li > a:hover,
#site-nav .down-menu > li.sfHover > a{color: #1DC6F4;}
#site-nav .down-menu > .current-menu-item > a,
#site-nav .down-menu > .current-menu-item > a:hover{color: #1DC6F4;}
/*下拉样式*/
#site-nav .down-menu ul{padding-top: 20px;}
.shadow #site-nav .down-menu ul{padding-top:0;}
.shadow #site-nav .down-menu ul a{background: #304040;background: rgba(48, 64, 64, 0.9)}
#site-nav .down-menu ul ul{padding-top: 0px;top:-1px}
#site-nav .down-menu ul li{line-height: 1.4em;height: auto;float: none;display: block;}
#site-nav .down-menu ul a{background: #304040;display: block;height: auto;line-height: 1.7em;padding: 10px 20px;margin: 0px;border: 0px;text-transform: none;font-size: 0.9em;color:#fff}
#site-nav .down-menu ul li > a:hover{background: #327e7e;}
#site-nav .down-menu ul li:last-child{}
#navigation-toggle, .sidr, #sidr-close{display: none;}
/*箭头*/
.sf-arrows .sf-with-ul{padding-right: 2.5em;*padding-right: 1em;}
/*下来箭头样式和大小*/
.sf-arrows .sf-with-ul:after{content: '\e626';position: absolute;top: 50%;right: 0.5em;margin-top: -5px;height: 0;width: 0;font:14px 'iconfont';}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after{border-top-color: #2f889a;}
/* 向右箭头 */
/*向右箭头样式和大小*/
.sf-arrows ul .sf-with-ul:after{margin-top: -5px;margin-right: 5px;content: '\e628';font:14px 'iconfont';}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after{color: #2f889a;}
/** 移动菜单 **/
#navigation-toggle {color: #fff;line-height: 40px;padding: 0 8px;}
#navigation-toggle:hover {color: #2f889a;}
#sidr-main {position: absolute; position: fixed;top: 60px;height:auto; z-index: 999999;width: 60%; overflow-x: none;overflow-y: auto;font-size: 14px;background:#fff;color:#304040}
#sidr-main {padding: 0;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}
.sidr-inner {}
.sidr.right {left: auto;right: -320px;}
.sidr.left {left: -320px;right: auto;}
#sidr-main a {color: #304040;}
#sidr-main a:hover { color: #304040; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.03);background:#f1f1f1}
#sidr-main ul a { display: block; padding: 10px 20px; border-bottom: 1px solid #ddd;}
#sidr-main ul li ul {margin-left: 0; margin: 0;}
#sidr-main ul li ul li a {}
#sidr-main ul li ul li li a {}
#sidr-main ul li ul li li li a {}
#sidr-main ul li ul li a:before {display: inline-block;-webkit-font-smoothing: antialiased;color: #304040;margin-right: 10px;}
.sidr-class-toggle-sidr-close:before {position: absolute;top: 50px;left: 30px;margin: 0;}
.sidr-class-toggle-sidr-close {padding: 10px;font-size: 24px;text-align: center; display: block;border-bottom: 1px solid #ddd;}
#sidr-id-navigation-toggle {display: none;}
@media screen and (min-width: 900px) {
#sidr-main { display: none !important;}
#main-menu {height: 90px;}
#menu-box.shadow img{width: 187px;height: 50px;padding: 5px 0;transition-duration: .5s;}
.logo-sites img {transition-duration: .5s;}
}
@media screen and (max-width: 1200px) {
#main-menu {width: 98%;}
}
@media only screen and (max-width: 900px) {
/** 主导航 **/
#menu-box {height: 60px;}
#menu-box.shadow {height: 50px;}
.shadow #main-menu{padding:5px 0!important;transition-duration: .5s;}
.shadow #sidr-main{top:50px!important;}
#main-menu{height: 50px; transition-duration: .5s;padding: 10px 0!important;}
#navigation-toggle { float:right;display: block;padding: 0 8px;vertical-align: top;line-height:40px}
#user-profile{line-height:40px}
#site-nav .nav-menu {display: none;}
/** 菜单按钮 **/
.main-nav {margin: 7px 0 0 0;}
#site-nav-wrap { min-height: 40px;margin: 0 10px 0 0;}
/** logo **/
.logo-sites {height: 40px;}
.logo-sites img {width: auto;height: 40px;}
}
/** 菜单结束 **/
/** 搜索 **/
#searchbar {width: 100%;max-width:700px;margin: 10px auto 0;}
#searchform input {float: left;width: 75%;height: 37px;line-height: 37px;padding: 2px 10px;background: #ebebeb;border: 1px solid #ddd;border-radius: 2px 0 0 2px;-webkit-appearance: none;}
#searchform input:focus {outline: 0;background: #fff;}
#searchform button {overflow: visible;position: relative;border: 0;cursor: pointer;height: 37px;width: 25%;color: #fff;text-transform: uppercase;background: #777;border-radius: 0 2px 2px 0;}
#searchform button:hover {background: #595959;}
/** 位置导航 **/
.breadcrumb{width: 1200px;height: 40px;line-height: 40px;margin: 10px auto;padding-left: 10px;border: 1px solid #ddd;background: #fff;border-radius:3px;}
.breadcrumb .fa-angle-right{font-size: 15px;margin: 0 4px;}
/** 公告 **/
.bull i{font-size:24px;float: left;margin-right: 8px;height:40px;line-height:40px;}
.scrolltext {height:35px;line-height:35px;overflow: hidden;}
.scrolltext ul li {height: 40px;line-height:40px;text-overflow: ellipsis;white-space: nowrap;word-wrap: normal;overflow: hidden;}
/** 主体 **/
#content{width: 1200px;margin: 0 auto 10px;min-height:800px}
#primary{float: left;width: 70.3%;transition-duration: .5s;}
.post ,.page{border:1px #ddd solid;border-radius:3px;background-color:#fff;margin-bottom:10px;position:relative;}
.catepory-title{margin-bottom:10px}
.catepory-meta{border:1px solid #ddd;border-top:none;padding:10px 20px}
.archive-meta{border:1px solid #ddd;padding:10px;border-top:none;border-bottom-left-radius:3px;border-bottom-right-radius:3px;}
/** 首页显示blog样式 **/
.art-t{padding:0 120px 0 20px;font-size:18px;line-height:40px;border-bottom:1px #ddd solid;text-transform : uppercase}
.art-main{color:#304040;word-break:break-all;}
.art-desc .art-img img{float: left;border-radius:2px;margin-right:20px;border: 1px solid #D9D9D9;border-radius: 2px 2px 2px 2px;height: 150px;padding: 5px;width: 250px;}
.art-desc .art-img :hover{transition-duration: .2s;border-radius: 2px;box-shadow: 0 2px 2px rgba(0, 0, 0, .25);}
.art-pub{width:auto;float: right;font-size:14px;display:block}
.art_ft{height:40px;line-height:40px;border-top:1px #ddd solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;background:#f4f4f4}
.art-info{width:70%;padding-left:17px;font-size:14px;display:block;overflow:hidden;word-break:keep-all;white-space:nowrap;}
.art-info span{margin-right:15px;}
.art-pub .cmnt {float: left;border-left:1px #ddd solid;display:block;}
.art-pub .cmnt a{cursor:pointer;text-align:center;padding:0 20px;line-height:40px; height:40px;display:block;}
.art-pub :hover{background:#304040;color:#fff}
.art-pub .views{padding:0 20px;height:40px;border-left:1px #ddd solid;text-align:center;float: left;}
.art-desc .more {position:absolute;right:0; top:0;display:block}
.art-desc .more a{border-left:1px #ddd solid;float:left;padding:0 20px;line-height:40px; height:40px;}
.art-desc .more a i{font-size:24px;}
.art-desc .more :hover{background:#304040;color:#fff}
.art-desc .more .sticky {float:left;padding:0 20px;line-height:40px; height:40px;background-color:#0AB59B;color:#fff}
/** 侧边 **/
#sidebar{float: right;width: 28.7%;transition-duration: .5s;}
#sidebar h3{background: #f8f8f8;height: 40px;line-height: 40px;border-bottom: 1px solid #ddd;}
.widget-title i{float: left;width: 40px;height: 40px;font-size: 24px;color: #304040;line-height: 40px;text-align: center;margin: 0 15px 0 0;padding: 1px 0;border-right: 1px solid #ddd;border-radius: 2px 0 0 0;}
.widget{background: #fff;margin: 0 0 10px 0;border: 1px solid #ddd;border-radius: 2px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.widget ul li{width: 99%;line-height: 28px;white-space: nowrap;word-wrap: normal;text-overflow: ellipsis;overflow: hidden;}
.widget ul,#sidebar #searchform,#calendar_wrap,.tagcloud{padding: 15px;}
.widget .textwidget{padding: 18px;}
#advert_widget, .widget_php_text .widget-text{padding: 3px;}
.widget .textwidget img,#advert_widget img{max-width: 100%;width: auto;height: auto;display: block;}
.widget_categories,.widget_links,#sidebar .widget_nav_menu{padding: 0 0 15px 0;}
.widget_categories li,.widget_links li,#sidebar .widget_nav_menu li{float: left;width: 49.5% !important;margin: 0 -3px -1px 2px;}
.widget_categories a,.widget_links a,#sidebar .widget_nav_menu a{text-align: center;padding: 5px 0;display: block;border: 1px solid #ddd;}
.widget_categories a:hover,.widget_links a:hover,.tagcloud a:hover,#sidebar .widget_nav_menu a:hover{background: #304040;color: #fff !important;border: 1px solid #304040;transition: all 0.1s ease-in 0s;}
.tagcloud{padding: 5px 0 5px 2px;}
.tagcloud a{float: left;margin: 4px;padding: 0 7px;line-height: 26px;text-align: center;border: 1px solid #ddd;border-radius: 2px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.widget_archive select, .widget_categories select{width: 140px;margin: 10px 20px;border: 1px solid #ddd;}
/** 隐藏侧边 **/
#primary.primary {width: 100%;}
.sidebar {display: none;}
/** 跟随 **/
.follow{top:55px;width:342.391px;position:fixed;animation:fade-in;animation-duration:1.2s;-webkit-animation:fade-in 1.2s}
/** 头像留言 **/
#message .avatar{float: left;width: 32px;height: 32px;margin: 6px 8px 0 0;}
.wp-smiley{height: 15px !important;display: inline !important;}
.message-widget ul li{width: 99%;height: 45px;padding-bottom: 8px;line-height: 45px;_white-space: normal;*white-space: normal;border-bottom: 1px dashed #dadada;}
.message-page ul li{width: 99%;height: 45px;padding-bottom: 8px;line-height: 45px;white-space: nowrap;_white-space: normal;*white-space: normal;overflow: hidden;text-overflow: ellipsis;border-bottom: 1px dashed #dadada;}
.post_cat .fa-angle-right{margin-right: 5px;color: #999;}
.random_post_widget .fa-angle-right{margin-right: 5px;color: #999;}
/** 序号 **/
.li-icon{background: #ccc;font-size: 14px;color: #fff;line-height: 180%;margin: 0 5px 0 0;padding: 0 6px;border-radius: 12px;}
.li-icon-1,.li-icon-2,.li-icon-3, .li-icon-4{background: #304040;}
.li-number{float: left;background: #304040;font-size: 14px;color: #fff;line-height: 180%;margin: 4px 5px 0 0;padding: 0 6px;border-radius: 12px;}
.li-numbers{float: left;background: #ccc;font-size: 14px;color: #fff;line-height: 180%;margin: 4px 5px 0 0;padding: 0 6px;border-radius: 12px;}
/** 图片小工具 **/
.img-x2 {float: left;width: 50%;padding:0 5px;}
.img-box {margin: 0 -10px;}
.insets a img {border-radius: 3px;float: left;max-width: 100%;width: auto;height: auto;-webkit-transition: -webkit-transform .3s linear;-moz-transition: -moz-transform .3s linear; -o-transition: -o-transform .3s linear; transition: transform .3s linear;}
.insets :hover img{transition: All 0.3s ease; -webkit-transform: scale(0.95); -moz-transform: scale(0.95); -ms-transform: scale(0.95); -o-transform: scale(0.95);}
.img-title {width: 100%;height: 40px;line-height: 1.5;font-size:13px;overflow: hidden;}
/** 侧边缩略图 **/
.hot_commend ul li {white-space: normal;border-bottom: 1px dashed #dadada;}
.new_cat ul li {white-space: normal;}
.hot_commend .thumbnail, .new_cat .thumbnail {position: relative;float: left;width: 125px;height: 75px;margin: 8px 8px 8px 0;overflow: hidden;}
.hot_commend a img, .new_cat a img {float: left;width: 125px;height: 75px;padding:2px;}
.hot_commend .hot-title, .new_cat .new-title {height: 55px;padding-top: 5px;line-height: 25px;overflow: hidden;}
.hot_commend .views, .new_cat .date {float: right;color: #999;}
.hot_commend .fa {color: #999;}
/** 正文 **/
.entry-header h1{text-transform: uppercase;position: relative;font-size: 18px;font-size: 1.8rem;line-height: 30px;text-align: center;margin: 0 -5px;color: #fff;padding: 5px 20px;border-left: 5px solid #0AB59B;border-right: 5px solid #0AB59B;background: rgba(48, 64, 64, 0.9);}
.single-meta{margin:10px 10px;overflow: hidden;float:right;}
.single-meta span{border: 1px solid #ccc;padding:2px 10px;border-radius: 2px;}
.single-meta span:hover{background-color:#f1f1f1;}
.single-tag{text-align:center;margin:0 10px;}
.single-content{ font-size: 16px; font-size: 1.6rem; line-height: 180%; margin: auto; padding:10px}
.single-content a, .single-content a:visited{color: #2f889a;}
.single-content a:hover{color: #40aabf;}
/** 摘要 **/
.abstract{background: #fff;font-size: 15px;color: #999;display: block;margin: 0 0 10px 0;padding: 5px 15px;border: 1px dashed #bbb;}
.abstract span{float: left;font-weight: 600;color: #304040;padding-right: 10px;}
/** 排版样式 **/
.single-content p,.single-content ul,.single-content ol,.single-content dd,.single-content pre,.single-content hr{margin: 0 0 10px 0;-webkit-hyphens: auto;-moz-hyphens: auto;-ms-hyphens: auto;hyphens: auto;word-wrap: break-word;word-break: break-all;text-justify: inter-ideograph;}
.single-content p{text-indent: 2em;}
.single-content ul li,.single-content ol li {margin: 0 35px 0 50px;line-height: 190%;}
.single-content ul li { list-style: square;}
.single-content ol li {list-style: decimal;}
.single-content h2{font-size: 17px;font-size: 1.7rem;line-height: 190%;margin:10px -10px 10px -15px;padding: 0 20px;border-left: 5px solid #e40000;background: #f1f1f1;}
.single-content h3{font-size: 16px;font-size: 1.6rem;line-height: 190%;background: #f1f1f1;margin:10px -10px 10px -15px;padding: 0 20px;border-left: 5px solid #666;}
.single-content blockquote{width: 100%;color: #2f889a;margin: 10px auto;padding: 10px 10px;clear: both;border: 1px dashed #bbb;}
.single-content blockquote p{margin: 0;text-indent:0}
.single-content img, .comment-list p img{max-width: 100%;width: auto\9;height: auto;vertical-align: middle;display: block;}
.wp-caption{background: #f3f3f3;max-width: 100%; padding: 5px;border: 1px solid #ddd; border-radius: 3px;}
.wp-caption p{text-indent: 0!important;margin:0!important}
.wp-caption-text{text-align: center !important;}
/* Toggle content */
.toggle-wrap{margin:8px 0;clear:both;}
.toggle-click-btn{background: #f5f5f5; border: 1px solid #ccc; position: relative; padding-left: 30px;font-weight: 500;}
.toggle-click-btn.yes:before{content: "\e678"; display: inline-block; font-style: normal; font-family: iconfont; text-align: center; position: absolute; left: 5px;}
.toggle-click-btn.no:before{content: "\e699"; display: inline-block; font-style: normal; font-family: iconfont; text-align: center; position: absolute; left: 5px;}
.toggle-content{border-width: 0 1px 1px 1px; border-color: #ccc; border-style:solid; padding: 8px 8px 8px 20px;}
.toggle-content p{text-indent: 0;}
/* with border */
.bs-callout{padding: 15px 20px 20px; margin: 20px 0; border: 1px solid #eee; border-left-width: 5px; border-radius: 3px;}
.bs-callout h4{margin-top: 0; margin-bottom: 10px; font-size: 125%;font-weight: 500;text-align: center;}
.bs-callout p{line-height: 1.5;}
.bs-callout-info{border-left-color: #5bc0de;}
.bs-callout-info h4{color: #5bc0de;}
.bs-callout-warning{border-left-color: #f0ad4e;}
.bs-callout-warning h4{color: #f0ad4e;}
.bs-callout-danger{border-left-color: #d9534f;}
.bs-callout-danger h4{color: #d9534f;}
/*彩色信息框*/
#sc_notice {
color: #7da33c;
background: #ecf2d6 url('../images/sc_notice.png') -1px -1px no-repeat;
border: 1px solid #aac66d;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_warn {
color: #ad9948;
background: #fff4b9 url('../images/sc_warn.png') -1px -1px no-repeat;
border: 1px solid #eac946;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_error {
color: #c66;
background: #ffecea url('../images/sc_error.png') -1px -1px no-repeat;
border: 1px solid #ebb1b1;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_tips {
color: #777;
background: #eaeaea url('../images/sc_tips.png') -1px -1px no-repeat;
border: 1px solid #ccc;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_blue {
color: #1ba1e2;
background: rgba(27, 161, 226, 0.26) url('../images/sc_blue.png') -1px -1px no-repeat;
border: 1px solid #1ba1e2;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_black {
border-width: 1px 4px 4px 1px;
border-style: solid;
border-color: #3e3e3e;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_xuk {
border: 2px dashed rgb(41, 170, 227);
background-color: rgb(248, 247, 245);
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_lvb {
margin: 10px 0;
padding: 10px 15px;
border: 1px solid #e3e3e3;
border-left: 2px solid #05B536;
background: #FFF;
}
#sc_redb {
margin: 10px 0;
padding: 10px 15px;
border: 1px solid #e3e3e3;
border-left: 2px solid #ED0505;
background: #FFF;
}
#sc_organge {
margin: 10px 0;
padding: 10px 15px;
border: 1px solid #e3e3e3;
border-left: 2px solid #EC8006;
background: #FFF;
}
/** 图文混排 **/
img.centered{display: block;margin: 0 auto 10px;}
img.alignnone{margin: 0 0 10px 0;display: block;}
img.alignright{margin: 0 0 10px 10px;display: inline;}
img.alignleft{margin: 0 10px 10px 0;display: inline;}
.aligncenter{display: block;margin: 0 auto 10px;}
.alignright{float: right;margin: 0 0 10px 10px;}
.alignleft{float: left;margin: 0 10px 10px 0;}
/** 文章内容分页 **/
.page-links{text-align: center;margin: 10px auto 5px;}
.page-links span{background: #304040;color: #fff;margin: 2px;line-height: 30px;cursor: pointer;padding: 0 12px;display: inline-block;border: 1px solid #304040;border-radius: 2px;}
.page-links a span{background: #fff;color: #000;text-decoration: none;border: 1px solid #ddd;}
.page-links a:hover span{background: #304040;color: #fff;border: 1px solid #304040;transition: all 0.2s ease-in 0s;}
/** 喜欢分享 **/
#social {position: relative;margin: 15px auto;}
.social-main {position: relative;margin: 0 auto; width: 253px;}
.social-main span {float: left;}
.social-main a {color: #fff;line-height: 35px;text-align: center;border-radius: 2px;}
.social-main a:hover{background: #2F889A;color: #fff;transition: all 0.2s ease-in 0s;}
.post-like a{background: #304040; width: 120px;display: block;}
.post-like a.done{cursor:not-allowed;background:#999999}
.share-s a{background: #304040;width: 120px;display: block;margin-left:10px}
.social-main i{color: #fff;font-style: normal;margin: 0 5px 0 0;}
/** 分享 **/
#share { position: absolute; top: -60px; right: -10px;width: 262px;height: 68px;display: none;z-index: 999;}
#share a {float: left;background: #999;font-size: 20px;color: #fff;width: 40px;height: 40px;line-height: 40px; margin-left: 4px;padding-left: 0; text-align: center; border-radius: 3px;background: rgba(128, 128, 128, 0.9);}
#share .fa-plus-square:hover {background: #7ab951 !important;}
#share .fa-heart:hover {background: #ff1000 !important;}
#share .fa-qq:hover {background: #ff7400 !important;}
#share .fa-weibo:hover {background: #ff0000 !important;}
#share .fa-pinterest-square:hover {background: #46c0e6 !important;}
#share .fa-renren:hover {background: #3b68ac !important;}
#share .fa-weixin:hover{background:#006f1d !important}
/** 上下篇 **/
.nav-single{margin-bottom: 10px;}
.meta-nav{background: #fff;float: left;width: 50%;text-align: center;margin-right: -1px;padding: 10px 20px;white-space: nowrap;word-wrap: normal;text-overflow: ellipsis;overflow: hidden;border: 1px solid #ddd;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); border-radius: 2px;}
.nav-single a{display: block;}
.meta-nav:hover{color: #fff;background: #304040;border: 1px solid #ccc;}
.post-nav{}
/** 首页 分类 分页 **/
/** 等于或大于550px **/
@media screen and (min-width:550px) {
.pagination {float:right;}
.pagination a,.pagination a:visited {float:left;background:#fff;margin:0 0 10px 5px;padding:8px 11px;line-height:100%;border:1px solid #ddd;border-radius:2px;box-shadow:0 1px 1px rgba(0,0,0,0.04);}
.pagination .current,.pagination .dots {background:#fff;float:left;margin:0 0 0 5px;padding:8px 11px;line-height:100%;border:1px solid #ddd;border-radius:2px;}
.pagination span.pages {}
.pagination span.current,.pagination a:hover {background:#304040;color:#fff;border:1px solid #304040;}
.screen-reader-text,.pages {display:none;}
.nav-links .prev i,.nav-links .next i {line-height:12px;padding:0px 2px;}
}
/** 等于或小于550px **/
@media screen and (max-width:550px) {
.pagination {background:#fff;border:1px solid #ddd;box-shadow:0 1px 1px rgba(0,0,0,0.04);border-radius:2px;}
.pagination .nav-links {min-height:30px;position:relative;text-align:center;}
.pagination .current .screen-reader-text {position:static !important;}
.screen-reader-text {height:1px;overflow:hidden;position:absolute !important;}
.page-numbers {display:none;line-height:25px;padding:5px;}
.pagination .page-numbers.current {text-transform:uppercase;}
.pagination .current {display:inline-block;}
.pagination .prev,.pagination .next {background:#304040;color:#fff;display:inline-block;height:35px;overflow:hidden;position:absolute;}
.pagination .prev i,.pagination .next i {padding:5px 15px;}
.pagination .next {border-radius:0 2px 2px 0}
.pagination .prev {border-radius:2px 0 0 2px;}
.pagination .prev a,.pagination .next a {color:#fff;line-height:20px;padding:0;display:inline-block;}
.pagination .prev {left:0;}
.pagination .prev:before {left:-1px;}
.pagination .next {right:0;}
.pagination .next:before {right:-1px;}
}
/**版权信息**/
#copyright {background: #fff;margin-bottom: 10px;padding: 10px 10px 5px 10px;border: 1px solid #ddd;border-radius: 2px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);transition-duration: .5s;}
#copyright .avatar {float: left;width: 72px;height: 72px;margin: 5px 10px 0 0;padding: 0;}
/** 相关图片 **/
#related-img {background: #fff;margin-bottom: 10px;padding: 10px 10px 5px 10px;border: 1px solid #ddd;border-radius: 2px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.related-title { background: #fff;height: 40px;font-size: 15px;line-height: 140%;overflow: hidden;}
.related-site {max-width: 100%;width: auto;height: auto;padding: 5px;}
.related-site-img {position: relative;max-width: 100%;width: auto;height: auto;overflow: hidden;}
.related-site-img a img {max-width: 100%;width: auto;height: auto;border-radius: 3px;-webkit-transition: -webkit-transform .3s linear;-moz-transition: -moz-transform .3s linear; -o-transition: -o-transform .3s linear; transition: transform .3s linear;}
.related-site-img :hover img{transition: All 0.3s ease; -webkit-transform: scale(0.95); -moz-transform: scale(0.95); -ms-transform: scale(0.95); -o-transform: scale(0.95)}
@media screen and (min-width: 900px) {
.related-title {margin: 3px 0 0 0;}
}
@media screen and (min-width:480px) {
.r4 {float: left;width: 25%; }
}
@media screen and (max-width: 480px) {
.r4 {float: left;width: 50%; }
}
/** 评论 **/
.comments-title{background: #fff;margin-bottom: 10px;padding: 15px 20px;border: 1px solid #ddd;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);border-radius: 2px;}
.comment-list,.comment-list ol{list-style: none;}
.comment-list li{position: relative;background: #fff;margin: 0 0 10px 0;padding: 15px 20px;border: 1px solid #ddd;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);border-radius: 2px;word-wrap: break-word;word-break: break-all;}
.children li{position: relative;background: #fff;margin: 0 0 10px 0;padding: 15px 20px;border: 1px solid #ebebeb;border-radius: 2px;word-wrap: break-word;word-break: break-all;}
.children{margin: 5px 0 0 0;}
.vcard .avatar{float: left;width: 48px;height: 48px;margin: 6px 10px 0 0;padding: 2px;transition: all 0.8s ease 0s;-webkit-transition: all 0.8s ease 0s;-moz-transition: all 0.8s ease 0s;-o-transition: all 0.8s ease 0s;}
.vcard:hover .avatar{transform: rotate(720deg);-webkit-transform: rotate(720deg);-moz-transform: rotate(720deg);-o-transform: rotate(720deg);-ms-transform: rotate(720deg);}
.comment-author{color: #999;}
.fn{font-style: normal;font-weight: bold;}
.floor{color: #999;}
.comment-meta, .comment-meta a{color: #999;}
.reply a{background: #fff;position: absolute;top: 15px;right: 20px;line-height: 25px;padding: 0 10px;border: 1px solid #ddd;border-radius: 2px;}
.reply a:hover{background: #304040;color: #fff;border: 1px solid #304040;transition: all 0.2s ease-in 0s;}
.at, .at a{color: #2f889a;}
.no-comments{background: #fff;text-align: center;margin: 0 0 10px 0;padding: 10px;border: 1px solid #ddd;}
#edita{color: #8b8b8b;}
/** 评论表单 **/
#respond{background: #fff;margin: 0 0 10px 0;padding: 10px 20px;border: 1px solid #ddd;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);border-radius: 2px;}
#respond h3{margin: 0 0 10px 0;}
#respond h3 a{float: right;padding: 2px 10px;border: 1px solid #ddd;border-radius: 2px;}
#comment-author-info input{width: 50%;background: #fff;height: 37px;margin: 0 10px 10px 0;padding: 0 5px;border: 1px solid #ddd;-webkit-appearance: none;_vertical-align: middle;*vertical-align: middle;}
#comment{background: #fff;width: 100%;margin: 0 10px 10px 0;padding: 5px;border: 1px solid #ddd;border-radius: 2px;-webkit-appearance: none;}
p.form-submit{text-align:center}
#respond #submit,#respond #reset{background: #fff;width:45%;margin: 0 5px 5px 5px;padding: 5px;cursor: pointer;border: 1px solid #ddd;border-radius: 2px;-webkit-appearance: none;}
#respond #submit:hover,#respond #reset:hover{background: #304040;color: #fff;border: 1px solid #304040;transition: all 0.2s ease-in 0s;}
/** 表单头像 **/
.user_avatar, .author_avatar{height: 48px;line-height: 48px;margin: 0 0 10px 0;}
.user_avatar img, .author_avatar img{float: left;width: 48px;height: 48px;margin: 0 10px 0 0;}
/** 表情 **/
.comment-tool{float: left;margin: 5px 0;}
.comment-tool a{float:left;}
.emoji-box{display: none;position: relative;}
.emoji-box img{float: left;width: 24px;height: 24px;}
/** 引用 **/
#trackbacks{margin: 0 0 10px 0;}
.backs{background: #fff;padding: 10px 15px;border: 1px solid #ddd;cursor: pointer;border-radius: 2px;}
.track{background: #fff;padding: 10px 15px;border: 1px solid #ddd;border-top: 0;border-radius: 0 0 2px 2px;display: none;}
.track{background: #fff;padding: 10px 15px;border: 1px solid #ddd;border-top: 0;border-radius: 0 0 2px 2px;display: none;}
.track li{margin: 0;padding: 0;border: none;border-radius: 0;}
/** 滚屏 **/
#scroll {width: 35px;float: right;position: fixed;right: 10px;bottom: 100px;z-index: 9999;}
#scroll li a {background: #304040;font-size: 24px;color: #fff;width: 35px;height: 35px;line-height: 35px;text-align: center;margin-top: 10px;display: block;cursor: pointer;border-radius: 4px;}
#scroll li i {font-size: 24px;line-height: 35px;}
#scroll li a:hover {background: #0AB59B;color: #fff;transition: all 0.2s ease-in 0s;}
/** 链接 **/
#links {position: relative;width:1200px;margin: 0 auto;padding:0 0 10px}
#links h2 {display: none;}
.link-f {max-width: 100%;width: auto;height: auto;overflow: hidden;}
.link-f a img {max-width: 100%;width: auto;height: auto;margin: 0 auto;}
.link-f a {background: #fff;text-align: center;padding: 5px;display: block;white-space: nowrap;word-wrap: normal;text-overflow: ellipsis;overflow: hidden;border: 1px solid #ddd;border-radius: 2px;transition-duration: .5s;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.link-f a:hover {background: #304040;color: #fff !important;border: 1px solid #304040;}
.lx7 {float: left;min-height: 1px;padding: 2px;}
@media screen and (min-width:700px) {
.lx7 {width: 25%;transition-duration: .5s;}
}
@media screen and (min-width:900px) {
.lx7 {width: 20%;transition-duration: .5s;}
}
@media screen and (min-width:1024px) {
.lx7 {width: 14.2857%;transition-duration: .5s;}
}
@media screen and (max-width: 700px) {
#links { display:none}
}
.linkcat h2 {clear: both;margin:10px 0px 10px -5px;padding: 2px 0 2px 10px;border-left: 5px solid #304040;background:#ddd}
.link-all a:hover {background: #304040;color: #fff !important;border: 1px solid #304040;}
/**页脚**/
#footer{position: relative;;margin:0 auto;background: #304040;padding:20px}
#contentinfo{text-align: center;color:#e5e5e5;}
#contentinfo a{color:#e5e5e5}#contentinfo a:hover{color:#1DC6F4}
/** 等于或小于1080px **/
@media screen and (max-width: 1024px) {
#content,.breadcrumb{width:96%}
}
/** 等于或小于780px **/
@media screen and (max-width: 780px) {
#content, .breadcrumb{ width: 96%; }
#primary {width: 100%;}
#sidebar,.art-desc .more,.art-pub ,.art-info .tag,.ias-trigger,.ias-trigger-next,.bottom-nav{display: none!important;}
.single-content embed {height: 280px;width:99%;max-width:100%;}
.art-t{padding:0 10px;text-align:center}
.art-desc .art-img img{width:100%;max-width:100%;height:auto;float:none;text-align:center;margin:0 auto;}
.art-main{font-size:1em;max-height:84px;overflow:hidden;float:none}
.art-info{width:100%}
.art-desc .art-img :hover{transition-duration: .2s;border-radius: 2px;box-shadow: none;}
.thumbnail a img{width:125px;height:75px}
}
/** 底部左边播放器 **/
#bgmbox{position:fixed;bottom:0px;left:0;z-index:999}
#bgm{position:absolute;display:none;bottom:70px;}
#bgmsw{position: absolute;width: 50px;height: 50px;left: 20px;bottom: 12px;border: 1px solid #999;background-color: rgba(241,241,241,0.6);-webkit-border-radius: 15px 15px 0px 15px;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}
#bgmsw .bgmplay i{font-size: 30px!important;position: absolute;left: 10px;bottom: 10px;color: rgba(48,64,64,0.9);}
@media screen and (max-width:720px){
#bgmbox{display:none}
}
/** 动态加载 **/
.ias-spinner {background: url(../images/infinite.gif) no-repeat center;float: left;width: 100px;height: 9px}
.ias-trigger-next {float: left;cursor: pointer;margin: 4px 0 0 0;}
.ias-trigger-next a {background: #304040;color: #fff;padding: 6px 11px;line-height: 100%;border: 1px solid #304040;border-radius: 3px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.ias-trigger-next a:hover {background: #2f889a;color: #fff;border: 1px solid #2f889a;}
.ias-trigger-next i {margin-right: 5px;}
#comments .nav-previous, #comments .nav-next {display: none;}
@media screen and (max-width: 550px) {
.ias-trigger-next {float: inherit;text-align: center;margin: -10px auto 0;padding: 10px 11px;}
.ias-spinner {float: inherit;width: 98%; margin: 0 auto;height: 35px;}
}
/** 广告样式 **/
.ad-site{margin:auto;text-align:center}
.ad-archive-p {width:auto;margin:auto;padding:10px;border:1px solid #ddd;border-radius:3px;overflow:hidden;margin-bottom:10px;background:#fff}
.ad-archive-m {margin:0 auto;overflow:hidden;border: 1px solid #ddd;background:#fff}
.ad-single-p {width: auto;margin:0 auto 10px;padding: 10px;border: 1px dashed #bbb;border-radius: 3px;overflow:hidden;}
.ad-single-m{margin:0 auto;overflow:hidden;border: 1px dashed #bbb;} | html/css/style.css | /*
Theme Name: MyDream
Theme URI: http://www.ricemouse.com
Description: 梦想,一个迷人而又绚丽的代名词
Version: V1.8.1
Author: 聆听天笑
Author URI: http://www.ricemouse.com/27.html
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{border: 0;font-family: inherit;font-size: 100%;font-style: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
html{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;font-size: 62.5%;overflow-y: scroll;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;}
*,*:before,*:after{-webkit-box-sizing: inherit;-moz-box-sizing: inherit;box-sizing: inherit;}
body,button,input,select,textarea{font: 15px "Trebuchet MS",Helvetica,Arial,'PingFang SC','Hiragino Sans GB','STHeiti Light','Microsoft YaHei',SimHei,'WenQuanYi Micro Hei',sans-serif;color: #304040;line-height: 180%;}
a:hover,a:active{outline: 0;}
a img{border: 0;}
a{color: #304040;text-decoration: none;position:relative;}
a:visited{color: #555;}
a:hover{color: #1DC6F4}
.clear{clear: both;}
:focus{outline: 0}
ol,ul{list-style: none;}
*,*:before,*:after {-webkit-box-sizing: inherit;-moz-box-sizing: inherit;box-sizing: inherit;}
/**动态效果**/
@keyframes fade-in {
0%{opacity:0;transform:translateY(50px)}
50%{opacity:0;transform:translateY(25px)}
100%{opacity:1;transform:translateY(0)}
}
@-webkit-keyframes fade-in {
0%{opacity:0;transform:translateY(50px)}
50%{opacity:0;transform:translateY(25px)}
100%{opacity:1;transform:translateY(0)}
}
.icon-spin{
-webkit-animation:icon-spin 2s infinite linear;
animation:icon-spin 2s infinite linear}
@-webkit-keyframes icon-spin{
0%{-webkit-transform:rotate(0deg);
transform:rotate(0deg)}
100%{-webkit-transform:rotate(359deg);
transform:rotate(359deg)}}
@keyframes icon-spin{
0%{-webkit-transform:rotate(0deg);
transform:rotate(0deg)}
100%{-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}}
#slider{animation:fade-in 1s}
#primary{animation:fade-in 1.2s}
#sidebar{animation:fade-in 1.8s}
/**表格**/
table a:link {color: #666;font-weight: bold;text-decoration: none;}
table a:visited {color: #999999;font-weight: bold;text-decoration: none;}
table a:active,
table a:hover {color: #bd5a35;text-decoration: underline;}
table {
font:15px "Trebuchet MS",Helvetica,Arial,'PingFang SC','Hiragino Sans GB','STHeiti Light','Microsoft YaHei',SimHei,'WenQuanYi Micro Hei',sans-serif;
line-height:1.8;
color: #304040;
border: #ddd 1px solid;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 2px #d1d1d1;
box-shadow: 0 1px 2px #d1d1d1;
}
table > thead th {padding: 21px 25px 22px 25px;border-top: 1px solid #fafafa;border-bottom: 1px solid #e0e0e0;
background: #ededed; /* Old browsers */
}
table > thead th:first-child{text-align: left;padding: 5px 5px 5px 10px;}
table > thead > tr:first-child > th:first-child {-webkit-border-top-left-radius: 3px;border-top-left-radius: 3px;}
table > thead > tr:first-child > th:last-child {-webkit-border-top-right-radius: 3px;border-top-right-radius: 3px;}
table > tbody > tr {text-align: left;padding: 5px 5px 5px 10px;}
table > tbody > tr > td:first-child {text-align: left;padding: 5px 5px 5px 10px;border-left: 0;}
table > tbody > tr > td {vertical-align:top;padding:5px 5px 5px 10px;border-top: 1px solid #ffffff;border-bottom: 1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
background: #f1f1f1;
}
table > tbody > tr:nth-child(even) > td{
background: #fff; /* Old browsers */
}
table > tbody > tr:last-child > td{border-bottom: 0;}
table > tbody > tr:last-child > td:first-child {-webkit-border-bottom-left-radius: 3px;border-bottom-left-radius: 3px;}
table > tbody > tr:last-child > td:last-child {-webkit-border-bottom-right-radius: 3px;border-bottom-right-radius: 3px;}
/** 头部 **/
#masthead{}
/** logo **/
.logo-sites{width: 220px;max-height: 50px;overflow: hidden;transition-duration: .5s;position:absolute;}
.logo-sites img{width: 220px;max-height: 50px;}
/** 底部页面导航 **/
.bottom-nav{margin:0 auto;}
.bottom-menu {text-align:center;margin: 0 8px 0 0;}
.bottom-menu li {display:inline;padding: 0 5px;}
.bottom-menu i{padding-right:5px}
.bottom-menu a{color: #e5e5e5;}
.bottom-menu a:hover {color: #1DC6F4;}
.default-menu li a {float: right;color: #2f889a;margin: 0 10px 0 0;}
/** 前端登录 **/
#user-profile{float:right;line-height:50px}
#user-profile .nav-login a{padding: 2px 15px;background: #0AB59B;color:#e5e5e5}
#user-profile .nav-login a:hover{background: #D2514B;}
#lean_overlay {position: fixed;z-index: 10004;top: 0px;left: 0px;height: 100%;width: 100%;background: #000;display: none;}
#login {display: none;width: 350px;}
.login-t, .login-t a {background: #304040;font-size: 18px;font-weight: 300;text-align: center;color: #fff;padding: 25px 0;border-radius: 2px 2px 0 0;}
#login form, .login-user {background: #f8f8f8;padding: 20px;}
.login-user .login-text{float:left;line-height:180%}
.nav-login i:before{padding-right:5px}
#login form p{margin:10px auto;position:relative}
#login form p.status{white-space:nowrap;}
#login form label.error{color:#FFF;background-color:#7656E8;padding:0 4px;position:absolute;z-index:5;right:10px;top:11px}
#login form label.icon{position:absolute;right:10px;top:10px;color:#999;font-size:20px;color:rgba(0,0,0,.3)}
#login form label.icon i{width:20px;text-align:center}
#login form input{border:1px solid #ddd;padding:10px;width:100%;box-sizing:border-box}
#login ::-webkit-input-placeholder{color:#999}
#login form input:focus{border:1px solid #999}
#login input:-moz-placeholder{color:#999}
#login input.input-control{padding-right:35px}
#login form .submit{cursor:pointer;background-color:#304040;color:#FFF;border:0 none;}
#login form .submit:hover{background-color:#00b5a9}
#login form .submit:focus{border:0 none}
#login form .safe{color:#999;margin-top:20px}
#login form .rememberme{width:inherit;margin-right:3px}
#login form .lost{float:right}
#login img {float: left;width: 80px;height: 80px;margin: 0 20px 0 0;}
.login-b {background: #304040;height: 40px; border-radius: 0 0 2px 2px;}
#login .close{position: absolute;right: 15px;top: 0;width: 30px;height: 35px;border-radius: 0 0 30px 30px;text-align: center;line-height: 35px;background-color: #fff;font-size: 15px;color: #304040;}
#login .close i{-webkit-transition:all ease-out .3s;-moz-transition:all ease-out .3s;-o-transition:all ease-out .3s;transition:all ease-out .3s}
#login .close:hover {color:#00b5a9}
/** 主导航 **/
#menu-box {width: 100%;margin:0 auto;z-index: 999;*+right: 0;border-bottom: 1px solid rgba(64,64,64,0.5);
box-shadow: 0 1px 1px rgba(64,64,64,0.5);background:#304040}
#menu-box.shadow {top: 0;position: fixed;background: rgba(48, 64, 64, 0.9);}
#site-nav .default-menu li a {margin: 10px 10px 0 0;}
/** 菜单 **/
#main-menu {width: 1200px;display: table;transition-duration: .5s;margin: 0 auto;padding:20px 0; }
.shadow #main-menu {transition-duration: .5s;padding:0;height:50px}
.nav-menu,
.nav-menu *{margin: 0;padding: 0;list-style: none;_float: left;}
.nav-menu li{position: relative;}
.nav-menu ul{position: absolute;display: none;top: 100%;left: 0;min-width: 160px;*width: 160px;z-index: 10001;}
.nav-menu > li{float: left;}
.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul{display: block;}
.nav-menu a{display: block;position: relative;zoom: 1;}
.nav-menu ul ul{top: 0;left: 100%;}
.nav-menu{float: left;}
.nav-menu li{position: relative;white-space: nowrap;*white-space: normal;-webkit-transition: background .2s;transition: background .2s;}
.nav-menu li:hover,
.nav-menu li.sfHover{-webkit-transition: none;transition: none;}
.nav-menu .sf-mega{position: absolute;display: none;top: 100%;left: 0;z-index: 99;}
.nav-menu li:hover > .sf-mega,
.nav-menu li.sfHover > .sf-mega{display: block;}
/*一级样式*/
#site-nav-wrap{float: left;margin-left:240px}
#site-nav{}
#site-nav .down-menu li{display: block;float: left;height: 50px;line-height: 50px;}
#site-nav .down-menu li :before{padding-right:5px}
#site-nav .down-menu a{padding: 0 13px;color: #e5e5e5;text-align: left;transition-duration: .8s;}
#site-nav .down-menu > li > a:hover,
#site-nav .down-menu > li.sfHover > a{color: #1DC6F4;}
#site-nav .down-menu > .current-menu-item > a,
#site-nav .down-menu > .current-menu-item > a:hover{color: #1DC6F4;}
/*下拉样式*/
#site-nav .down-menu ul{padding-top: 20px;}
.shadow #site-nav .down-menu ul{padding-top:0;}
.shadow #site-nav .down-menu ul a{background: #304040;background: rgba(48, 64, 64, 0.9)}
#site-nav .down-menu ul ul{padding-top: 0px;top:-1px}
#site-nav .down-menu ul li{line-height: 1.4em;height: auto;float: none;display: block;}
#site-nav .down-menu ul a{background: #304040;display: block;height: auto;line-height: 1.7em;padding: 10px 20px;margin: 0px;border: 0px;text-transform: none;font-size: 0.9em;color:#fff}
#site-nav .down-menu ul li > a:hover{background: #327e7e;}
#site-nav .down-menu ul li:last-child{}
#navigation-toggle, .sidr, #sidr-close{display: none;}
/*箭头*/
.sf-arrows .sf-with-ul{padding-right: 2.5em;*padding-right: 1em;}
/*下来箭头样式和大小*/
.sf-arrows .sf-with-ul:after{content: '\e626';position: absolute;top: 50%;right: 0.5em;margin-top: -5px;height: 0;width: 0;font:14px 'iconfont';}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after{border-top-color: #2f889a;}
/* 向右箭头 */
/*向右箭头样式和大小*/
.sf-arrows ul .sf-with-ul:after{margin-top: -5px;margin-right: 5px;content: '\e628';font:14px 'iconfont';}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after{color: #2f889a;}
/** 移动菜单 **/
#navigation-toggle {color: #fff;line-height: 40px;padding: 0 8px;}
#navigation-toggle:hover {color: #2f889a;}
#sidr-main {position: absolute; position: fixed;top: 60px;height:auto; z-index: 999999;width: 60%; overflow-x: none;overflow-y: auto;font-size: 14px;background:#fff;color:#304040}
#sidr-main {padding: 0;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}
.sidr-inner {}
.sidr.right {left: auto;right: -320px;}
.sidr.left {left: -320px;right: auto;}
#sidr-main a {color: #304040;}
#sidr-main a:hover { color: #304040; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.03);background:#f1f1f1}
#sidr-main ul a { display: block; padding: 10px 20px; border-bottom: 1px solid #ddd;}
#sidr-main ul li ul {margin-left: 0; margin: 0;}
#sidr-main ul li ul li a {}
#sidr-main ul li ul li li a {}
#sidr-main ul li ul li li li a {}
#sidr-main ul li ul li a:before {display: inline-block;-webkit-font-smoothing: antialiased;color: #304040;margin-right: 10px;}
.sidr-class-toggle-sidr-close:before {position: absolute;top: 50px;left: 30px;margin: 0;}
.sidr-class-toggle-sidr-close {padding: 10px;font-size: 24px;text-align: center; display: block;border-bottom: 1px solid #ddd;}
#sidr-id-navigation-toggle {display: none;}
@media screen and (min-width: 900px) {
#sidr-main { display: none !important;}
#main-menu {height: 90px;}
#menu-box.shadow img{width: 187px;height: 50px;padding: 5px 0;transition-duration: .5s;}
.logo-sites img {transition-duration: .5s;}
}
@media screen and (max-width: 1200px) {
#main-menu {width: 98%;}
}
@media only screen and (max-width: 900px) {
/** 主导航 **/
#menu-box {height: 60px;}
#menu-box.shadow {height: 50px;}
.shadow #main-menu{padding:5px 0!important;transition-duration: .5s;}
.shadow #sidr-main{top:50px!important;}
#main-menu{height: 50px; transition-duration: .5s;padding: 10px 0!important;}
#navigation-toggle { float:right;display: block;padding: 0 8px;vertical-align: top;line-height:40px}
#user-profile{line-height:40px}
#site-nav .nav-menu {display: none;}
/** 菜单按钮 **/
.main-nav {margin: 7px 0 0 0;}
#site-nav-wrap { min-height: 40px;margin: 0 10px 0 0;}
/** logo **/
.logo-sites {height: 40px;}
.logo-sites img {width: auto;height: 40px;}
}
/** 菜单结束 **/
/** 搜索 **/
#searchbar {width: 100%;max-width:700px;margin: 10px auto 0;}
#searchform input {float: left;width: 75%;height: 37px;line-height: 37px;padding: 2px 10px;background: #ebebeb;border: 1px solid #ddd;border-radius: 2px 0 0 2px;-webkit-appearance: none;}
#searchform input:focus {outline: 0;background: #fff;}
#searchform button {overflow: visible;position: relative;border: 0;cursor: pointer;height: 37px;width: 25%;color: #fff;text-transform: uppercase;background: #777;border-radius: 0 2px 2px 0;}
#searchform button:hover {background: #595959;}
/** 位置导航 **/
.breadcrumb{width: 1200px;height: 40px;line-height: 40px;margin: 10px auto;padding-left: 10px;border: 1px solid #ddd;background: #fff;border-radius:3px;}
.breadcrumb .fa-angle-right{font-size: 15px;margin: 0 4px;}
/** 公告 **/
.bull i{font-size:24px;float: left;margin-right: 8px;height:40px;line-height:40px;}
.scrolltext {height:35px;line-height:35px;overflow: hidden;}
.scrolltext ul li {height: 40px;line-height:40px;text-overflow: ellipsis;white-space: nowrap;word-wrap: normal;overflow: hidden;}
/** 主体 **/
#content{width: 1200px;margin: 0 auto 10px;min-height:800px}
#primary{float: left;width: 70.3%;transition-duration: .5s;}
.post ,.page{border:1px #ddd solid;border-radius:3px;background-color:#fff;margin-bottom:10px;position:relative;}
.catepory-title{margin-bottom:10px}
.catepory-meta{border:1px solid #ddd;border-top:none;padding:10px 20px}
.archive-meta{border:1px solid #ddd;padding:10px;border-top:none;border-bottom-left-radius:3px;border-bottom-right-radius:3px;}
/** 首页显示blog样式 **/
.art-t{padding:0 120px 0 20px;font-size:18px;line-height:40px;border-bottom:1px #ddd solid;text-transform : uppercase}
.art-main{color:#304040;word-break:break-all;}
.art-desc .art-img img{float: left;border-radius:2px;margin-right:20px;border: 1px solid #D9D9D9;border-radius: 2px 2px 2px 2px;height: 150px;padding: 5px;width: 250px;}
.art-desc .art-img :hover{transition-duration: .2s;border-radius: 2px;box-shadow: 0 2px 2px rgba(0, 0, 0, .25);}
.art-pub{width:auto;float: right;font-size:14px;display:block}
.art_ft{height:40px;line-height:40px;border-top:1px #ddd solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;background:#f4f4f4}
.art-info{width:70%;padding-left:17px;font-size:14px;display:block;overflow:hidden;word-break:keep-all;white-space:nowrap;}
.art-info span{margin-right:15px;}
.art-pub .cmnt {float: left;border-left:1px #ddd solid;display:block;}
.art-pub .cmnt a{cursor:pointer;text-align:center;padding:0 20px;line-height:40px; height:40px;display:block;}
.art-pub :hover{background:#304040;color:#fff}
.art-pub .views{padding:0 20px;height:40px;border-left:1px #ddd solid;text-align:center;float: left;}
.art-desc .more {position:absolute;right:0; top:0;display:block}
.art-desc .more a{border-left:1px #ddd solid;float:left;padding:0 20px;line-height:40px; height:40px;}
.art-desc .more a i{font-size:24px;}
.art-desc .more :hover{background:#304040;color:#fff}
.art-desc .more .sticky {float:left;padding:0 20px;line-height:40px; height:40px;background-color:#0AB59B;color:#fff}
/** 侧边 **/
#sidebar{float: right;width: 28.7%;transition-duration: .5s;}
#sidebar h3{background: #f8f8f8;height: 40px;line-height: 40px;border-bottom: 1px solid #ddd;}
.widget-title i{float: left;width: 40px;height: 40px;font-size: 24px;color: #304040;line-height: 40px;text-align: center;margin: 0 15px 0 0;padding: 1px 0;border-right: 1px solid #ddd;border-radius: 2px 0 0 0;}
.widget{background: #fff;margin: 0 0 10px 0;border: 1px solid #ddd;border-radius: 2px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.widget ul li{width: 99%;line-height: 28px;white-space: nowrap;word-wrap: normal;text-overflow: ellipsis;overflow: hidden;}
.widget ul,#sidebar #searchform,#calendar_wrap,.tagcloud{padding: 15px;}
.widget .textwidget{padding: 18px;}
#advert_widget, .widget_php_text .widget-text{padding: 3px;}
.widget .textwidget img,#advert_widget img{max-width: 100%;width: auto;height: auto;display: block;}
.widget_categories,.widget_links,#sidebar .widget_nav_menu{padding: 0 0 15px 0;}
.widget_categories li,.widget_links li,#sidebar .widget_nav_menu li{float: left;width: 49.5% !important;margin: 0 -3px -1px 2px;}
.widget_categories a,.widget_links a,#sidebar .widget_nav_menu a{text-align: center;padding: 5px 0;display: block;border: 1px solid #ddd;}
.widget_categories a:hover,.widget_links a:hover,.tagcloud a:hover,#sidebar .widget_nav_menu a:hover{background: #304040;color: #fff !important;border: 1px solid #304040;transition: all 0.1s ease-in 0s;}
.tagcloud{padding: 5px 0 5px 2px;}
.tagcloud a{float: left;margin: 4px;padding: 0 7px;line-height: 26px;text-align: center;border: 1px solid #ddd;border-radius: 2px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.widget_archive select, .widget_categories select{width: 140px;margin: 10px 20px;border: 1px solid #ddd;}
/** 隐藏侧边 **/
#primary.primary {width: 100%;}
.sidebar {display: none;}
/** 跟随 **/
.follow{top:55px;width:342.391px;position:fixed;animation:fade-in;animation-duration:1.2s;-webkit-animation:fade-in 1.2s}
/** 头像留言 **/
#message .avatar{float: left;width: 32px;height: 32px;margin: 6px 8px 0 0;}
.wp-smiley{height: 15px !important;display: inline !important;}
.message-widget ul li{width: 99%;height: 45px;padding-bottom: 8px;line-height: 45px;_white-space: normal;*white-space: normal;border-bottom: 1px dashed #dadada;}
.message-page ul li{width: 99%;height: 45px;padding-bottom: 8px;line-height: 45px;white-space: nowrap;_white-space: normal;*white-space: normal;overflow: hidden;text-overflow: ellipsis;border-bottom: 1px dashed #dadada;}
.post_cat .fa-angle-right{margin-right: 5px;color: #999;}
.random_post_widget .fa-angle-right{margin-right: 5px;color: #999;}
/** 序号 **/
.li-icon{background: #ccc;font-size: 14px;color: #fff;line-height: 180%;margin: 0 5px 0 0;padding: 0 6px;border-radius: 12px;}
.li-icon-1,.li-icon-2,.li-icon-3, .li-icon-4{background: #304040;}
.li-number{float: left;background: #304040;font-size: 14px;color: #fff;line-height: 180%;margin: 4px 5px 0 0;padding: 0 6px;border-radius: 12px;}
.li-numbers{float: left;background: #ccc;font-size: 14px;color: #fff;line-height: 180%;margin: 4px 5px 0 0;padding: 0 6px;border-radius: 12px;}
/** 图片小工具 **/
.img-x2 {float: left;width: 50%;padding:0 5px;}
.img-box {margin: 0 -10px;}
.insets a img {border-radius: 3px;float: left;max-width: 100%;width: auto;height: auto;-webkit-transition: -webkit-transform .3s linear;-moz-transition: -moz-transform .3s linear; -o-transition: -o-transform .3s linear; transition: transform .3s linear;}
.insets :hover img{transition: All 0.3s ease; -webkit-transform: scale(0.95); -moz-transform: scale(0.95); -ms-transform: scale(0.95); -o-transform: scale(0.95);}
.img-title {width: 100%;height: 40px;line-height: 1.5;font-size:13px;overflow: hidden;}
/** 侧边缩略图 **/
.hot_commend ul li {white-space: normal;border-bottom: 1px dashed #dadada;}
.new_cat ul li {white-space: normal;}
.hot_commend .thumbnail, .new_cat .thumbnail {position: relative;float: left;width: 125px;height: 75px;margin: 8px 8px 8px 0;overflow: hidden;}
.hot_commend a img, .new_cat a img {float: left;width: 125px;height: 75px;padding:2px;}
.hot_commend .hot-title, .new_cat .new-title {height: 55px;padding-top: 5px;line-height: 25px;overflow: hidden;}
.hot_commend .views, .new_cat .date {float: right;color: #999;}
.hot_commend .fa {color: #999;}
/** 正文 **/
.entry-header h1{text-transform: uppercase;position: relative;font-size: 18px;font-size: 1.8rem;line-height: 30px;text-align: center;margin: 0 -5px;color: #fff;padding: 5px 20px;border-left: 5px solid #0AB59B;border-right: 5px solid #0AB59B;background: rgba(48, 64, 64, 0.9);}
.single-meta{margin:10px 10px;overflow: hidden;float:right;}
.single-meta span{border: 1px solid #ccc;padding:2px 10px;border-radius: 2px;}
.single-meta span:hover{background-color:#f1f1f1;}
.single-tag{text-align:center;margin:0 10px;}
.single-content{ font-size: 16px; font-size: 1.6rem; line-height: 180%; margin: auto; padding:10px}
.single-content a, .single-content a:visited{color: #2f889a;}
.single-content a:hover{color: #40aabf;}
/** 摘要 **/
.abstract{background: #fff;font-size: 15px;color: #999;display: block;margin: 0 0 10px 0;padding: 5px 15px;border: 1px dashed #bbb;}
.abstract span{float: left;font-weight: 600;color: #304040;padding-right: 10px;}
/** 排版样式 **/
.single-content p,.single-content ul,.single-content ol,.single-content dd,.single-content pre,.single-content hr{margin: 0 0 10px 0;-webkit-hyphens: auto;-moz-hyphens: auto;-ms-hyphens: auto;hyphens: auto;word-wrap: break-word;word-break: break-all;text-justify: inter-ideograph;}
.single-content p{text-indent: 2em;}
.single-content ul li,.single-content ol li {margin: 0 35px 0 50px;line-height: 190%;}
.single-content ul li { list-style: square;}
.single-content ol li {list-style: decimal;}
.single-content h2{font-size: 17px;font-size: 1.7rem;line-height: 190%;margin:10px -10px 10px -15px;padding: 0 20px;border-left: 5px solid #e40000;background: #f1f1f1;}
.single-content h3{font-size: 16px;font-size: 1.6rem;line-height: 190%;background: #f1f1f1;margin:10px -10px 10px -15px;padding: 0 20px;border-left: 5px solid #666;}
.single-content blockquote{width: 100%;color: #2f889a;margin: 10px auto;padding: 10px 10px;clear: both;border: 1px dashed #bbb;}
.single-content blockquote p{margin: 0;text-indent:0}
.single-content img, .comment-list p img{max-width: 100%;width: auto\9;height: auto;vertical-align: middle;display: block;}
.wp-caption{background: #f3f3f3;max-width: 100%; padding: 5px;border: 1px solid #ddd; border-radius: 3px;}
.wp-caption p{text-indent: 0!important;margin:0!important}
.wp-caption-text{text-align: center !important;}
/* Toggle content */
.toggle-wrap{margin:8px 0;clear:both;}
.toggle-click-btn{background: #f5f5f5; border: 1px solid #ccc; position: relative; padding-left: 30px;font-weight: 500;}
.toggle-click-btn.yes:before{content: "\e678"; display: inline-block; font-style: normal; font-family: iconfont; text-align: center; position: absolute; left: 5px;}
.toggle-click-btn.no:before{content: "\e699"; display: inline-block; font-style: normal; font-family: iconfont; text-align: center; position: absolute; left: 5px;}
.toggle-content{border-width: 0 1px 1px 1px; border-color: #ccc; border-style:solid; padding: 8px 8px 8px 20px;}
.toggle-content p{text-indent: 0;}
/* with border */
.bs-callout{padding: 15px 20px 20px; margin: 20px 0; border: 1px solid #eee; border-left-width: 5px; border-radius: 3px;}
.bs-callout h4{margin-top: 0; margin-bottom: 10px; font-size: 125%;font-weight: 500;text-align: center;}
.bs-callout p{line-height: 1.5;}
.bs-callout-info{border-left-color: #5bc0de;}
.bs-callout-info h4{color: #5bc0de;}
.bs-callout-warning{border-left-color: #f0ad4e;}
.bs-callout-warning h4{color: #f0ad4e;}
.bs-callout-danger{border-left-color: #d9534f;}
.bs-callout-danger h4{color: #d9534f;}
/*彩色信息框*/
#sc_notice {
color: #7da33c;
background: #ecf2d6 url('../images/sc_notice.png') -1px -1px no-repeat;
border: 1px solid #aac66d;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_warn {
color: #ad9948;
background: #fff4b9 url('../images/sc_warn.png') -1px -1px no-repeat;
border: 1px solid #eac946;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_error {
color: #c66;
background: #ffecea url('../images/sc_error.png') -1px -1px no-repeat;
border: 1px solid #ebb1b1;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_tips {
color: #777;
background: #eaeaea url('../images/sc_tips.png') -1px -1px no-repeat;
border: 1px solid #ccc;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_blue {
color: #1ba1e2;
background: rgba(27, 161, 226, 0.26) url('../images/sc_blue.png') -1px -1px no-repeat;
border: 1px solid #1ba1e2;
overflow: hidden;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_black {
border-width: 1px 4px 4px 1px;
border-style: solid;
border-color: #3e3e3e;
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_xuk {
border: 2px dashed rgb(41, 170, 227);
background-color: rgb(248, 247, 245);
margin: 10px 0;
padding: 15px 15px 15px 35px;
}
#sc_lvb {
margin: 10px 0;
padding: 10px 15px;
border: 1px solid #e3e3e3;
border-left: 2px solid #05B536;
background: #FFF;
}
#sc_redb {
margin: 10px 0;
padding: 10px 15px;
border: 1px solid #e3e3e3;
border-left: 2px solid #ED0505;
background: #FFF;
}
#sc_organge {
margin: 10px 0;
padding: 10px 15px;
border: 1px solid #e3e3e3;
border-left: 2px solid #EC8006;
background: #FFF;
}
/** 图文混排 **/
img.centered{display: block;margin: 0 auto 10px;}
img.alignnone{margin: 0 0 10px 0;display: block;}
img.alignright{margin: 0 0 10px 10px;display: inline;}
img.alignleft{margin: 0 10px 10px 0;display: inline;}
.aligncenter{display: block;margin: 0 auto 10px;}
.alignright{float: right;margin: 0 0 10px 10px;}
.alignleft{float: left;margin: 0 10px 10px 0;}
/** 文章内容分页 **/
.page-links{text-align: center;margin: 10px auto 5px;}
.page-links span{background: #304040;color: #fff;margin: 2px;line-height: 30px;cursor: pointer;padding: 0 12px;display: inline-block;border: 1px solid #304040;border-radius: 2px;}
.page-links a span{background: #fff;color: #000;text-decoration: none;border: 1px solid #ddd;}
.page-links a:hover span{background: #304040;color: #fff;border: 1px solid #304040;transition: all 0.2s ease-in 0s;}
/** 喜欢分享 **/
#social {position: relative;margin: 15px auto;}
.social-main {position: relative;margin: 0 auto; width: 253px;}
.social-main span {float: left;}
.social-main a {color: #fff;line-height: 35px;text-align: center;border-radius: 2px;}
.social-main a:hover{background: #2F889A;color: #fff;transition: all 0.2s ease-in 0s;}
.post-like a{background: #304040; width: 120px;display: block;}
.post-like a.done{cursor:not-allowed;background:#999999}
.share-s a{background: #304040;width: 120px;display: block;margin-left:10px}
.social-main i{color: #fff;font-style: normal;margin: 0 5px 0 0;}
/** 分享 **/
#share { position: absolute; top: -60px; right: -10px;width: 262px;height: 68px;display: none;z-index: 999;}
#share a {float: left;background: #999;font-size: 20px;color: #fff;width: 40px;height: 40px;line-height: 40px; margin-left: 4px;padding-left: 0; text-align: center; border-radius: 3px;background: rgba(128, 128, 128, 0.9);}
#share .fa-plus-square:hover {background: #7ab951 !important;}
#share .fa-heart:hover {background: #ff1000 !important;}
#share .fa-qq:hover {background: #ff7400 !important;}
#share .fa-weibo:hover {background: #ff0000 !important;}
#share .fa-pinterest-square:hover {background: #46c0e6 !important;}
#share .fa-renren:hover {background: #3b68ac !important;}
#share .fa-weixin:hover{background:#006f1d !important}
/** 上下篇 **/
.nav-single{margin-bottom: 10px;}
.meta-nav{background: #fff;float: left;width: 50%;text-align: center;margin-right: -1px;padding: 10px 20px;white-space: nowrap;word-wrap: normal;text-overflow: ellipsis;overflow: hidden;border: 1px solid #ddd;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); border-radius: 2px;}
.nav-single a{display: block;}
.meta-nav:hover{color: #fff;background: #304040;border: 1px solid #ccc;}
.post-nav{}
/** 首页 分类 分页 **/
/** 等于或大于550px **/
@media screen and (min-width:550px) {
.pagination {float:right;}
.pagination a,.pagination a:visited {float:left;background:#fff;margin:0 0 10px 5px;padding:8px 11px;line-height:100%;border:1px solid #ddd;border-radius:2px;box-shadow:0 1px 1px rgba(0,0,0,0.04);}
.pagination .current,.pagination .dots {background:#fff;float:left;margin:0 0 0 5px;padding:8px 11px;line-height:100%;border:1px solid #ddd;border-radius:2px;}
.pagination span.pages {}
.pagination span.current,.pagination a:hover {background:#304040;color:#fff;border:1px solid #304040;}
.screen-reader-text,.pages {display:none;}
.nav-links .prev i,.nav-links .next i {line-height:12px;padding:0px 2px;}
}
/** 等于或小于550px **/
@media screen and (max-width:550px) {
.pagination {background:#fff;border:1px solid #ddd;box-shadow:0 1px 1px rgba(0,0,0,0.04);border-radius:2px;}
.pagination .nav-links {min-height:30px;position:relative;text-align:center;}
.pagination .current .screen-reader-text {position:static !important;}
.screen-reader-text {height:1px;overflow:hidden;position:absolute !important;}
.page-numbers {display:none;line-height:25px;padding:5px;}
.pagination .page-numbers.current {text-transform:uppercase;}
.pagination .current {display:inline-block;}
.pagination .prev,.pagination .next {background:#304040;color:#fff;display:inline-block;height:35px;overflow:hidden;position:absolute;}
.pagination .prev i,.pagination .next i {padding:5px 15px;}
.pagination .next {border-radius:0 2px 2px 0}
.pagination .prev {border-radius:2px 0 0 2px;}
.pagination .prev a,.pagination .next a {color:#fff;line-height:20px;padding:0;display:inline-block;}
.pagination .prev {left:0;}
.pagination .prev:before {left:-1px;}
.pagination .next {right:0;}
.pagination .next:before {right:-1px;}
}
/**版权信息**/
#copyright {background: #fff;margin-bottom: 10px;padding: 10px 10px 5px 10px;border: 1px solid #ddd;border-radius: 2px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);transition-duration: .5s;}
#copyright .avatar {float: left;width: 72px;height: 72px;margin: 5px 10px 0 0;padding: 0;}
/** 相关图片 **/
#related-img {background: #fff;margin-bottom: 10px;padding: 10px 10px 5px 10px;border: 1px solid #ddd;border-radius: 2px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.related-title { background: #fff;height: 40px;font-size: 15px;line-height: 140%;overflow: hidden;}
.related-site {max-width: 100%;width: auto;height: auto;padding: 5px;}
.related-site-img {position: relative;max-width: 100%;width: auto;height: auto;overflow: hidden;}
.related-site-img a img {max-width: 100%;width: auto;height: auto;border-radius: 3px;-webkit-transition: -webkit-transform .3s linear;-moz-transition: -moz-transform .3s linear; -o-transition: -o-transform .3s linear; transition: transform .3s linear;}
.related-site-img :hover img{transition: All 0.3s ease; -webkit-transform: scale(0.95); -moz-transform: scale(0.95); -ms-transform: scale(0.95); -o-transform: scale(0.95)}
@media screen and (min-width: 900px) {
.related-title {margin: 3px 0 0 0;}
}
@media screen and (min-width:480px) {
.r4 {float: left;width: 25%; }
}
@media screen and (max-width: 480px) {
.r4 {float: left;width: 50%; }
}
/** 评论 **/
.comments-title{background: #fff;margin-bottom: 10px;padding: 15px 20px;border: 1px solid #ddd;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);border-radius: 2px;}
.comment-list,.comment-list ol{list-style: none;}
.comment-list li{position: relative;background: #fff;margin: 0 0 10px 0;padding: 15px 20px;border: 1px solid #ddd;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);border-radius: 2px;word-wrap: break-word;word-break: break-all;}
.children li{position: relative;background: #fff;margin: 0 0 10px 0;padding: 15px 20px;border: 1px solid #ebebeb;border-radius: 2px;word-wrap: break-word;word-break: break-all;}
.children{margin: 5px 0 0 0;}
.vcard .avatar{float: left;width: 48px;height: 48px;margin: 6px 10px 0 0;padding: 2px;transition: all 0.8s ease 0s;-webkit-transition: all 0.8s ease 0s;-moz-transition: all 0.8s ease 0s;-o-transition: all 0.8s ease 0s;}
.vcard:hover .avatar{transform: rotate(720deg);-webkit-transform: rotate(720deg);-moz-transform: rotate(720deg);-o-transform: rotate(720deg);-ms-transform: rotate(720deg);}
.comment-author{color: #999;}
.fn{font-style: normal;font-weight: bold;}
.floor{color: #999;}
.comment-meta, .comment-meta a{color: #999;}
.reply a{background: #fff;position: absolute;top: 15px;right: 20px;line-height: 25px;padding: 0 10px;border: 1px solid #ddd;border-radius: 2px;}
.reply a:hover{background: #304040;color: #fff;border: 1px solid #304040;transition: all 0.2s ease-in 0s;}
.at, .at a{color: #2f889a;}
.no-comments{background: #fff;text-align: center;margin: 0 0 10px 0;padding: 10px;border: 1px solid #ddd;}
#edita{color: #8b8b8b;}
/** 评论表单 **/
#respond{background: #fff;margin: 0 0 10px 0;padding: 10px 20px;border: 1px solid #ddd;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);border-radius: 2px;}
#respond h3{margin: 0 0 10px 0;}
#respond h3 a{float: right;padding: 2px 10px;border: 1px solid #ddd;border-radius: 2px;}
#comment-author-info input{width: 50%;background: #fff;height: 37px;margin: 0 10px 10px 0;padding: 0 5px;border: 1px solid #ddd;-webkit-appearance: none;_vertical-align: middle;*vertical-align: middle;}
#comment{background: #fff;width: 100%;margin: 0 10px 10px 0;padding: 5px;border: 1px solid #ddd;border-radius: 2px;-webkit-appearance: none;}
p.form-submit{text-align:center}
#respond #submit,#respond #reset{background: #fff;width:45%;margin: 0 5px 5px 5px;padding: 5px;cursor: pointer;border: 1px solid #ddd;border-radius: 2px;-webkit-appearance: none;}
#respond #submit:hover,#respond #reset:hover{background: #304040;color: #fff;border: 1px solid #304040;transition: all 0.2s ease-in 0s;}
/** 表单头像 **/
.user_avatar, .author_avatar{height: 48px;line-height: 48px;margin: 0 0 10px 0;}
.user_avatar img, .author_avatar img{float: left;width: 48px;height: 48px;margin: 0 10px 0 0;}
/** 表情 **/
.comment-tool{float: left;margin: 5px 0;}
.comment-tool a{float:left;}
.emoji-box{display: none;position: relative;}
.emoji-box img{float: left;width: 24px;height: 24px;}
/** 引用 **/
#trackbacks{margin: 0 0 10px 0;}
.backs{background: #fff;padding: 10px 15px;border: 1px solid #ddd;cursor: pointer;border-radius: 2px;}
.track{background: #fff;padding: 10px 15px;border: 1px solid #ddd;border-top: 0;border-radius: 0 0 2px 2px;display: none;}
.track{background: #fff;padding: 10px 15px;border: 1px solid #ddd;border-top: 0;border-radius: 0 0 2px 2px;display: none;}
.track li{margin: 0;padding: 0;border: none;border-radius: 0;}
/** 滚屏 **/
#scroll {width: 35px;float: right;position: fixed;right: 10px;bottom: 100px;z-index: 9999;}
#scroll li a {background: #304040;font-size: 24px;color: #fff;width: 35px;height: 35px;line-height: 35px;text-align: center;margin-top: 10px;display: block;cursor: pointer;border-radius: 4px;}
#scroll li i {font-size: 24px;line-height: 35px;}
#scroll li a:hover {background: #0AB59B;color: #fff;transition: all 0.2s ease-in 0s;}
/** 链接 **/
#links {position: relative;width:1200px;margin: 0 auto;padding:0 0 10px}
#links h2 {display: none;}
.link-f {max-width: 100%;width: auto;height: auto;overflow: hidden;}
.link-f a img {max-width: 100%;width: auto;height: auto;margin: 0 auto;}
.link-f a {background: #fff;text-align: center;padding: 5px;display: block;white-space: nowrap;word-wrap: normal;text-overflow: ellipsis;overflow: hidden;border: 1px solid #ddd;border-radius: 2px;transition-duration: .5s;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.link-f a:hover {background: #304040;color: #fff !important;border: 1px solid #304040;}
.lx7 {float: left;min-height: 1px;padding: 2px;}
@media screen and (min-width:700px) {
.lx7 {width: 25%;transition-duration: .5s;}
}
@media screen and (min-width:900px) {
.lx7 {width: 20%;transition-duration: .5s;}
}
@media screen and (min-width:1024px) {
.lx7 {width: 14.2857%;transition-duration: .5s;}
}
@media screen and (max-width: 700px) {
#links { display:none}
}
.linkcat h2 {clear: both;margin:10px 0px 10px -5px;padding: 2px 0 2px 10px;border-left: 5px solid #304040;background:#ddd}
.link-all a:hover {background: #304040;color: #fff !important;border: 1px solid #304040;}
/**页脚**/
#footer{position: relative;;margin:0 auto;background: #304040;padding:20px}
#contentinfo{text-align: center;color:#e5e5e5;}
#contentinfo a{color:#e5e5e5}#contentinfo a:hover{color:#1DC6F4}
/** 等于或小于1080px **/
@media screen and (max-width: 1024px) {
#content,.breadcrumb{width:96%}
}
/** 等于或小于780px **/
@media screen and (max-width: 780px) {
#content, .breadcrumb{ width: 96%; }
#primary {width: 100%;}
#sidebar,.art-desc .more,.art-pub ,.art-info .tag,.ias-trigger,.ias-trigger-next,.bottom-nav{display: none!important;}
.single-content embed {height: 280px;width:99%;max-width:100%;}
.art-t{padding:0 10px;text-align:center}
.art-desc .art-img img{width:100%;max-width:100%;height:auto;float:none;text-align:center;margin:0 auto;}
.art-main{font-size:1em;max-height:84px;overflow:hidden;float:none}
.art-info{width:100%}
.art-desc .art-img :hover{transition-duration: .2s;border-radius: 2px;box-shadow: none;}
.thumbnail a img{width:125px;height:75px}
}
/** 底部左边播放器 **/
#bgmbox{position:fixed;bottom:0px;left:0;z-index:999}
#bgm{position:absolute;display:none;bottom:70px;}
#bgmsw{position: absolute;width: 50px;height: 50px;left: 20px;bottom: 12px;border: 1px solid #999;background-color: rgba(241,241,241,0.6);-webkit-border-radius: 15px 15px 0px 15px;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}
#bgmsw .bgmplay i{font-size: 30px!important;position: absolute;left: 10px;bottom: 10px;color: rgba(48,64,64,0.9);}
@media screen and (max-width:720px){
#bgmbox{display:none}
}
/** 动态加载 **/
.ias-spinner {background: url(../images/infinite.gif) no-repeat center;float: left;width: 100px;height: 9px}
.ias-trigger-next {float: left;cursor: pointer;margin: 4px 0 0 0;}
.ias-trigger-next a {background: #304040;color: #fff;padding: 6px 11px;line-height: 100%;border: 1px solid #304040;border-radius: 3px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);}
.ias-trigger-next a:hover {background: #2f889a;color: #fff;border: 1px solid #2f889a;}
.ias-trigger-next i {margin-right: 5px;}
#comments .nav-previous, #comments .nav-next {display: none;}
@media screen and (max-width: 550px) {
.ias-trigger-next {float: inherit;text-align: center;margin: -10px auto 0;padding: 10px 11px;}
.ias-spinner {float: inherit;width: 98%; margin: 0 auto;height: 35px;}
}
/** 广告样式 **/
.ad-site{margin:auto;text-align:center}
.ad-archive-p {width:auto;margin:auto;padding:10px;border:1px solid #ddd;border-radius:3px;overflow:hidden;margin-bottom:10px;background:#fff}
.ad-archive-m {margin:0 auto;overflow:hidden;border: 1px solid #ddd;background:#fff}
.ad-single-p {width: auto;margin:0 auto 10px;padding: 10px;border: 1px dashed #bbb;border-radius: 3px;overflow:hidden;}
.ad-single-m{margin:0 auto;overflow:hidden;border: 1px dashed #bbb;} | 0.337531 | 0.10316 |
/* mobile first */
body {
background-color: #C4E0E5;
align-content: center;
margin: 0px;
padding: 0px;
}
h1 {
font-size: 2em;
margin: 0px;
}
h2 {
font-size: 1.2em;
margin: 0px;
}
label {
font-size: 1.2em;
}
input {
width: 80%;
background-color: #4CA1AF;
color: whitesmoke;
border: none;
border-bottom: 2px solid #C4E0E5;
}
::placeholder {
color: #C4E0E5;
}
form {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #4CA1AF;
color: whitesmoke;
text-align: center;
padding: 10px;
border-radius: 5px;
}
.container {
position: absolute;
margin: 5vh 10vw;
padding: 10px;
/*top: 5vh;
left: 10vw;
right: 10vw;
bottom: 5vh;*/
}
.row-tracker {
display: flex;
align-content: center;
justify-content: space-between;
border-radius: 5px;
margin: 5px 0px;
padding: 7px 7px 10px 7px;
background-color: #4CA1AF;
color: whitesmoke;
}
.row-tracker-left {
margin: 0px;
}
.row-tracker-right {
display: flex;
justify-content: space-between;
align-content: center;
margin: 0px;
}
.row-tracker-buttons {
display: flex;
justify-content: center;
align-items: center;
margin: 0px 5px;
padding: 5px;
}
.row-tracker-value {
display: flex;
justify-content: center;
align-items: center;
margin: 0px;
padding: 0px;
}
button {
margin: 0px;
}
.btn {
background-color: #4CA1AF;
border: none; /* Remove borders */
color: whitesmoke; /* White text */
padding: 6px 8px; /* Some padding */
font-size: 20px; /* Set a font size */
cursor: pointer; /* Mouse pointer on hover */
border-radius: 5px;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: whitesmoke;
color: #4CA1AF;
}
.error, .field-validation-error, .validation-summary-errors {
color: #cb202a;
font-weight: bold;
}
.field-validation-error {
display: block;
margin-left: 90px;
}
.input-validation-error {
box-shadow: #cb202a 1px;
}
.validation-summary-errors {
margin: 1em;
}
/* tabletas */
@media (min-width: 768px) {
}
/* escritorio normales */
@media (min-width: 992px) {
input {
width: 100%;
}
form {
padding: 10px 100px;
}
}
/* pantallas grandes */
@media (min-width: 1200px) {
.container {
position: fixed;
top: 30px;
left: 300px;
right: 300px;
bottom: 30px;
}
input {
width: 150%;
}
} | src/TrackerFintech/wwwroot/css/main.css | /* mobile first */
body {
background-color: #C4E0E5;
align-content: center;
margin: 0px;
padding: 0px;
}
h1 {
font-size: 2em;
margin: 0px;
}
h2 {
font-size: 1.2em;
margin: 0px;
}
label {
font-size: 1.2em;
}
input {
width: 80%;
background-color: #4CA1AF;
color: whitesmoke;
border: none;
border-bottom: 2px solid #C4E0E5;
}
::placeholder {
color: #C4E0E5;
}
form {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #4CA1AF;
color: whitesmoke;
text-align: center;
padding: 10px;
border-radius: 5px;
}
.container {
position: absolute;
margin: 5vh 10vw;
padding: 10px;
/*top: 5vh;
left: 10vw;
right: 10vw;
bottom: 5vh;*/
}
.row-tracker {
display: flex;
align-content: center;
justify-content: space-between;
border-radius: 5px;
margin: 5px 0px;
padding: 7px 7px 10px 7px;
background-color: #4CA1AF;
color: whitesmoke;
}
.row-tracker-left {
margin: 0px;
}
.row-tracker-right {
display: flex;
justify-content: space-between;
align-content: center;
margin: 0px;
}
.row-tracker-buttons {
display: flex;
justify-content: center;
align-items: center;
margin: 0px 5px;
padding: 5px;
}
.row-tracker-value {
display: flex;
justify-content: center;
align-items: center;
margin: 0px;
padding: 0px;
}
button {
margin: 0px;
}
.btn {
background-color: #4CA1AF;
border: none; /* Remove borders */
color: whitesmoke; /* White text */
padding: 6px 8px; /* Some padding */
font-size: 20px; /* Set a font size */
cursor: pointer; /* Mouse pointer on hover */
border-radius: 5px;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: whitesmoke;
color: #4CA1AF;
}
.error, .field-validation-error, .validation-summary-errors {
color: #cb202a;
font-weight: bold;
}
.field-validation-error {
display: block;
margin-left: 90px;
}
.input-validation-error {
box-shadow: #cb202a 1px;
}
.validation-summary-errors {
margin: 1em;
}
/* tabletas */
@media (min-width: 768px) {
}
/* escritorio normales */
@media (min-width: 992px) {
input {
width: 100%;
}
form {
padding: 10px 100px;
}
}
/* pantallas grandes */
@media (min-width: 1200px) {
.container {
position: fixed;
top: 30px;
left: 300px;
right: 300px;
bottom: 30px;
}
input {
width: 150%;
}
} | 0.398055 | 0.10833 |
@media all and (min-width: 320px) {
* {
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
}
input.form-control {
background-color: #d7dcdf;
}
::placeholder {
font-size: 14px;
}
.login {
padding: 0px;
font-family: "Montserrat" sans-serif;
font-weight: 200;
}
}
* {
box-sizing: border-box;
}
.movie-carousel {
padding: 0 !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
overflow: hidden !important;
max-height: 350px !important;
}
.carousel {
object-fit: cover;
width: 100%;
height: auto;
margin: auto;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.text-center {
font-family: "Barlow Semi Condensed";
color: #c29591;
font-size: 14px;
}
* {
box-sizing: border-box;
}
* {
box-sizing: border-box;
}
.update-profile h5 {
font-family: "Bebas Neue";
font-weight: 600;
color: #6a82b7;
}
* {
box-sizing: border-box;
}
.director-card {
padding: 0 !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
background-attachment: scroll;
}
* {
box-sizing: border-box;
}
* {
box-sizing: border-box;
font-family: "Barlow Semi Condensed", sans-serif;
font-weight: 300;
background-color: #faf9f6;
}
.navbar-light .navbar-toggler {
color: #fba92c;
border: none;
}
#justify-content-end .nav-link {
color: #703f37;
}
.nav-link {
color: #fba92c;
}
#main-title, h1, h2, h3, h4, h5 {
font-family: "Montserrat", sans-serif;
font-weight: 900;
color: #4a3e42;
margin-left: 10px;
letter-spacing: 2px;
}
#basic-navbar-nav {
margin-left: 30px;
}
:root {
--surface-color: $white;
}
* {
box-sizing: border-box;
}
h2 {
text-align: center;
}
a {
color: #6a82b7;
}
button {
border: none;
margin: 5px;
}
body {
background-color: #afc2d3;
}
.img {
width: 100%;
height: auto;
}
.btn-primary {
background-color: #6a82b7 !important;
border-color: #6a82b7 !important;
}
.btn-primary:hover {
background-color: #6a82b7 !important;
border-color: #6a82b7 !important;
}
.btn-outline-primary {
color: #36425c !important;
border-color: #afc2d3 !important;
}
.btn-outline-primary:hover {
color: #faf9f6 !important;
background-color: #fc7061 !important;
}
.button {
background-color: #6a82b7 !important;
border-color: #6a82b7 !important;
}
.button:hover {
background-color: #afc2d3 !important;
border-color: #afc2d3 !important;
}
.button-group {
display: flex;
justify-content: center;
margin-top: 1rem;
}
.card {
color: #36425c;
margin-bottom: 2rem;
}
.card-header {
padding: 2em;
background-color: transparent;
border: none;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
max-height: 250px;
}
.card-body {
color: #4a3e42;
padding: 1rem 2rem 2rem;
}
.card-footer {
text-align: center;
background-color: #fcf4ef;
border: none;
}
.search-bar {
background-color: #fcf4ef !important;
border-radius: 0.9rem;
border: none;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.search-bar :focus {
box-shadow: 0 0 0 0.2rem rgba(74, 62, 66, 0.25);
}
.card {
position: relative;
border: none !important;
display: block;
height: 100%;
overflow: hidden;
text-decoration: none;
}
.card__overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 0;
z-index: 1;
transform: translateY(100%);
transition: 0.2s ease-in-out;
}
.card:hover .card__overlay {
transform: translateY(0);
}
.card__header {
position: relative;
display: flex;
align-items: center;
gap: 2px;
padding: 10px;
background-color: #c8b7a6;
transform: translateY(-100%);
transition: 0.2s ease-in-out;
}
.card__header-text, .card__genre {
background-color: transparent;
}
.card:hover .card__header {
transform: translateY(0);
}
.card-title {
font-family: "Barlow Semi Condensed", sans-serif !important;
font-size: 14px !important;
margin: 0 0 0.3em !important;
color: #faf9f6 !important;
}
.card__genre {
display: block;
font-size: 0.8em;
color: #4a3e42;
}
.card__description {
padding: 0 5px 3px !important;
margin: 2px !important;
color: #4a3e42 !important;
-webkit-box-orient: vertical !important;
-webkit-line-clamp: 3 !important;
overflow: hidden !important;
text-align: justify;
font-size: 14px;
}
.card_description, p {
background-color: transparent;
}
.card_description Button {
font-size: 12px;
}
.btn-link {
padding: 0 2em 1em !important;
margin: 0 !important;
color: #6a82b7 !important;
-webkit-box-orient: vertical !important;
-webkit-line-clamp: 3 !important;
overflow: hidden !important;
}
html body {
font-size: 16px;
font-family: "Barlow Semi Condensed", sans-serif;
background-color: #c8b7a6;
width: 100%;
height: 100%;
}
div {
width: 100%;
}
.my-flix {
color: #c8b7a6;
}
/*# sourceMappingURL=index.27d8da6b.css.map */ | dist/index.27d8da6b.css | @media all and (min-width: 320px) {
* {
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
}
input.form-control {
background-color: #d7dcdf;
}
::placeholder {
font-size: 14px;
}
.login {
padding: 0px;
font-family: "Montserrat" sans-serif;
font-weight: 200;
}
}
* {
box-sizing: border-box;
}
.movie-carousel {
padding: 0 !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
overflow: hidden !important;
max-height: 350px !important;
}
.carousel {
object-fit: cover;
width: 100%;
height: auto;
margin: auto;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.text-center {
font-family: "Barlow Semi Condensed";
color: #c29591;
font-size: 14px;
}
* {
box-sizing: border-box;
}
* {
box-sizing: border-box;
}
.update-profile h5 {
font-family: "Bebas Neue";
font-weight: 600;
color: #6a82b7;
}
* {
box-sizing: border-box;
}
.director-card {
padding: 0 !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
background-attachment: scroll;
}
* {
box-sizing: border-box;
}
* {
box-sizing: border-box;
font-family: "Barlow Semi Condensed", sans-serif;
font-weight: 300;
background-color: #faf9f6;
}
.navbar-light .navbar-toggler {
color: #fba92c;
border: none;
}
#justify-content-end .nav-link {
color: #703f37;
}
.nav-link {
color: #fba92c;
}
#main-title, h1, h2, h3, h4, h5 {
font-family: "Montserrat", sans-serif;
font-weight: 900;
color: #4a3e42;
margin-left: 10px;
letter-spacing: 2px;
}
#basic-navbar-nav {
margin-left: 30px;
}
:root {
--surface-color: $white;
}
* {
box-sizing: border-box;
}
h2 {
text-align: center;
}
a {
color: #6a82b7;
}
button {
border: none;
margin: 5px;
}
body {
background-color: #afc2d3;
}
.img {
width: 100%;
height: auto;
}
.btn-primary {
background-color: #6a82b7 !important;
border-color: #6a82b7 !important;
}
.btn-primary:hover {
background-color: #6a82b7 !important;
border-color: #6a82b7 !important;
}
.btn-outline-primary {
color: #36425c !important;
border-color: #afc2d3 !important;
}
.btn-outline-primary:hover {
color: #faf9f6 !important;
background-color: #fc7061 !important;
}
.button {
background-color: #6a82b7 !important;
border-color: #6a82b7 !important;
}
.button:hover {
background-color: #afc2d3 !important;
border-color: #afc2d3 !important;
}
.button-group {
display: flex;
justify-content: center;
margin-top: 1rem;
}
.card {
color: #36425c;
margin-bottom: 2rem;
}
.card-header {
padding: 2em;
background-color: transparent;
border: none;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
max-height: 250px;
}
.card-body {
color: #4a3e42;
padding: 1rem 2rem 2rem;
}
.card-footer {
text-align: center;
background-color: #fcf4ef;
border: none;
}
.search-bar {
background-color: #fcf4ef !important;
border-radius: 0.9rem;
border: none;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.search-bar :focus {
box-shadow: 0 0 0 0.2rem rgba(74, 62, 66, 0.25);
}
.card {
position: relative;
border: none !important;
display: block;
height: 100%;
overflow: hidden;
text-decoration: none;
}
.card__overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 0;
z-index: 1;
transform: translateY(100%);
transition: 0.2s ease-in-out;
}
.card:hover .card__overlay {
transform: translateY(0);
}
.card__header {
position: relative;
display: flex;
align-items: center;
gap: 2px;
padding: 10px;
background-color: #c8b7a6;
transform: translateY(-100%);
transition: 0.2s ease-in-out;
}
.card__header-text, .card__genre {
background-color: transparent;
}
.card:hover .card__header {
transform: translateY(0);
}
.card-title {
font-family: "Barlow Semi Condensed", sans-serif !important;
font-size: 14px !important;
margin: 0 0 0.3em !important;
color: #faf9f6 !important;
}
.card__genre {
display: block;
font-size: 0.8em;
color: #4a3e42;
}
.card__description {
padding: 0 5px 3px !important;
margin: 2px !important;
color: #4a3e42 !important;
-webkit-box-orient: vertical !important;
-webkit-line-clamp: 3 !important;
overflow: hidden !important;
text-align: justify;
font-size: 14px;
}
.card_description, p {
background-color: transparent;
}
.card_description Button {
font-size: 12px;
}
.btn-link {
padding: 0 2em 1em !important;
margin: 0 !important;
color: #6a82b7 !important;
-webkit-box-orient: vertical !important;
-webkit-line-clamp: 3 !important;
overflow: hidden !important;
}
html body {
font-size: 16px;
font-family: "Barlow Semi Condensed", sans-serif;
background-color: #c8b7a6;
width: 100%;
height: 100%;
}
div {
width: 100%;
}
.my-flix {
color: #c8b7a6;
}
/*# sourceMappingURL=index.27d8da6b.css.map */ | 0.340595 | 0.089534 |
* {
padding: 0;
margin: 0;
}
html, body {
min-height: 100% !important;
height: 100% !important;
color: rgba(35, 31, 32, 1);
}
body {
font: 14px Oxygen, sans-serif;
line-height: 1.8;
background: linear-gradient(
rgba(255, 255, 255, 0.25),
rgba(230, 230, 230, 0.25)
);
color: rgba(35, 31, 32, 1);
}
p {
font-size: 14px;
}
.bg-0 {
rgba(160, 160, 160, 0.35);
background-size: cover;
color: rgba(35, 31, 32, 1);
}
.bg-1 {
color: rgba(35, 31, 32, 1);
}
.bg-2 {
background: rgba(200, 200, 200, 0.35);
color: rgba(35, 31, 32, 1);
}
.bg-3 {
background: rgba(244, 244, 244, 0.15); /* Rusty Red #984B43 */
color: rgba(35, 31, 32, 1);
}
.bg-4 {
background-color: rgba(160, 160, 160, 0.35);
color: rgba(215, 100, 50, 1);
}
input {
color: rgba(215, 100, 50, 1);
}
.navbar { /* Add a dark background color with a little bit see-through */
margin-bottom: 0;
background-color: #2d2d30;
border: 0;
font-size: 12px !important;
letter-spacing: 5px;
opacity: 0.9;
}
.navbar li a, .navbar .navbar-brand { /* Add a gray color to all navbar links */
color: rgba(35, 31, 32, 1) !important;
}
.navbar-nav li a:hover { /* On hover, the links will turn white */
color: #fff !important;
}
.navbar-nav li.active a { /* The active link */
color: #fff !important;
background-color: #29292c !important;
}
.navbar-default .navbar-toggle { /* Remove border color from the collapsible button */
border-color: transparent;
}
#first {
padding: 240px 0 240px 0;
}
#third {
height: auto;
}
img {
display: block;
margin: auto;
}
.dropdown {
position: relative;
display: inline-block;
}
.container-fluid {
padding: 70px 50px 70px 50px;
}
.container-fluid div {
padding: 10px;
margin: 0 auto;
}
.container-fluid a {
color: rgba(35, 31, 32, 1);
}
.container-fluid a:hover {
color: rgba(35, 31, 32, 1);
text-decoration: none;
}
.btn {
background-color: transparent;
color: rgba(215, 100, 50, 0.6);
}
footer { /* Add a dark background color to the footer */
background-color: rgba(35, 31, 32, 0.2);
color: rgba(35, 31, 32, 1);
padding: 16px;
position: fixed;
width: 100%;
left: 0;
bottom: 0;
}
footer a {
color: rgba(35, 31, 32, 1) !important;
}
footer a:hover {
color: rgba(215, 100, 50, 1);
!important;
text-decoration: none;
}
div#loading {
width: 150px;
height: 50px;
display: none;
background: url(loading_image.gif) no-repeat center;
cursor: wait;
}
.logo-small {
color: rgba(35, 31, 32, 1);
font-size: 50px;
}
table {
width: 80%;
max-width: 400px;
}
#picture {
width: 80%;
max-width: 400px;
}
table, th, td {
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
border-collapse: collapse;
margin: auto;
}
tr:hover {
background-color: rgba(35, 31, 32, 0.2);
}
th, td {
padding: 5px;
vertical-align: middle;
text-align: center;
}
td {
vertical-align: middle;
}
label {
text-align: left;
}
h1 {
color: rgb(35, 31, 32);
}
.thumbnail img {
width: 150px;
max-width: 400px;
} | samples/generation/web_app/static/style.css | * {
padding: 0;
margin: 0;
}
html, body {
min-height: 100% !important;
height: 100% !important;
color: rgba(35, 31, 32, 1);
}
body {
font: 14px Oxygen, sans-serif;
line-height: 1.8;
background: linear-gradient(
rgba(255, 255, 255, 0.25),
rgba(230, 230, 230, 0.25)
);
color: rgba(35, 31, 32, 1);
}
p {
font-size: 14px;
}
.bg-0 {
rgba(160, 160, 160, 0.35);
background-size: cover;
color: rgba(35, 31, 32, 1);
}
.bg-1 {
color: rgba(35, 31, 32, 1);
}
.bg-2 {
background: rgba(200, 200, 200, 0.35);
color: rgba(35, 31, 32, 1);
}
.bg-3 {
background: rgba(244, 244, 244, 0.15); /* Rusty Red #984B43 */
color: rgba(35, 31, 32, 1);
}
.bg-4 {
background-color: rgba(160, 160, 160, 0.35);
color: rgba(215, 100, 50, 1);
}
input {
color: rgba(215, 100, 50, 1);
}
.navbar { /* Add a dark background color with a little bit see-through */
margin-bottom: 0;
background-color: #2d2d30;
border: 0;
font-size: 12px !important;
letter-spacing: 5px;
opacity: 0.9;
}
.navbar li a, .navbar .navbar-brand { /* Add a gray color to all navbar links */
color: rgba(35, 31, 32, 1) !important;
}
.navbar-nav li a:hover { /* On hover, the links will turn white */
color: #fff !important;
}
.navbar-nav li.active a { /* The active link */
color: #fff !important;
background-color: #29292c !important;
}
.navbar-default .navbar-toggle { /* Remove border color from the collapsible button */
border-color: transparent;
}
#first {
padding: 240px 0 240px 0;
}
#third {
height: auto;
}
img {
display: block;
margin: auto;
}
.dropdown {
position: relative;
display: inline-block;
}
.container-fluid {
padding: 70px 50px 70px 50px;
}
.container-fluid div {
padding: 10px;
margin: 0 auto;
}
.container-fluid a {
color: rgba(35, 31, 32, 1);
}
.container-fluid a:hover {
color: rgba(35, 31, 32, 1);
text-decoration: none;
}
.btn {
background-color: transparent;
color: rgba(215, 100, 50, 0.6);
}
footer { /* Add a dark background color to the footer */
background-color: rgba(35, 31, 32, 0.2);
color: rgba(35, 31, 32, 1);
padding: 16px;
position: fixed;
width: 100%;
left: 0;
bottom: 0;
}
footer a {
color: rgba(35, 31, 32, 1) !important;
}
footer a:hover {
color: rgba(215, 100, 50, 1);
!important;
text-decoration: none;
}
div#loading {
width: 150px;
height: 50px;
display: none;
background: url(loading_image.gif) no-repeat center;
cursor: wait;
}
.logo-small {
color: rgba(35, 31, 32, 1);
font-size: 50px;
}
table {
width: 80%;
max-width: 400px;
}
#picture {
width: 80%;
max-width: 400px;
}
table, th, td {
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
border-collapse: collapse;
margin: auto;
}
tr:hover {
background-color: rgba(35, 31, 32, 0.2);
}
th, td {
padding: 5px;
vertical-align: middle;
text-align: center;
}
td {
vertical-align: middle;
}
label {
text-align: left;
}
h1 {
color: rgb(35, 31, 32);
}
.thumbnail img {
width: 150px;
max-width: 400px;
} | 0.572723 | 0.11864 |
.tree-table-view{
-fx-tree-table-color: rgba(0, 150, 0, 0.8);
-fx-tree-table-rippler-color : rgba(255, 0, 0, 0.9);
}
.tree-table-view:focused .tree-table-row-cell:selected {
-fx-background-color: -fx-tree-table-color ;
-fx-table-cell-border-color: -fx-tree-table-color;
}
.tree-table-view:focused .tree-table-row-cell:selected .tree-table-cell{
-fx-text-fill: white;
}
.tree-table-view .jfx-rippler {
-fx-rippler-fill: -fx-tree-table-rippler-color;
}
.tree-table-view .column-header ,
.tree-table-view .column-header-background,
.tree-table-view .column-header-background .filler{
-fx-background-color:TRANSPARENT;
}
.tree-table-view .column-header{
-fx-border-width : 0 1 0 1;
-fx-border-color: #F3F3F3;
}
.tree-table-view .column-header .label {
-fx-text-fill : #949494;
-fx-padding : 16 0 16 0 ;
}
.tree-table-view .column-header .arrow, .tree-table-view .column-header .sort-order-dot{
-fx-background-color : #949494;
}
.tree-table-view .column-header:last-visible {
-fx-border-width: 0 2 0 1;
}
.tree-table-view .column-header-background{
-fx-border-width : 0 0.0 1 0;
-fx-border-color:#F3F3F3;
}
.tree-table-view .tree-table-cell{
-fx-border-width:0 0 0 0;
-fx-padding : 16 0 16 0 ;
}
.tree-table-view .column-overlay{
-fx-background-color: -fx-tree-table-color;
}
.tree-table-view .column-resize-line, .tree-table-view .column-drag-header{
-fx-background-color: -fx-tree-table-rippler-color;
}
.tree-table-view:focused {
-fx-background-color: -fx-tree-table-color,-fx-box-border,-fx-control-inner-background;
-fx-background-insets: -1.4, 0, 1;
-fx-background-radius: 1.4, 0, 0;
/*....*/
-fx-padding: 1; /* 0.083333em; */
}
.tree-table-row-cell > .tree-disclosure-node > .arrow {
-fx-background-color: -fx-text-fill;
-fx-padding: 0.333333em 0.229em 0.333333em 0.229em; /* 4 */
-fx-shape: "M 0 -3.5 L 4 0 L 0 3.5 z";
}
.tree-table-row-cell .jfx-text-field{
-fx-focus-color: rgba(240,40,40);
} | src/resources/css/treeTableView.css | .tree-table-view{
-fx-tree-table-color: rgba(0, 150, 0, 0.8);
-fx-tree-table-rippler-color : rgba(255, 0, 0, 0.9);
}
.tree-table-view:focused .tree-table-row-cell:selected {
-fx-background-color: -fx-tree-table-color ;
-fx-table-cell-border-color: -fx-tree-table-color;
}
.tree-table-view:focused .tree-table-row-cell:selected .tree-table-cell{
-fx-text-fill: white;
}
.tree-table-view .jfx-rippler {
-fx-rippler-fill: -fx-tree-table-rippler-color;
}
.tree-table-view .column-header ,
.tree-table-view .column-header-background,
.tree-table-view .column-header-background .filler{
-fx-background-color:TRANSPARENT;
}
.tree-table-view .column-header{
-fx-border-width : 0 1 0 1;
-fx-border-color: #F3F3F3;
}
.tree-table-view .column-header .label {
-fx-text-fill : #949494;
-fx-padding : 16 0 16 0 ;
}
.tree-table-view .column-header .arrow, .tree-table-view .column-header .sort-order-dot{
-fx-background-color : #949494;
}
.tree-table-view .column-header:last-visible {
-fx-border-width: 0 2 0 1;
}
.tree-table-view .column-header-background{
-fx-border-width : 0 0.0 1 0;
-fx-border-color:#F3F3F3;
}
.tree-table-view .tree-table-cell{
-fx-border-width:0 0 0 0;
-fx-padding : 16 0 16 0 ;
}
.tree-table-view .column-overlay{
-fx-background-color: -fx-tree-table-color;
}
.tree-table-view .column-resize-line, .tree-table-view .column-drag-header{
-fx-background-color: -fx-tree-table-rippler-color;
}
.tree-table-view:focused {
-fx-background-color: -fx-tree-table-color,-fx-box-border,-fx-control-inner-background;
-fx-background-insets: -1.4, 0, 1;
-fx-background-radius: 1.4, 0, 0;
/*....*/
-fx-padding: 1; /* 0.083333em; */
}
.tree-table-row-cell > .tree-disclosure-node > .arrow {
-fx-background-color: -fx-text-fill;
-fx-padding: 0.333333em 0.229em 0.333333em 0.229em; /* 4 */
-fx-shape: "M 0 -3.5 L 4 0 L 0 3.5 z";
}
.tree-table-row-cell .jfx-text-field{
-fx-focus-color: rgba(240,40,40);
} | 0.561335 | 0.165593 |
html {
scroll-behavior: smooth;
}
body {
margin: 0px;
padding: 0px;
display: flex;
flex-wrap: wrap;
justify-content: center;
overflow-x: hidden;
}
#pageHolder {
/* margin:auto; */
width: 1240px;
height: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
position: relative;
/* transition: 0.5s; */
}
header {
border-bottom: 1px solid rgb(202, 202, 202);
background-color: white;
z-index: 2;
position: relative;
top: 0px;
left: 0px;
right: 0px;
}
nav {
display: flex;
flex-wrap: wrap;
padding-top: 10px;
}
#hamIcon {
margin: 1.3rem 1rem 0px 1.5rem;
/* display: inline; */
position: fixed;
top: 0rem;
left: 0px;
z-index: 5;
/* padding: 5px; */
background-color: white;
/* border-radius: 100%; */
/* border: 1px solid black; */
}
#hamIcon:active {
border: 1px solid black;
}
#hamIcon:hover {
cursor: pointer;
}
.bar {
background-color: black;
margin: 2px;
width: 20px;
height: 3px;
border-radius: 1000px;
}
#icon {
margin: 0px 2rem 0px 20px;
}
#btnsA {
display: flex;
margin: 20px 10px 10px 10px;
}
.btnA {
margin: 0px 20px;
font-weight: bold;
font-size: 1.1rem;
}
#search {
width: auto;
height: 50px;
border-radius: 50px;
outline: none;
border: none;
padding: 0px 20px;
background-color: rgb(238, 238, 238);
margin-top: 5px;
display: flex;
}
#searcher {
font-size: 1.2rem;
outline: none;
border: none;
background-color: transparent;
}
.searchIcons {
width: 20px;
height: 20px;
margin: auto;
}
#btnsB {
margin-top: 0.5rem;
display: flex;
}
.btnB {
margin: 0.5rem 1rem;
font-weight: bold;
font-size: 1.1rem;
}
.btnB:first-child {
font-weight: normal;
border: 1px solid rgb(190, 190, 190);
padding: 10px 30px;
border-radius: 50px;
margin-top: 0px;
display: flex;
}
#location {
width: 20px;
height: 20px;
}
.topIcons {
width: 24px;
height: 24px;
}
#topText {
margin: 40px 0px 25px 20px;
font-size: 0.9rem;
}
#contentBox {
margin: 80px 0px 0px 0px;
}
#writingBox {
margin-left: 12%;
margin-bottom: 2rem;
}
#head1 {
font-size: 2rem;
font-weight: bold;
margin-bottom: 40px;
}
.text {
width: 40%;
height: auto;
font-size: 1.2rem;
color: rgb(93, 93, 93);
}
#secondNav {
display: grid;
grid-template-columns: 3fr 1.5fr;
grid-gap: 1rem;
background-color: white;
border-bottom: 1px solid rgb(212, 212, 212);
position: sticky;
top: 0rem;
left: 0rem;
right: 0rem;
padding-top: 3px;
padding-left: 3rem;
}
#navA {
display: flex;
overflow-x: scroll;
margin-top: 0.5rem;
padding: 0.5rem;
position: relative;
margin-bottom: 1rem;
border-left: 1px solid black;
border-right: 1px solid black;
}
.navA-btns {
margin: auto 0.5rem;
padding: 0.5rem 1.5rem;
border-radius: 100px;
background-color: rgb(238, 238, 238);
font-weight: 550;
cursor: pointer;
}
.navA-btns:last-child {
display: flex;
}
#filterIcon {
margin: auto;
width: 20px;
height: 20px;
}
#navB {
display: flex;
justify-content: center;
padding-top: 0px;
margin: auto 1rem auto 0rem;
padding-bottom: 1rem;
}
.navB-btns {
margin: 0rem 5px;
}
.navB-btns:first-child {
color: rgb(144, 144, 144);
}
.navB-btns:nth-child(2) {
color: black;
text-decoration: underline;
}
.navB-btns:last-child {
color: black;
text-decoration: none;
}
.navB-btns:last-child:hover {
text-decoration: underline;
}
#itemBox {
display: flex;
justify-content: center;
flex-wrap: wrap;
width: 100%;
height: auto;
padding-bottom: 20px;
border-bottom: 1px solid rgb(180, 180, 180);
margin: 2rem 0rem;
}
.item {
display: inline-block;
width: 16em;
height: 450px;
margin: 10px;
cursor: pointer;
}
.itemNav {
display: flex;
justify-content: space-between;
margin-left: -2px;
}
.tick {
width: 25px;
height: 25px;
border-radius: 100%;
background-color: transparent;
}
.itemImg {
width: 100%;
height: 250px;
}
.itemText {
font-size: 1.1rem;
}
.variantText {
margin: 0px 0px 10px 5px;
}
.variantBox {
margin: 5px 0px 20px 0px;
display: flex;
}
.variants {
width: 50px;
height: 50px;
margin: 5px;
}
.variants:hover {
cursor: pointer;
border: 1px solid black;
}
#recommend {
font-size: 2rem;
margin: 50px 0px 40px 0px;
}
#recommendBox {
display: flex;
justify-content: center;
flex-wrap: wrap;
width: 100%;
height: auto;
}
/* THe below codes are of footer */
footer {
background-color: rgb(224, 224, 224);
margin: 5rem 0rem 0px 0px;
width: 100%;
/* height: 600px; */
display: flex;
justify-content: center;
position: relative;
bottom: 0px;
left: 0px;
right: 0px;
}
#footerBox {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 2em 0em 5em 0em;
}
.footItems {
display: inline-block;
margin: 1rem;
cursor: pointer;
}
.footItems:first-child {
width: 250px;
height: auto;
}
#footItemsHead1 {
font-size: 1.5rem;
}
.footText {
margin: 10px 0px 0px 10px;
font-size: 1.1rem;
}
#logIn {
background-color: black;
padding: 0.8rem 1rem;
border-radius: 50px;
color: white;
display: inline-block;
margin: 10px 0px;
text-decoration: none;
}
#seeMore {
color: black;
}
.footItemsHead {
font-size: 1.3rem;
margin: 0px 0px 10px 0px;
}
#belowContent {
display: block;
width: 90%;
margin: 6rem auto 0px auto;
}
.links {
display: block;
text-decoration: none;
margin: 5px 0px;
font-size: 1rem;
color: black;
}
#connect {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0rem 0rem 0rem 0rem;
width: 100%;
}
#connecter {
display: flex;
flex-wrap: wrap;
margin: 1rem;
}
.connecting {
margin: 0px 5px;
}
.connectionIcons {
width: 36px;
height: 36px;
}
.country {
margin: 1rem;
display: flex;
font-size: 1.2rem;
border: 2px solid rgb(156, 156, 156);
border-radius: 50px;
padding: 10px 20px 10px 5px;
cursor: pointer;
}
.globe {
width: 25px;
height: 25px;
margin: 0rem 0.5rem;
}
#bottomText {
padding: 20px 0px 50px 0px;
margin: 2rem 0rem 2rem 1rem;
border-top: 1px solid rgb(182, 182, 182);
}
.footOpener {
display: none;
}
/* the below codes are to make the opening menu */
#menuHolder {
position: fixed;
top: 0px;
left: 0px;
bottom: 0px;
overflow-x: hidden;
overflow-y: scroll;
width: 0pc;
height: 100%;
z-index: 10;
background-color: white;
box-shadow: 0px 20px 50px black;
margin: auto;
transition: 0.4s;
}
#close {
position: absolute;
top: 1%;
left: 20%;
font-size: 3rem;
cursor: pointer;
font-weight: bold;
}
#menuIcon {
margin: 1rem auto 2rem auto;
display: block;
}
.bigLinks {
font-size: 2.5em;
display: block;
text-align: center;
margin: 1rem 0rem;
cursor: pointer;
}
.smallLinks {
display: block;
text-align: center;
margin: 1rem 0rem;
text-decoration: none;
color: black;
font-size: 1.2rem;
}
#firstLinks {
margin: 4rem 0rem;
}
#secondLinks {
margin: 2rem 0rem;
}
#cnBox {
display: flex;
justify-content: center;
margin-bottom: 2rem;
}
#menuCountry {
border-radius: 50px;
padding: 10px 20px;
border: 2px solid rgb(195, 195, 195);
display: inline-block;
color: rgb(92, 92, 92);
font-weight: bold;
font-size: 1.2rem;
}
/* The below code is of the button which scrolls the page to top */
#toTop {
background-color: black;
color: white;
font-weight: bolder;
font-size: 1rem;
padding: 1rem 1.2rem;
border-radius: 100%;
position: fixed;
left: 2rem;
bottom: 2rem;
z-index: 20;
cursor: pointer;
transform: rotate(-90deg);
opacity: 0;
transition: 0.5s;
visibility: hidden;
}
/* The below code is for small screens */
@media (max-width:1200px) {
#hamIcon {
margin: 3% 20px 0px 0px;
top: 0.5rem;
right: 1rem;
display: inline-block;
}
#head1,
.text {
margin: 0px 30px;
}
.text {
width: 60%;
}
#secondNav {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 1.8% 0rem 0rem 0rem;
}
#navA {
width: 18rem;
}
#footerBox {
justify-content: none;
}
.footItemsHead {
display: flex;
justify-content: space-between;
}
#btnsA {
display: none;
}
.btnB {
margin: 10px;
}
#hamIcon {
left: inherit;
right: 0px;
}
.footItems {
display: block;
width: 100%;
overflow-y: hidden;
height: 30px;
color: black;
border-bottom: 1px solid gray;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem
}
.footOpener {
transform: rotate(180deg);
display: inline-block;
margin-left: 1rem;
cursor: pointer;
}
.footItems:first-child {
width: 100%;
height: auto;
padding: 0rem 2rem;
}
.links {
margin: 1rem 0rem;
}
} | Ikea/ImagesDesignAndLogicFiles/Ikea.css | html {
scroll-behavior: smooth;
}
body {
margin: 0px;
padding: 0px;
display: flex;
flex-wrap: wrap;
justify-content: center;
overflow-x: hidden;
}
#pageHolder {
/* margin:auto; */
width: 1240px;
height: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
position: relative;
/* transition: 0.5s; */
}
header {
border-bottom: 1px solid rgb(202, 202, 202);
background-color: white;
z-index: 2;
position: relative;
top: 0px;
left: 0px;
right: 0px;
}
nav {
display: flex;
flex-wrap: wrap;
padding-top: 10px;
}
#hamIcon {
margin: 1.3rem 1rem 0px 1.5rem;
/* display: inline; */
position: fixed;
top: 0rem;
left: 0px;
z-index: 5;
/* padding: 5px; */
background-color: white;
/* border-radius: 100%; */
/* border: 1px solid black; */
}
#hamIcon:active {
border: 1px solid black;
}
#hamIcon:hover {
cursor: pointer;
}
.bar {
background-color: black;
margin: 2px;
width: 20px;
height: 3px;
border-radius: 1000px;
}
#icon {
margin: 0px 2rem 0px 20px;
}
#btnsA {
display: flex;
margin: 20px 10px 10px 10px;
}
.btnA {
margin: 0px 20px;
font-weight: bold;
font-size: 1.1rem;
}
#search {
width: auto;
height: 50px;
border-radius: 50px;
outline: none;
border: none;
padding: 0px 20px;
background-color: rgb(238, 238, 238);
margin-top: 5px;
display: flex;
}
#searcher {
font-size: 1.2rem;
outline: none;
border: none;
background-color: transparent;
}
.searchIcons {
width: 20px;
height: 20px;
margin: auto;
}
#btnsB {
margin-top: 0.5rem;
display: flex;
}
.btnB {
margin: 0.5rem 1rem;
font-weight: bold;
font-size: 1.1rem;
}
.btnB:first-child {
font-weight: normal;
border: 1px solid rgb(190, 190, 190);
padding: 10px 30px;
border-radius: 50px;
margin-top: 0px;
display: flex;
}
#location {
width: 20px;
height: 20px;
}
.topIcons {
width: 24px;
height: 24px;
}
#topText {
margin: 40px 0px 25px 20px;
font-size: 0.9rem;
}
#contentBox {
margin: 80px 0px 0px 0px;
}
#writingBox {
margin-left: 12%;
margin-bottom: 2rem;
}
#head1 {
font-size: 2rem;
font-weight: bold;
margin-bottom: 40px;
}
.text {
width: 40%;
height: auto;
font-size: 1.2rem;
color: rgb(93, 93, 93);
}
#secondNav {
display: grid;
grid-template-columns: 3fr 1.5fr;
grid-gap: 1rem;
background-color: white;
border-bottom: 1px solid rgb(212, 212, 212);
position: sticky;
top: 0rem;
left: 0rem;
right: 0rem;
padding-top: 3px;
padding-left: 3rem;
}
#navA {
display: flex;
overflow-x: scroll;
margin-top: 0.5rem;
padding: 0.5rem;
position: relative;
margin-bottom: 1rem;
border-left: 1px solid black;
border-right: 1px solid black;
}
.navA-btns {
margin: auto 0.5rem;
padding: 0.5rem 1.5rem;
border-radius: 100px;
background-color: rgb(238, 238, 238);
font-weight: 550;
cursor: pointer;
}
.navA-btns:last-child {
display: flex;
}
#filterIcon {
margin: auto;
width: 20px;
height: 20px;
}
#navB {
display: flex;
justify-content: center;
padding-top: 0px;
margin: auto 1rem auto 0rem;
padding-bottom: 1rem;
}
.navB-btns {
margin: 0rem 5px;
}
.navB-btns:first-child {
color: rgb(144, 144, 144);
}
.navB-btns:nth-child(2) {
color: black;
text-decoration: underline;
}
.navB-btns:last-child {
color: black;
text-decoration: none;
}
.navB-btns:last-child:hover {
text-decoration: underline;
}
#itemBox {
display: flex;
justify-content: center;
flex-wrap: wrap;
width: 100%;
height: auto;
padding-bottom: 20px;
border-bottom: 1px solid rgb(180, 180, 180);
margin: 2rem 0rem;
}
.item {
display: inline-block;
width: 16em;
height: 450px;
margin: 10px;
cursor: pointer;
}
.itemNav {
display: flex;
justify-content: space-between;
margin-left: -2px;
}
.tick {
width: 25px;
height: 25px;
border-radius: 100%;
background-color: transparent;
}
.itemImg {
width: 100%;
height: 250px;
}
.itemText {
font-size: 1.1rem;
}
.variantText {
margin: 0px 0px 10px 5px;
}
.variantBox {
margin: 5px 0px 20px 0px;
display: flex;
}
.variants {
width: 50px;
height: 50px;
margin: 5px;
}
.variants:hover {
cursor: pointer;
border: 1px solid black;
}
#recommend {
font-size: 2rem;
margin: 50px 0px 40px 0px;
}
#recommendBox {
display: flex;
justify-content: center;
flex-wrap: wrap;
width: 100%;
height: auto;
}
/* THe below codes are of footer */
footer {
background-color: rgb(224, 224, 224);
margin: 5rem 0rem 0px 0px;
width: 100%;
/* height: 600px; */
display: flex;
justify-content: center;
position: relative;
bottom: 0px;
left: 0px;
right: 0px;
}
#footerBox {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 2em 0em 5em 0em;
}
.footItems {
display: inline-block;
margin: 1rem;
cursor: pointer;
}
.footItems:first-child {
width: 250px;
height: auto;
}
#footItemsHead1 {
font-size: 1.5rem;
}
.footText {
margin: 10px 0px 0px 10px;
font-size: 1.1rem;
}
#logIn {
background-color: black;
padding: 0.8rem 1rem;
border-radius: 50px;
color: white;
display: inline-block;
margin: 10px 0px;
text-decoration: none;
}
#seeMore {
color: black;
}
.footItemsHead {
font-size: 1.3rem;
margin: 0px 0px 10px 0px;
}
#belowContent {
display: block;
width: 90%;
margin: 6rem auto 0px auto;
}
.links {
display: block;
text-decoration: none;
margin: 5px 0px;
font-size: 1rem;
color: black;
}
#connect {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0rem 0rem 0rem 0rem;
width: 100%;
}
#connecter {
display: flex;
flex-wrap: wrap;
margin: 1rem;
}
.connecting {
margin: 0px 5px;
}
.connectionIcons {
width: 36px;
height: 36px;
}
.country {
margin: 1rem;
display: flex;
font-size: 1.2rem;
border: 2px solid rgb(156, 156, 156);
border-radius: 50px;
padding: 10px 20px 10px 5px;
cursor: pointer;
}
.globe {
width: 25px;
height: 25px;
margin: 0rem 0.5rem;
}
#bottomText {
padding: 20px 0px 50px 0px;
margin: 2rem 0rem 2rem 1rem;
border-top: 1px solid rgb(182, 182, 182);
}
.footOpener {
display: none;
}
/* the below codes are to make the opening menu */
#menuHolder {
position: fixed;
top: 0px;
left: 0px;
bottom: 0px;
overflow-x: hidden;
overflow-y: scroll;
width: 0pc;
height: 100%;
z-index: 10;
background-color: white;
box-shadow: 0px 20px 50px black;
margin: auto;
transition: 0.4s;
}
#close {
position: absolute;
top: 1%;
left: 20%;
font-size: 3rem;
cursor: pointer;
font-weight: bold;
}
#menuIcon {
margin: 1rem auto 2rem auto;
display: block;
}
.bigLinks {
font-size: 2.5em;
display: block;
text-align: center;
margin: 1rem 0rem;
cursor: pointer;
}
.smallLinks {
display: block;
text-align: center;
margin: 1rem 0rem;
text-decoration: none;
color: black;
font-size: 1.2rem;
}
#firstLinks {
margin: 4rem 0rem;
}
#secondLinks {
margin: 2rem 0rem;
}
#cnBox {
display: flex;
justify-content: center;
margin-bottom: 2rem;
}
#menuCountry {
border-radius: 50px;
padding: 10px 20px;
border: 2px solid rgb(195, 195, 195);
display: inline-block;
color: rgb(92, 92, 92);
font-weight: bold;
font-size: 1.2rem;
}
/* The below code is of the button which scrolls the page to top */
#toTop {
background-color: black;
color: white;
font-weight: bolder;
font-size: 1rem;
padding: 1rem 1.2rem;
border-radius: 100%;
position: fixed;
left: 2rem;
bottom: 2rem;
z-index: 20;
cursor: pointer;
transform: rotate(-90deg);
opacity: 0;
transition: 0.5s;
visibility: hidden;
}
/* The below code is for small screens */
@media (max-width:1200px) {
#hamIcon {
margin: 3% 20px 0px 0px;
top: 0.5rem;
right: 1rem;
display: inline-block;
}
#head1,
.text {
margin: 0px 30px;
}
.text {
width: 60%;
}
#secondNav {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 1.8% 0rem 0rem 0rem;
}
#navA {
width: 18rem;
}
#footerBox {
justify-content: none;
}
.footItemsHead {
display: flex;
justify-content: space-between;
}
#btnsA {
display: none;
}
.btnB {
margin: 10px;
}
#hamIcon {
left: inherit;
right: 0px;
}
.footItems {
display: block;
width: 100%;
overflow-y: hidden;
height: 30px;
color: black;
border-bottom: 1px solid gray;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem
}
.footOpener {
transform: rotate(180deg);
display: inline-block;
margin-left: 1rem;
cursor: pointer;
}
.footItems:first-child {
width: 100%;
height: auto;
padding: 0rem 2rem;
}
.links {
margin: 1rem 0rem;
}
} | 0.452778 | 0.067179 |
@media(max-width:1699px) {
.email-form .select2-container { width: 100% !important; }
.sign-in-page {height: 100%;}
.sign-in-detail{height: 100%;}
.iq-search-bar .searchbox {width: 350px;}
}
@media(min-width:1300px) {
body.sidebar-main-menu .iq-top-navbar { width: calc(100% - 140px); }
body.sidebar-main-menu .iq-top-navbar.fixed-header { width: calc(100% - 80px); }
body.sidebar-main-menu .content-page { margin-right: 80px;background: #eff7f8;border-radius: 0 25px 25px 0; }
body.sidebar-main-menu .iq-sidebar-logo { width: 80px; }
body.sidebar-main-menu .iq-sidebar .iq-sidebar-menu .iq-menu li a span, body.sidebar-main-menu .iq-sidebar-logo a span, body.sidebar-main-menu .iq-sidebar-menu .iq-menu li a .badge { opacity: 0; display: none; transition: all 0.45s ease 0s; }
body.sidebar-main-menu .iq-sidebar-menu .iq-menu .iq-menu-title span { display: none; }
body.sidebar-main-menu .iq-sidebar-menu .iq-menu .iq-menu-title i { font-size: 20px; display: block; }
body.sidebar-main-menu .iq-menu-bt { opacity: 0; display: none; }
body.sidebar-main-menu .iq-sidebar { width: 80px; }
body.sidebar-main-menu .iq-sidebar-menu .iq-menu li a .iq-arrow-right { margin-left: 0; display: none; }
body.sidebar-main-menu .iq-sidebar:hover, body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-logo { width: 260px; }
body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-menu .iq-menu li a .iq-arrow-right { margin-left: 0; display: inline-block; }
body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-menu .iq-menu li a span, body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-logo a span, body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-menu .iq-menu li a .badge, body.sidebar-main-menu .iq-sidebar:hover .iq-menu-bt { opacity: 1; display: inline-block; transition: all 0.45s ease 0s; }
body.sidebar-main-menu .iq-sidebar:hover + div.content-page {margin-right: 260px;}
body.sidebar-main-menu .iq-sidebar:hover + div.content-page .iq-top-navbar{width: calc(100% - 310px);}
body.sidebar-main-menu .iq-sidebar:hover + div.content-page .iq-top-navbar.fixed-header{width: calc(100% - 260px);}
body.sidebar-main-menu .iq-sidebar .iq-submenu li a {font-size: 0; padding: 12px 15px;}
body.sidebar-main-menu .iq-sidebar:hover .iq-submenu li a {font-size: 14px;}
body.sidebar-main-menu.sidebar-main .iq-sidebar .iq-submenu li a {font-size: 14px;}
.sidebar-main .iq-sidebar .iq-submenu li a { font-size: 0; }
.sidebar-main .iq-sidebar:hover .iq-submenu li a { font-size: 14px; }
body.sidebar-main-menu.sidebar-main .iq-sidebar{width: 260px;}
body.sidebar-main-menu.sidebar-main .iq-sidebar-logo { width: 260px;}
body.sidebar-main-menu.sidebar-main .iq-menu-bt{display: block;}
body.sidebar-main-menu.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a span, body.sidebar-main-menu.sidebar-main .iq-sidebar-logo a span, body.sidebar-main-menu.sidebar-main .iq-sidebar-menu .iq-menu li a .badge{opacity: 1; display: inline-block;}
body.sidebar-main-menu.sidebar-main .content-page {margin-right: 260px;}
body.sidebar-main-menu.sidebar-main .iq-top-navbar {width: calc(100% - 310px);}
body.sidebar-main-menu.sidebar-main .iq-top-navbar.fixed-header {width: calc(100% - 260px);}
body.sidebar-main-menu.sidebar-main .iq-sidebar-menu .iq-menu li a .iq-arrow-right {margin-left: 0;display: block;}
body.sidebar-main .iq-sidebar:hover + div.content-page {margin-right: 260px;}
body.sidebar-main .iq-sidebar:hover + div.content-page .iq-top-navbar {width: calc(100% - 320px);}
body.sidebar-main .iq-sidebar:hover + div.content-page .iq-top-navbar.fixed-header {width: calc(100% - 260px);}
}
@media(max-width:1399px) {
.animation-card .an-img .bodymovin { margin-bottom: -28px; }
.animation-card .an-img { margin-top: 0; }
}
@media(max-width:1299px) {
.iq-circle-progressbar .percent { font-size: 1.3rem !important; }
.iq-circle-progressbar svg { width: 80px !important; height: 80px !important; }
.iq-circle-progressbar { margin: 0 auto; width: 80px !important; height: 80px !important; }
.content-page, body.sidebar-main .content-page { margin-right: 0; padding: 120px 0 0;border-radius: 25px; }
.iq-top-navbar, body.sidebar-main .iq-top-navbar{width: calc(100% - 35px); margin: 20px 15px;}
.iq-top-navbar.fixed-header{width: 100%; right: 0;}
.iq-footer, body.sidebar-main .iq-footer { padding: 15px 10px; margin-right: 15px; }
.iq-sidebar { display: inline-block; z-index: 99; right: -260px; }
.iq-top-navbar .iq-navbar-custom .navbar-breadcrumb { display: none; }
.iq-sidebar-logo { width: auto; }
.wrapper-menu{color: #089bab;}
.iq-menu-bt-sidebar .wrapper-menu{color: #ffffff;}
.iq-top-navbar .iq-navbar-custom .iq-menu-bt { display: inline-block; position: absolute; left: 440px; opacity: 1; color: #089bab;}
body.sidebar-main .iq-top-navbar .iq-sidebar-logo a span { opacity: 1; display: inline-block; }
body.sidebar-main .iq-sidebar { width: 260px; right: 0; z-index: 999;background: rgba(8,155,171,1);
background: -moz-linear-gradient(right, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
background: -webkit-gradient(right top, left top, color-stop(0%, rgba(8,155,171,1)), color-stop(100%, rgba(13,181,200,1)));
background: -webkit-linear-gradient(right, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
background: -o-linear-gradient(right, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
background: -ms-linear-gradient(right, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
background: linear-gradient(to left, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#089bab', endColorstr='#0db5c8', GradientType=1 ); }
body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a span { display: inline-block; opacity: 1; }
body.sidebar-main .iq-sidebar-menu .iq-menu li a .iq-arrow-right { display: inline-block; }
body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a span, body.sidebar-main .iq-sidebar-logo a span, body.sidebar-main .iq-sidebar-menu .iq-menu li a .badge {opacity: 1; display: inline-block;}
.iq-email-to-list ul li { margin: 0 0 0 2px; }
.an-img-two{ width: 600px; top: -118px;}
.iq-menu-horizontal { position: absolute; right: -100%; left: 0; width: 100%; opacity: 0; top: 100%; width: 260px; background: #fff; height: 80vh; overflow-y: scroll; overflow-x: hidden; transition: all 0.45s ease 0s; }
.iq-page-menu-horizontal.sidebar-main .iq-menu-horizontal { opacity: 1; right: 0; transition: all 0.45s ease 0s; }
.iq-menu-horizontal ul.iq-menu.d-flex { display: block !important; background: #fff; }
.iq-menu-horizontal .iq-sidebar-menu .iq-menu li a { padding: 15px 30px 15px 20px; }
.iq-menu-horizontal .iq-sidebar-menu .iq-menu li ul { position: static; box-shadow: none;}
.iq-search-bar .searchbox {width: 100%;}
.iq-right-fixed {margin: 0 15px;}
body.sidebar-main-active .iq-sidebar-logo {display: none;}
}
@media(max-width:1199px) {
.an-img-two{display: none;}
.iq-booking-no li .iq-seat { width: 35px; height: 45px; }
.iq-booking-no li { width: 4.7%; }
.iq-email-to-list { overflow-x: scroll; }
.iq-email-to-list ul li { margin: 0 0 0 5px; }
.iq-email-to-list .justify-content-between { float: right; width: 900px; }
.sign-in-from {padding: 0 30px;}
.sign-in-detail{padding: 100px 50px;}
}
@media(max-width:992px) {
.iq-menu-bt-sidebar .iq-menu-bt {display: inline-block !important; opacity: 1 !important;}
.iq-sidebar .iq-sidebar-logo{width: 100% !important;}
.an-img-two .bodymovin{display: none;}
.display-1 { font-size: 4rem; font-weight: 300; }
.display-2 { font-size: 3.5rem; font-weight: 300; }
.display-3 { font-size: 3rem; font-weight: 300; }
.display-4 { font-size: 2.5rem; font-weight: 300; }
.display-5 { font-size: 2rem; font-weight: 300; }
.display-6 { font-size: 1.5rem; font-weight: 300; }
.iq-top-navbar .navbar { position: relative; }
.iq-top-navbar .navbar-toggler { left: 85px; top: 18px; position: absolute; color: #089bab; border: none; padding: 7px 10px; border-radius: 10px; font-size: 24px; }
.navbar-collapse { position: absolute; top: 75px; right: 0; width: 100%; background: #fff; -webkit-box-shadow: 0px 5px 12px 0px rgba(55, 73, 72, 0.15); -moz-box-shadow: 0px 5px 12px 0px rgba(55, 73, 72, 0.15); box-shadow: 0px 5px 12px 0px rgba(55, 73, 72, 0.15); border-radius: 25px; }
.navbar-nav.navbar-list { float: left; display: inline-block; }
.iq-top-navbar .iq-navbar-custom .iq-menu-bt { left: 130px; top: 18px; }
.animation-card .an-img .bodymovin { margin-bottom: 0; margin-right: 0; width: 100%; }
.iq-footer, .iq-footer .col-lg-6.text-right { text-align: center !important; }
.iq-booking-index { overflow-x: scroll; }
.seat-booking { width: 980px; position: relative; }
.seat-booking .col-sm-1 { -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; width: 8.333333%; }
.seat-booking .col-sm-10 { -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; width: 83.333333%; }
.iq-booking-offer { padding: 30px; }
.offer-an-img { position: static; width: 100%; }
.sign-in-from {padding: 0 20px;}
.iq-maintenance .col-lg-4 { margin-bottom: 15px;}
.chat-data-left { position: absolute; right: 0; max-width: 320px; top: 0; z-index: 9; background: #fff; transform: translateX(100%); opacity: 0; transition: all 0.45s ease 0s; box-shadow: 0px 0px 12px 0px rgba(55, 73, 72, 0.06); overflow-y: scroll; height: 100%; }
.chat-sidebar-channel{overflow: auto; height: auto;padding-right: 0 !important;}
.chat-search {padding-right: 0 !important;}
.chat-data-left.show { transform: translateX(0); opacity: 1; transition: all 0.45s ease 0s; }
button.close-btn-res { display: block; background: transparent; border: none; font-size: 20px; font-weight: 600; position: absolute; top: 10px; right: auto; left: 0; }
.chat-head header { padding-right: 15px; }
div#sidebar-toggle{display: block;}
#sidebar-toggle { background: #ceebee; padding: 12px 10px; margin-left: 15px; border-radius: 5px; height: 40px; width: 40px; line-height: 17px; text-align: center; color: #089bab; }
#chat-user-detail-popup{overflow-y: scroll;padding-bottom: 20px;}
#user-detail-popup{overflow: scroll;}
ul.profile-img-gallary li img{width: 100%;}
.profile-feed-items li a{margin: 0 0 0 5px;}
.profile-left{order: 2;}
.profile-center{order: 1;}
.profile-right{order: 3;}
.iq-edit-profile .nav-link{font-size: 14px;}
.stepwizard-row .wizard-step a{padding: 20px 15px; margin: 10px 10px;}
.navbar-list li .caption{display: none;}
.navbar-list li img{margin-left: 0 !important;}
body.sidebar-main .iq-sidebar-logo a span{opacity: 1; display: block;}
}
@media(max-width:979px) {
.iq-circle-progressbar .percent { font-size: 2.5rem !important; }
.iq-circle-progressbar svg { width: 200px !important; height: 200px !important; }
.iq-circle-progressbar { margin: 0 auto; width: 200px !important; height: 200px !important; }
}
@media(max-width:767px) {
.table { width: 100%; max-width: 100%; margin-bottom: 1rem; display: block; overflow-x: auto; }
.display-1 { font-size: 2.5rem; font-weight: 500; }
.display-2 { font-size: 2.3rem; font-weight: 500; }
.display-3 { font-size: 2rem; font-weight: 500; }
.display-4 { font-size: 1.6rem; font-weight: 500; }
.display-5 { font-size: 1.3rem; font-weight: 500; }
.display-6 { font-size: 1rem; font-weight: 500; }
.search-box .search-input { width: 280px; }
.navbar-nav.navbar-list { display: inline-block;}
.sign-info{text-align: center;margin-bottom: 30px;}
.iq-social-media{width: 100%;}
.iq-social-media li{float: none; display: inline-block;}
.sign-in-from button {margin-top: 10px;}
.sign-in-from .custom-control.custom-checkbox {display: block !important;}
.sign-in-detail {padding: 50px 20px;}
.sign-in-from{padding: 20px;}
.iq-error h1{font-size: 12rem;}
.user-detail {margin-bottom: 15px;padding-right: 0 !important;}
.user-detail .d-flex {display: block !important; text-align: center;}
.profile-img{text-align: center; padding-left: 0 !important}
.profile-feed-items{width: 100%;justify-content: center;}
.iq-edit-profile .nav-link{border: none;}
.user-list-files.d-flex.float-right { display: block !important; text-align: center; margin-top: 30px; width: 100%; }
.table-responsive #exampleInputSearch{width: 100%;}
.wizard-step{width: 50%;}
.training-block {margin-bottom: 20px;}
.sign-in-page .sign-in-page-bg::after{left: 0;}
.sign-in-from{position: static;}
}
@media(max-width:575px) {
.navbar-list li{position: static;}
.iq-top-navbar .iq-sub-dropdown { width: 270px; left: 0; right: 0; margin: 0 auto;}
}
@media(max-width:479px) {
.display-1 { font-size: 2.0rem; font-weight: 500; }
.display-2 { font-size: 1.8rem; font-weight: 500; }
.display-3 { font-size: 1.6rem; font-weight: 500; }
.display-4 { font-size: 1.4rem; font-weight: 500; }
.display-5 { font-size: 1.2rem; font-weight: 500; }
.iq-circle-progressbar .percent { font-size: 2rem !important; }
.iq-circle-progressbar svg { width: 150px !important; height: 150px !important; }
.iq-circle-progressbar { margin: 0 auto; width: 150px !important; height: 150px !important; }
.iq-card-body { padding: 15px; }
.iq-sidebar-logo a span { display: none; }
body.sidebar-main .iq-top-navbar .iq-sidebar-logo a span { opacity: 0; display: none; }
.iq-error h1{font-size: 8rem;}
.chat-head header{overflow-x: scroll;}
#chat-user-detail-popup{width: 300px;}
.profile-feed-items{display: block !important;}
.profile-feed-items li{margin: 0 0 20px 0;}
ul.header-nav li{height: 35px; width: 35px; line-height: 35px; margin: 0 0 0 5px; font-size: 16px;}
.comment-area.p-3 > div {display: block !important;}
.comment-area.p-3 > div> div {margin-bottom: 10px;}
.profile-feed-items li a{text-align: center;}
.wizard-step{width: 100%;}
.iq-search-bar {padding: 0 15px; width: 100%; margin: 15px 0 0;}
.iq-top-navbar .navbar {display: block !important;}
.iq-top-navbar .navbar-toggler, .iq-top-navbar .iq-navbar-custom .iq-menu-bt{top: 53px;}
.navbar-collapse{top: 110px;}
.content-page, body.sidebar-main .content-page{padding: 170px 0 0;}
.iq-top-navbar .iq-sub-dropdown{width: 240px;}
}
@media(max-width:359px) { } | webapp/Application/app/static/dist/css/responsive.css | @media(max-width:1699px) {
.email-form .select2-container { width: 100% !important; }
.sign-in-page {height: 100%;}
.sign-in-detail{height: 100%;}
.iq-search-bar .searchbox {width: 350px;}
}
@media(min-width:1300px) {
body.sidebar-main-menu .iq-top-navbar { width: calc(100% - 140px); }
body.sidebar-main-menu .iq-top-navbar.fixed-header { width: calc(100% - 80px); }
body.sidebar-main-menu .content-page { margin-right: 80px;background: #eff7f8;border-radius: 0 25px 25px 0; }
body.sidebar-main-menu .iq-sidebar-logo { width: 80px; }
body.sidebar-main-menu .iq-sidebar .iq-sidebar-menu .iq-menu li a span, body.sidebar-main-menu .iq-sidebar-logo a span, body.sidebar-main-menu .iq-sidebar-menu .iq-menu li a .badge { opacity: 0; display: none; transition: all 0.45s ease 0s; }
body.sidebar-main-menu .iq-sidebar-menu .iq-menu .iq-menu-title span { display: none; }
body.sidebar-main-menu .iq-sidebar-menu .iq-menu .iq-menu-title i { font-size: 20px; display: block; }
body.sidebar-main-menu .iq-menu-bt { opacity: 0; display: none; }
body.sidebar-main-menu .iq-sidebar { width: 80px; }
body.sidebar-main-menu .iq-sidebar-menu .iq-menu li a .iq-arrow-right { margin-left: 0; display: none; }
body.sidebar-main-menu .iq-sidebar:hover, body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-logo { width: 260px; }
body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-menu .iq-menu li a .iq-arrow-right { margin-left: 0; display: inline-block; }
body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-menu .iq-menu li a span, body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-logo a span, body.sidebar-main-menu .iq-sidebar:hover .iq-sidebar-menu .iq-menu li a .badge, body.sidebar-main-menu .iq-sidebar:hover .iq-menu-bt { opacity: 1; display: inline-block; transition: all 0.45s ease 0s; }
body.sidebar-main-menu .iq-sidebar:hover + div.content-page {margin-right: 260px;}
body.sidebar-main-menu .iq-sidebar:hover + div.content-page .iq-top-navbar{width: calc(100% - 310px);}
body.sidebar-main-menu .iq-sidebar:hover + div.content-page .iq-top-navbar.fixed-header{width: calc(100% - 260px);}
body.sidebar-main-menu .iq-sidebar .iq-submenu li a {font-size: 0; padding: 12px 15px;}
body.sidebar-main-menu .iq-sidebar:hover .iq-submenu li a {font-size: 14px;}
body.sidebar-main-menu.sidebar-main .iq-sidebar .iq-submenu li a {font-size: 14px;}
.sidebar-main .iq-sidebar .iq-submenu li a { font-size: 0; }
.sidebar-main .iq-sidebar:hover .iq-submenu li a { font-size: 14px; }
body.sidebar-main-menu.sidebar-main .iq-sidebar{width: 260px;}
body.sidebar-main-menu.sidebar-main .iq-sidebar-logo { width: 260px;}
body.sidebar-main-menu.sidebar-main .iq-menu-bt{display: block;}
body.sidebar-main-menu.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a span, body.sidebar-main-menu.sidebar-main .iq-sidebar-logo a span, body.sidebar-main-menu.sidebar-main .iq-sidebar-menu .iq-menu li a .badge{opacity: 1; display: inline-block;}
body.sidebar-main-menu.sidebar-main .content-page {margin-right: 260px;}
body.sidebar-main-menu.sidebar-main .iq-top-navbar {width: calc(100% - 310px);}
body.sidebar-main-menu.sidebar-main .iq-top-navbar.fixed-header {width: calc(100% - 260px);}
body.sidebar-main-menu.sidebar-main .iq-sidebar-menu .iq-menu li a .iq-arrow-right {margin-left: 0;display: block;}
body.sidebar-main .iq-sidebar:hover + div.content-page {margin-right: 260px;}
body.sidebar-main .iq-sidebar:hover + div.content-page .iq-top-navbar {width: calc(100% - 320px);}
body.sidebar-main .iq-sidebar:hover + div.content-page .iq-top-navbar.fixed-header {width: calc(100% - 260px);}
}
@media(max-width:1399px) {
.animation-card .an-img .bodymovin { margin-bottom: -28px; }
.animation-card .an-img { margin-top: 0; }
}
@media(max-width:1299px) {
.iq-circle-progressbar .percent { font-size: 1.3rem !important; }
.iq-circle-progressbar svg { width: 80px !important; height: 80px !important; }
.iq-circle-progressbar { margin: 0 auto; width: 80px !important; height: 80px !important; }
.content-page, body.sidebar-main .content-page { margin-right: 0; padding: 120px 0 0;border-radius: 25px; }
.iq-top-navbar, body.sidebar-main .iq-top-navbar{width: calc(100% - 35px); margin: 20px 15px;}
.iq-top-navbar.fixed-header{width: 100%; right: 0;}
.iq-footer, body.sidebar-main .iq-footer { padding: 15px 10px; margin-right: 15px; }
.iq-sidebar { display: inline-block; z-index: 99; right: -260px; }
.iq-top-navbar .iq-navbar-custom .navbar-breadcrumb { display: none; }
.iq-sidebar-logo { width: auto; }
.wrapper-menu{color: #089bab;}
.iq-menu-bt-sidebar .wrapper-menu{color: #ffffff;}
.iq-top-navbar .iq-navbar-custom .iq-menu-bt { display: inline-block; position: absolute; left: 440px; opacity: 1; color: #089bab;}
body.sidebar-main .iq-top-navbar .iq-sidebar-logo a span { opacity: 1; display: inline-block; }
body.sidebar-main .iq-sidebar { width: 260px; right: 0; z-index: 999;background: rgba(8,155,171,1);
background: -moz-linear-gradient(right, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
background: -webkit-gradient(right top, left top, color-stop(0%, rgba(8,155,171,1)), color-stop(100%, rgba(13,181,200,1)));
background: -webkit-linear-gradient(right, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
background: -o-linear-gradient(right, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
background: -ms-linear-gradient(right, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
background: linear-gradient(to left, rgba(8,155,171,1) 0%, rgba(13,181,200,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#089bab', endColorstr='#0db5c8', GradientType=1 ); }
body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a span { display: inline-block; opacity: 1; }
body.sidebar-main .iq-sidebar-menu .iq-menu li a .iq-arrow-right { display: inline-block; }
body.sidebar-main .iq-sidebar .iq-sidebar-menu .iq-menu li a span, body.sidebar-main .iq-sidebar-logo a span, body.sidebar-main .iq-sidebar-menu .iq-menu li a .badge {opacity: 1; display: inline-block;}
.iq-email-to-list ul li { margin: 0 0 0 2px; }
.an-img-two{ width: 600px; top: -118px;}
.iq-menu-horizontal { position: absolute; right: -100%; left: 0; width: 100%; opacity: 0; top: 100%; width: 260px; background: #fff; height: 80vh; overflow-y: scroll; overflow-x: hidden; transition: all 0.45s ease 0s; }
.iq-page-menu-horizontal.sidebar-main .iq-menu-horizontal { opacity: 1; right: 0; transition: all 0.45s ease 0s; }
.iq-menu-horizontal ul.iq-menu.d-flex { display: block !important; background: #fff; }
.iq-menu-horizontal .iq-sidebar-menu .iq-menu li a { padding: 15px 30px 15px 20px; }
.iq-menu-horizontal .iq-sidebar-menu .iq-menu li ul { position: static; box-shadow: none;}
.iq-search-bar .searchbox {width: 100%;}
.iq-right-fixed {margin: 0 15px;}
body.sidebar-main-active .iq-sidebar-logo {display: none;}
}
@media(max-width:1199px) {
.an-img-two{display: none;}
.iq-booking-no li .iq-seat { width: 35px; height: 45px; }
.iq-booking-no li { width: 4.7%; }
.iq-email-to-list { overflow-x: scroll; }
.iq-email-to-list ul li { margin: 0 0 0 5px; }
.iq-email-to-list .justify-content-between { float: right; width: 900px; }
.sign-in-from {padding: 0 30px;}
.sign-in-detail{padding: 100px 50px;}
}
@media(max-width:992px) {
.iq-menu-bt-sidebar .iq-menu-bt {display: inline-block !important; opacity: 1 !important;}
.iq-sidebar .iq-sidebar-logo{width: 100% !important;}
.an-img-two .bodymovin{display: none;}
.display-1 { font-size: 4rem; font-weight: 300; }
.display-2 { font-size: 3.5rem; font-weight: 300; }
.display-3 { font-size: 3rem; font-weight: 300; }
.display-4 { font-size: 2.5rem; font-weight: 300; }
.display-5 { font-size: 2rem; font-weight: 300; }
.display-6 { font-size: 1.5rem; font-weight: 300; }
.iq-top-navbar .navbar { position: relative; }
.iq-top-navbar .navbar-toggler { left: 85px; top: 18px; position: absolute; color: #089bab; border: none; padding: 7px 10px; border-radius: 10px; font-size: 24px; }
.navbar-collapse { position: absolute; top: 75px; right: 0; width: 100%; background: #fff; -webkit-box-shadow: 0px 5px 12px 0px rgba(55, 73, 72, 0.15); -moz-box-shadow: 0px 5px 12px 0px rgba(55, 73, 72, 0.15); box-shadow: 0px 5px 12px 0px rgba(55, 73, 72, 0.15); border-radius: 25px; }
.navbar-nav.navbar-list { float: left; display: inline-block; }
.iq-top-navbar .iq-navbar-custom .iq-menu-bt { left: 130px; top: 18px; }
.animation-card .an-img .bodymovin { margin-bottom: 0; margin-right: 0; width: 100%; }
.iq-footer, .iq-footer .col-lg-6.text-right { text-align: center !important; }
.iq-booking-index { overflow-x: scroll; }
.seat-booking { width: 980px; position: relative; }
.seat-booking .col-sm-1 { -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; width: 8.333333%; }
.seat-booking .col-sm-10 { -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; width: 83.333333%; }
.iq-booking-offer { padding: 30px; }
.offer-an-img { position: static; width: 100%; }
.sign-in-from {padding: 0 20px;}
.iq-maintenance .col-lg-4 { margin-bottom: 15px;}
.chat-data-left { position: absolute; right: 0; max-width: 320px; top: 0; z-index: 9; background: #fff; transform: translateX(100%); opacity: 0; transition: all 0.45s ease 0s; box-shadow: 0px 0px 12px 0px rgba(55, 73, 72, 0.06); overflow-y: scroll; height: 100%; }
.chat-sidebar-channel{overflow: auto; height: auto;padding-right: 0 !important;}
.chat-search {padding-right: 0 !important;}
.chat-data-left.show { transform: translateX(0); opacity: 1; transition: all 0.45s ease 0s; }
button.close-btn-res { display: block; background: transparent; border: none; font-size: 20px; font-weight: 600; position: absolute; top: 10px; right: auto; left: 0; }
.chat-head header { padding-right: 15px; }
div#sidebar-toggle{display: block;}
#sidebar-toggle { background: #ceebee; padding: 12px 10px; margin-left: 15px; border-radius: 5px; height: 40px; width: 40px; line-height: 17px; text-align: center; color: #089bab; }
#chat-user-detail-popup{overflow-y: scroll;padding-bottom: 20px;}
#user-detail-popup{overflow: scroll;}
ul.profile-img-gallary li img{width: 100%;}
.profile-feed-items li a{margin: 0 0 0 5px;}
.profile-left{order: 2;}
.profile-center{order: 1;}
.profile-right{order: 3;}
.iq-edit-profile .nav-link{font-size: 14px;}
.stepwizard-row .wizard-step a{padding: 20px 15px; margin: 10px 10px;}
.navbar-list li .caption{display: none;}
.navbar-list li img{margin-left: 0 !important;}
body.sidebar-main .iq-sidebar-logo a span{opacity: 1; display: block;}
}
@media(max-width:979px) {
.iq-circle-progressbar .percent { font-size: 2.5rem !important; }
.iq-circle-progressbar svg { width: 200px !important; height: 200px !important; }
.iq-circle-progressbar { margin: 0 auto; width: 200px !important; height: 200px !important; }
}
@media(max-width:767px) {
.table { width: 100%; max-width: 100%; margin-bottom: 1rem; display: block; overflow-x: auto; }
.display-1 { font-size: 2.5rem; font-weight: 500; }
.display-2 { font-size: 2.3rem; font-weight: 500; }
.display-3 { font-size: 2rem; font-weight: 500; }
.display-4 { font-size: 1.6rem; font-weight: 500; }
.display-5 { font-size: 1.3rem; font-weight: 500; }
.display-6 { font-size: 1rem; font-weight: 500; }
.search-box .search-input { width: 280px; }
.navbar-nav.navbar-list { display: inline-block;}
.sign-info{text-align: center;margin-bottom: 30px;}
.iq-social-media{width: 100%;}
.iq-social-media li{float: none; display: inline-block;}
.sign-in-from button {margin-top: 10px;}
.sign-in-from .custom-control.custom-checkbox {display: block !important;}
.sign-in-detail {padding: 50px 20px;}
.sign-in-from{padding: 20px;}
.iq-error h1{font-size: 12rem;}
.user-detail {margin-bottom: 15px;padding-right: 0 !important;}
.user-detail .d-flex {display: block !important; text-align: center;}
.profile-img{text-align: center; padding-left: 0 !important}
.profile-feed-items{width: 100%;justify-content: center;}
.iq-edit-profile .nav-link{border: none;}
.user-list-files.d-flex.float-right { display: block !important; text-align: center; margin-top: 30px; width: 100%; }
.table-responsive #exampleInputSearch{width: 100%;}
.wizard-step{width: 50%;}
.training-block {margin-bottom: 20px;}
.sign-in-page .sign-in-page-bg::after{left: 0;}
.sign-in-from{position: static;}
}
@media(max-width:575px) {
.navbar-list li{position: static;}
.iq-top-navbar .iq-sub-dropdown { width: 270px; left: 0; right: 0; margin: 0 auto;}
}
@media(max-width:479px) {
.display-1 { font-size: 2.0rem; font-weight: 500; }
.display-2 { font-size: 1.8rem; font-weight: 500; }
.display-3 { font-size: 1.6rem; font-weight: 500; }
.display-4 { font-size: 1.4rem; font-weight: 500; }
.display-5 { font-size: 1.2rem; font-weight: 500; }
.iq-circle-progressbar .percent { font-size: 2rem !important; }
.iq-circle-progressbar svg { width: 150px !important; height: 150px !important; }
.iq-circle-progressbar { margin: 0 auto; width: 150px !important; height: 150px !important; }
.iq-card-body { padding: 15px; }
.iq-sidebar-logo a span { display: none; }
body.sidebar-main .iq-top-navbar .iq-sidebar-logo a span { opacity: 0; display: none; }
.iq-error h1{font-size: 8rem;}
.chat-head header{overflow-x: scroll;}
#chat-user-detail-popup{width: 300px;}
.profile-feed-items{display: block !important;}
.profile-feed-items li{margin: 0 0 20px 0;}
ul.header-nav li{height: 35px; width: 35px; line-height: 35px; margin: 0 0 0 5px; font-size: 16px;}
.comment-area.p-3 > div {display: block !important;}
.comment-area.p-3 > div> div {margin-bottom: 10px;}
.profile-feed-items li a{text-align: center;}
.wizard-step{width: 100%;}
.iq-search-bar {padding: 0 15px; width: 100%; margin: 15px 0 0;}
.iq-top-navbar .navbar {display: block !important;}
.iq-top-navbar .navbar-toggler, .iq-top-navbar .iq-navbar-custom .iq-menu-bt{top: 53px;}
.navbar-collapse{top: 110px;}
.content-page, body.sidebar-main .content-page{padding: 170px 0 0;}
.iq-top-navbar .iq-sub-dropdown{width: 240px;}
}
@media(max-width:359px) { } | 0.323594 | 0.039527 |
height: inherit; }
#btn-dashboard.highlight {
border: 4px solid red; }
#fvtt-party-goodies-dashboard {
height: auto;
min-height: 120px;
width: auto; }
#fvtt-party-goodies-dashboard .version {
color: #aaa;
position: absolute;
top: 7px;
left: 50%;
transform: translateX(-50%);
pointer-events: none; }
#fvtt-party-goodies-dashboard .window-content > p {
display: flex;
flex: initial;
justify-content: center; }
#fvtt-party-goodies-dashboard .window-content .new-resource-form-btn {
max-height: 2rem; }
#fvtt-party-goodies-dashboard .window-content .resources {
display: flex;
flex: initial;
flex-wrap: wrap;
justify-content: flex-start; }
#fvtt-party-goodies-dashboard .window-content .resources a {
color: #555;
text-decoration: none; }
#fvtt-party-goodies-dashboard .window-content .resources a:hover {
background-color: #ccc;
text-shadow: none; }
#fvtt-party-goodies-dashboard .window-content .resources .resource {
text-align: center;
margin: 4px;
min-width: 175px; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .gm-actions {
border: 1px solid grey;
border-top: none;
display: grid;
grid-template-columns: auto auto auto; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .gm-actions .gm-action {
padding: 2px 0; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .gm-actions .gm-action:not(:last-child) {
border-right: 1px solid grey; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info {
border: 1px solid grey;
margin: 0;
padding: 8px 0;
position: relative; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info .value {
font-size: 1.2rem; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info .name {
margin: 0 auto;
width: 130px;
word-wrap: break-word; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info p {
margin: 0; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info p a.change-value {
align-items: center;
display: flex;
height: 100%;
line-height: 50%;
padding: 0 4px;
position: absolute;
top: 0; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info p a.change-value.add {
border-left: 1px solid grey;
right: 0;
color: green; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info p a.change-value.subtract {
border-right: 1px solid grey;
left: 0;
color: red; } | styles/dashboard.css | height: inherit; }
#btn-dashboard.highlight {
border: 4px solid red; }
#fvtt-party-goodies-dashboard {
height: auto;
min-height: 120px;
width: auto; }
#fvtt-party-goodies-dashboard .version {
color: #aaa;
position: absolute;
top: 7px;
left: 50%;
transform: translateX(-50%);
pointer-events: none; }
#fvtt-party-goodies-dashboard .window-content > p {
display: flex;
flex: initial;
justify-content: center; }
#fvtt-party-goodies-dashboard .window-content .new-resource-form-btn {
max-height: 2rem; }
#fvtt-party-goodies-dashboard .window-content .resources {
display: flex;
flex: initial;
flex-wrap: wrap;
justify-content: flex-start; }
#fvtt-party-goodies-dashboard .window-content .resources a {
color: #555;
text-decoration: none; }
#fvtt-party-goodies-dashboard .window-content .resources a:hover {
background-color: #ccc;
text-shadow: none; }
#fvtt-party-goodies-dashboard .window-content .resources .resource {
text-align: center;
margin: 4px;
min-width: 175px; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .gm-actions {
border: 1px solid grey;
border-top: none;
display: grid;
grid-template-columns: auto auto auto; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .gm-actions .gm-action {
padding: 2px 0; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .gm-actions .gm-action:not(:last-child) {
border-right: 1px solid grey; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info {
border: 1px solid grey;
margin: 0;
padding: 8px 0;
position: relative; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info .value {
font-size: 1.2rem; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info .name {
margin: 0 auto;
width: 130px;
word-wrap: break-word; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info p {
margin: 0; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info p a.change-value {
align-items: center;
display: flex;
height: 100%;
line-height: 50%;
padding: 0 4px;
position: absolute;
top: 0; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info p a.change-value.add {
border-left: 1px solid grey;
right: 0;
color: green; }
#fvtt-party-goodies-dashboard .window-content .resources .resource .info p a.change-value.subtract {
border-right: 1px solid grey;
left: 0;
color: red; } | 0.458591 | 0.035779 |
body {
zoom: 170%;
background-image: url("../img/background-mine.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: #DDDDDD;
text-align: center;
/* disable text selection */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
h1 {
text-align: center;
font-size: 25px;
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
}
select {
display: inline;
outline: none;
font-family: 'Courier New', Courier, monospace;
background-color: #4f4e81;
color: #DDDDDD;
font-size: 15px;
font-weight: bold;
list-style: square;
}
.hint>*, .life>* {
display: inline;
margin: 0;
padding: 0;
}
.hint {
display: inline-block;
cursor: pointer;
}
.lighted {
transition: 0.5s;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
button {
font-family: 'Courier New', Courier, monospace;
cursor: pointer;
margin: 12px;
font-size: 22px;
background-color: lightblue;
outline: none;
color: #FFFFFF;
background: #232323;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
button.bottom {
font-size: 20px;
text-overflow: clip;
}
.life {
display: inline;
margin: 0;
margin-left: -4px;
padding: 0;
font-weight: 100;
}
.score {
font-family: Courier, monospace;
color: white;
display: inline-block;
position: relative;
width: 35%;
margin-top: 10px;
/* top: 140px;
left: 600px; */
border-radius: 30%;
background-color: #49b9ac99;
font-weight: bold;
color: white;
text-shadow: 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
table {
margin: 0 auto;
/* disable text selection so the user can't see what is hidden behind the td's */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-collapse: separate;
border-spacing: 1px;
}
.board {
margin-left: auto;
margin-right: auto;
}
.board td {
border: 2px solid rgb(185, 184, 233);
background: #4f4e81;
width: 22px;
height: 22px;
text-align: center;
color: transparent;
cursor: pointer;
object-fit: cover;
}
.board td:hover {
background-color: #625db6;
}
.board td.clicked {
transition: 0.3s;
background: #333333;
color: currentColor;
}
.board td.mine {
background: #FF0000;
color: currentColor;
}
.board td.marked {
transition: 0.5s;
background-color: rgb(21, 114, 114);
color: currentColor;
}
.timer {
display: inline-block;
position: fixed;
top: 20px;
right: 20px;
width: 200px;
height: 80px;
background-color: rgb(79, 212, 157);
margin: 15px auto;
color: rgb(20, 110, 73);
border-radius: 30%;
text-align: center;
line-height: 40px;
font-size: 25px;
font-weight: bold;
box-shadow: 10px 10px 15px #625db6;
visibility: hidden;
font-family: 'Courier New', Courier, monospace;
/* made with css generator */
color: #FFFFFF;
background: #22445f;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
.modal {
display: inline-block;
position: fixed;
top: 20px;
left: 20px;
width: 200px;
height: 80px;
max-height: 100px;
background-color: rgb(79, 212, 157);
margin: 15px auto;
color: rgb(20, 110, 73);
border-radius: 30%;
text-align: center;
line-height: 40px;
font-size: 25px;
font-weight: bold;
box-shadow: 10px 10px 15px #625db6;
visibility: hidden;
font-family: 'Courier New', Courier, monospace;
/* made with css generator */
color: #FFFFFF;
background: #22445f;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
.safe {
transition: 0.7s;
box-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
/* MODAL */
@keyframes myAnimation {
0% {
opacity: 0;
transform: rotateX(90deg);
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.animated {
animation-name: myAnimation;
animation-duration: 2000ms;
animation-fill-mode: forwards;
} | projs/minesweeper/css/style.css | body {
zoom: 170%;
background-image: url("../img/background-mine.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: #DDDDDD;
text-align: center;
/* disable text selection */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
h1 {
text-align: center;
font-size: 25px;
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
}
select {
display: inline;
outline: none;
font-family: 'Courier New', Courier, monospace;
background-color: #4f4e81;
color: #DDDDDD;
font-size: 15px;
font-weight: bold;
list-style: square;
}
.hint>*, .life>* {
display: inline;
margin: 0;
padding: 0;
}
.hint {
display: inline-block;
cursor: pointer;
}
.lighted {
transition: 0.5s;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
button {
font-family: 'Courier New', Courier, monospace;
cursor: pointer;
margin: 12px;
font-size: 22px;
background-color: lightblue;
outline: none;
color: #FFFFFF;
background: #232323;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
button.bottom {
font-size: 20px;
text-overflow: clip;
}
.life {
display: inline;
margin: 0;
margin-left: -4px;
padding: 0;
font-weight: 100;
}
.score {
font-family: Courier, monospace;
color: white;
display: inline-block;
position: relative;
width: 35%;
margin-top: 10px;
/* top: 140px;
left: 600px; */
border-radius: 30%;
background-color: #49b9ac99;
font-weight: bold;
color: white;
text-shadow: 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
table {
margin: 0 auto;
/* disable text selection so the user can't see what is hidden behind the td's */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-collapse: separate;
border-spacing: 1px;
}
.board {
margin-left: auto;
margin-right: auto;
}
.board td {
border: 2px solid rgb(185, 184, 233);
background: #4f4e81;
width: 22px;
height: 22px;
text-align: center;
color: transparent;
cursor: pointer;
object-fit: cover;
}
.board td:hover {
background-color: #625db6;
}
.board td.clicked {
transition: 0.3s;
background: #333333;
color: currentColor;
}
.board td.mine {
background: #FF0000;
color: currentColor;
}
.board td.marked {
transition: 0.5s;
background-color: rgb(21, 114, 114);
color: currentColor;
}
.timer {
display: inline-block;
position: fixed;
top: 20px;
right: 20px;
width: 200px;
height: 80px;
background-color: rgb(79, 212, 157);
margin: 15px auto;
color: rgb(20, 110, 73);
border-radius: 30%;
text-align: center;
line-height: 40px;
font-size: 25px;
font-weight: bold;
box-shadow: 10px 10px 15px #625db6;
visibility: hidden;
font-family: 'Courier New', Courier, monospace;
/* made with css generator */
color: #FFFFFF;
background: #22445f;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
.modal {
display: inline-block;
position: fixed;
top: 20px;
left: 20px;
width: 200px;
height: 80px;
max-height: 100px;
background-color: rgb(79, 212, 157);
margin: 15px auto;
color: rgb(20, 110, 73);
border-radius: 30%;
text-align: center;
line-height: 40px;
font-size: 25px;
font-weight: bold;
box-shadow: 10px 10px 15px #625db6;
visibility: hidden;
font-family: 'Courier New', Courier, monospace;
/* made with css generator */
color: #FFFFFF;
background: #22445f;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
.safe {
transition: 0.7s;
box-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
}
/* MODAL */
@keyframes myAnimation {
0% {
opacity: 0;
transform: rotateX(90deg);
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.animated {
animation-name: myAnimation;
animation-duration: 2000ms;
animation-fill-mode: forwards;
} | 0.345105 | 0.0686 |
html,
body {
width: 100%;
height: 100%;
}
* {
font-size: 0.9rem;
}
html {
font-size: 20px;
}
.inline-block {
display: inline-block;
}
#app {
position: absolute;
left: 0px;
top: 0px;
bottom: 0px;
right: 0px;
width: auto !important;
height: auto !important;
/* min-width: 1200px;
min-height: 700px; */
box-sizing: border-box;
/* overflow: auto; */
}
/* 垂直居中 start*/
.vertical-middle-c {
text-align: center;
}
.vertical-middle-c:after {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.vertical-middle {
display: inline-block;
width: 99%;
vertical-align: middle;
}
/* 垂直居中 end*/
/* 弹性盒start */
.flex {
display: flex;
}
.flex-column {
flex-direction: column;
}
.justify-center {
justify-content: center;
}
.align-center{
align-items: center;
}
.space-between {
justify-content: space-between;
}
.space-around {
justify-content: space-around;
}
.flex-basis {
flex: 1;
}
/* 弹性盒end */
/* crt start */
.scaleZoom {
transform-origin: left top;
}
/* crt end */
/* 基础信息样式start */
.section-left .SKRINK,
.section-left .shrinkNav {
top: 0px;
}
.section-left .shrinkNav {
right: auto;
left: 0px;
margin-left: -50px;
}
.section-left .SKRINK {
right: 100%;
margin-right: 10px;
}
/* 基础信息样式end */
/* 地图容器样式start */
.max-container {
position: absolute;
left: 0px;
top: 0px;
margin-right: 1.563%;
margin-bottom: 1.51%;
}
.map-container {
width: 100%;
height: 100%;
}
.map-index .max-container{
/* 数据总览 */
right: 23.125%;
bottom: 21.851%;
}
.map-index .partsClose{
right: 23.125%;
}
.map-emergency .max-container {
/* 应急保障 */
bottom: 0px;
margin-bottom: 1.042%;
right: 25.75rem;
margin-right: 0px;
}
.map-emergency .partsClose{
right: 25.75rem;
}
.map-emergency.map-emergency-big .max-container,.map-emergency.map-emergency-big .partsClose{
/* 应急保障(侧边栏折叠时) */
right: 1rem;
}
.map-emergency.map-emergency-big .emshrinkNav {
/* 应急保障(侧边栏折叠时)--侧边栏样式 */
right: 1rem;
top: 5.8rem
}
.map-shelter .max-container {
/* 宣教应急 */
right: 24.4rem;
bottom: 0px;
}
.map-shelter .partsClose{
/* 宣教应急 */
right: 24.4rem;
}
.map-normal .max-container {
/* 其他页面 */
right: 25.469%;
bottom: 26.852%;
}
.map-normal .partsClose{
/* 其他页面 */
right: 25.469%;
}
.max-container #container {
/* 地图 */
width: 100%;
height: 100%;
z-index: 4;
}
/* 地图容器样式end */
/* 侧边栏样式start */
.section-left>.Z-border,
.section-bottom>.Z-border {
position: absolute;
/* overflow: hidden; */
}
.section-left>.Z-border>div:nth-last-of-type(1),
.section-bottom>.Z-border>div:nth-last-of-type(1) {
height: 100%;
}
.section-left>.Z-border,
.section-bottom>.Z-border {
position: absolute;
padding: 5px 10px;
box-sizing: border-box;
}
.backboxContainer {
height: calc(100% - 2rem);
margin-top: 0.5rem;
}
/* 右边 */
.section-left>.Z-border {
/* 间距9px */
width: 25.469%;
right: 1.042%;
}
.section-left>.Z-border:nth-last-of-type(1) {
bottom: 0px;
margin-bottom: 1.042%;
}
.section-left>.Z-border:nth-last-of-type(2) {
margin-bottom: 1.510%;
}
.section-left>.Z-border:nth-last-of-type(3) {
margin-bottom: 1.979%;
}
.section-left>.Z-border:nth-last-of-type(4) {
margin-bottom: 2.448%;
}
.section-left>.Z-border:nth-last-of-type(5){
margin-bottom: 3.218%;
}
/* 底部 */
.section-bottom>.Z-border {
/* 间距10px */
width: 23.646%;
height: 26.852%;
bottom: 0px;
margin-bottom: 1.042%;
}
.section-bottom>.Z-border:nth-of-type(1) {
left: 0px;
margin-left: 1.042%;
}
.section-bottom>.Z-border:nth-of-type(2) {
margin-left: 1.563%;
}
.section-bottom>.Z-border:nth-of-type(3) {
margin-left: 2.083%;
}
.section-bottom>.Z-border:nth-of-type(4) {
margin-left: 2.604%;
}
/* 侧边栏样式end */
/* 形如能耗监管start */
.half-bottom.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(1) {
right: 27.032%;
width: auto;
}
/* 形如能耗监管end */
/* 形如校园生活start */
.section-left>.Z-border:nth-last-of-type(1):nth-of-type(3) {
height: 26.852%;
}
.section-left>.Z-border:nth-last-of-type(2):nth-of-type(2) {
height: 36.296%;
bottom: 26.852%;
}
.section-left>.Z-border:nth-last-of-type(3):nth-of-type(1) {
height: 25.093%;
bottom: 63.148%;
}
.section-bottom>.Z-border:nth-last-of-type(2):nth-of-type(2) {
left: 23.646%;
}
.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(3) {
left: 47.292%;
}
/* 形如校园生活end */
/* 形如校园消防start */
.half-left.section-left>.Z-border:nth-last-of-type(1):nth-of-type(2) {
height: 36.296%;
bottom: 26.852%;
margin-bottom: 1.563%;
}
.half-left.section-left>.Z-border:nth-last-of-type(2):nth-of-type(1) {
height: 25.093%;
bottom: 64.19%;
}
.full-bottom.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(2) {
left: 23.646%;
right: 1.042%;
width: auto;
}
/* 形如校园消防end */
/* 形如校园安防start */
.section-left>.Z-border:nth-last-of-type(1):nth-of-type(2) {
height: 63.951%;
bottom: 0px;
}
.section-left>.Z-border:nth-last-of-type(2):nth-of-type(1) {
height: 25.093%;
bottom: 64.19%;
}
.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(2) {
left: 23.646%;
right: 27.032%;
width: auto;
}
/* 形如校园安防end */
/* 形如数据安全start */
.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(1) {
width: auto;
right: 1.042%;
}
/* 形如数据安全end */
/* 如用电安全star */
.safety-left>.Z-border:nth-last-of-type(1):nth-of-type(5) {
height: 26.852%;
bottom: 0px;
}
.safety-left>.Z-border:nth-last-of-type(2):nth-of-type(4) {
height: 18.333%;
bottom: 26.852%;
}
.safety-left>.Z-border:nth-last-of-type(3):nth-of-type(3) {
height: 13.148%;
bottom: 45.185%;
}
.safety-left>.Z-border:nth-last-of-type(4):nth-of-type(2) {
height: 12.5%;
bottom: 58.333%;
}
.safety-left>.Z-border:nth-last-of-type(5):nth-of-type(1) {
height: 16.759%;
bottom: 70.833%;
}
.safety-bottom>.Z-border:nth-last-of-type(1):nth-of-type(1){
width: 72%;
right: 1.042%;
}
/* 如用电安全end */
/* 轮播 */
.el-carousel__container {
height: 100% !important;
}
/* 表格 */
.visible-table.el-table,
.visible-table.el-table * {
overflow: visible !important;
}
.el-table tr .cell,
.el-table tr th div,
.el-table--border tr td:first-child .cell,
.el-table--border tr th:first-child .cell {
padding-left: 0.5rem;
}
.el-table tr .cell,
.el-table tr th div {
padding-right: 0.5rem;
}
/* 视频错误提示 */
.vjs-error .vjs-error-display .vjs-modal-dialog-content {
word-break: break-all;
}
.el-time-panel__content::after,
.el-time-panel__content::before {
margin: 0px !important;
padding: 0px !important;
}
.el-message {
min-width: 15rem !important;
padding: 0.75rem 0.75rem 0.75rem 1rem !important;
}
.el-message__icon {
margin-right: 0.5rem !important;
}
.el-message__content {
font-size: 0.9rem !important;
line-height: 1.2;
} | src/assets/styles/selfAdaption.css | html,
body {
width: 100%;
height: 100%;
}
* {
font-size: 0.9rem;
}
html {
font-size: 20px;
}
.inline-block {
display: inline-block;
}
#app {
position: absolute;
left: 0px;
top: 0px;
bottom: 0px;
right: 0px;
width: auto !important;
height: auto !important;
/* min-width: 1200px;
min-height: 700px; */
box-sizing: border-box;
/* overflow: auto; */
}
/* 垂直居中 start*/
.vertical-middle-c {
text-align: center;
}
.vertical-middle-c:after {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.vertical-middle {
display: inline-block;
width: 99%;
vertical-align: middle;
}
/* 垂直居中 end*/
/* 弹性盒start */
.flex {
display: flex;
}
.flex-column {
flex-direction: column;
}
.justify-center {
justify-content: center;
}
.align-center{
align-items: center;
}
.space-between {
justify-content: space-between;
}
.space-around {
justify-content: space-around;
}
.flex-basis {
flex: 1;
}
/* 弹性盒end */
/* crt start */
.scaleZoom {
transform-origin: left top;
}
/* crt end */
/* 基础信息样式start */
.section-left .SKRINK,
.section-left .shrinkNav {
top: 0px;
}
.section-left .shrinkNav {
right: auto;
left: 0px;
margin-left: -50px;
}
.section-left .SKRINK {
right: 100%;
margin-right: 10px;
}
/* 基础信息样式end */
/* 地图容器样式start */
.max-container {
position: absolute;
left: 0px;
top: 0px;
margin-right: 1.563%;
margin-bottom: 1.51%;
}
.map-container {
width: 100%;
height: 100%;
}
.map-index .max-container{
/* 数据总览 */
right: 23.125%;
bottom: 21.851%;
}
.map-index .partsClose{
right: 23.125%;
}
.map-emergency .max-container {
/* 应急保障 */
bottom: 0px;
margin-bottom: 1.042%;
right: 25.75rem;
margin-right: 0px;
}
.map-emergency .partsClose{
right: 25.75rem;
}
.map-emergency.map-emergency-big .max-container,.map-emergency.map-emergency-big .partsClose{
/* 应急保障(侧边栏折叠时) */
right: 1rem;
}
.map-emergency.map-emergency-big .emshrinkNav {
/* 应急保障(侧边栏折叠时)--侧边栏样式 */
right: 1rem;
top: 5.8rem
}
.map-shelter .max-container {
/* 宣教应急 */
right: 24.4rem;
bottom: 0px;
}
.map-shelter .partsClose{
/* 宣教应急 */
right: 24.4rem;
}
.map-normal .max-container {
/* 其他页面 */
right: 25.469%;
bottom: 26.852%;
}
.map-normal .partsClose{
/* 其他页面 */
right: 25.469%;
}
.max-container #container {
/* 地图 */
width: 100%;
height: 100%;
z-index: 4;
}
/* 地图容器样式end */
/* 侧边栏样式start */
.section-left>.Z-border,
.section-bottom>.Z-border {
position: absolute;
/* overflow: hidden; */
}
.section-left>.Z-border>div:nth-last-of-type(1),
.section-bottom>.Z-border>div:nth-last-of-type(1) {
height: 100%;
}
.section-left>.Z-border,
.section-bottom>.Z-border {
position: absolute;
padding: 5px 10px;
box-sizing: border-box;
}
.backboxContainer {
height: calc(100% - 2rem);
margin-top: 0.5rem;
}
/* 右边 */
.section-left>.Z-border {
/* 间距9px */
width: 25.469%;
right: 1.042%;
}
.section-left>.Z-border:nth-last-of-type(1) {
bottom: 0px;
margin-bottom: 1.042%;
}
.section-left>.Z-border:nth-last-of-type(2) {
margin-bottom: 1.510%;
}
.section-left>.Z-border:nth-last-of-type(3) {
margin-bottom: 1.979%;
}
.section-left>.Z-border:nth-last-of-type(4) {
margin-bottom: 2.448%;
}
.section-left>.Z-border:nth-last-of-type(5){
margin-bottom: 3.218%;
}
/* 底部 */
.section-bottom>.Z-border {
/* 间距10px */
width: 23.646%;
height: 26.852%;
bottom: 0px;
margin-bottom: 1.042%;
}
.section-bottom>.Z-border:nth-of-type(1) {
left: 0px;
margin-left: 1.042%;
}
.section-bottom>.Z-border:nth-of-type(2) {
margin-left: 1.563%;
}
.section-bottom>.Z-border:nth-of-type(3) {
margin-left: 2.083%;
}
.section-bottom>.Z-border:nth-of-type(4) {
margin-left: 2.604%;
}
/* 侧边栏样式end */
/* 形如能耗监管start */
.half-bottom.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(1) {
right: 27.032%;
width: auto;
}
/* 形如能耗监管end */
/* 形如校园生活start */
.section-left>.Z-border:nth-last-of-type(1):nth-of-type(3) {
height: 26.852%;
}
.section-left>.Z-border:nth-last-of-type(2):nth-of-type(2) {
height: 36.296%;
bottom: 26.852%;
}
.section-left>.Z-border:nth-last-of-type(3):nth-of-type(1) {
height: 25.093%;
bottom: 63.148%;
}
.section-bottom>.Z-border:nth-last-of-type(2):nth-of-type(2) {
left: 23.646%;
}
.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(3) {
left: 47.292%;
}
/* 形如校园生活end */
/* 形如校园消防start */
.half-left.section-left>.Z-border:nth-last-of-type(1):nth-of-type(2) {
height: 36.296%;
bottom: 26.852%;
margin-bottom: 1.563%;
}
.half-left.section-left>.Z-border:nth-last-of-type(2):nth-of-type(1) {
height: 25.093%;
bottom: 64.19%;
}
.full-bottom.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(2) {
left: 23.646%;
right: 1.042%;
width: auto;
}
/* 形如校园消防end */
/* 形如校园安防start */
.section-left>.Z-border:nth-last-of-type(1):nth-of-type(2) {
height: 63.951%;
bottom: 0px;
}
.section-left>.Z-border:nth-last-of-type(2):nth-of-type(1) {
height: 25.093%;
bottom: 64.19%;
}
.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(2) {
left: 23.646%;
right: 27.032%;
width: auto;
}
/* 形如校园安防end */
/* 形如数据安全start */
.section-bottom>.Z-border:nth-last-of-type(1):nth-of-type(1) {
width: auto;
right: 1.042%;
}
/* 形如数据安全end */
/* 如用电安全star */
.safety-left>.Z-border:nth-last-of-type(1):nth-of-type(5) {
height: 26.852%;
bottom: 0px;
}
.safety-left>.Z-border:nth-last-of-type(2):nth-of-type(4) {
height: 18.333%;
bottom: 26.852%;
}
.safety-left>.Z-border:nth-last-of-type(3):nth-of-type(3) {
height: 13.148%;
bottom: 45.185%;
}
.safety-left>.Z-border:nth-last-of-type(4):nth-of-type(2) {
height: 12.5%;
bottom: 58.333%;
}
.safety-left>.Z-border:nth-last-of-type(5):nth-of-type(1) {
height: 16.759%;
bottom: 70.833%;
}
.safety-bottom>.Z-border:nth-last-of-type(1):nth-of-type(1){
width: 72%;
right: 1.042%;
}
/* 如用电安全end */
/* 轮播 */
.el-carousel__container {
height: 100% !important;
}
/* 表格 */
.visible-table.el-table,
.visible-table.el-table * {
overflow: visible !important;
}
.el-table tr .cell,
.el-table tr th div,
.el-table--border tr td:first-child .cell,
.el-table--border tr th:first-child .cell {
padding-left: 0.5rem;
}
.el-table tr .cell,
.el-table tr th div {
padding-right: 0.5rem;
}
/* 视频错误提示 */
.vjs-error .vjs-error-display .vjs-modal-dialog-content {
word-break: break-all;
}
.el-time-panel__content::after,
.el-time-panel__content::before {
margin: 0px !important;
padding: 0px !important;
}
.el-message {
min-width: 15rem !important;
padding: 0.75rem 0.75rem 0.75rem 1rem !important;
}
.el-message__icon {
margin-right: 0.5rem !important;
}
.el-message__content {
font-size: 0.9rem !important;
line-height: 1.2;
} | 0.322953 | 0.07946 |
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
* {
box-sizing: border-box;
}
/* initilizing margin padding and border-box */
body {
margin: 0px;
padding: 0px;
}
/* aligned text at center and defined color */
header h1 {
text-align: center;
color: #293845;
}
/* defined color for background and some padding */
header {
background-color: #8dd7cf;
padding: 50px;
}
/* defining some properties anchor tags in navigation bar */
nav a {
color: black;
text-decoration: none;
padding: 3px;
margin: 2px 23px;
}
/* defining some properties on hover state of anchor tags of navigation bar */
nav a:hover {
font-size: 15px;
color: #80b8b2;
}
/* Setting left margin to 0px and left border none with other border 1px width solid instyle and color #c3cfd9 */
nav input {
margin-left: 0px;
border: 1px solid #c3cfd9;
border-left: none;
}
/* making border curve 4px b'coz! other borders must match with input type submit to make a perfect search bar. */
nav input[type="search"] {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
/* defining height and width 23px for making it match with input type search. With margin -5px removing space b/w both input some color right border none background color, a search image icon with no-repeat and other lft border curvs */
nav input[type="submit"] {
height: 23px;
width: 23px;
margin-right: -5px;
border-right: none;
background-color: #ffffff;
background-repeat: no-repeat;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
/* making it flex to reduce complexity of some states */
.flex-container {
border-top: 1px solid #788896;
border-bottom: 1px solid #788896;
display: flex;
flex-wrap: wrap;
align-content: center;
background-color: #c3cfd9;
padding: 10px;
}
/* defining border some color and left margin to align that specific div at left of navigation bar. */
#flex-items5 {
border: 1px solid #adbbc6;
margin-left: 560px;
}
/* All css codes which starts with @media, Those code are only for maintaining theresponsiveness of website on diffrent devices having diffrent width of screen. */
@media screen and (min-width: 791px) {
#toggler {
visibility: hidden;
}
}
@media screen and (max-width: 1340px) and (min-width: 1181px) {
#flex-items5 {
margin-left: 400px;
}
}
@media screen and (max-width: 1180px) and (min-width: 1164px) {
#flex-items5 {
margin-left: 300px;
}
}
@media screen and (max-width:1164px) and (min-width:1011px) {
#flex-items5 {
margin-left: 230px;
}
}
@media screen and (max-width: 1011px) and (min-width: 996px) {
#flex-items5 {
margin-left: 100px;
}
}
@media screen and (max-width:995px) and (min-width:787px) {
#flex-items5 {
margin-left: 5px;
}
}
/* making it hamburger menu at specific screen width. */
@media screen and (max-width:790px) and (min-width:50px) {
.flex-container {
display: flex;
flex-direction: column;
align-content: flex-start;
float: left;
background-color: #8dd7d000;
border: hidden;
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.flex-container #flex-items5{
margin-top: 56px;
}
.flex-container #flex-items1, .flex-container #flex-items2, .flex-container #flex-items3, .flex-container #flex-items4 {
margin-left: 35px;
opacity: 0;
}
.flex-container #toggler {
position: absolute;
top: 0;
left: 0;
z-index: 2;
cursor: pointer;
height: 50px;
width: 50px;
opacity: 0;
}
.flex-container .hamburger {
position: absolute;
top: 0;
left: 0;
z-index: 1;
height: 60px;
width: 60px;
padding: 16px;
margin-top: 3px;
background-color: #8dd7cf;
}
/* hamburger lines */
.flex-container .hamburger>div {
position: relative;
width: 100%;
height: 2px;
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
}
/* top and bottom lines */
.flex-container .hamburger>div::before, .flex-container .hamburger>div::after {
content: '';
position: absolute;
z-index: 1;
top: -10px;
width: 100%;
height: 2px;
background-color: inherit;
}
/* moves a line to the bottom */
.flex-container .hamburger>div::after {
top: 10px;
}
.flex-container #toggler:checked+ .flex-container .flex-items{
opacity: 1;
}
/* toggler animation */
.flex-container #toggler:checked+.hamburger>div {
transform: rotate(135deg);
}
/* Turn line into X */
.flex-container #toggler:checked+.hamburger>div::before, .flex-container #toggler:checked+.hamburger>div::after {
top: 0;
transform: rotate(90deg);
}
#flex-items5 {
margin-left: 5px;
}
#flex-items0 {
width: 32px;
height: 32px;
background-color: rgba(0, 0, 0, 0);
}
#flex-items0 input[type="checkbox"] {
width: 33px;
height: 33px;
position: absolute;
top: 0;
left: 0;
opacity: 0;
z-index: 2;
margin-left: 13px;
}
}
footer .flex-container0 {
border-top: 1px solid #788896;
border-bottom: 1px solid #788896;
display: flex;
flex-wrap: wrap;
align-content: center;
background-color: #c3cfd9;
padding: 10px;
padding-top: 100px;
}
/* making it flex to reduce complexity of social section and specific stages */
footer .social {
border-top: 1px solid #788896;
border-bottom: 1px solid #788896;
display: flex;
flex-wrap: wrap;
align-content: center;
background-color: #c3cfd9;
padding: 10px;
}
/* maintaining a safe distance b/w icon. */
footer .social .social-icon {
margin-left: 40px;
}
/* setting image for instagram */
footer .social #instagram {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/instagram.svg");
}
/* For twitter */
footer .social #twitter {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/twitter.svg");
}
/* For facebook */
footer .social #facebook {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/facebook.svg");
}
/* For github */
footer .social #github {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/github.svg");
}
/* For linkdin */
footer .social #linkdin {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/linkedin.svg");
}
/* For mail */
footer .social #mail {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/mail.svg");
}
/* defining some properties on anchor tags in footer */
footer a {
color: black;
text-decoration: none;
padding: 3px;
margin: 2px 23px;
}
/* defining some properties on hover state of anchor tags of navigation bar */
footer a:hover {
font-size: 15px;
color: #80b8b2;
}
/* adding some padding at the top of copyright area. */
footer .flex-container {
padding-top: 103px;
}
/* adding some bottom margin and align at right */
footer .flex-container0 .copyright {
margin-left: 500px;
margin-bottom: 10px;
font-size: 10px;
}
@media screen and (max-width:1309px) and (min-width:1158px) {
footer .flex-container0 .copyright {
margin-left: 350px;
}
}
@media screen and (max-width:978px) and (min-width:50px) {
footer .flex-container0 .copyright {
padding-top: 10px;
margin-left: 60px;
}
}
/* new css for hamburger */
:root {
--dark-background-color: #8dd7cf;
--light-background-color: #d1dfeb98;
--ot-color: #788896;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
line-height: 1.4;
}
header {
background-color: var(--dark-background-color);
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 200px;
}
header h2 {
color: #293845;
font-size: 2rem;
}
.container {
max-width: 960px;
margin: auto;
overflow: hidden;
padding: 0 3rem;
}
.showcase {
background-color: var(--dark-background-color);
color: #fff;
height: 100vh;
position: relative;
}
.showcase::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.showcase .showcase-inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
height: 100%;
}
.showcase h1 {
font-size: 4rem;
}
.showcase p {
font-size: 1.3rem;
}
.btn {
display: inline;
border: none;
background-color: var(--dark-background-color);
color: #fff;
padding: 0.75rem 1.5rem;
margin-top: 1rem;
text-decoration: none;
transition: opacity 1s ease-in;
}
.btn:hover {
opacity: 0.7;
}
/* navigation bar alignment at normal width */
.menu-wrap {
border-top: 2px solid #788896;
border-bottom: 2px solid #788896;
background-color: #c3cfd9;
padding: 10px;
padding-top: 0px;
}
.menu-wrap .toggler {
visibility: hidden;
}
.menu-wrap .menu>div>div>ul {
display: flex;
flex-direction: row;
}
.menu-wrap .menu>div>div>ul>li {
list-style: none;
padding-top: 3px;
padding-bottom: 6px;
padding-left: 60px;
}
.menu-wrap .menu>div>div>ul>li>a {
color: #43515e;
font-weight: bolder;
text-decoration: none;
}
.menu-wrap #search {
border: 1px solid #b9c6d0;
border-radius: 7px;
position: absolute;
top: 224px;
right: 20px;
}
@media screen and (max-width:1250px) and (min-width:1180px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 50px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1182px) and (min-width:1135px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 48px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1136px) and (min-width:1093px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 46px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1095px) and (min-width:1053px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 44px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1055px) and (min-width:1011px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 42px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1015px) and (min-width:976px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 40px;
transition: padding 0.9s ease;
}
}
/* making hamburger menu at a specific screen width */
@media screen and (max-width:978px) and (min-width:50px) {
/* started menu's css from here */
.menu-wrap {
background-color: #d1dfeb00;
border: none;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.menu-wrap #search {
position: absolute;
top: 20px;
right: -638px;
}
.menu-wrap .toggler {
visibility: visible;
position: absolute;
top: 0;
left: 0;
z-index: 2;
cursor: pointer;
width: 50px;
height: 50px;
opacity: 0;
}
.menu-wrap .toggler:checked+ .hamburger{
background-color: #d1dfeb00;
}
.menu-wrap .hamburger {
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 60px;
height: 60px;
padding: 1rem;
background-color:#d1dfeb00;
display: flex;
align-items: center;
justify-content: center;
}
.menu-wrap .hamburger>div {
position: relative;
width: 100%;
height: 2px;
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s ease;
}
.menu-wrap .hamburger>div::before, .menu-wrap .hamburger>div::after {
content: '';
position: absolute;
z-index: 1;
top: -10px;
width: 100%;
height: 2px;
background-color: #fff;
}
.menu-wrap .hamburger>div::after {
top: 10px;
}
.menu-wrap .toggler:checked+.hamburger>div {
transform: rotate(135deg);
}
.menu-wrap .toggler:checked+.hamburger>div::before, .menu-wrap .toggler:checked+.hamburger>div:after {
top: 0;
transform: rotate(90deg);
}
.menu-wrap .toggler:checked:hover+.hamburger>div {
transform: rotate(225deg);
}
.menu-wrap .toggler:checked~.menu {
visibility: visible;
}
.menu-wrap .toggler:checked~.menu>div {
transform: scale(1);
transition-duration: 0.5s;
}
.menu-wrap .toggler:checked~.menu>div>div {
opacity: 1;
transition: opacity 0.4s ease;
}
.menu-wrap .menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
visibility: hidden;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.menu-wrap .menu>div {
background-color: var(--light-background-color);
border-radius: 50%;
width: 200vw;
height: 200vw;
display: flex;
flex: none;
align-items: center;
justify-content: center;
transform: scale(0);
transition: all 0.4s ease;
}
.menu-wrap .menu>div>div {
text-align: center;
max-width: 90vw;
max-height: 100vh;
opacity: 0;
transition: opacity 0.5s ease;
}
.menu-wrap .menu>div>div>ul {
display: flex;
flex-direction: column;
}
.menu-wrap .menu>div>div>ul>li {
list-style: none;
color: #fff;
font-size: 1rem;
padding: 1rem;
}
.menu-wrap .menu>div>div>ul>li>a {
color: #43515e;
text-decoration: none;
transition: color 0.54s ease;
}
} | assets/css/nav-footer.css | @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
* {
box-sizing: border-box;
}
/* initilizing margin padding and border-box */
body {
margin: 0px;
padding: 0px;
}
/* aligned text at center and defined color */
header h1 {
text-align: center;
color: #293845;
}
/* defined color for background and some padding */
header {
background-color: #8dd7cf;
padding: 50px;
}
/* defining some properties anchor tags in navigation bar */
nav a {
color: black;
text-decoration: none;
padding: 3px;
margin: 2px 23px;
}
/* defining some properties on hover state of anchor tags of navigation bar */
nav a:hover {
font-size: 15px;
color: #80b8b2;
}
/* Setting left margin to 0px and left border none with other border 1px width solid instyle and color #c3cfd9 */
nav input {
margin-left: 0px;
border: 1px solid #c3cfd9;
border-left: none;
}
/* making border curve 4px b'coz! other borders must match with input type submit to make a perfect search bar. */
nav input[type="search"] {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
/* defining height and width 23px for making it match with input type search. With margin -5px removing space b/w both input some color right border none background color, a search image icon with no-repeat and other lft border curvs */
nav input[type="submit"] {
height: 23px;
width: 23px;
margin-right: -5px;
border-right: none;
background-color: #ffffff;
background-repeat: no-repeat;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
/* making it flex to reduce complexity of some states */
.flex-container {
border-top: 1px solid #788896;
border-bottom: 1px solid #788896;
display: flex;
flex-wrap: wrap;
align-content: center;
background-color: #c3cfd9;
padding: 10px;
}
/* defining border some color and left margin to align that specific div at left of navigation bar. */
#flex-items5 {
border: 1px solid #adbbc6;
margin-left: 560px;
}
/* All css codes which starts with @media, Those code are only for maintaining theresponsiveness of website on diffrent devices having diffrent width of screen. */
@media screen and (min-width: 791px) {
#toggler {
visibility: hidden;
}
}
@media screen and (max-width: 1340px) and (min-width: 1181px) {
#flex-items5 {
margin-left: 400px;
}
}
@media screen and (max-width: 1180px) and (min-width: 1164px) {
#flex-items5 {
margin-left: 300px;
}
}
@media screen and (max-width:1164px) and (min-width:1011px) {
#flex-items5 {
margin-left: 230px;
}
}
@media screen and (max-width: 1011px) and (min-width: 996px) {
#flex-items5 {
margin-left: 100px;
}
}
@media screen and (max-width:995px) and (min-width:787px) {
#flex-items5 {
margin-left: 5px;
}
}
/* making it hamburger menu at specific screen width. */
@media screen and (max-width:790px) and (min-width:50px) {
.flex-container {
display: flex;
flex-direction: column;
align-content: flex-start;
float: left;
background-color: #8dd7d000;
border: hidden;
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.flex-container #flex-items5{
margin-top: 56px;
}
.flex-container #flex-items1, .flex-container #flex-items2, .flex-container #flex-items3, .flex-container #flex-items4 {
margin-left: 35px;
opacity: 0;
}
.flex-container #toggler {
position: absolute;
top: 0;
left: 0;
z-index: 2;
cursor: pointer;
height: 50px;
width: 50px;
opacity: 0;
}
.flex-container .hamburger {
position: absolute;
top: 0;
left: 0;
z-index: 1;
height: 60px;
width: 60px;
padding: 16px;
margin-top: 3px;
background-color: #8dd7cf;
}
/* hamburger lines */
.flex-container .hamburger>div {
position: relative;
width: 100%;
height: 2px;
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
}
/* top and bottom lines */
.flex-container .hamburger>div::before, .flex-container .hamburger>div::after {
content: '';
position: absolute;
z-index: 1;
top: -10px;
width: 100%;
height: 2px;
background-color: inherit;
}
/* moves a line to the bottom */
.flex-container .hamburger>div::after {
top: 10px;
}
.flex-container #toggler:checked+ .flex-container .flex-items{
opacity: 1;
}
/* toggler animation */
.flex-container #toggler:checked+.hamburger>div {
transform: rotate(135deg);
}
/* Turn line into X */
.flex-container #toggler:checked+.hamburger>div::before, .flex-container #toggler:checked+.hamburger>div::after {
top: 0;
transform: rotate(90deg);
}
#flex-items5 {
margin-left: 5px;
}
#flex-items0 {
width: 32px;
height: 32px;
background-color: rgba(0, 0, 0, 0);
}
#flex-items0 input[type="checkbox"] {
width: 33px;
height: 33px;
position: absolute;
top: 0;
left: 0;
opacity: 0;
z-index: 2;
margin-left: 13px;
}
}
footer .flex-container0 {
border-top: 1px solid #788896;
border-bottom: 1px solid #788896;
display: flex;
flex-wrap: wrap;
align-content: center;
background-color: #c3cfd9;
padding: 10px;
padding-top: 100px;
}
/* making it flex to reduce complexity of social section and specific stages */
footer .social {
border-top: 1px solid #788896;
border-bottom: 1px solid #788896;
display: flex;
flex-wrap: wrap;
align-content: center;
background-color: #c3cfd9;
padding: 10px;
}
/* maintaining a safe distance b/w icon. */
footer .social .social-icon {
margin-left: 40px;
}
/* setting image for instagram */
footer .social #instagram {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/instagram.svg");
}
/* For twitter */
footer .social #twitter {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/twitter.svg");
}
/* For facebook */
footer .social #facebook {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/facebook.svg");
}
/* For github */
footer .social #github {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/github.svg");
}
/* For linkdin */
footer .social #linkdin {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/linkedin.svg");
}
/* For mail */
footer .social #mail {
width: 33px;
height: 33px;
background-repeat: no-repeat;
background-image: url("../../src/icons/social/mail.svg");
}
/* defining some properties on anchor tags in footer */
footer a {
color: black;
text-decoration: none;
padding: 3px;
margin: 2px 23px;
}
/* defining some properties on hover state of anchor tags of navigation bar */
footer a:hover {
font-size: 15px;
color: #80b8b2;
}
/* adding some padding at the top of copyright area. */
footer .flex-container {
padding-top: 103px;
}
/* adding some bottom margin and align at right */
footer .flex-container0 .copyright {
margin-left: 500px;
margin-bottom: 10px;
font-size: 10px;
}
@media screen and (max-width:1309px) and (min-width:1158px) {
footer .flex-container0 .copyright {
margin-left: 350px;
}
}
@media screen and (max-width:978px) and (min-width:50px) {
footer .flex-container0 .copyright {
padding-top: 10px;
margin-left: 60px;
}
}
/* new css for hamburger */
:root {
--dark-background-color: #8dd7cf;
--light-background-color: #d1dfeb98;
--ot-color: #788896;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
line-height: 1.4;
}
header {
background-color: var(--dark-background-color);
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 200px;
}
header h2 {
color: #293845;
font-size: 2rem;
}
.container {
max-width: 960px;
margin: auto;
overflow: hidden;
padding: 0 3rem;
}
.showcase {
background-color: var(--dark-background-color);
color: #fff;
height: 100vh;
position: relative;
}
.showcase::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.showcase .showcase-inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
height: 100%;
}
.showcase h1 {
font-size: 4rem;
}
.showcase p {
font-size: 1.3rem;
}
.btn {
display: inline;
border: none;
background-color: var(--dark-background-color);
color: #fff;
padding: 0.75rem 1.5rem;
margin-top: 1rem;
text-decoration: none;
transition: opacity 1s ease-in;
}
.btn:hover {
opacity: 0.7;
}
/* navigation bar alignment at normal width */
.menu-wrap {
border-top: 2px solid #788896;
border-bottom: 2px solid #788896;
background-color: #c3cfd9;
padding: 10px;
padding-top: 0px;
}
.menu-wrap .toggler {
visibility: hidden;
}
.menu-wrap .menu>div>div>ul {
display: flex;
flex-direction: row;
}
.menu-wrap .menu>div>div>ul>li {
list-style: none;
padding-top: 3px;
padding-bottom: 6px;
padding-left: 60px;
}
.menu-wrap .menu>div>div>ul>li>a {
color: #43515e;
font-weight: bolder;
text-decoration: none;
}
.menu-wrap #search {
border: 1px solid #b9c6d0;
border-radius: 7px;
position: absolute;
top: 224px;
right: 20px;
}
@media screen and (max-width:1250px) and (min-width:1180px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 50px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1182px) and (min-width:1135px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 48px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1136px) and (min-width:1093px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 46px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1095px) and (min-width:1053px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 44px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1055px) and (min-width:1011px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 42px;
transition: padding 0.9s ease;
}
}
@media screen and (max-width: 1015px) and (min-width:976px) {
.menu-wrap .menu>div>div>ul>li {
padding-left: 40px;
transition: padding 0.9s ease;
}
}
/* making hamburger menu at a specific screen width */
@media screen and (max-width:978px) and (min-width:50px) {
/* started menu's css from here */
.menu-wrap {
background-color: #d1dfeb00;
border: none;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.menu-wrap #search {
position: absolute;
top: 20px;
right: -638px;
}
.menu-wrap .toggler {
visibility: visible;
position: absolute;
top: 0;
left: 0;
z-index: 2;
cursor: pointer;
width: 50px;
height: 50px;
opacity: 0;
}
.menu-wrap .toggler:checked+ .hamburger{
background-color: #d1dfeb00;
}
.menu-wrap .hamburger {
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 60px;
height: 60px;
padding: 1rem;
background-color:#d1dfeb00;
display: flex;
align-items: center;
justify-content: center;
}
.menu-wrap .hamburger>div {
position: relative;
width: 100%;
height: 2px;
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s ease;
}
.menu-wrap .hamburger>div::before, .menu-wrap .hamburger>div::after {
content: '';
position: absolute;
z-index: 1;
top: -10px;
width: 100%;
height: 2px;
background-color: #fff;
}
.menu-wrap .hamburger>div::after {
top: 10px;
}
.menu-wrap .toggler:checked+.hamburger>div {
transform: rotate(135deg);
}
.menu-wrap .toggler:checked+.hamburger>div::before, .menu-wrap .toggler:checked+.hamburger>div:after {
top: 0;
transform: rotate(90deg);
}
.menu-wrap .toggler:checked:hover+.hamburger>div {
transform: rotate(225deg);
}
.menu-wrap .toggler:checked~.menu {
visibility: visible;
}
.menu-wrap .toggler:checked~.menu>div {
transform: scale(1);
transition-duration: 0.5s;
}
.menu-wrap .toggler:checked~.menu>div>div {
opacity: 1;
transition: opacity 0.4s ease;
}
.menu-wrap .menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
visibility: hidden;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.menu-wrap .menu>div {
background-color: var(--light-background-color);
border-radius: 50%;
width: 200vw;
height: 200vw;
display: flex;
flex: none;
align-items: center;
justify-content: center;
transform: scale(0);
transition: all 0.4s ease;
}
.menu-wrap .menu>div>div {
text-align: center;
max-width: 90vw;
max-height: 100vh;
opacity: 0;
transition: opacity 0.5s ease;
}
.menu-wrap .menu>div>div>ul {
display: flex;
flex-direction: column;
}
.menu-wrap .menu>div>div>ul>li {
list-style: none;
color: #fff;
font-size: 1rem;
padding: 1rem;
}
.menu-wrap .menu>div>div>ul>li>a {
color: #43515e;
text-decoration: none;
transition: color 0.54s ease;
}
} | 0.449876 | 0.12595 |
.manage-trigger-control .help-col {
padding: 30px;
padding-top: 100px;
}
.manage-trigger-control .main-col {
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
}
.manage-trigger-control strong {
margin-bottom: 10px;
display: block;
}
.manage-trigger-control .namespace-avatar {
margin-right: 4px;
width: 24px;
vertical-align: middle;
}
.manage-trigger-control .importance-col {
text-align: center;
width: 120px;
}
.manage-trigger-control .co-top-bar {
margin-top: 20px;
height: 28px;
}
@media (max-width: 768px) {
.manage-trigger-control .co-top-bar {
margin-bottom: 80px;
}
}
.manage-trigger-control .namespace-avatar {
margin-left: 2px;
margin-right: 2px;
display: inline-block;
}
.manage-trigger-control .service-icon {
font-size: 24px;
margin-right: 4px;
vertical-align: middle;
}
.manage-trigger-control .fa-exclamation-triangle {
color: #FCA657;
}
.manage-trigger-control .empty-description {
color: #ccc;
}
.manage-trigger-control .radio, .manage-trigger-control .checkbox {
margin-bottom: 20px;
}
.manage-trigger-control .radio input[type="radio"],
.manage-trigger-control .checkbox input[type="checkbox"] {
padding: 4px;
}
.manage-trigger-control .radio label .title,
.manage-trigger-control .checkbox label .title {
font-size: 16px;
}
.manage-trigger-control .radio label .weak,
.manage-trigger-control .checkbox label .weak {
font-weight: 300;
}
.manage-trigger-control .radio label .description,
.manage-trigger-control .checkbox label .description {
margin-top: 6px;
color: #aaa;
}
.manage-trigger-control .radio label .extended,
.manage-trigger-control .checkbox label .extended {
margin-top: 20px;
}
.manage-trigger-control .radio label td:first-child,
.manage-trigger-control .checkbox label td:first-child {
vertical-align: top;
padding: 4px;
padding-right: 10px;
}
.manage-trigger-control .regex-match-view {
margin-top: 20px;
}
.manage-trigger-control h3 .fa {
margin-right: 4px;
}
.manage-trigger-control h3.warning {
color: #FCA657;
}
.manage-trigger-control h3.error {
color: #D64456;
}
.manage-trigger-control .success {
color: #2FC98E !important;
}
.manage-trigger-control .nowrap-col {
white-space: nowrap;
}
.manage-trigger-control .custom-template-list {
border-bottom: 1px solid #eee;
padding-bottom: 14px;
margin: 14px;
margin-bottom: 4px;
}
.manage-trigger-control .custom-template-list li i.fa {
margin-left: 4px;
cursor: pointer;
color: #aaa;
}
.manage-trigger-control .custom-template-list li i.fa:hover {
color: black;
}
.manage-trigger-control .enter-template {
padding: 10px;
}
.manage-trigger-control .enter-template input[type="text"] {
display: inline-block;
width: 50%;
margin-left: 10px;
font-size: 12px;
height: 30px;
}
.manage-trigger-control .enter-template button {
font-size: 12px;
}
.manage-trigger-control .empty {
margin-left: 10px;
color: #ccc;
} | static/css/directives/ui/manage-trigger-control.css | .manage-trigger-control .help-col {
padding: 30px;
padding-top: 100px;
}
.manage-trigger-control .main-col {
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
}
.manage-trigger-control strong {
margin-bottom: 10px;
display: block;
}
.manage-trigger-control .namespace-avatar {
margin-right: 4px;
width: 24px;
vertical-align: middle;
}
.manage-trigger-control .importance-col {
text-align: center;
width: 120px;
}
.manage-trigger-control .co-top-bar {
margin-top: 20px;
height: 28px;
}
@media (max-width: 768px) {
.manage-trigger-control .co-top-bar {
margin-bottom: 80px;
}
}
.manage-trigger-control .namespace-avatar {
margin-left: 2px;
margin-right: 2px;
display: inline-block;
}
.manage-trigger-control .service-icon {
font-size: 24px;
margin-right: 4px;
vertical-align: middle;
}
.manage-trigger-control .fa-exclamation-triangle {
color: #FCA657;
}
.manage-trigger-control .empty-description {
color: #ccc;
}
.manage-trigger-control .radio, .manage-trigger-control .checkbox {
margin-bottom: 20px;
}
.manage-trigger-control .radio input[type="radio"],
.manage-trigger-control .checkbox input[type="checkbox"] {
padding: 4px;
}
.manage-trigger-control .radio label .title,
.manage-trigger-control .checkbox label .title {
font-size: 16px;
}
.manage-trigger-control .radio label .weak,
.manage-trigger-control .checkbox label .weak {
font-weight: 300;
}
.manage-trigger-control .radio label .description,
.manage-trigger-control .checkbox label .description {
margin-top: 6px;
color: #aaa;
}
.manage-trigger-control .radio label .extended,
.manage-trigger-control .checkbox label .extended {
margin-top: 20px;
}
.manage-trigger-control .radio label td:first-child,
.manage-trigger-control .checkbox label td:first-child {
vertical-align: top;
padding: 4px;
padding-right: 10px;
}
.manage-trigger-control .regex-match-view {
margin-top: 20px;
}
.manage-trigger-control h3 .fa {
margin-right: 4px;
}
.manage-trigger-control h3.warning {
color: #FCA657;
}
.manage-trigger-control h3.error {
color: #D64456;
}
.manage-trigger-control .success {
color: #2FC98E !important;
}
.manage-trigger-control .nowrap-col {
white-space: nowrap;
}
.manage-trigger-control .custom-template-list {
border-bottom: 1px solid #eee;
padding-bottom: 14px;
margin: 14px;
margin-bottom: 4px;
}
.manage-trigger-control .custom-template-list li i.fa {
margin-left: 4px;
cursor: pointer;
color: #aaa;
}
.manage-trigger-control .custom-template-list li i.fa:hover {
color: black;
}
.manage-trigger-control .enter-template {
padding: 10px;
}
.manage-trigger-control .enter-template input[type="text"] {
display: inline-block;
width: 50%;
margin-left: 10px;
font-size: 12px;
height: 30px;
}
.manage-trigger-control .enter-template button {
font-size: 12px;
}
.manage-trigger-control .empty {
margin-left: 10px;
color: #ccc;
} | 0.448909 | 0.070144 |
/* Material Design */
.btn:after {
content:none;
}
.btn {
box-shadow: 0 1px 4px rgba(0,0,0,0.4);
border-radius: 2px;
-webkit-transition: box-shadow 0.15s linear;
-o-transition: box-shadow 0.15s linear;
transition: box-shadow 0.15s linear;
}
.btn:active, .btn:hover {
box-shadow:0 2px 8px rgba(0,0,0,0.4);
}
.fullwidthMD, .footer-top, .footer-bottom,.document-title {
box-shadow: 0 1.5px 6px rgba(0,0,0,0.9);
}
.boxMD {
box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.boxMD, .boxMD .card-row-inner, .boxMD .card-row {
border-radius: 3px;
}
.contact-info .fa {
background-color: #1290d3;
color: #fff;
border: none;
box-shadow: 0 1.25px 5px rgba(0,0,0,0.4);
-webkit-transition: box-shadow 0.15s linear;
-o-transition: box-shadow 0.15s linear;
transition: box-shadow 0.15s linear;
}
.contact-info a:hover .fa {
box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
#mce-EMAIL {
border: none;
border-radius: 3px;
background-color: rgba(0,0,0,0.15);
color: #fafafa;
}
#feedback-form .form-group input, #feedback-form .form-group textarea {
border: none !important;
background-color: #f1f1f1;
margin-top: 5px;
border-radius: 3px;
color: #555555;
box-shadow: none;
}
#feedback-form .form-group input:focus, #feedback-form .form-group textarea:focus {
background-color: #f6f6f6;
}
/* Head */
.document-title {
-webkit-transition: all 0.1s linear;
-o-transition: all 0.1s linear;
transition: all 0.1s linear;
}
.document-title h1 {
text-shadow: none !important;
}
.document-title .breadcrumb a {
font-size: 24px;
color: #ccc;
white-space: nowrap;
}
.document-title a {
padding: 7px;
}
.headback-chev {
font-size: 70%;
}
@media (max-width: 767px) {
.document-title>h1 {
font-size: 32px;
}
.document-title>.breadcrumb>li>a {
font-size: 22px;
}
}
@media (max-width: 450px) {
.document-title>h1 {
font-size: 28px;
}
.document-title>.breadcrumb>li>a {
font-size: 20px;
}
}
.document-title li a:hover, .document-title li a:active {
background-color: rgba(255,255,255,0.1);
border-radius: 3px;
}
/* Body */
#invitefeedback {
font-size: 25px;
color: #0f74aa;
font-weight: bold;
margin-bottom: 15px;
}
/* Bottom nav */
.footer-bottom .nav>li {
border: none;
-webkit-transition: background-color 0.2s ease;
-o-transition: background-color 0.2s ease;
transition: background-color 0.2s ease;
}
@media (max-width: 767px) {
.footer-bottom .nav>li:hover {
background-color: rgba(0,0,0,0.1);
color: #fff;
}
}
.nav>li>a:focus {
background-color: transparent;
} | OldVersion/assets/css/generalstyle.css | /* Material Design */
.btn:after {
content:none;
}
.btn {
box-shadow: 0 1px 4px rgba(0,0,0,0.4);
border-radius: 2px;
-webkit-transition: box-shadow 0.15s linear;
-o-transition: box-shadow 0.15s linear;
transition: box-shadow 0.15s linear;
}
.btn:active, .btn:hover {
box-shadow:0 2px 8px rgba(0,0,0,0.4);
}
.fullwidthMD, .footer-top, .footer-bottom,.document-title {
box-shadow: 0 1.5px 6px rgba(0,0,0,0.9);
}
.boxMD {
box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.boxMD, .boxMD .card-row-inner, .boxMD .card-row {
border-radius: 3px;
}
.contact-info .fa {
background-color: #1290d3;
color: #fff;
border: none;
box-shadow: 0 1.25px 5px rgba(0,0,0,0.4);
-webkit-transition: box-shadow 0.15s linear;
-o-transition: box-shadow 0.15s linear;
transition: box-shadow 0.15s linear;
}
.contact-info a:hover .fa {
box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
#mce-EMAIL {
border: none;
border-radius: 3px;
background-color: rgba(0,0,0,0.15);
color: #fafafa;
}
#feedback-form .form-group input, #feedback-form .form-group textarea {
border: none !important;
background-color: #f1f1f1;
margin-top: 5px;
border-radius: 3px;
color: #555555;
box-shadow: none;
}
#feedback-form .form-group input:focus, #feedback-form .form-group textarea:focus {
background-color: #f6f6f6;
}
/* Head */
.document-title {
-webkit-transition: all 0.1s linear;
-o-transition: all 0.1s linear;
transition: all 0.1s linear;
}
.document-title h1 {
text-shadow: none !important;
}
.document-title .breadcrumb a {
font-size: 24px;
color: #ccc;
white-space: nowrap;
}
.document-title a {
padding: 7px;
}
.headback-chev {
font-size: 70%;
}
@media (max-width: 767px) {
.document-title>h1 {
font-size: 32px;
}
.document-title>.breadcrumb>li>a {
font-size: 22px;
}
}
@media (max-width: 450px) {
.document-title>h1 {
font-size: 28px;
}
.document-title>.breadcrumb>li>a {
font-size: 20px;
}
}
.document-title li a:hover, .document-title li a:active {
background-color: rgba(255,255,255,0.1);
border-radius: 3px;
}
/* Body */
#invitefeedback {
font-size: 25px;
color: #0f74aa;
font-weight: bold;
margin-bottom: 15px;
}
/* Bottom nav */
.footer-bottom .nav>li {
border: none;
-webkit-transition: background-color 0.2s ease;
-o-transition: background-color 0.2s ease;
transition: background-color 0.2s ease;
}
@media (max-width: 767px) {
.footer-bottom .nav>li:hover {
background-color: rgba(0,0,0,0.1);
color: #fff;
}
}
.nav>li>a:focus {
background-color: transparent;
} | 0.272315 | 0.055209 |
.side-bar.left-open,
.side-bar.left-open-on-load {
left: -500px;
}
.side-bar.left-open-on-load {
transition: 0s !important;
}
.side-bar.left-open {
transition: .5s ease-in-out;
transition-delay: .1s;
}
.side-bar {
left: 0;
transition: .5s ease-in-out;
}
/******************************
******************************
******************************
MIDDLE SECTION JAVASCRIPT STYLES
******************************
******************************
******************************/
.main-content.left-open .page.oooopen,
.main-content.left-open .page.oooopen-on-load,
.main-content.left-open-on-load .page.oooopen-on-load,
.main-content.left-open-on-load .page.oooopen,
.main-content.left-open .page-header.oooopen,
.main-content.left-open .page-header.oooopen-on-load,
.main-content.left-open-on-load .page-header.oooopen-on-load,
.main-content.left-open-on-load .page-header.oooopen {
padding-left: 3rem;
transition: .5s
}
.side-bar.left-open + .main-content-wrap .main-content.left-open,
.side-bar.left-open-on-load + .main-content-wrap .main-content.left-open,
.side-bar.left-open + .main-content-wrap .main-content.left-open-on-load,
.side-bar.left-open-on-load + .main-content-wrap .main-content.left-open-on-load {
margin: 0 auto;
transition: 1s;
}
/*MIDDLE FOR DEFAULT LAYOUT */
.page.oooopen,
.page.oooopen-on-load {
width: 100%;
}
.page.oooopen-on-load {
-webkit-transition: none;
transition: none;
}
.left.oooopen .page.oooopen {
width: 100%;
}
/*Left sidebar - open
*Right sidebar - closed*/
.left-open .js-page-header.oooopen + .page, .left-open-on-load .js-page-header.oooopen-on-load + .page {
margin-left:-50px;
}
/*MIDDLE SECTION FOR AD LAYOUT*/
.page.ad-layout {
}
.page.ad-layout.oooopen,
.page.ad-layout.oooopen-on-load {
width: 100%;
padding-right:0px;
}
.page.ad-layout.oooopen-on-load {
-webkit-transition: none;
transition: none;
}
@media (min-width: 50rem) {
.page.ad-layout.oooopen,
.page.ad-layout.oooopen-on-load {
width: 100%;
padding-right:30vw;
}
}
@media (min-width: 90rem) {
.page.ad-layout.oooopen,
.page.ad-layout.oooopen-on-load {
width: 100%;
padding-right: 400px;
}
}
/******************************
******************************
******************************
RIGHT SIDEBAR JAVASCRIPT STYLES
******************************
******************************
******************************/
.right-sidebar.oooopen,
.right-sidebar.oooopen-on-load {
width: 100%;
right: 0px;
}
@media (min-width: 50rem) {
.right-sidebar.oooopen,
.right-sidebar.oooopen-on-load {
width: 30vw;
}
}
@media (min-width: 90rem) {
.right-sidebar.oooopen,
.right-sidebar.oooopen-on-load {
width: 400px;
}
}
/******************************
******************************
******************************
******************************
******************************
RIGHT SIDEBAR & BUTTON MENU
******************************
******************************
******************************
******************************
******************************/
/******************************
BUTTON GROUP CONTAINER
******************************/
.right-sidebar-button-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
position: fixed;
right: 8px;
top: 8px;
padding: 0px;
z-index: 1000;
width: 40px;
height: 40px;
border-radius: 6px;
background: hsla(225, 5%, 19.02%, .0);
box-shadow: 0 0 0 0px hsla(225, 5%, 19.02%, 0);
overflow: hidden;
transition: .5s !important;
}
.right-sidebar-button-container:hover {
background: hsla(225, 5%, 19.02%, 1);
box-shadow: 0 0 0 5px hsl(225, 5%, 19.02%);
cursor: pointer;
transition: .3s !important;
}
.right-sidebar-button-container.menu-open {
width: 220px;
background: hsla(225, 5%, 19.02%, 1);
box-shadow: 0 0 0 5px hsl(225, 5%, 19.02%);
cursor: pointer;
transition: .3s !important;
}
/**ON HOVER MENU - EXPANDED BUTTON CONTAINER */
.right-sidebar-expander-container {
display: -ms-flexbox;
display: flex;
justify-content: flex-end;
flex-direction: row;
flex-flow: row-reverse;
width: 100%;
height: 100%;
}
.right-sidebar-expander-container button {
margin-right: 5px;
}
/******************************
BUTTONS - ALL BUTTONS
******************************/
.right-sidebar-button-container button {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
z-index: 100;
border-radius: 6px;
border: none;
background: hsl(225, 5%, 39.02%);
transition: 0.2s;
flex-shrink: 0;
}
.right-sidebar-button-container button:hover {
cursor: pointer;
background: hsl(210, 5%, 55.02%);
transition: 0.33s;
box-shadow: 0px .4px 1px 0px hsl(225, 5%, 8.02%, .9);
}
.right-sidebar-button-container svg {
width: 14px;
height: 14px;
}
/******************************
BUTTON - TOGGLE - BUTTON GROUP
******************************/
button.menu-toggle {
position: absolute;
z-index: 10000000000;
right: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.men-ico {
width: 14px;
height: 2px;
margin-top: 1.5px;
margin-bottom: 1.5px;
background: white;
display: block;
border-radius: 100px;
transition: .1s;
}
.menu-open .men-ico {
margin-top: -1px;
margin-bottom: -1px;
}
/******************************
BUTTON - TOGGLE - RIGHT SIDEBAR
******************************/
button.right-sidebar-toggle {
position: relative;
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
}
.right-sidebar-button-container .sidebar-in,
.right-sidebar-button-container .sidebar-out,
.left-sidebar-out {
display: flex;
position: absolute;
align-items: center;
justify-content: center;
transition: 0.25s;
transition-delay: 0.35s;
}
.sidebar-in {
margin-left: 40px;
}
.right-sidebar.oooopen + .right-sidebar-button-container button .sidebar-in,
.right-sidebar.oooopen-on-load + .right-sidebar-button-container button .sidebar-in {
margin-left: 0px;
}
.right-sidebar.oooopen + .right-sidebar-button-container button .sidebar-out,
.right-sidebar.oooopen-on-load + .right-sidebar-button-container button .sidebar-out {
margin-left: -40px;
opacity: 0;
}
/******************************
BUTTON - TOGGLE - LEFT SIDEBAR
******************************/
button.left-sidebar-toggle {
z-index: 1000000;
}
/******************************
BUTTON - TOGGLE - DARK MODE
******************************/
.toggle_darkMode {
background: transparent;
width: 36px;
height: 36px;
display: flex;
justify-content: center;
align-items: center;
}
.darkModeContainer {
background: #fff;
border-radius: 32px;
width: 22px;
height: 22px;
transition: 0.4s;
}
.toggle_darkMode:hover {
cursor: pointer;
}
.toggle_darkMode.darkMode .darkModeContainer {
transform: rotate(180deg);
transition: 0.4s;
background: hsl(252, 6.17%, 15.88%, .0);
box-shadow: 0 0 0 1px hsl(252, 6.17%, 19.88%), inset 0 0 0 1px hsl(252, 6.17%, 19.88%, .5);
}
.toggle_darkMode.darkMode svg path {
fill: hsl(252, 6.17%, 5.88%);
}
.toggle_darkMode.darkMode:hover .darkModeContainer {
box-shadow: 0 0 0 1px hsl(252, 6.17%, 5.88%, .69), inset 0 0 0 1px hsl(252, 6.17%, 5.88%, .72);
}
.toggle_darkMode .darkModeContainer {
box-shadow: 0 0 0 1px hsl(252, 6.17%, 12.88%, .3), inset 0 0 0 1px hsl(252, 6.17%, 19.88%, .5);
}
.toggle_darkMode:hover .darkModeContainer {
box-shadow: 0 0 0 1px hsl(252, 6.17%, 12.88%, .6), inset 0 0 0 1px hsl(252, 6.17%, 19.88%, .5);
}
.toggle_darkMode svg path {
fill: hsl(252, 6.17%, 19.88%);
}
.toggle_darkMode svg {
width: 100%;
height: 100%;
opacity: 1;
}
/******************************
******************************
******************************
RIGHT SIDEBAR
******************************
******************************
******************************/
.right-sidebar {
height: 100%;
width: 400px;
position: fixed;
z-index: 1;
top: 0px;
right: -400px;
background-color: transparent !important;
border-left: 1px solid hsl(252, 0.17%, 11%);
overflow-x: hidden;
transition: 0.35s;
padding-top: 0px;
padding-left: 0px;
z-index: 999;
}
.hypothesis-container {
width: 100%;
}
.h-sidebar-iframe {
/* Stuff found in default stylesheet */
margin: 0;
margin-left: 0px;
padding: 0;
background: none !important;
font-size: 14px !important;
line-height: 20px;
z-index: 2147483647;
border: 0;
height: 99.9vh;
top: 0;
width: 100%;
}
#js-pushed-sidebar {
background:black !important;
}
/*.left-open .page.open, .left-open-on-load .page.oooopen-on-load, .left-open .page.oooopen-on-load, .left-open-on-load .page.oooopen {
margin-left: -80px !important;
}*/ | assets/right-sidebar/right-sidebar-&-layout-original.css | .side-bar.left-open,
.side-bar.left-open-on-load {
left: -500px;
}
.side-bar.left-open-on-load {
transition: 0s !important;
}
.side-bar.left-open {
transition: .5s ease-in-out;
transition-delay: .1s;
}
.side-bar {
left: 0;
transition: .5s ease-in-out;
}
/******************************
******************************
******************************
MIDDLE SECTION JAVASCRIPT STYLES
******************************
******************************
******************************/
.main-content.left-open .page.oooopen,
.main-content.left-open .page.oooopen-on-load,
.main-content.left-open-on-load .page.oooopen-on-load,
.main-content.left-open-on-load .page.oooopen,
.main-content.left-open .page-header.oooopen,
.main-content.left-open .page-header.oooopen-on-load,
.main-content.left-open-on-load .page-header.oooopen-on-load,
.main-content.left-open-on-load .page-header.oooopen {
padding-left: 3rem;
transition: .5s
}
.side-bar.left-open + .main-content-wrap .main-content.left-open,
.side-bar.left-open-on-load + .main-content-wrap .main-content.left-open,
.side-bar.left-open + .main-content-wrap .main-content.left-open-on-load,
.side-bar.left-open-on-load + .main-content-wrap .main-content.left-open-on-load {
margin: 0 auto;
transition: 1s;
}
/*MIDDLE FOR DEFAULT LAYOUT */
.page.oooopen,
.page.oooopen-on-load {
width: 100%;
}
.page.oooopen-on-load {
-webkit-transition: none;
transition: none;
}
.left.oooopen .page.oooopen {
width: 100%;
}
/*Left sidebar - open
*Right sidebar - closed*/
.left-open .js-page-header.oooopen + .page, .left-open-on-load .js-page-header.oooopen-on-load + .page {
margin-left:-50px;
}
/*MIDDLE SECTION FOR AD LAYOUT*/
.page.ad-layout {
}
.page.ad-layout.oooopen,
.page.ad-layout.oooopen-on-load {
width: 100%;
padding-right:0px;
}
.page.ad-layout.oooopen-on-load {
-webkit-transition: none;
transition: none;
}
@media (min-width: 50rem) {
.page.ad-layout.oooopen,
.page.ad-layout.oooopen-on-load {
width: 100%;
padding-right:30vw;
}
}
@media (min-width: 90rem) {
.page.ad-layout.oooopen,
.page.ad-layout.oooopen-on-load {
width: 100%;
padding-right: 400px;
}
}
/******************************
******************************
******************************
RIGHT SIDEBAR JAVASCRIPT STYLES
******************************
******************************
******************************/
.right-sidebar.oooopen,
.right-sidebar.oooopen-on-load {
width: 100%;
right: 0px;
}
@media (min-width: 50rem) {
.right-sidebar.oooopen,
.right-sidebar.oooopen-on-load {
width: 30vw;
}
}
@media (min-width: 90rem) {
.right-sidebar.oooopen,
.right-sidebar.oooopen-on-load {
width: 400px;
}
}
/******************************
******************************
******************************
******************************
******************************
RIGHT SIDEBAR & BUTTON MENU
******************************
******************************
******************************
******************************
******************************/
/******************************
BUTTON GROUP CONTAINER
******************************/
.right-sidebar-button-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
position: fixed;
right: 8px;
top: 8px;
padding: 0px;
z-index: 1000;
width: 40px;
height: 40px;
border-radius: 6px;
background: hsla(225, 5%, 19.02%, .0);
box-shadow: 0 0 0 0px hsla(225, 5%, 19.02%, 0);
overflow: hidden;
transition: .5s !important;
}
.right-sidebar-button-container:hover {
background: hsla(225, 5%, 19.02%, 1);
box-shadow: 0 0 0 5px hsl(225, 5%, 19.02%);
cursor: pointer;
transition: .3s !important;
}
.right-sidebar-button-container.menu-open {
width: 220px;
background: hsla(225, 5%, 19.02%, 1);
box-shadow: 0 0 0 5px hsl(225, 5%, 19.02%);
cursor: pointer;
transition: .3s !important;
}
/**ON HOVER MENU - EXPANDED BUTTON CONTAINER */
.right-sidebar-expander-container {
display: -ms-flexbox;
display: flex;
justify-content: flex-end;
flex-direction: row;
flex-flow: row-reverse;
width: 100%;
height: 100%;
}
.right-sidebar-expander-container button {
margin-right: 5px;
}
/******************************
BUTTONS - ALL BUTTONS
******************************/
.right-sidebar-button-container button {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
z-index: 100;
border-radius: 6px;
border: none;
background: hsl(225, 5%, 39.02%);
transition: 0.2s;
flex-shrink: 0;
}
.right-sidebar-button-container button:hover {
cursor: pointer;
background: hsl(210, 5%, 55.02%);
transition: 0.33s;
box-shadow: 0px .4px 1px 0px hsl(225, 5%, 8.02%, .9);
}
.right-sidebar-button-container svg {
width: 14px;
height: 14px;
}
/******************************
BUTTON - TOGGLE - BUTTON GROUP
******************************/
button.menu-toggle {
position: absolute;
z-index: 10000000000;
right: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.men-ico {
width: 14px;
height: 2px;
margin-top: 1.5px;
margin-bottom: 1.5px;
background: white;
display: block;
border-radius: 100px;
transition: .1s;
}
.menu-open .men-ico {
margin-top: -1px;
margin-bottom: -1px;
}
/******************************
BUTTON - TOGGLE - RIGHT SIDEBAR
******************************/
button.right-sidebar-toggle {
position: relative;
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
}
.right-sidebar-button-container .sidebar-in,
.right-sidebar-button-container .sidebar-out,
.left-sidebar-out {
display: flex;
position: absolute;
align-items: center;
justify-content: center;
transition: 0.25s;
transition-delay: 0.35s;
}
.sidebar-in {
margin-left: 40px;
}
.right-sidebar.oooopen + .right-sidebar-button-container button .sidebar-in,
.right-sidebar.oooopen-on-load + .right-sidebar-button-container button .sidebar-in {
margin-left: 0px;
}
.right-sidebar.oooopen + .right-sidebar-button-container button .sidebar-out,
.right-sidebar.oooopen-on-load + .right-sidebar-button-container button .sidebar-out {
margin-left: -40px;
opacity: 0;
}
/******************************
BUTTON - TOGGLE - LEFT SIDEBAR
******************************/
button.left-sidebar-toggle {
z-index: 1000000;
}
/******************************
BUTTON - TOGGLE - DARK MODE
******************************/
.toggle_darkMode {
background: transparent;
width: 36px;
height: 36px;
display: flex;
justify-content: center;
align-items: center;
}
.darkModeContainer {
background: #fff;
border-radius: 32px;
width: 22px;
height: 22px;
transition: 0.4s;
}
.toggle_darkMode:hover {
cursor: pointer;
}
.toggle_darkMode.darkMode .darkModeContainer {
transform: rotate(180deg);
transition: 0.4s;
background: hsl(252, 6.17%, 15.88%, .0);
box-shadow: 0 0 0 1px hsl(252, 6.17%, 19.88%), inset 0 0 0 1px hsl(252, 6.17%, 19.88%, .5);
}
.toggle_darkMode.darkMode svg path {
fill: hsl(252, 6.17%, 5.88%);
}
.toggle_darkMode.darkMode:hover .darkModeContainer {
box-shadow: 0 0 0 1px hsl(252, 6.17%, 5.88%, .69), inset 0 0 0 1px hsl(252, 6.17%, 5.88%, .72);
}
.toggle_darkMode .darkModeContainer {
box-shadow: 0 0 0 1px hsl(252, 6.17%, 12.88%, .3), inset 0 0 0 1px hsl(252, 6.17%, 19.88%, .5);
}
.toggle_darkMode:hover .darkModeContainer {
box-shadow: 0 0 0 1px hsl(252, 6.17%, 12.88%, .6), inset 0 0 0 1px hsl(252, 6.17%, 19.88%, .5);
}
.toggle_darkMode svg path {
fill: hsl(252, 6.17%, 19.88%);
}
.toggle_darkMode svg {
width: 100%;
height: 100%;
opacity: 1;
}
/******************************
******************************
******************************
RIGHT SIDEBAR
******************************
******************************
******************************/
.right-sidebar {
height: 100%;
width: 400px;
position: fixed;
z-index: 1;
top: 0px;
right: -400px;
background-color: transparent !important;
border-left: 1px solid hsl(252, 0.17%, 11%);
overflow-x: hidden;
transition: 0.35s;
padding-top: 0px;
padding-left: 0px;
z-index: 999;
}
.hypothesis-container {
width: 100%;
}
.h-sidebar-iframe {
/* Stuff found in default stylesheet */
margin: 0;
margin-left: 0px;
padding: 0;
background: none !important;
font-size: 14px !important;
line-height: 20px;
z-index: 2147483647;
border: 0;
height: 99.9vh;
top: 0;
width: 100%;
}
#js-pushed-sidebar {
background:black !important;
}
/*.left-open .page.open, .left-open-on-load .page.oooopen-on-load, .left-open .page.oooopen-on-load, .left-open-on-load .page.oooopen {
margin-left: -80px !important;
}*/ | 0.356111 | 0.064271 |
.settings-tab {
margin-left: 10px;
}
.tab-sub-content {
margin-top: 15px;
margin-bottom: 35px;
}
.tab-sub-title {
font-size: 16px;
}
.tab-sub-body {
font-size: 16px;
color: #8775a7 !important;
margin-top: 10px;
}
#member_table tr th,
#member_table tr td {
text-align: center;
}
#member_table tr td {
font-size: 13px !important;
}
#member_table .member-edit,
#member_table .member-delete {
width: 10%;
}
#member_table .member-edit a,
#member_table .member-delete a {
font-size: 12px;
}
#member_table_info {
display: none;
}
.manage-members-tab #delete_group {
display: none;
margin-left: 30px;
}
#settings_invite_row {
display: none;
}
#settings_invite_row .caption {
font-size: 16px;
padding-left: 15px;
padding-top: 15px;
}
#settings_invite_row .form-horizontal .control-label {
text-align: left;
}
#settings_invite_row .alert {
padding: 10px;
}
.tool-settings {
padding: 4px 6px 2px 6px !important;
}
.manage-tools-tab .badge-danger {
display: none;
float: left;
margin-right: 10px;
margin-top: 10px;
}
.manage-tools-tab .dropdown-menu .divider {
margin: 0px;
}
.manage-tools-tab .token {
display: none;
}
.manage-tools-tab .form-md-line-input {
padding: 0px !important;
margin: 0 0px 10px -5px ! important;
}
.manage-tools-tab .form-md-line-input label {
text-align: center;
}
.manage-tools-tab .form-group.form-md-line-input .form-control {
font-size: 14px;
color: #888888;
padding-left: 15px;
overflow: hidden;
}
.modal-dialog.modal-sm {
top: 30%;
}
#dropzone {
background: #ccccc;
width: 150px;
height: 50px;
text-align: center;
font-weight: bold;
margin-top: 18px;
}
#dropzone.in {
width: 600px;
height: 200px;
line-height: 200px;
font-size: larger;
}
#dropzone.hover {
background: lawngreen;
}
#dropzone.fade {
-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;
opacity: 1;
}
#file_download_popup .modal-header {
height: 70px;
padding-top: 25px;
}
#file_download_popup .modal-body {
min-height: 500px;
max-height: 500px;
overflow-x: hidden;
overflow-y: auto;
}
#file_download_popup table {
table-layout: fixed;
}
#file_download_popup table tbody tr th {
border-top: 0px;
text-align: center;
border-bottom: 1px solid #ddd;
font-size: 15px;
}
#file_download_popup table tbody tr td {
text-align: center;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
border-top: 0px;
line-height: 2;
font-size: 15px;
}
#file_download_popup .modal-footer {
text-align: center;
padding-bottom: 30px;
}
#file_upload_popup .modal-body {
min-height: 550px;
max-height: 550px;
}
#file_upload_popup .modal-footer {
text-align: center;
padding-bottom: 30px;
}
#file_upload_popup .file-name {
max-height: 130px;
overflow-x: hidden;
overflow-y: auto;
}
#file_upload_popup .file-name p {
width: 230px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#file_upload_popup .file-name .success {
color: #26A69A;
font-weight: bold;
}
#file_upload_popup .file-name .fail {
color: #F3565D;
font-weight: bold;
}
.jFiler-input-dragDrop {
width: 560px;
height: 270px;
}
.jFiler-item-container {
width: 570px;
}
.jFiler-item-thumb {
width: 100% !important;
height: 50px !important;
min-height: 50px !important;
}
.jFiler-item-info {
height: 50px !important;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets .jFiler-jProgressBar
{
width: 280px !important;
margin-left: 0px !important;
}
.jFiler-item-others.text-success, .jFiler-item-others.text-error {
padding-right: 20px;
}
.jFiler {
font-family: inherit;
}
i.icon-jfi-cloud-up-o {
font-size: inherit;
}
.jFiler-input-text span {
font-size: inherit;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container {
margin: 0px;
padding: 0px;
padding-left: 5px;
padding-right: 10px;
padding-bottom: 5px;
border: 0px;
}
.jFiler-input-inner {
padding-top: 35px;
}
.jFiler-items.jFiler-row {
min-height: 200px;
max-height: 220px;
overflow-x: hidden;
overflow-y: auto;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets .jFiler-item-others{
font-size: 13px;
}
.jFiler-item-others.text-error {
color: #F3565D;
}
.jFiler-item-title {
display: inline-block;
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} | src/main/webapp/resources/css/settings.css | .settings-tab {
margin-left: 10px;
}
.tab-sub-content {
margin-top: 15px;
margin-bottom: 35px;
}
.tab-sub-title {
font-size: 16px;
}
.tab-sub-body {
font-size: 16px;
color: #8775a7 !important;
margin-top: 10px;
}
#member_table tr th,
#member_table tr td {
text-align: center;
}
#member_table tr td {
font-size: 13px !important;
}
#member_table .member-edit,
#member_table .member-delete {
width: 10%;
}
#member_table .member-edit a,
#member_table .member-delete a {
font-size: 12px;
}
#member_table_info {
display: none;
}
.manage-members-tab #delete_group {
display: none;
margin-left: 30px;
}
#settings_invite_row {
display: none;
}
#settings_invite_row .caption {
font-size: 16px;
padding-left: 15px;
padding-top: 15px;
}
#settings_invite_row .form-horizontal .control-label {
text-align: left;
}
#settings_invite_row .alert {
padding: 10px;
}
.tool-settings {
padding: 4px 6px 2px 6px !important;
}
.manage-tools-tab .badge-danger {
display: none;
float: left;
margin-right: 10px;
margin-top: 10px;
}
.manage-tools-tab .dropdown-menu .divider {
margin: 0px;
}
.manage-tools-tab .token {
display: none;
}
.manage-tools-tab .form-md-line-input {
padding: 0px !important;
margin: 0 0px 10px -5px ! important;
}
.manage-tools-tab .form-md-line-input label {
text-align: center;
}
.manage-tools-tab .form-group.form-md-line-input .form-control {
font-size: 14px;
color: #888888;
padding-left: 15px;
overflow: hidden;
}
.modal-dialog.modal-sm {
top: 30%;
}
#dropzone {
background: #ccccc;
width: 150px;
height: 50px;
text-align: center;
font-weight: bold;
margin-top: 18px;
}
#dropzone.in {
width: 600px;
height: 200px;
line-height: 200px;
font-size: larger;
}
#dropzone.hover {
background: lawngreen;
}
#dropzone.fade {
-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;
opacity: 1;
}
#file_download_popup .modal-header {
height: 70px;
padding-top: 25px;
}
#file_download_popup .modal-body {
min-height: 500px;
max-height: 500px;
overflow-x: hidden;
overflow-y: auto;
}
#file_download_popup table {
table-layout: fixed;
}
#file_download_popup table tbody tr th {
border-top: 0px;
text-align: center;
border-bottom: 1px solid #ddd;
font-size: 15px;
}
#file_download_popup table tbody tr td {
text-align: center;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
border-top: 0px;
line-height: 2;
font-size: 15px;
}
#file_download_popup .modal-footer {
text-align: center;
padding-bottom: 30px;
}
#file_upload_popup .modal-body {
min-height: 550px;
max-height: 550px;
}
#file_upload_popup .modal-footer {
text-align: center;
padding-bottom: 30px;
}
#file_upload_popup .file-name {
max-height: 130px;
overflow-x: hidden;
overflow-y: auto;
}
#file_upload_popup .file-name p {
width: 230px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#file_upload_popup .file-name .success {
color: #26A69A;
font-weight: bold;
}
#file_upload_popup .file-name .fail {
color: #F3565D;
font-weight: bold;
}
.jFiler-input-dragDrop {
width: 560px;
height: 270px;
}
.jFiler-item-container {
width: 570px;
}
.jFiler-item-thumb {
width: 100% !important;
height: 50px !important;
min-height: 50px !important;
}
.jFiler-item-info {
height: 50px !important;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets .jFiler-jProgressBar
{
width: 280px !important;
margin-left: 0px !important;
}
.jFiler-item-others.text-success, .jFiler-item-others.text-error {
padding-right: 20px;
}
.jFiler {
font-family: inherit;
}
i.icon-jfi-cloud-up-o {
font-size: inherit;
}
.jFiler-input-text span {
font-size: inherit;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container {
margin: 0px;
padding: 0px;
padding-left: 5px;
padding-right: 10px;
padding-bottom: 5px;
border: 0px;
}
.jFiler-input-inner {
padding-top: 35px;
}
.jFiler-items.jFiler-row {
min-height: 200px;
max-height: 220px;
overflow-x: hidden;
overflow-y: auto;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets .jFiler-item-others{
font-size: 13px;
}
.jFiler-item-others.text-error {
color: #F3565D;
}
.jFiler-item-title {
display: inline-block;
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} | 0.374333 | 0.060613 |
body {
margin: 0;
padding: 0;
line-height: 1.7em;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
color: #666666;
background: #ffffff;
}
a:link, a:visited { color: #0066CC; text-decoration: none; }
a:active, a:hover { color: #990000; text-decoration: none; }
p { margin: 0px; padding: 0px; }
img { margin: 0px; padding: 0px; border: none; }
.cleaner { clear: both; width: 100%; height: 0px; font-size: 0px; }
.cleaner_h10 { clear: both; width:100%; height: 10px; }
.cleaner_h20 { clear: both; width:100%; height: 20px; }
.cleaner_h30 { clear: both; width:100%; height: 30px; }
.cleaner_h40 { clear: both; width:100%; height: 40px; }
.cleaner_h50 { clear: both; width:100%; height: 50px; }
.cleaner_h60 { clear: both; width:100%; height: 60px; }
.button_01 a {
display: block;
width: 80px;
height: 24px;
padding: 4px 0 0 28px;
color: #686b53;
font-size: 11px;
font-weight: bold;
text-decoration: none;
background: url(images/templatemo_button_01.png) no-repeat;
}
.button_01 a:hover {
background: url(images/templatemo_button_01_hover.png) no-repeat;
}
h1 {
margin: 0px;
padding: 2px 0;
font-size: 30px;
font-weight: bold;
}
h2 {
margin: 0 0 20px 0;
padding: 10px 0;
font-size: 30px;
font-weight: bold;
color: #686b53;
}
h3 {
margin: 0 0 10px 0;
padding: 0px;
font-size: 20px;
font-weight: bold;
color: #9f1a04;
}
.image_wrapper {
margin-top: 3px;
margin-bottom: 5px;
border: 5px solid #e8e8e8;
padding: 1px;
background: #fff;
}
.fl_image {
float: left;
margin-right: 30px
}
.fr_image {
float: right;
margin-left: 20px
}
.fl { float: left; }
.fr { float: right; }
.margin_r_10 { margin-right: 10px; }
.margin_r_20 { margin-right: 20px; }
.margin_r_80 { margin-right: 80px; }
/* site title */
#templatemo_site_title_bar_wrapper {
width: 100%;
height: 130px;
margin: 0 auto;
background: #000000 url(images/templatemo_site_title_bg_wrapper.jpg) no-repeat center top;
}
#templatemo_site_title_bar {
width: 900px;
height: 130px;
margin: 0 auto;
padding: 0 20px 0 60px;
background: #000000 url(images/templatemo_site_title_bg.jpg) no-repeat center top;
}
#templatemo_site_title_bar #site_title {
float: left;
padding: 30px 0 0 0;
text-align: center;
}
#site_title h1 a {
margin: 0px;
padding: 0px;
font-size: 24px;
color: #ffffff;
font-weight: bold;
text-decoration: none;
}
#site_title h1 a:hover {
font-weight: bold;
text-decoration: none;
}
#site_title h1 a span {
display: block;
margin-left: 3px;
font-size: 14px;
color: #000000;
font-weight: bold;
letter-spacing: 4px;
}
/* menu */
#templatemo_site_title_bar #templatemo_menu {
float: right;
width: 515px;
height: 53px;
padding: 39px 0 0 0;
margin: 0 auto;
}
#templatemo_menu ul {
margin: 0px;
padding: 13px 0 0 20px;
list-style: none;
}
#templatemo_menu ul li {
padding: 0px;
margin: 0px;
display: inline;
}
#templatemo_menu ul li a {
float: left;
display: block;
height: 22px;
padding: 3px 10px 0 5px;
margin: 0 10px;
text-align: center;
font-size: 14px;
text-decoration: none;
color: #ffffff;
font-weight: bold;
outline: none;
}
#templatemo_menu li a:hover, #templatemo_menu li .current {
position: relative;
color: #ffffff;
background: url(images/templatemo_menu_hover_right.png) right top no-repeat;
}
#templatemo_menu li a:hover span, #templatemo_menu li .current span {
position: absolute;
top: 0;
left: -5px;
height: 25px;
width: 5px;
background: url(images/templatemo_menu_hover_left.png) no-repeat;
}
/* end of menu*/
/* end of site title */
/* banner */
#templatemo_banner_wrapper {
clear: both;
width: 100%;
height: 170px;
margin: 0 auto;
background: #000000 url(images/templatemo_banner_bg_wrapper.jpg) no-repeat center top;
}
#templatemo_banner {
width: 940px;
height: 135px;
margin: 0 auto;
padding: 35px 20px 0 20px;
background: #000000 url(images/templatemo_banner_bg.jpg) no-repeat center top;
}
#templatemo_banner p {
font-size: 28px;
color: #000000;
line-height: 34px;
}
#templatemo_banner p span {
color: #ffffff;
font-style: italic;
}
/* end of banner */
/* menu */
#templatemo_follow_me_wrapper {
width: 100%;
margin: 0 auto;
background: #d8deb2;
}
#templatemo_follow_me {
width: 990px;
margin: 0 auto;
padding: 10px 0;
background: #d8deb2;
text-align: right;
}
#templatemo_follow_me span {
display: inline-block;
padding-top: 30px;
color: #006695;
font-size: 26px;
font-weight: bold;
margin-right: 20px;
}
#templatemo_follow_me .social_network {
float: right;
margin: 0px;
padding: 0px;
list-style: none;
}
#templatemo_follow_me .social_network li {
margin: 0px;
padding: 0px;
display: inline;
}
#templatemo_follow_me .social_network li a {
float: left;
display: block;
width: 62px;
height: 78px;
margin-left: 10px;
}
#templatemo_follow_me .social_network li .facebook {
background: url(images/facebook_icon.png) no-repeat;
}
#templatemo_follow_me .social_network li .twitter {
background: url(images/twitter_icon.png) no-repeat;
}
#templatemo_follow_me .social_network li .linkin {
background: url(images/linkin_icon.png) no-repeat;
}
#templatemo_follow_me .social_network li .flickr {
background: url(images/flickr_icon.png) no-repeat;
}
/* end of menu */
/* content */
#templatemo_content {
width: 950px;
margin: 0 auto;
padding: 30px 15px;
background: #ffffff;
}
.product_box {
float: left;
width: 212px;
background: #f1f1f1;
border: 1px solid #e0e0e0;
padding: 8px 7px;
margin-bottom: 10px;
}
.product_box:hover {
background: #e7ebce;
}
.product_box a {
text-decoration: none;
}
.product_box a:hover {
text-decoration: none;
}
.product_box a img {
border: 1px solid #ffffff;
}
.product_box h3 {
padding: 0;
margin: 0 0 10px 0;
height: 20px;
font-size: 16px;
padding: 10px;
color: #85896f;
border: 1px solid #fff;
text-align: center;
background: url(images/templatemo_product_box_title_bg.jpg) repeat-x;
}
.product_box:hover h3 {
color: #006695;
}
.product_box p {
color: #666666;
font-weight: normal;
}
.product_detail_left {
float: left;
}
.product_detail_left .product_img_wrapper {
border: 10px solid #f1f1f1;
padding: 1px;
background: #ffffff;
}
.product_detail_right {
float: right;
width: 300px;
}
.product_detail_right h3 {
font-size: 16px;
color: #333333;
}
.service_applied {
margin: 0px;
padding: 0px;
list-style: none;
}
.service_applied li {
margin: 0px;
padding: 3px 0 3px 20px;
color: #006695;
background:url(images/templatemo_list_icon.jpg) left center no-repeat;
}
/* end of menu */
/* content */
#templatemo_footer_wrapper {
width: 100%;
margin: 0 auto;
background: #666956 url(images/templatemo_footer_bg.jpg) repeat-x top;
}
#templatemo_footer {
width: 960px;
margin: 0 auto;
padding: 30px 10px;
color: #FFFFFF;
background: none;
}
#templatemo_footer .section_w220 {
float: left;
width: 200px;
padding-right: 20px;
}
#templatemo_footer .section_w220 h4 {
color: #FFFFFF;
margin: 0 0 10px 0;
padding: 3px 0;
}
#templatemo_footer p {
margin-bottom: 10px;
}
#templatemo_footer a {
color: #FFFFFF;
}
.footer_list_menu {
margin: 0px;
padding: 0px;
list-style: none;
}
.footer_list_menu li {
margin: 0px;
padding: 3px 0;
}
.footer_list_menu li a {
color: #FFFFFF;
font-weight: normal;
}
.footer_list_menu li a:hover {
color: #FFFF00;
font-weight: normal;
}
/* end of menu */ | web2py-appliances-master/Appliances/static/templatemo_style.css | body {
margin: 0;
padding: 0;
line-height: 1.7em;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
color: #666666;
background: #ffffff;
}
a:link, a:visited { color: #0066CC; text-decoration: none; }
a:active, a:hover { color: #990000; text-decoration: none; }
p { margin: 0px; padding: 0px; }
img { margin: 0px; padding: 0px; border: none; }
.cleaner { clear: both; width: 100%; height: 0px; font-size: 0px; }
.cleaner_h10 { clear: both; width:100%; height: 10px; }
.cleaner_h20 { clear: both; width:100%; height: 20px; }
.cleaner_h30 { clear: both; width:100%; height: 30px; }
.cleaner_h40 { clear: both; width:100%; height: 40px; }
.cleaner_h50 { clear: both; width:100%; height: 50px; }
.cleaner_h60 { clear: both; width:100%; height: 60px; }
.button_01 a {
display: block;
width: 80px;
height: 24px;
padding: 4px 0 0 28px;
color: #686b53;
font-size: 11px;
font-weight: bold;
text-decoration: none;
background: url(images/templatemo_button_01.png) no-repeat;
}
.button_01 a:hover {
background: url(images/templatemo_button_01_hover.png) no-repeat;
}
h1 {
margin: 0px;
padding: 2px 0;
font-size: 30px;
font-weight: bold;
}
h2 {
margin: 0 0 20px 0;
padding: 10px 0;
font-size: 30px;
font-weight: bold;
color: #686b53;
}
h3 {
margin: 0 0 10px 0;
padding: 0px;
font-size: 20px;
font-weight: bold;
color: #9f1a04;
}
.image_wrapper {
margin-top: 3px;
margin-bottom: 5px;
border: 5px solid #e8e8e8;
padding: 1px;
background: #fff;
}
.fl_image {
float: left;
margin-right: 30px
}
.fr_image {
float: right;
margin-left: 20px
}
.fl { float: left; }
.fr { float: right; }
.margin_r_10 { margin-right: 10px; }
.margin_r_20 { margin-right: 20px; }
.margin_r_80 { margin-right: 80px; }
/* site title */
#templatemo_site_title_bar_wrapper {
width: 100%;
height: 130px;
margin: 0 auto;
background: #000000 url(images/templatemo_site_title_bg_wrapper.jpg) no-repeat center top;
}
#templatemo_site_title_bar {
width: 900px;
height: 130px;
margin: 0 auto;
padding: 0 20px 0 60px;
background: #000000 url(images/templatemo_site_title_bg.jpg) no-repeat center top;
}
#templatemo_site_title_bar #site_title {
float: left;
padding: 30px 0 0 0;
text-align: center;
}
#site_title h1 a {
margin: 0px;
padding: 0px;
font-size: 24px;
color: #ffffff;
font-weight: bold;
text-decoration: none;
}
#site_title h1 a:hover {
font-weight: bold;
text-decoration: none;
}
#site_title h1 a span {
display: block;
margin-left: 3px;
font-size: 14px;
color: #000000;
font-weight: bold;
letter-spacing: 4px;
}
/* menu */
#templatemo_site_title_bar #templatemo_menu {
float: right;
width: 515px;
height: 53px;
padding: 39px 0 0 0;
margin: 0 auto;
}
#templatemo_menu ul {
margin: 0px;
padding: 13px 0 0 20px;
list-style: none;
}
#templatemo_menu ul li {
padding: 0px;
margin: 0px;
display: inline;
}
#templatemo_menu ul li a {
float: left;
display: block;
height: 22px;
padding: 3px 10px 0 5px;
margin: 0 10px;
text-align: center;
font-size: 14px;
text-decoration: none;
color: #ffffff;
font-weight: bold;
outline: none;
}
#templatemo_menu li a:hover, #templatemo_menu li .current {
position: relative;
color: #ffffff;
background: url(images/templatemo_menu_hover_right.png) right top no-repeat;
}
#templatemo_menu li a:hover span, #templatemo_menu li .current span {
position: absolute;
top: 0;
left: -5px;
height: 25px;
width: 5px;
background: url(images/templatemo_menu_hover_left.png) no-repeat;
}
/* end of menu*/
/* end of site title */
/* banner */
#templatemo_banner_wrapper {
clear: both;
width: 100%;
height: 170px;
margin: 0 auto;
background: #000000 url(images/templatemo_banner_bg_wrapper.jpg) no-repeat center top;
}
#templatemo_banner {
width: 940px;
height: 135px;
margin: 0 auto;
padding: 35px 20px 0 20px;
background: #000000 url(images/templatemo_banner_bg.jpg) no-repeat center top;
}
#templatemo_banner p {
font-size: 28px;
color: #000000;
line-height: 34px;
}
#templatemo_banner p span {
color: #ffffff;
font-style: italic;
}
/* end of banner */
/* menu */
#templatemo_follow_me_wrapper {
width: 100%;
margin: 0 auto;
background: #d8deb2;
}
#templatemo_follow_me {
width: 990px;
margin: 0 auto;
padding: 10px 0;
background: #d8deb2;
text-align: right;
}
#templatemo_follow_me span {
display: inline-block;
padding-top: 30px;
color: #006695;
font-size: 26px;
font-weight: bold;
margin-right: 20px;
}
#templatemo_follow_me .social_network {
float: right;
margin: 0px;
padding: 0px;
list-style: none;
}
#templatemo_follow_me .social_network li {
margin: 0px;
padding: 0px;
display: inline;
}
#templatemo_follow_me .social_network li a {
float: left;
display: block;
width: 62px;
height: 78px;
margin-left: 10px;
}
#templatemo_follow_me .social_network li .facebook {
background: url(images/facebook_icon.png) no-repeat;
}
#templatemo_follow_me .social_network li .twitter {
background: url(images/twitter_icon.png) no-repeat;
}
#templatemo_follow_me .social_network li .linkin {
background: url(images/linkin_icon.png) no-repeat;
}
#templatemo_follow_me .social_network li .flickr {
background: url(images/flickr_icon.png) no-repeat;
}
/* end of menu */
/* content */
#templatemo_content {
width: 950px;
margin: 0 auto;
padding: 30px 15px;
background: #ffffff;
}
.product_box {
float: left;
width: 212px;
background: #f1f1f1;
border: 1px solid #e0e0e0;
padding: 8px 7px;
margin-bottom: 10px;
}
.product_box:hover {
background: #e7ebce;
}
.product_box a {
text-decoration: none;
}
.product_box a:hover {
text-decoration: none;
}
.product_box a img {
border: 1px solid #ffffff;
}
.product_box h3 {
padding: 0;
margin: 0 0 10px 0;
height: 20px;
font-size: 16px;
padding: 10px;
color: #85896f;
border: 1px solid #fff;
text-align: center;
background: url(images/templatemo_product_box_title_bg.jpg) repeat-x;
}
.product_box:hover h3 {
color: #006695;
}
.product_box p {
color: #666666;
font-weight: normal;
}
.product_detail_left {
float: left;
}
.product_detail_left .product_img_wrapper {
border: 10px solid #f1f1f1;
padding: 1px;
background: #ffffff;
}
.product_detail_right {
float: right;
width: 300px;
}
.product_detail_right h3 {
font-size: 16px;
color: #333333;
}
.service_applied {
margin: 0px;
padding: 0px;
list-style: none;
}
.service_applied li {
margin: 0px;
padding: 3px 0 3px 20px;
color: #006695;
background:url(images/templatemo_list_icon.jpg) left center no-repeat;
}
/* end of menu */
/* content */
#templatemo_footer_wrapper {
width: 100%;
margin: 0 auto;
background: #666956 url(images/templatemo_footer_bg.jpg) repeat-x top;
}
#templatemo_footer {
width: 960px;
margin: 0 auto;
padding: 30px 10px;
color: #FFFFFF;
background: none;
}
#templatemo_footer .section_w220 {
float: left;
width: 200px;
padding-right: 20px;
}
#templatemo_footer .section_w220 h4 {
color: #FFFFFF;
margin: 0 0 10px 0;
padding: 3px 0;
}
#templatemo_footer p {
margin-bottom: 10px;
}
#templatemo_footer a {
color: #FFFFFF;
}
.footer_list_menu {
margin: 0px;
padding: 0px;
list-style: none;
}
.footer_list_menu li {
margin: 0px;
padding: 3px 0;
}
.footer_list_menu li a {
color: #FFFFFF;
font-weight: normal;
}
.footer_list_menu li a:hover {
color: #FFFF00;
font-weight: normal;
}
/* end of menu */ | 0.231093 | 0.090013 |
* Props to <NAME> (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
body {
padding-top: 60px;
}
.container {
width: 820px;
}
input.field {
margin: 5px 0px;
height: 24px;
font-size: 14px;
}
input.btn {
width: 120px;
margin-top: 15px;
}
#signout {
margin: 10px 0px 10px 11px;
}
#signout a {
color: #fff;
}
#input {
margin-left: 185px;
}
#notecard p {
font-size: 15px;
}
#note_container {
border-left: 0px #eee solid;
border-bottom: 1px #eee solid;
}
table#notecard {
margin-top: 10px;
}
table#notecard {
border: 1px solid #fff;
}
/* Tags */
.tags{
margin:0;
padding:0;
right:24px;
bottom:-12px;
list-style:none;
display: block;
margin-bottom: 5px;
}
.tags li, .tags a{
float:left;
height:24px;
line-height:24px;
position:relative;
font-size:12px;
}
.tags a{
margin-left:20px;
padding:0 10px 0 12px;
background:#0089e0;
color:#fff;
text-decoration:none;
-moz-border-radius-bottomright:4px;
-webkit-border-bottom-right-radius:4px;
border-bottom-right-radius:4px;
-moz-border-radius-topright:4px;
-webkit-border-top-right-radius:4px;
border-top-right-radius:4px;
}
.tags a:before{
content:"";
float:left;
position:absolute;
top:0;
left:-12px;
width:0;
height:0;
border-color:transparent #0089e0 transparent transparent;
border-style:solid;
border-width:12px 12px 12px 0;
}
.tags a:after{
content:"";
position:absolute;
top:10px;
left:0;
float:left;
width:4px;
height:4px;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
background:#fff;
-moz-box-shadow:-1px -1px 2px #004977;
-webkit-box-shadow:-1px -1px 2px #004977;
box-shadow:-1px -1px 2px #004977;
}
.tags a:hover{background:#555;}
.tags a:hover:before{border-color:transparent #555 transparent transparent;}
/* -- Notecard */
.notecard {
position: relative;
padding: 7px 15px;
margin-bottom: 18px;
color: #404040;
background-color: #eedc94;
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
background-image: -o-linear-gradient(top, #fceec1, #eedc94);
background-image: linear-gradient(top, #fceec1, #eedc94);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
border-color: #eedc94 #eedc94 #e4c652;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
border-width: 1px;
border-style: solid;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.notecard .close {
*margin-top: 3px;
/* IE7 spacing */
}
.notecard h5 {
line-height: 18px;
}
.notecard p {
margin-bottom: 0;
}
.notecard div {
margin-top: 5px;
margin-bottom: 2px;
line-height: 28px;
}
.notecard .btn {
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.notecard.block-message {
background-image: none;
background-color: #ddf4fb;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
padding: 14px;
border-color: #c6edf9;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.notecard.block-message ul, .alert-message.block-message p {
margin-right: 30px;
}
.notecard.block-message ul {
margin-bottom: 0;
}
.notecard.block-message li {
color: #404040;
}
.delete {
margin-left: 8px;
} | app/assets/stylesheets/custom.css | * Props to <NAME> (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
body {
padding-top: 60px;
}
.container {
width: 820px;
}
input.field {
margin: 5px 0px;
height: 24px;
font-size: 14px;
}
input.btn {
width: 120px;
margin-top: 15px;
}
#signout {
margin: 10px 0px 10px 11px;
}
#signout a {
color: #fff;
}
#input {
margin-left: 185px;
}
#notecard p {
font-size: 15px;
}
#note_container {
border-left: 0px #eee solid;
border-bottom: 1px #eee solid;
}
table#notecard {
margin-top: 10px;
}
table#notecard {
border: 1px solid #fff;
}
/* Tags */
.tags{
margin:0;
padding:0;
right:24px;
bottom:-12px;
list-style:none;
display: block;
margin-bottom: 5px;
}
.tags li, .tags a{
float:left;
height:24px;
line-height:24px;
position:relative;
font-size:12px;
}
.tags a{
margin-left:20px;
padding:0 10px 0 12px;
background:#0089e0;
color:#fff;
text-decoration:none;
-moz-border-radius-bottomright:4px;
-webkit-border-bottom-right-radius:4px;
border-bottom-right-radius:4px;
-moz-border-radius-topright:4px;
-webkit-border-top-right-radius:4px;
border-top-right-radius:4px;
}
.tags a:before{
content:"";
float:left;
position:absolute;
top:0;
left:-12px;
width:0;
height:0;
border-color:transparent #0089e0 transparent transparent;
border-style:solid;
border-width:12px 12px 12px 0;
}
.tags a:after{
content:"";
position:absolute;
top:10px;
left:0;
float:left;
width:4px;
height:4px;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
background:#fff;
-moz-box-shadow:-1px -1px 2px #004977;
-webkit-box-shadow:-1px -1px 2px #004977;
box-shadow:-1px -1px 2px #004977;
}
.tags a:hover{background:#555;}
.tags a:hover:before{border-color:transparent #555 transparent transparent;}
/* -- Notecard */
.notecard {
position: relative;
padding: 7px 15px;
margin-bottom: 18px;
color: #404040;
background-color: #eedc94;
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
background-image: -o-linear-gradient(top, #fceec1, #eedc94);
background-image: linear-gradient(top, #fceec1, #eedc94);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
border-color: #eedc94 #eedc94 #e4c652;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
border-width: 1px;
border-style: solid;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.notecard .close {
*margin-top: 3px;
/* IE7 spacing */
}
.notecard h5 {
line-height: 18px;
}
.notecard p {
margin-bottom: 0;
}
.notecard div {
margin-top: 5px;
margin-bottom: 2px;
line-height: 28px;
}
.notecard .btn {
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.notecard.block-message {
background-image: none;
background-color: #ddf4fb;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
padding: 14px;
border-color: #c6edf9;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.notecard.block-message ul, .alert-message.block-message p {
margin-right: 30px;
}
.notecard.block-message ul {
margin-bottom: 0;
}
.notecard.block-message li {
color: #404040;
}
.delete {
margin-left: 8px;
} | 0.279337 | 0.086942 |
.collection a {
text-overflow: ellipsis;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
display: table;
width: 100%;
}
footer {
display: table-row;
height: 100px;
}
hr {
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.global-status {
font-size: 1.5rem;
padding: 1rem .5rem;
line-height: 24px;
}
.components-status {
margin-top: 15px;
padding: 5px;
}
.material-icons, .icon-text {
display: inline-flex;
vertical-align: top;
}
.material-icons.tooltipped {
cursor: pointer;
}
.timeline {
list-style: none;
margin: 0;
padding: 0;
}
.timeline-incident {
list-style: none;
border-left: 2px solid #e1e4e8;
margin-left: .5rem;
position: relative;
padding-top: 0;
padding-bottom: 1.5rem;
padding-left: 1.5rem;
}
.timeline-incident:last-child {
border-color: transparent;
}
.timeline-incident:before {
width: 1.5rem;
height: 1.5rem;
border: 2px solid #6a737d;
position: absolute;
border-radius: 9999px;
z-index: 10;
background-color: #fff;
content: " ";
left: -12px;
top: 0;
}
.timeline-incident-green:before {
border-color: #6a737d;
}
.timeline-incident-purple:before {
border-color: #9c27b0;
}
.timeline-incident-deep-orange:before {
border-color: #ff5722;
}
.timeline-incident-grey:before {
border-color: #212121;
}
.timeline-incident-red:before {
border-color: #F44336;
}
.timeline-incident-title {
margin: 0;
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 1rem;
}
.timeline-incident-body {
padding-bottom: .5rem;
}
.timeline-incident-body .message {
color: #6a737d;
}
.incident {
padding: 10px;
margin-bottom: 20px;
}
.badge {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.incident .incident-title h5 {
line-height: 20px;
}
.incident .incident-state-details {
line-height: 15px;
}
.incident-state-details {
margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
}
.incident-main-message {
margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
}
.incident-updates {
margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
}
.incident .incident-title .badge {
margin-right: 5px;
}
time.human {
text-decoration: underline dotted;
cursor: help;
}
.sidenav li > a {
color: white;
}
.admin-container {
padding-left: 185px;
}
.admin-container .collection .collection-item.avatar {
padding: 10px 20px;
}
.admin-container .collection .collection-item .badge {
float: none;
margin-left: 0;
}
.admin-container .collection .collection-item .secondary-content {
float: right;
position: initial;
margin-left: 5px;
}
.admin-container .head {
margin-bottom: 50px;
}
.admin-container .chips-components {
margin-top: 0;
}
.admin-container [type="radio"]:checked + span,
.admin-container [type="radio"]:not(:checked) + span {
padding-left: 25px;
margin-right: 10px;
}
.mark-as-btn {
width: 115px;
}
.preloader-wrapper.preload-btn {
width: 14px;
height: 14px;
}
.markdown ul,
.markdown ol,
.markdown ul > li,
.markdown ol > li {
list-style: initial;
}
.markdown [type="checkbox"]:not(:checked),
.markdown [type="checkbox"]:checked {
position: initial;
top: initial;
opacity: initial;
}
.modal-with-tabs {
width: 75%;
height: 80%;
}
.modal-with-tabs .tabs-vertical .col-modal-tabs {
width: 25%;
}
.modal-with-tabs .tabs-vertical .col-modal-content {
width: 74%;
}
.modal-with-tabs a.tab-no-border {
border-right: none;
}
.incident-item.avatar {
position: initial !important;
}
.details-date {
font-size: .7rem;
}
.chips .input {
width: 170px !important;
}
.incident-main-message ul {
padding-left: initial;
list-style-type: initial;
}
.incident-main-message ul > li {
list-style-type: disc;
}
.incident-main-message ul ul > li {
list-style-type: circle;
}
.incident-main-message ul ul ul > li {
list-style-type: square;
}
.incident-main-message .octicon {
display: inline-block;
fill: currentColor;
vertical-align: text-bottom;
}
.incident-main-message .anchor {
float: left;
line-height: 1;
margin-left: -20px;
padding-right: 4px;
}
.incident-main-message .anchor:focus {
outline: none;
}
.incident-main-message h1 .octicon-link,
.incident-main-message h2 .octicon-link,
.incident-main-message h3 .octicon-link,
.incident-main-message h4 .octicon-link,
.incident-main-message h5 .octicon-link,
.incident-main-message h6 .octicon-link {
color: #1b1f23;
vertical-align: middle;
visibility: hidden;
}
.incident-main-message h1:hover .anchor,
.incident-main-message h2:hover .anchor,
.incident-main-message h3:hover .anchor,
.incident-main-message h4:hover .anchor,
.incident-main-message h5:hover .anchor,
.incident-main-message h6:hover .anchor {
text-decoration: none;
}
.incident-main-message h1:hover .anchor .octicon-link,
.incident-main-message h2:hover .anchor .octicon-link,
.incident-main-message h3:hover .anchor .octicon-link,
.incident-main-message h4:hover .anchor .octicon-link,
.incident-main-message h5:hover .anchor .octicon-link,
.incident-main-message h6:hover .anchor .octicon-link {
visibility: visible;
}
.incident-main-message h1:hover .anchor .octicon-link:before,
.incident-main-message h2:hover .anchor .octicon-link:before,
.incident-main-message h3:hover .anchor .octicon-link:before,
.incident-main-message h4:hover .anchor .octicon-link:before,
.incident-main-message h5:hover .anchor .octicon-link:before,
.incident-main-message h6:hover .anchor .octicon-link:before {
width: 16px;
height: 16px;
content: ' ';
display: inline-block;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' width='16' height='16' aria-hidden='true'%3E%3Cpath fill-rule='evenodd' d='M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z'%3E%3C/path%3E%3C/svg%3E");
}
.incident-main-message {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
line-height: 1.5;
color: #24292e;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
font-size: 16px;
line-height: 1.5;
word-wrap: break-word;
}
.incident-main-message details {
display: block;
}
.incident-main-message summary {
display: list-item;
}
.incident-main-message a {
background-color: initial;
}
.incident-main-message a:active,
.incident-main-message a:hover {
outline-width: 0;
}
.incident-main-message strong {
font-weight: inherit;
font-weight: bolder;
}
.incident-main-message h1 {
font-size: 2em;
margin: .67em 0;
}
.incident-main-message img {
border-style: none;
}
.incident-main-message code,
.incident-main-message kbd,
.incident-main-message pre {
font-family: monospace, monospace;
font-size: 1em;
}
.incident-main-message hr {
box-sizing: initial;
height: 0;
overflow: visible;
}
.incident-main-message input {
font: inherit;
margin: 0;
}
.incident-main-message input {
overflow: visible;
}
.incident-main-message [type=checkbox] {
box-sizing: border-box;
padding: 0;
}
.incident-main-message * {
box-sizing: border-box;
}
.incident-main-message input {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.incident-main-message a {
color: #0366d6;
text-decoration: none;
}
.incident-main-message a:hover {
text-decoration: underline;
}
.incident-main-message strong {
font-weight: 600;
}
.incident-main-message hr {
height: 0;
margin: 15px 0;
overflow: hidden;
background: transparent;
border: 0;
border-bottom: 1px solid #dfe2e5;
}
.incident-main-message hr:after,
.incident-main-message hr:before {
display: table;
content: "";
}
.incident-main-message hr:after {
clear: both;
}
.incident-main-message table {
border-spacing: 0;
border-collapse: collapse;
}
.incident-main-message td,
.incident-main-message th {
padding: 0;
}
.incident-main-message details summary {
cursor: pointer;
}
.incident-main-message kbd {
display: inline-block;
padding: 3px 5px;
font: 11px SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
line-height: 10px;
color: #444d56;
vertical-align: middle;
background-color: #fafbfc;
border: 1px solid #d1d5da;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #d1d5da;
}
.incident-main-message h1,
.incident-main-message h2,
.incident-main-message h3,
.incident-main-message h4,
.incident-main-message h5,
.incident-main-message h6 {
margin-top: 0;
margin-bottom: 0;
}
.incident-main-message h1 {
font-size: 32px;
}
.incident-main-message h1,
.incident-main-message h2 {
font-weight: 600;
}
.incident-main-message h2 {
font-size: 24px;
}
.incident-main-message h3 {
font-size: 20px;
}
.incident-main-message h3,
.incident-main-message h4 {
font-weight: 600;
}
.incident-main-message h4 {
font-size: 16px;
}
.incident-main-message h5 {
font-size: 14px;
}
.incident-main-message h5,
.incident-main-message h6 {
font-weight: 600;
}
.incident-main-message h6 {
font-size: 12px;
}
.incident-main-message p {
margin-top: 0;
margin-bottom: 10px;
}
.incident-main-message blockquote {
margin: 0;
}
.incident-main-message ol,
.incident-main-message ul {
padding-left: 0;
margin-top: 0;
margin-bottom: 0;
}
.incident-main-message ol ol,
.incident-main-message ul ol {
list-style-type: lower-roman;
}
.incident-main-message ol ol ol,
.incident-main-message ol ul ol,
.incident-main-message ul ol ol,
.incident-main-message ul ul ol {
list-style-type: lower-alpha;
}
.incident-main-message dd {
margin-left: 0;
}
.incident-main-message code,
.incident-main-message pre {
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
font-size: 12px;
}
.incident-main-message pre {
margin-top: 0;
margin-bottom: 0;
}
.incident-main-message input::-webkit-inner-spin-button,
.incident-main-message input::-webkit-outer-spin-button {
margin: 0;
-webkit-appearance: none;
appearance: none;
}
.incident-main-message :checked + .radio-label {
position: relative;
z-index: 1;
border-color: #0366d6;
}
.incident-main-message .border {
border: 1px solid #e1e4e8 !important;
}
.incident-main-message .border-0 {
border: 0 !important;
}
.incident-main-message .border-bottom {
border-bottom: 1px solid #e1e4e8 !important;
}
.incident-main-message .rounded-1 {
border-radius: 3px !important;
}
.incident-main-message .bg-white {
background-color: #fff !important;
}
.incident-main-message .bg-gray-light {
background-color: #fafbfc !important;
}
.incident-main-message .text-gray-light {
color: #6a737d !important;
}
.incident-main-message .mb-0 {
margin-bottom: 0 !important;
}
.incident-main-message .my-2 {
margin-top: 8px !important;
margin-bottom: 8px !important;
}
.incident-main-message .pl-0 {
padding-left: 0 !important;
}
.incident-main-message .py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.incident-main-message .pl-1 {
padding-left: 4px !important;
}
.incident-main-message .pl-2 {
padding-left: 8px !important;
}
.incident-main-message .py-2 {
padding-top: 8px !important;
padding-bottom: 8px !important;
}
.incident-main-message .pl-3,
.incident-main-message .px-3 {
padding-left: 16px !important;
}
.incident-main-message .px-3 {
padding-right: 16px !important;
}
.incident-main-message .pl-4 {
padding-left: 24px !important;
}
.incident-main-message .pl-5 {
padding-left: 32px !important;
}
.incident-main-message .pl-6 {
padding-left: 40px !important;
}
.incident-main-message .f6 {
font-size: 12px !important;
}
.incident-main-message .lh-condensed {
line-height: 1.25 !important;
}
.incident-main-message .text-bold {
font-weight: 600 !important;
}
.incident-main-message .pl-c {
color: #6a737d;
}
.incident-main-message .pl-c1,
.incident-main-message .pl-s .pl-v {
color: #005cc5;
}
.incident-main-message .pl-e,
.incident-main-message .pl-en {
color: #6f42c1;
}
.incident-main-message .pl-s .pl-s1,
.incident-main-message .pl-smi {
color: #24292e;
}
.incident-main-message .pl-ent {
color: #22863a;
}
.incident-main-message .pl-k {
color: #d73a49;
}
.incident-main-message .pl-pds,
.incident-main-message .pl-s,
.incident-main-message .pl-s .pl-pse .pl-s1,
.incident-main-message .pl-sr,
.incident-main-message .pl-sr .pl-cce,
.incident-main-message .pl-sr .pl-sra,
.incident-main-message .pl-sr .pl-sre {
color: #032f62;
}
.incident-main-message .pl-smw,
.incident-main-message .pl-v {
color: #e36209;
}
.incident-main-message .pl-bu {
color: #b31d28;
}
.incident-main-message .pl-ii {
color: #fafbfc;
background-color: #b31d28;
}
.incident-main-message .pl-c2 {
color: #fafbfc;
background-color: #d73a49;
}
.incident-main-message .pl-c2:before {
content: "^M";
}
.incident-main-message .pl-sr .pl-cce {
font-weight: 700;
color: #22863a;
}
.incident-main-message .pl-ml {
color: #735c0f;
}
.incident-main-message .pl-mh,
.incident-main-message .pl-mh .pl-en,
.incident-main-message .pl-ms {
font-weight: 700;
color: #005cc5;
}
.incident-main-message .pl-mi {
font-style: italic;
color: #24292e;
}
.incident-main-message .pl-mb {
font-weight: 700;
color: #24292e;
}
.incident-main-message .pl-md {
color: #b31d28;
background-color: #ffeef0;
}
.incident-main-message .pl-mi1 {
color: #22863a;
background-color: #f0fff4;
}
.incident-main-message .pl-mc {
color: #e36209;
background-color: #ffebda;
}
.incident-main-message .pl-mi2 {
color: #f6f8fa;
background-color: #005cc5;
}
.incident-main-message .pl-mdr {
font-weight: 700;
color: #6f42c1;
}
.incident-main-message .pl-ba {
color: #586069;
}
.incident-main-message .pl-sg {
color: #959da5;
}
.incident-main-message .pl-corl {
text-decoration: underline;
color: #032f62;
}
.incident-main-message .mb-0 {
margin-bottom: 0 !important;
}
.incident-main-message .my-2 {
margin-bottom: 8px !important;
}
.incident-main-message .my-2 {
margin-top: 8px !important;
}
.incident-main-message .pl-0 {
padding-left: 0 !important;
}
.incident-main-message .py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.incident-main-message .pl-1 {
padding-left: 4px !important;
}
.incident-main-message .pl-2 {
padding-left: 8px !important;
}
.incident-main-message .py-2 {
padding-top: 8px !important;
padding-bottom: 8px !important;
}
.incident-main-message .pl-3 {
padding-left: 16px !important;
}
.incident-main-message .pl-4 {
padding-left: 24px !important;
}
.incident-main-message .pl-5 {
padding-left: 32px !important;
}
.incident-main-message .pl-6 {
padding-left: 40px !important;
}
.incident-main-message .pl-7 {
padding-left: 48px !important;
}
.incident-main-message .pl-8 {
padding-left: 64px !important;
}
.incident-main-message .pl-9 {
padding-left: 80px !important;
}
.incident-main-message .pl-10 {
padding-left: 96px !important;
}
.incident-main-message .pl-11 {
padding-left: 112px !important;
}
.incident-main-message .pl-12 {
padding-left: 128px !important;
}
.incident-main-message hr {
border-bottom-color: #eee;
}
.incident-main-message kbd {
display: inline-block;
padding: 3px 5px;
font: 11px SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
line-height: 10px;
color: #444d56;
vertical-align: middle;
background-color: #fafbfc;
border: 1px solid #d1d5da;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #d1d5da;
}
.incident-main-message:after,
.incident-main-message:before {
display: table;
content: "";
}
.incident-main-message:after {
clear: both;
}
.incident-main-message > :first-child {
margin-top: 0 !important;
}
.incident-main-message > :last-child {
margin-bottom: 0 !important;
}
.incident-main-message a:not([href]) {
color: inherit;
text-decoration: none;
}
.incident-main-message blockquote,
.incident-main-message details,
.incident-main-message dl,
.incident-main-message ol,
.incident-main-message p,
.incident-main-message pre,
.incident-main-message table,
.incident-main-message ul {
margin-top: 0;
margin-bottom: 16px;
}
.incident-main-message hr {
height: .25em;
padding: 0;
margin: 24px 0;
background-color: #e1e4e8;
border: 0;
}
.incident-main-message blockquote {
padding: 0 1em;
color: #6a737d;
border-left: .25em solid #dfe2e5;
}
.incident-main-message blockquote > :first-child {
margin-top: 0;
}
.incident-main-message blockquote > :last-child {
margin-bottom: 0;
}
.incident-main-message h1,
.incident-main-message h2,
.incident-main-message h3,
.incident-main-message h4,
.incident-main-message h5,
.incident-main-message h6 {
margin-top: 24px;
margin-bottom: 16px;
font-weight: 600;
line-height: 1.25;
}
.incident-main-message h1 {
font-size: 2em;
}
.incident-main-message h1,
.incident-main-message h2 {
padding-bottom: .3em;
border-bottom: 1px solid #eaecef;
}
.incident-main-message h2 {
font-size: 1.5em;
}
.incident-main-message h3 {
font-size: 1.25em;
}
.incident-main-message h4 {
font-size: 1em;
}
.incident-main-message h5 {
font-size: .875em;
}
.incident-main-message h6 {
font-size: .85em;
color: #6a737d;
}
.incident-main-message ol,
.incident-main-message ul {
padding-left: 2em;
}
.incident-main-message ol ol,
.incident-main-message ol ul,
.incident-main-message ul ol,
.incident-main-message ul ul {
margin-top: 0;
margin-bottom: 0;
}
.incident-main-message li {
word-wrap: break-all;
}
.incident-main-message li > p {
margin-top: 16px;
}
.incident-main-message li + li {
margin-top: .25em;
}
.incident-main-message dl {
padding: 0;
}
.incident-main-message dl dt {
padding: 0;
margin-top: 16px;
font-size: 1em;
font-style: italic;
font-weight: 600;
}
.incident-main-message dl dd {
padding: 0 16px;
margin-bottom: 16px;
}
.incident-main-message table {
display: block;
width: 100%;
overflow: auto;
}
.incident-main-message table th {
font-weight: 600;
}
.incident-main-message table td,
.incident-main-message table th {
padding: 6px 13px;
border: 1px solid #dfe2e5;
}
.incident-main-message table tr {
background-color: #fff;
border-top: 1px solid #c6cbd1;
}
.incident-main-message table tr:nth-child(2n) {
background-color: #f6f8fa;
}
.incident-main-message img {
max-width: 100%;
box-sizing: initial;
background-color: #fff;
}
.incident-main-message img[align=right] {
padding-left: 20px;
}
.incident-main-message img[align=left] {
padding-right: 20px;
}
.incident-main-message code {
padding: .2em .4em;
margin: 0;
font-size: 85%;
background-color: rgba(27, 31, 35, .05);
border-radius: 3px;
}
.incident-main-message pre {
word-wrap: normal;
}
.incident-main-message pre > code {
padding: 0;
margin: 0;
font-size: 100%;
word-break: normal;
white-space: pre;
background: transparent;
border: 0;
}
.incident-main-message .highlight {
margin-bottom: 16px;
}
.incident-main-message .highlight pre {
margin-bottom: 0;
word-break: normal;
}
.incident-main-message .highlight pre,
.incident-main-message pre {
padding: 16px;
overflow: auto;
font-size: 85%;
line-height: 1.45;
background-color: #f6f8fa;
border-radius: 3px;
}
.incident-main-message pre code {
display: inline;
max-width: auto;
padding: 0;
margin: 0;
overflow: visible;
line-height: inherit;
word-wrap: normal;
background-color: initial;
border: 0;
}
.incident-main-message .commit-tease-sha {
display: inline-block;
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
font-size: 90%;
color: #444d56;
}
.incident-main-message .full-commit .btn-outline:not(:disabled):hover {
color: #005cc5;
border-color: #005cc5;
}
.incident-main-message .blob-wrapper {
overflow-x: auto;
overflow-y: hidden;
}
.incident-main-message .blob-wrapper-embedded {
max-height: 240px;
overflow-y: auto;
}
.incident-main-message .blob-num {
width: 1%;
min-width: 50px;
padding-right: 10px;
padding-left: 10px;
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
font-size: 12px;
line-height: 20px;
color: rgba(27, 31, 35, .3);
text-align: right;
white-space: nowrap;
vertical-align: top;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.incident-main-message .blob-num:hover {
color: rgba(27, 31, 35, .6);
}
.incident-main-message .blob-num:before {
content: attr(data-line-number);
}
.incident-main-message .blob-code {
position: relative;
padding-right: 10px;
padding-left: 10px;
line-height: 20px;
vertical-align: top;
}
.incident-main-message .blob-code-inner {
overflow: visible;
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
font-size: 12px;
color: #24292e;
word-wrap: normal;
white-space: pre;
}
.incident-main-message .pl-token.active,
.incident-main-message .pl-token:hover {
cursor: pointer;
background: #ffea7f;
}
.incident-main-message .tab-size[data-tab-size="1"] {
-moz-tab-size: 1;
tab-size: 1;
}
.incident-main-message .tab-size[data-tab-size="2"] {
-moz-tab-size: 2;
tab-size: 2;
}
.incident-main-message .tab-size[data-tab-size="3"] {
-moz-tab-size: 3;
tab-size: 3;
}
.incident-main-message .tab-size[data-tab-size="4"] {
-moz-tab-size: 4;
tab-size: 4;
}
.incident-main-message .tab-size[data-tab-size="5"] {
-moz-tab-size: 5;
tab-size: 5;
}
.incident-main-message .tab-size[data-tab-size="6"] {
-moz-tab-size: 6;
tab-size: 6;
}
.incident-main-message .tab-size[data-tab-size="7"] {
-moz-tab-size: 7;
tab-size: 7;
}
.incident-main-message .tab-size[data-tab-size="8"] {
-moz-tab-size: 8;
tab-size: 8;
}
.incident-main-message .tab-size[data-tab-size="9"] {
-moz-tab-size: 9;
tab-size: 9;
}
.incident-main-message .tab-size[data-tab-size="10"] {
-moz-tab-size: 10;
tab-size: 10;
}
.incident-main-message .tab-size[data-tab-size="11"] {
-moz-tab-size: 11;
tab-size: 11;
}
.incident-main-message .tab-size[data-tab-size="12"] {
-moz-tab-size: 12;
tab-size: 12;
}
.incident-main-message .task-list-item {
list-style-type: none;
}
.incident-main-message .task-list-item + .task-list-item {
margin-top: 3px;
}
.incident-main-message .task-list-item input {
margin: 0 .2em .25em -1.6em;
vertical-align: middle;
}
.incident-title .components-badges.float-badges span {
margin-bottom: 2px;
margin-top: 2px;
}
.show-more-incident .incident-main-message {
position: relative;
}
.show-more-incident .show-more-button-wrapper {
width: 100%;
text-align: center;
}
.show-more-incident .show-more-button-wrapper .btn {
display: none;
position: absolute;
bottom: -25px;
z-index: 100;
text-align: center;
width: 14%;
left: 43%;
}
.show-more-incident .show-more-button-wrapper .btn .line {
display: inline-block;
flex-basis: 200px;
height: 1px;
margin-top: 12px;
background-color: rgba(221, 221, 221, 0.1);
}
.show-more-incident .fade {
display: none;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 75%);
height: 100px;
margin-top: -100px;
position: relative;
}
.show-more-incident .markdown {
position: relative;
overflow: hidden;
transition: max-height .5s ease;
}
.alert-box .content ul {
padding: revert;
}
.alert-box .content ul > li {
list-style-type: initial;
}
.collection-incidents {
overflow: visible;
}
.incident.persistent {
background-color: #fff9c4;
}
.incident.persistent .fade {
background: linear-gradient(to bottom, rgba(255, 249, 196, 0) 0%, rgba(255, 249, 196, 0.8) 75%);
}
#list-persistent-incidents {
text-transform: capitalize;
} | website/assets/css/custom.css | .collection a {
text-overflow: ellipsis;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
display: table;
width: 100%;
}
footer {
display: table-row;
height: 100px;
}
hr {
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.global-status {
font-size: 1.5rem;
padding: 1rem .5rem;
line-height: 24px;
}
.components-status {
margin-top: 15px;
padding: 5px;
}
.material-icons, .icon-text {
display: inline-flex;
vertical-align: top;
}
.material-icons.tooltipped {
cursor: pointer;
}
.timeline {
list-style: none;
margin: 0;
padding: 0;
}
.timeline-incident {
list-style: none;
border-left: 2px solid #e1e4e8;
margin-left: .5rem;
position: relative;
padding-top: 0;
padding-bottom: 1.5rem;
padding-left: 1.5rem;
}
.timeline-incident:last-child {
border-color: transparent;
}
.timeline-incident:before {
width: 1.5rem;
height: 1.5rem;
border: 2px solid #6a737d;
position: absolute;
border-radius: 9999px;
z-index: 10;
background-color: #fff;
content: " ";
left: -12px;
top: 0;
}
.timeline-incident-green:before {
border-color: #6a737d;
}
.timeline-incident-purple:before {
border-color: #9c27b0;
}
.timeline-incident-deep-orange:before {
border-color: #ff5722;
}
.timeline-incident-grey:before {
border-color: #212121;
}
.timeline-incident-red:before {
border-color: #F44336;
}
.timeline-incident-title {
margin: 0;
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 1rem;
}
.timeline-incident-body {
padding-bottom: .5rem;
}
.timeline-incident-body .message {
color: #6a737d;
}
.incident {
padding: 10px;
margin-bottom: 20px;
}
.badge {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.incident .incident-title h5 {
line-height: 20px;
}
.incident .incident-state-details {
line-height: 15px;
}
.incident-state-details {
margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
}
.incident-main-message {
margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
}
.incident-updates {
margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
}
.incident .incident-title .badge {
margin-right: 5px;
}
time.human {
text-decoration: underline dotted;
cursor: help;
}
.sidenav li > a {
color: white;
}
.admin-container {
padding-left: 185px;
}
.admin-container .collection .collection-item.avatar {
padding: 10px 20px;
}
.admin-container .collection .collection-item .badge {
float: none;
margin-left: 0;
}
.admin-container .collection .collection-item .secondary-content {
float: right;
position: initial;
margin-left: 5px;
}
.admin-container .head {
margin-bottom: 50px;
}
.admin-container .chips-components {
margin-top: 0;
}
.admin-container [type="radio"]:checked + span,
.admin-container [type="radio"]:not(:checked) + span {
padding-left: 25px;
margin-right: 10px;
}
.mark-as-btn {
width: 115px;
}
.preloader-wrapper.preload-btn {
width: 14px;
height: 14px;
}
.markdown ul,
.markdown ol,
.markdown ul > li,
.markdown ol > li {
list-style: initial;
}
.markdown [type="checkbox"]:not(:checked),
.markdown [type="checkbox"]:checked {
position: initial;
top: initial;
opacity: initial;
}
.modal-with-tabs {
width: 75%;
height: 80%;
}
.modal-with-tabs .tabs-vertical .col-modal-tabs {
width: 25%;
}
.modal-with-tabs .tabs-vertical .col-modal-content {
width: 74%;
}
.modal-with-tabs a.tab-no-border {
border-right: none;
}
.incident-item.avatar {
position: initial !important;
}
.details-date {
font-size: .7rem;
}
.chips .input {
width: 170px !important;
}
.incident-main-message ul {
padding-left: initial;
list-style-type: initial;
}
.incident-main-message ul > li {
list-style-type: disc;
}
.incident-main-message ul ul > li {
list-style-type: circle;
}
.incident-main-message ul ul ul > li {
list-style-type: square;
}
.incident-main-message .octicon {
display: inline-block;
fill: currentColor;
vertical-align: text-bottom;
}
.incident-main-message .anchor {
float: left;
line-height: 1;
margin-left: -20px;
padding-right: 4px;
}
.incident-main-message .anchor:focus {
outline: none;
}
.incident-main-message h1 .octicon-link,
.incident-main-message h2 .octicon-link,
.incident-main-message h3 .octicon-link,
.incident-main-message h4 .octicon-link,
.incident-main-message h5 .octicon-link,
.incident-main-message h6 .octicon-link {
color: #1b1f23;
vertical-align: middle;
visibility: hidden;
}
.incident-main-message h1:hover .anchor,
.incident-main-message h2:hover .anchor,
.incident-main-message h3:hover .anchor,
.incident-main-message h4:hover .anchor,
.incident-main-message h5:hover .anchor,
.incident-main-message h6:hover .anchor {
text-decoration: none;
}
.incident-main-message h1:hover .anchor .octicon-link,
.incident-main-message h2:hover .anchor .octicon-link,
.incident-main-message h3:hover .anchor .octicon-link,
.incident-main-message h4:hover .anchor .octicon-link,
.incident-main-message h5:hover .anchor .octicon-link,
.incident-main-message h6:hover .anchor .octicon-link {
visibility: visible;
}
.incident-main-message h1:hover .anchor .octicon-link:before,
.incident-main-message h2:hover .anchor .octicon-link:before,
.incident-main-message h3:hover .anchor .octicon-link:before,
.incident-main-message h4:hover .anchor .octicon-link:before,
.incident-main-message h5:hover .anchor .octicon-link:before,
.incident-main-message h6:hover .anchor .octicon-link:before {
width: 16px;
height: 16px;
content: ' ';
display: inline-block;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' width='16' height='16' aria-hidden='true'%3E%3Cpath fill-rule='evenodd' d='M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z'%3E%3C/path%3E%3C/svg%3E");
}
.incident-main-message {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
line-height: 1.5;
color: #24292e;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
font-size: 16px;
line-height: 1.5;
word-wrap: break-word;
}
.incident-main-message details {
display: block;
}
.incident-main-message summary {
display: list-item;
}
.incident-main-message a {
background-color: initial;
}
.incident-main-message a:active,
.incident-main-message a:hover {
outline-width: 0;
}
.incident-main-message strong {
font-weight: inherit;
font-weight: bolder;
}
.incident-main-message h1 {
font-size: 2em;
margin: .67em 0;
}
.incident-main-message img {
border-style: none;
}
.incident-main-message code,
.incident-main-message kbd,
.incident-main-message pre {
font-family: monospace, monospace;
font-size: 1em;
}
.incident-main-message hr {
box-sizing: initial;
height: 0;
overflow: visible;
}
.incident-main-message input {
font: inherit;
margin: 0;
}
.incident-main-message input {
overflow: visible;
}
.incident-main-message [type=checkbox] {
box-sizing: border-box;
padding: 0;
}
.incident-main-message * {
box-sizing: border-box;
}
.incident-main-message input {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.incident-main-message a {
color: #0366d6;
text-decoration: none;
}
.incident-main-message a:hover {
text-decoration: underline;
}
.incident-main-message strong {
font-weight: 600;
}
.incident-main-message hr {
height: 0;
margin: 15px 0;
overflow: hidden;
background: transparent;
border: 0;
border-bottom: 1px solid #dfe2e5;
}
.incident-main-message hr:after,
.incident-main-message hr:before {
display: table;
content: "";
}
.incident-main-message hr:after {
clear: both;
}
.incident-main-message table {
border-spacing: 0;
border-collapse: collapse;
}
.incident-main-message td,
.incident-main-message th {
padding: 0;
}
.incident-main-message details summary {
cursor: pointer;
}
.incident-main-message kbd {
display: inline-block;
padding: 3px 5px;
font: 11px SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
line-height: 10px;
color: #444d56;
vertical-align: middle;
background-color: #fafbfc;
border: 1px solid #d1d5da;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #d1d5da;
}
.incident-main-message h1,
.incident-main-message h2,
.incident-main-message h3,
.incident-main-message h4,
.incident-main-message h5,
.incident-main-message h6 {
margin-top: 0;
margin-bottom: 0;
}
.incident-main-message h1 {
font-size: 32px;
}
.incident-main-message h1,
.incident-main-message h2 {
font-weight: 600;
}
.incident-main-message h2 {
font-size: 24px;
}
.incident-main-message h3 {
font-size: 20px;
}
.incident-main-message h3,
.incident-main-message h4 {
font-weight: 600;
}
.incident-main-message h4 {
font-size: 16px;
}
.incident-main-message h5 {
font-size: 14px;
}
.incident-main-message h5,
.incident-main-message h6 {
font-weight: 600;
}
.incident-main-message h6 {
font-size: 12px;
}
.incident-main-message p {
margin-top: 0;
margin-bottom: 10px;
}
.incident-main-message blockquote {
margin: 0;
}
.incident-main-message ol,
.incident-main-message ul {
padding-left: 0;
margin-top: 0;
margin-bottom: 0;
}
.incident-main-message ol ol,
.incident-main-message ul ol {
list-style-type: lower-roman;
}
.incident-main-message ol ol ol,
.incident-main-message ol ul ol,
.incident-main-message ul ol ol,
.incident-main-message ul ul ol {
list-style-type: lower-alpha;
}
.incident-main-message dd {
margin-left: 0;
}
.incident-main-message code,
.incident-main-message pre {
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
font-size: 12px;
}
.incident-main-message pre {
margin-top: 0;
margin-bottom: 0;
}
.incident-main-message input::-webkit-inner-spin-button,
.incident-main-message input::-webkit-outer-spin-button {
margin: 0;
-webkit-appearance: none;
appearance: none;
}
.incident-main-message :checked + .radio-label {
position: relative;
z-index: 1;
border-color: #0366d6;
}
.incident-main-message .border {
border: 1px solid #e1e4e8 !important;
}
.incident-main-message .border-0 {
border: 0 !important;
}
.incident-main-message .border-bottom {
border-bottom: 1px solid #e1e4e8 !important;
}
.incident-main-message .rounded-1 {
border-radius: 3px !important;
}
.incident-main-message .bg-white {
background-color: #fff !important;
}
.incident-main-message .bg-gray-light {
background-color: #fafbfc !important;
}
.incident-main-message .text-gray-light {
color: #6a737d !important;
}
.incident-main-message .mb-0 {
margin-bottom: 0 !important;
}
.incident-main-message .my-2 {
margin-top: 8px !important;
margin-bottom: 8px !important;
}
.incident-main-message .pl-0 {
padding-left: 0 !important;
}
.incident-main-message .py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.incident-main-message .pl-1 {
padding-left: 4px !important;
}
.incident-main-message .pl-2 {
padding-left: 8px !important;
}
.incident-main-message .py-2 {
padding-top: 8px !important;
padding-bottom: 8px !important;
}
.incident-main-message .pl-3,
.incident-main-message .px-3 {
padding-left: 16px !important;
}
.incident-main-message .px-3 {
padding-right: 16px !important;
}
.incident-main-message .pl-4 {
padding-left: 24px !important;
}
.incident-main-message .pl-5 {
padding-left: 32px !important;
}
.incident-main-message .pl-6 {
padding-left: 40px !important;
}
.incident-main-message .f6 {
font-size: 12px !important;
}
.incident-main-message .lh-condensed {
line-height: 1.25 !important;
}
.incident-main-message .text-bold {
font-weight: 600 !important;
}
.incident-main-message .pl-c {
color: #6a737d;
}
.incident-main-message .pl-c1,
.incident-main-message .pl-s .pl-v {
color: #005cc5;
}
.incident-main-message .pl-e,
.incident-main-message .pl-en {
color: #6f42c1;
}
.incident-main-message .pl-s .pl-s1,
.incident-main-message .pl-smi {
color: #24292e;
}
.incident-main-message .pl-ent {
color: #22863a;
}
.incident-main-message .pl-k {
color: #d73a49;
}
.incident-main-message .pl-pds,
.incident-main-message .pl-s,
.incident-main-message .pl-s .pl-pse .pl-s1,
.incident-main-message .pl-sr,
.incident-main-message .pl-sr .pl-cce,
.incident-main-message .pl-sr .pl-sra,
.incident-main-message .pl-sr .pl-sre {
color: #032f62;
}
.incident-main-message .pl-smw,
.incident-main-message .pl-v {
color: #e36209;
}
.incident-main-message .pl-bu {
color: #b31d28;
}
.incident-main-message .pl-ii {
color: #fafbfc;
background-color: #b31d28;
}
.incident-main-message .pl-c2 {
color: #fafbfc;
background-color: #d73a49;
}
.incident-main-message .pl-c2:before {
content: "^M";
}
.incident-main-message .pl-sr .pl-cce {
font-weight: 700;
color: #22863a;
}
.incident-main-message .pl-ml {
color: #735c0f;
}
.incident-main-message .pl-mh,
.incident-main-message .pl-mh .pl-en,
.incident-main-message .pl-ms {
font-weight: 700;
color: #005cc5;
}
.incident-main-message .pl-mi {
font-style: italic;
color: #24292e;
}
.incident-main-message .pl-mb {
font-weight: 700;
color: #24292e;
}
.incident-main-message .pl-md {
color: #b31d28;
background-color: #ffeef0;
}
.incident-main-message .pl-mi1 {
color: #22863a;
background-color: #f0fff4;
}
.incident-main-message .pl-mc {
color: #e36209;
background-color: #ffebda;
}
.incident-main-message .pl-mi2 {
color: #f6f8fa;
background-color: #005cc5;
}
.incident-main-message .pl-mdr {
font-weight: 700;
color: #6f42c1;
}
.incident-main-message .pl-ba {
color: #586069;
}
.incident-main-message .pl-sg {
color: #959da5;
}
.incident-main-message .pl-corl {
text-decoration: underline;
color: #032f62;
}
.incident-main-message .mb-0 {
margin-bottom: 0 !important;
}
.incident-main-message .my-2 {
margin-bottom: 8px !important;
}
.incident-main-message .my-2 {
margin-top: 8px !important;
}
.incident-main-message .pl-0 {
padding-left: 0 !important;
}
.incident-main-message .py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.incident-main-message .pl-1 {
padding-left: 4px !important;
}
.incident-main-message .pl-2 {
padding-left: 8px !important;
}
.incident-main-message .py-2 {
padding-top: 8px !important;
padding-bottom: 8px !important;
}
.incident-main-message .pl-3 {
padding-left: 16px !important;
}
.incident-main-message .pl-4 {
padding-left: 24px !important;
}
.incident-main-message .pl-5 {
padding-left: 32px !important;
}
.incident-main-message .pl-6 {
padding-left: 40px !important;
}
.incident-main-message .pl-7 {
padding-left: 48px !important;
}
.incident-main-message .pl-8 {
padding-left: 64px !important;
}
.incident-main-message .pl-9 {
padding-left: 80px !important;
}
.incident-main-message .pl-10 {
padding-left: 96px !important;
}
.incident-main-message .pl-11 {
padding-left: 112px !important;
}
.incident-main-message .pl-12 {
padding-left: 128px !important;
}
.incident-main-message hr {
border-bottom-color: #eee;
}
.incident-main-message kbd {
display: inline-block;
padding: 3px 5px;
font: 11px SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
line-height: 10px;
color: #444d56;
vertical-align: middle;
background-color: #fafbfc;
border: 1px solid #d1d5da;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #d1d5da;
}
.incident-main-message:after,
.incident-main-message:before {
display: table;
content: "";
}
.incident-main-message:after {
clear: both;
}
.incident-main-message > :first-child {
margin-top: 0 !important;
}
.incident-main-message > :last-child {
margin-bottom: 0 !important;
}
.incident-main-message a:not([href]) {
color: inherit;
text-decoration: none;
}
.incident-main-message blockquote,
.incident-main-message details,
.incident-main-message dl,
.incident-main-message ol,
.incident-main-message p,
.incident-main-message pre,
.incident-main-message table,
.incident-main-message ul {
margin-top: 0;
margin-bottom: 16px;
}
.incident-main-message hr {
height: .25em;
padding: 0;
margin: 24px 0;
background-color: #e1e4e8;
border: 0;
}
.incident-main-message blockquote {
padding: 0 1em;
color: #6a737d;
border-left: .25em solid #dfe2e5;
}
.incident-main-message blockquote > :first-child {
margin-top: 0;
}
.incident-main-message blockquote > :last-child {
margin-bottom: 0;
}
.incident-main-message h1,
.incident-main-message h2,
.incident-main-message h3,
.incident-main-message h4,
.incident-main-message h5,
.incident-main-message h6 {
margin-top: 24px;
margin-bottom: 16px;
font-weight: 600;
line-height: 1.25;
}
.incident-main-message h1 {
font-size: 2em;
}
.incident-main-message h1,
.incident-main-message h2 {
padding-bottom: .3em;
border-bottom: 1px solid #eaecef;
}
.incident-main-message h2 {
font-size: 1.5em;
}
.incident-main-message h3 {
font-size: 1.25em;
}
.incident-main-message h4 {
font-size: 1em;
}
.incident-main-message h5 {
font-size: .875em;
}
.incident-main-message h6 {
font-size: .85em;
color: #6a737d;
}
.incident-main-message ol,
.incident-main-message ul {
padding-left: 2em;
}
.incident-main-message ol ol,
.incident-main-message ol ul,
.incident-main-message ul ol,
.incident-main-message ul ul {
margin-top: 0;
margin-bottom: 0;
}
.incident-main-message li {
word-wrap: break-all;
}
.incident-main-message li > p {
margin-top: 16px;
}
.incident-main-message li + li {
margin-top: .25em;
}
.incident-main-message dl {
padding: 0;
}
.incident-main-message dl dt {
padding: 0;
margin-top: 16px;
font-size: 1em;
font-style: italic;
font-weight: 600;
}
.incident-main-message dl dd {
padding: 0 16px;
margin-bottom: 16px;
}
.incident-main-message table {
display: block;
width: 100%;
overflow: auto;
}
.incident-main-message table th {
font-weight: 600;
}
.incident-main-message table td,
.incident-main-message table th {
padding: 6px 13px;
border: 1px solid #dfe2e5;
}
.incident-main-message table tr {
background-color: #fff;
border-top: 1px solid #c6cbd1;
}
.incident-main-message table tr:nth-child(2n) {
background-color: #f6f8fa;
}
.incident-main-message img {
max-width: 100%;
box-sizing: initial;
background-color: #fff;
}
.incident-main-message img[align=right] {
padding-left: 20px;
}
.incident-main-message img[align=left] {
padding-right: 20px;
}
.incident-main-message code {
padding: .2em .4em;
margin: 0;
font-size: 85%;
background-color: rgba(27, 31, 35, .05);
border-radius: 3px;
}
.incident-main-message pre {
word-wrap: normal;
}
.incident-main-message pre > code {
padding: 0;
margin: 0;
font-size: 100%;
word-break: normal;
white-space: pre;
background: transparent;
border: 0;
}
.incident-main-message .highlight {
margin-bottom: 16px;
}
.incident-main-message .highlight pre {
margin-bottom: 0;
word-break: normal;
}
.incident-main-message .highlight pre,
.incident-main-message pre {
padding: 16px;
overflow: auto;
font-size: 85%;
line-height: 1.45;
background-color: #f6f8fa;
border-radius: 3px;
}
.incident-main-message pre code {
display: inline;
max-width: auto;
padding: 0;
margin: 0;
overflow: visible;
line-height: inherit;
word-wrap: normal;
background-color: initial;
border: 0;
}
.incident-main-message .commit-tease-sha {
display: inline-block;
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
font-size: 90%;
color: #444d56;
}
.incident-main-message .full-commit .btn-outline:not(:disabled):hover {
color: #005cc5;
border-color: #005cc5;
}
.incident-main-message .blob-wrapper {
overflow-x: auto;
overflow-y: hidden;
}
.incident-main-message .blob-wrapper-embedded {
max-height: 240px;
overflow-y: auto;
}
.incident-main-message .blob-num {
width: 1%;
min-width: 50px;
padding-right: 10px;
padding-left: 10px;
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
font-size: 12px;
line-height: 20px;
color: rgba(27, 31, 35, .3);
text-align: right;
white-space: nowrap;
vertical-align: top;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.incident-main-message .blob-num:hover {
color: rgba(27, 31, 35, .6);
}
.incident-main-message .blob-num:before {
content: attr(data-line-number);
}
.incident-main-message .blob-code {
position: relative;
padding-right: 10px;
padding-left: 10px;
line-height: 20px;
vertical-align: top;
}
.incident-main-message .blob-code-inner {
overflow: visible;
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
font-size: 12px;
color: #24292e;
word-wrap: normal;
white-space: pre;
}
.incident-main-message .pl-token.active,
.incident-main-message .pl-token:hover {
cursor: pointer;
background: #ffea7f;
}
.incident-main-message .tab-size[data-tab-size="1"] {
-moz-tab-size: 1;
tab-size: 1;
}
.incident-main-message .tab-size[data-tab-size="2"] {
-moz-tab-size: 2;
tab-size: 2;
}
.incident-main-message .tab-size[data-tab-size="3"] {
-moz-tab-size: 3;
tab-size: 3;
}
.incident-main-message .tab-size[data-tab-size="4"] {
-moz-tab-size: 4;
tab-size: 4;
}
.incident-main-message .tab-size[data-tab-size="5"] {
-moz-tab-size: 5;
tab-size: 5;
}
.incident-main-message .tab-size[data-tab-size="6"] {
-moz-tab-size: 6;
tab-size: 6;
}
.incident-main-message .tab-size[data-tab-size="7"] {
-moz-tab-size: 7;
tab-size: 7;
}
.incident-main-message .tab-size[data-tab-size="8"] {
-moz-tab-size: 8;
tab-size: 8;
}
.incident-main-message .tab-size[data-tab-size="9"] {
-moz-tab-size: 9;
tab-size: 9;
}
.incident-main-message .tab-size[data-tab-size="10"] {
-moz-tab-size: 10;
tab-size: 10;
}
.incident-main-message .tab-size[data-tab-size="11"] {
-moz-tab-size: 11;
tab-size: 11;
}
.incident-main-message .tab-size[data-tab-size="12"] {
-moz-tab-size: 12;
tab-size: 12;
}
.incident-main-message .task-list-item {
list-style-type: none;
}
.incident-main-message .task-list-item + .task-list-item {
margin-top: 3px;
}
.incident-main-message .task-list-item input {
margin: 0 .2em .25em -1.6em;
vertical-align: middle;
}
.incident-title .components-badges.float-badges span {
margin-bottom: 2px;
margin-top: 2px;
}
.show-more-incident .incident-main-message {
position: relative;
}
.show-more-incident .show-more-button-wrapper {
width: 100%;
text-align: center;
}
.show-more-incident .show-more-button-wrapper .btn {
display: none;
position: absolute;
bottom: -25px;
z-index: 100;
text-align: center;
width: 14%;
left: 43%;
}
.show-more-incident .show-more-button-wrapper .btn .line {
display: inline-block;
flex-basis: 200px;
height: 1px;
margin-top: 12px;
background-color: rgba(221, 221, 221, 0.1);
}
.show-more-incident .fade {
display: none;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 75%);
height: 100px;
margin-top: -100px;
position: relative;
}
.show-more-incident .markdown {
position: relative;
overflow: hidden;
transition: max-height .5s ease;
}
.alert-box .content ul {
padding: revert;
}
.alert-box .content ul > li {
list-style-type: initial;
}
.collection-incidents {
overflow: visible;
}
.incident.persistent {
background-color: #fff9c4;
}
.incident.persistent .fade {
background: linear-gradient(to bottom, rgba(255, 249, 196, 0) 0%, rgba(255, 249, 196, 0.8) 75%);
}
#list-persistent-incidents {
text-transform: capitalize;
} | 0.664758 | 0.10226 |
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Lato', sans-serif;
font-size: 13px;
background: #153f61;
}
input {
border: 0;
padding: 0;
margin: 0;
outline: none;
}
a, a:hover {
color: #fff;
text-decoration: none;
}
.centerFlex {
display: flex;
align-content: center;
align-items: center;
justify-content: center;
height: 100vh;
width: 100%;
transition: margin 400ms;
}
.login {
background: #fff;
width: 90%;
max-width: 720px;
border-radius: 4px;
overflow: hidden;
display: flex;
flex-direction: row;
transition: all 500ms;
}
.headerLogin {
width: 40%;
padding: 30px;
color: #fff;
border-radius: 4px 0 0 4px;
background: #fff url('http://www.estudiovillanueva.com/wp-content/uploads/2016/09/shutterstock_v1316959.mov0_.jpg') no-repeat;
background-size: cover;
position: relative;
text-align: center;
transition: all 500ms;
}
.topHeader .icono {
font-size: 3.5em;
}
.topHeader .titulo {
font-weight: bold;
font-size: 2em;
}
.bottomHeader {
margin-top: 80px;
margin-bottom: 20px;
text-align: left;
}
.bottomHeader .listButton {
margin: 6px 0;
cursor: pointer;
}
.topHeader, .bottomHeader {
position: relative;
z-index: 10;
}
.fondo {
position: absolute;
top: 0;
left: 0;
background: rgba(45, 133, 191, 0.8);
width: 100%;
height: 100%;
border-radius: 4px 0 0 4px;
}
#log-cont {
width: 60%;
padding: 50px 40px;
padding-bottom: 30px;
overflow: hidden;
}
.inputGroup {
margin-bottom: 20px;
}
.labelText {
color: #2574a9;
font-family: 'Concert One', cursive;
font-size: 16px;
margin-bottom: 8px;
}
.inputIcon {
display: flex;
border: 1px solid #dedede;
border-radius: 3px;
}
.inputIcon .icon {
color: #9E9D9B;
font-size: 1.2em;
padding: 8px;
}
.inputIcon input {
width: 100%;
border-left: 1px solid #dedede;
padding: 8px 16px;
padding-left: 4px;
font-family: 'Merienda One', cursive;
font-weight: bold;
font-size: 12px;
}
.submit {
color: #fff;
width: 100%;
height: 50px;
font-size: 1.2em;
font-family: 'Concert One', cursive;
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
margin-bottom: 20px;
background-color: #2574a9;
border: none;
outline: none;
border-radius: 3px;
text-transform: uppercase;
cursor: pointer;
box-shadow: 0 2px 0 rgba(0,0,0,0.25),
0 2px 0 rgba(46,109,151,1),
0 2px 6px rgba(0,0,0,0.45);
transition: all 0.3s;
}
.submit:active {
transition: none;
padding: 0;
background-color: #0f609a;
box-shadow: 0 1px 2px rgba(0,0,0,0.45);
transform: translateY(2px);
}
#inicio {
transform: translateY(0);
transition: transform 1000ms;
}
#registro {
transform: translateY(-150%);
display: none;
transition: transform 1000ms ease;
}
.error {
padding: 20px;
background: #fff;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.03);
max-width: 760px;
margin: 0 auto;
}
.error button {
border: 1px solid #ddd;
padding: 8px;
background: #fff;
outline: none;
color: #222;
cursor: pointer;
}
#alr {
width: 95%;
max-width: 320px;
position:fixed;
bottom: 10px;
left: 0;
transform: translate(-100%);
transition: all 400ms ease-in-out;
}
#alr .alert {
display: block;
}
@media all and (max-width: 765px) {
.login {
flex-direction: column;
}
.headerLogin, #log-cont {
width: 100%;
}
.headerLogin, .fondo {
border-radius: 4px 4px 0 0;
}
.bottomHeader {
margin-top: 30px;
margin-bottom: 0;
}
.centerFlex {
height: 100%;
margin: 20px 0;
}
} | admin/css/style.css | * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Lato', sans-serif;
font-size: 13px;
background: #153f61;
}
input {
border: 0;
padding: 0;
margin: 0;
outline: none;
}
a, a:hover {
color: #fff;
text-decoration: none;
}
.centerFlex {
display: flex;
align-content: center;
align-items: center;
justify-content: center;
height: 100vh;
width: 100%;
transition: margin 400ms;
}
.login {
background: #fff;
width: 90%;
max-width: 720px;
border-radius: 4px;
overflow: hidden;
display: flex;
flex-direction: row;
transition: all 500ms;
}
.headerLogin {
width: 40%;
padding: 30px;
color: #fff;
border-radius: 4px 0 0 4px;
background: #fff url('http://www.estudiovillanueva.com/wp-content/uploads/2016/09/shutterstock_v1316959.mov0_.jpg') no-repeat;
background-size: cover;
position: relative;
text-align: center;
transition: all 500ms;
}
.topHeader .icono {
font-size: 3.5em;
}
.topHeader .titulo {
font-weight: bold;
font-size: 2em;
}
.bottomHeader {
margin-top: 80px;
margin-bottom: 20px;
text-align: left;
}
.bottomHeader .listButton {
margin: 6px 0;
cursor: pointer;
}
.topHeader, .bottomHeader {
position: relative;
z-index: 10;
}
.fondo {
position: absolute;
top: 0;
left: 0;
background: rgba(45, 133, 191, 0.8);
width: 100%;
height: 100%;
border-radius: 4px 0 0 4px;
}
#log-cont {
width: 60%;
padding: 50px 40px;
padding-bottom: 30px;
overflow: hidden;
}
.inputGroup {
margin-bottom: 20px;
}
.labelText {
color: #2574a9;
font-family: 'Concert One', cursive;
font-size: 16px;
margin-bottom: 8px;
}
.inputIcon {
display: flex;
border: 1px solid #dedede;
border-radius: 3px;
}
.inputIcon .icon {
color: #9E9D9B;
font-size: 1.2em;
padding: 8px;
}
.inputIcon input {
width: 100%;
border-left: 1px solid #dedede;
padding: 8px 16px;
padding-left: 4px;
font-family: 'Merienda One', cursive;
font-weight: bold;
font-size: 12px;
}
.submit {
color: #fff;
width: 100%;
height: 50px;
font-size: 1.2em;
font-family: 'Concert One', cursive;
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
margin-bottom: 20px;
background-color: #2574a9;
border: none;
outline: none;
border-radius: 3px;
text-transform: uppercase;
cursor: pointer;
box-shadow: 0 2px 0 rgba(0,0,0,0.25),
0 2px 0 rgba(46,109,151,1),
0 2px 6px rgba(0,0,0,0.45);
transition: all 0.3s;
}
.submit:active {
transition: none;
padding: 0;
background-color: #0f609a;
box-shadow: 0 1px 2px rgba(0,0,0,0.45);
transform: translateY(2px);
}
#inicio {
transform: translateY(0);
transition: transform 1000ms;
}
#registro {
transform: translateY(-150%);
display: none;
transition: transform 1000ms ease;
}
.error {
padding: 20px;
background: #fff;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.03);
max-width: 760px;
margin: 0 auto;
}
.error button {
border: 1px solid #ddd;
padding: 8px;
background: #fff;
outline: none;
color: #222;
cursor: pointer;
}
#alr {
width: 95%;
max-width: 320px;
position:fixed;
bottom: 10px;
left: 0;
transform: translate(-100%);
transition: all 400ms ease-in-out;
}
#alr .alert {
display: block;
}
@media all and (max-width: 765px) {
.login {
flex-direction: column;
}
.headerLogin, #log-cont {
width: 100%;
}
.headerLogin, .fondo {
border-radius: 4px 4px 0 0;
}
.bottomHeader {
margin-top: 30px;
margin-bottom: 0;
}
.centerFlex {
height: 100%;
margin: 20px 0;
}
} | 0.269518 | 0.069258 |
body { margin: 0px; padding: 0px; font: Arial, Helvetica, sans-serif; font-size:12px; line-height:18px; color:#5c5c5c;}
a{ color:#166cad; text-decoration:none; }
a:hover{ color: #FF9900; text-decoration:none; }
#head-bg{ background: url(head-bg.gif) repeat-x; height:79px;}
#logo{ background: url(logo.gif) no-repeat top left ; margin:0 ; padding:0px; float:left; display:inline; width:135px; height:79px; }
#head-title{ font-size: 18px; line-height:24px; font-weight:bold; float:left; color:#ecf0f6; text-shadow: 0px 0px 20px #9a9c9e; margin:35px 0 0 10px ; }
#head-right{ background: url(head-right.gif) no-repeat top right ; margin:0 ; padding:0px; float:right; display:inline; width:175px; height:79px; }
#tree-top{background: url(tree-title-bg.gif) repeat-x top; height:26px; line-height:26px; font-weight:bold; padding:0 0 0 15px; color:#166cad; border-right: 1px solid #99BBE8;}
#tree-content{ margin:20px 0 0 10px; overflow:auto;}
#tree-content a{ text-decoration:none; color:#166cad; padding:2px 2px 2px 5px;}
#centent-title{ font-size:14px; text-align:center; font-weight:bold;}
#content-top{ margin:0; background: url(content-top-bg.gif) repeat-x top; height:26px; width:100%; border-left:1px solid #99BBE8; border-right:1px #99BBE8 solid; font-size:12px;}
#content-bg{ margin:0; padding:10px 10px; background: url(content-bg.gif) repeat-x top;height:100%; width:100%;}
#centent{ margin:20px 10px;}
#previous-next{ margin:10px 10px 0 10px; display:block; height:24px;}
#previous{ margin:0 10px ; float:right; background:url(previous.gif) left no-repeat; padding:0 0 0 20px;}
#next{ margin:0 10px ; float:right; background:url(next.gif) right no-repeat;padding:0 20px 0 0 ;}
#related{ margin:20px 10px;}
.related-title{ background:url(related-bg.gif) repeat-x; margin:0px; line-height:26px; padding:0 0 0 10px; font-weight:bold; color:#166cad;}
.related-title-left{ background:url(related-left.gif) no-repeat; width:10px; height:24px; float:left; margin:3px 5px 0 0 ; display:inline;}
.related-list{ margin:10px 20px; list-style:none;}
.related-list li{ background:url(related-list.gif) 2px 1px no-repeat; list-style:outside; padding:0 0 0 20px; line-height:18px;}
#footer{ background:url(footer-logo.gif) 10px 10px no-repeat #f7fafd ; margin:20px 10px 0 10px; height:62px; border:1px #bfd4f0 dashed;}
.copyright{ float:right; padding:35px 10px 0 0 ;} | doc/External_library_guide/images/template.css | body { margin: 0px; padding: 0px; font: Arial, Helvetica, sans-serif; font-size:12px; line-height:18px; color:#5c5c5c;}
a{ color:#166cad; text-decoration:none; }
a:hover{ color: #FF9900; text-decoration:none; }
#head-bg{ background: url(head-bg.gif) repeat-x; height:79px;}
#logo{ background: url(logo.gif) no-repeat top left ; margin:0 ; padding:0px; float:left; display:inline; width:135px; height:79px; }
#head-title{ font-size: 18px; line-height:24px; font-weight:bold; float:left; color:#ecf0f6; text-shadow: 0px 0px 20px #9a9c9e; margin:35px 0 0 10px ; }
#head-right{ background: url(head-right.gif) no-repeat top right ; margin:0 ; padding:0px; float:right; display:inline; width:175px; height:79px; }
#tree-top{background: url(tree-title-bg.gif) repeat-x top; height:26px; line-height:26px; font-weight:bold; padding:0 0 0 15px; color:#166cad; border-right: 1px solid #99BBE8;}
#tree-content{ margin:20px 0 0 10px; overflow:auto;}
#tree-content a{ text-decoration:none; color:#166cad; padding:2px 2px 2px 5px;}
#centent-title{ font-size:14px; text-align:center; font-weight:bold;}
#content-top{ margin:0; background: url(content-top-bg.gif) repeat-x top; height:26px; width:100%; border-left:1px solid #99BBE8; border-right:1px #99BBE8 solid; font-size:12px;}
#content-bg{ margin:0; padding:10px 10px; background: url(content-bg.gif) repeat-x top;height:100%; width:100%;}
#centent{ margin:20px 10px;}
#previous-next{ margin:10px 10px 0 10px; display:block; height:24px;}
#previous{ margin:0 10px ; float:right; background:url(previous.gif) left no-repeat; padding:0 0 0 20px;}
#next{ margin:0 10px ; float:right; background:url(next.gif) right no-repeat;padding:0 20px 0 0 ;}
#related{ margin:20px 10px;}
.related-title{ background:url(related-bg.gif) repeat-x; margin:0px; line-height:26px; padding:0 0 0 10px; font-weight:bold; color:#166cad;}
.related-title-left{ background:url(related-left.gif) no-repeat; width:10px; height:24px; float:left; margin:3px 5px 0 0 ; display:inline;}
.related-list{ margin:10px 20px; list-style:none;}
.related-list li{ background:url(related-list.gif) 2px 1px no-repeat; list-style:outside; padding:0 0 0 20px; line-height:18px;}
#footer{ background:url(footer-logo.gif) 10px 10px no-repeat #f7fafd ; margin:20px 10px 0 10px; height:62px; border:1px #bfd4f0 dashed;}
.copyright{ float:right; padding:35px 10px 0 0 ;} | 0.328745 | 0.160759 |
body,
html {
margin: 0 auto;
padding: 0;
width: 100%;
height: 90%;
background-color: #A49A87; }
#phpmyadmin_word {
color: #2F2933; }
#title_main_page {
display: flex;
align-items: center;
margin: auto;
justify-content: center;
width: 1000px;
color: #db7a19;
font-size: 1.7em;
margin-top: 50px;
margin-bottom: 30px;
position: relative;
right: 100px;
right: 120px;
font-weight: bold; }
#home_icon {
margin-right: 10px; }
#home_icon:hover {
cursor: pointer; }
#main {
margin: auto;
display: flex;
justify-content: center;
width: 1000px;
flex-wrap: wrap;
height: auto; }
#selection_main {
font-size: 1.5em;
color: white;
background-color: #01A2A6;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
width: 750px;
height: 300px; }
#title_selection_box {
text-align: center;
font-weight: bold; }
#selection_table_box form {
height: 200px;
display: flex;
justify-content: center; }
.select_part {
display: flex;
flex-direction: column;
width: 200px;
border-radius: 15px; }
.separation {
margin-left: 20px;
margin-right: 20px;
border-right: 0.2px solid black;
box-shadow: 0.9px 0px 5px black;
box-shadow: 0.9px 0px 5px black; }
.title_select_db {
text-align: center;
color: black; }
select {
width: 200px;
border-radius: 5px;
height: 25px; }
.custom-combobox {
position: relative;
display: inline-block;
left: 1px; }
.custom-combobox-toggle {
position: relative;
top: 2px;
bottom: 0;
margin-left: 0px;
padding: 0;
height: 19px;
width: 25px; }
input.custom-combobox-input.ui-widget.ui-widget-content.ui-state-default.ui-corner-left.ui-autocomplete-input {
font-size: small; }
.ui-autocomplete {
max-height: 300px;
overflow-y: scroll;
overflow-x: hidden; }
.custom-combobox-input {
width: 170px; }
.ui-menu-item {
font-size: small; }
.db_input {
margin-bottom: 30px;
width: 250px; }
.submit_button {
border: none;
position: relative;
top: -10px;
width: 80px;
margin-left: auto;
margin-right: auto;
font-weight: bold;
border-radius: 10px;
height: 20px;
background-color: #2f2f2f;
color: whitesmoke; }
.submit_button:hover {
cursor: pointer; }
.delete_edit_icons {
display: flex;
justify-content: space-around;
width: 80%;
margin-left: auto;
margin-right: auto;
margin-top: 30px; }
.delete_edit_icons > img:hover {
cursor: pointer; }
#tool_tip_new_db {
top: 0;
display: none;
margin: auto;
height: 100%;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
z-index: 10;
color: white; }
#tool_tip_edit_db {
top: 0;
display: none;
margin: auto;
height: 100%;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
z-index: 10;
color: white; }
#tool_tip_edit_table {
display: none;
margin: auto;
height: 100%;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
z-index: 10;
color: white; }
#tool_tip_create_table {
flex-direction: column;
display: none;
justify-content: flex-start;
align-items: center;
margin: auto;
height: 100%;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
z-index: 10;
color: black; }
.fields_new_table {
height: 150px; }
#id_new_table {
border: 2px solid black;
padding-bottom: 5px; }
.fields_new_table table {
background-color: rgba(190, 213, 216, 0.88);
text-align: center;
border-collapse: collapse;
font-weight: bold;
width: 950px;
border-right: 1px solid black;
flex: 2;
display: flex; }
.fields_new_table table input {
height: 15px;
width: 90%; }
.fields_new_table table tr th, .fields_new_table table tr td, .fields_new_table table tr th {
border-right: 1px solid black;
height: 30px; }
#title_new_table_name {
display: flex;
flex-direction: column;
font-size: 1.2em;
margin-bottom: 20px; }
#title_new_table_name input {
margin: auto;
width: 200px; }
#submit_button_new_table {
margin-top: 20px;
font-size: 1.1em; }
#confirm_button {
width: 150px;
border-radius: 5px;
height: 30px;
background-color: #01A2A6;
font-weight: bolder; }
#cancel_button {
width: 150px;
border-radius: 5px;
height: 30px;
background-color: #e05f01;
font-weight: bolder; }
.img_add_line_new_table:hover {
cursor: pointer; }
#tool_tip_new_db input {
width: 300px; }
#tool_tip_edit_db input {
width: 300px; }
.tool_tip_text {
display: flex;
background-color: #232d38;
flex-direction: column;
justify-content: space-around;
align-items: center;
height: 200px;
width: 400px;
margin-top: 150px;
border-radius: 10px;
margin-left: auto;
margin-right: auto; }
.tool_tip_text p {
font-size: 0.8em;
font-style: italic; }
#bdd_name {
color: darkorange; }
#logoff_icon {
position: relative;
left: 60px;
bottom: 100px; }
#logoff_icon:hover {
cursor: pointer; }
#menu_main {
margin-left: 50px;
width: 200px;
background-color: #29D9C2;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
display: flex;
flex-direction: column;
justify-content: flex-start; }
#title_menu_box {
font-size: 1.5em;
color: white;
text-align: center;
font-weight: bold;
margin-top: -50px; }
.menu_part {
font-size: 1.5em;
font-weight: bold;
margin-top: 50px;
display: flex;
align-items: center; }
.menu_part > img {
cursor: pointer; }
.menu_button {
text-align: center;
font-weight: bold;
line-height: 20px;
padding: 10px;
border-radius: 10px;
font-size: 1.5em;
background-color: #83b9e0;
display: block;
width: 150px;
margin-right: auto;
margin-left: auto;
margin-top: 30px; }
#config_button:hover {
cursor: pointer; }
#table_main {
margin-top: 40px;
background: #4498ad;
width: 1000px;
height: 350px;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px; }
#table_name {
font-weight: bold;
font-size: 1.5em;
color: white;
text-align: center;
margin-bottom: 10px; }
#table_rows table {
margin-left: 25px;
width: 950px;
background-color: rgba(190, 213, 216, 0.88);
text-align: center;
font-weight: bold; }
#table_rows table th {
font-size: 1.1em; }
tr, td, th, table {
margin: 0 auto;
padding: 0; }
#table_rows table tr,
#table_rows table th,
#table_rows table td {
height: 30px;
border-right: 1px solid black; }
tr:nth-child(odd) {
background-color: #ebebeb;
color: #1a233b; }
section {
box-shadow: inset 0 0 8px 2px rgba(0, 0, 0, 0.3); }
/*# sourceMappingURL=style_main_page.css.map */ | watch/style_main_page.css | body,
html {
margin: 0 auto;
padding: 0;
width: 100%;
height: 90%;
background-color: #A49A87; }
#phpmyadmin_word {
color: #2F2933; }
#title_main_page {
display: flex;
align-items: center;
margin: auto;
justify-content: center;
width: 1000px;
color: #db7a19;
font-size: 1.7em;
margin-top: 50px;
margin-bottom: 30px;
position: relative;
right: 100px;
right: 120px;
font-weight: bold; }
#home_icon {
margin-right: 10px; }
#home_icon:hover {
cursor: pointer; }
#main {
margin: auto;
display: flex;
justify-content: center;
width: 1000px;
flex-wrap: wrap;
height: auto; }
#selection_main {
font-size: 1.5em;
color: white;
background-color: #01A2A6;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
width: 750px;
height: 300px; }
#title_selection_box {
text-align: center;
font-weight: bold; }
#selection_table_box form {
height: 200px;
display: flex;
justify-content: center; }
.select_part {
display: flex;
flex-direction: column;
width: 200px;
border-radius: 15px; }
.separation {
margin-left: 20px;
margin-right: 20px;
border-right: 0.2px solid black;
box-shadow: 0.9px 0px 5px black;
box-shadow: 0.9px 0px 5px black; }
.title_select_db {
text-align: center;
color: black; }
select {
width: 200px;
border-radius: 5px;
height: 25px; }
.custom-combobox {
position: relative;
display: inline-block;
left: 1px; }
.custom-combobox-toggle {
position: relative;
top: 2px;
bottom: 0;
margin-left: 0px;
padding: 0;
height: 19px;
width: 25px; }
input.custom-combobox-input.ui-widget.ui-widget-content.ui-state-default.ui-corner-left.ui-autocomplete-input {
font-size: small; }
.ui-autocomplete {
max-height: 300px;
overflow-y: scroll;
overflow-x: hidden; }
.custom-combobox-input {
width: 170px; }
.ui-menu-item {
font-size: small; }
.db_input {
margin-bottom: 30px;
width: 250px; }
.submit_button {
border: none;
position: relative;
top: -10px;
width: 80px;
margin-left: auto;
margin-right: auto;
font-weight: bold;
border-radius: 10px;
height: 20px;
background-color: #2f2f2f;
color: whitesmoke; }
.submit_button:hover {
cursor: pointer; }
.delete_edit_icons {
display: flex;
justify-content: space-around;
width: 80%;
margin-left: auto;
margin-right: auto;
margin-top: 30px; }
.delete_edit_icons > img:hover {
cursor: pointer; }
#tool_tip_new_db {
top: 0;
display: none;
margin: auto;
height: 100%;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
z-index: 10;
color: white; }
#tool_tip_edit_db {
top: 0;
display: none;
margin: auto;
height: 100%;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
z-index: 10;
color: white; }
#tool_tip_edit_table {
display: none;
margin: auto;
height: 100%;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
z-index: 10;
color: white; }
#tool_tip_create_table {
flex-direction: column;
display: none;
justify-content: flex-start;
align-items: center;
margin: auto;
height: 100%;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
z-index: 10;
color: black; }
.fields_new_table {
height: 150px; }
#id_new_table {
border: 2px solid black;
padding-bottom: 5px; }
.fields_new_table table {
background-color: rgba(190, 213, 216, 0.88);
text-align: center;
border-collapse: collapse;
font-weight: bold;
width: 950px;
border-right: 1px solid black;
flex: 2;
display: flex; }
.fields_new_table table input {
height: 15px;
width: 90%; }
.fields_new_table table tr th, .fields_new_table table tr td, .fields_new_table table tr th {
border-right: 1px solid black;
height: 30px; }
#title_new_table_name {
display: flex;
flex-direction: column;
font-size: 1.2em;
margin-bottom: 20px; }
#title_new_table_name input {
margin: auto;
width: 200px; }
#submit_button_new_table {
margin-top: 20px;
font-size: 1.1em; }
#confirm_button {
width: 150px;
border-radius: 5px;
height: 30px;
background-color: #01A2A6;
font-weight: bolder; }
#cancel_button {
width: 150px;
border-radius: 5px;
height: 30px;
background-color: #e05f01;
font-weight: bolder; }
.img_add_line_new_table:hover {
cursor: pointer; }
#tool_tip_new_db input {
width: 300px; }
#tool_tip_edit_db input {
width: 300px; }
.tool_tip_text {
display: flex;
background-color: #232d38;
flex-direction: column;
justify-content: space-around;
align-items: center;
height: 200px;
width: 400px;
margin-top: 150px;
border-radius: 10px;
margin-left: auto;
margin-right: auto; }
.tool_tip_text p {
font-size: 0.8em;
font-style: italic; }
#bdd_name {
color: darkorange; }
#logoff_icon {
position: relative;
left: 60px;
bottom: 100px; }
#logoff_icon:hover {
cursor: pointer; }
#menu_main {
margin-left: 50px;
width: 200px;
background-color: #29D9C2;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
display: flex;
flex-direction: column;
justify-content: flex-start; }
#title_menu_box {
font-size: 1.5em;
color: white;
text-align: center;
font-weight: bold;
margin-top: -50px; }
.menu_part {
font-size: 1.5em;
font-weight: bold;
margin-top: 50px;
display: flex;
align-items: center; }
.menu_part > img {
cursor: pointer; }
.menu_button {
text-align: center;
font-weight: bold;
line-height: 20px;
padding: 10px;
border-radius: 10px;
font-size: 1.5em;
background-color: #83b9e0;
display: block;
width: 150px;
margin-right: auto;
margin-left: auto;
margin-top: 30px; }
#config_button:hover {
cursor: pointer; }
#table_main {
margin-top: 40px;
background: #4498ad;
width: 1000px;
height: 350px;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px; }
#table_name {
font-weight: bold;
font-size: 1.5em;
color: white;
text-align: center;
margin-bottom: 10px; }
#table_rows table {
margin-left: 25px;
width: 950px;
background-color: rgba(190, 213, 216, 0.88);
text-align: center;
font-weight: bold; }
#table_rows table th {
font-size: 1.1em; }
tr, td, th, table {
margin: 0 auto;
padding: 0; }
#table_rows table tr,
#table_rows table th,
#table_rows table td {
height: 30px;
border-right: 1px solid black; }
tr:nth-child(odd) {
background-color: #ebebeb;
color: #1a233b; }
section {
box-shadow: inset 0 0 8px 2px rgba(0, 0, 0, 0.3); }
/*# sourceMappingURL=style_main_page.css.map */ | 0.190573 | 0.045331 |
:root{
--label-sub-head: #848486;
--label-green: #56B396;
--label-green-bg: #E1FAF4;
--label-red: #DA3C4B;
--label-red-bg: #FBE7EA;
--label-orange: #E85A41;
--label-orange-bg: #FFD4CC;
--label-grey: #262625;
--label-grey-bg: #D4D3D3;
--label-blue: #005ABA;
--label-blue-bg: #b9d2ec52;
--label-yellow: #FFBA49;
--label-yellow-bg: #ffdfac4f;
--label-grey: #666666;
--label-grey-bg: #dddddd;
--radio-select-color: #2748f6c4;
}
/*
------ Text ------
*/
.text-display-4{
font-size: 112px !important;
font-weight: 300;
}
.text-display-3{
font-size: 56px !important;
font-weight: 400;
}
.text-display-2{
font-size: 45px !important;
font-weight: 400;
}
.text-display-1{
font-size: 34px !important;
font-weight: 400;
line-height: 1.15;
}
.text-display-0{
font-size: 30px !important;
font-weight: 400;
vertical-align: text-top;
}
.text-headline{
font-size: 24px;
font-weight: 400;
}
.text-title{
font-size: 20px;
font-weight: 400;
vertical-align: text-top;
}
.text-subtitle{
font-size: 18px;
font-weight: 400;
}
.text-subhead{
color: var(--label-sub-head);
font-weight: 400;
font-size: 15px;
}
.text-subhead-bold{
font-size: 15px;
font-weight: 500;
}
.text-menu{
font-size: 14px;
font-weight: 500;
}
.text-button{
font-size: 14px;
font-weight: 500;
}
.text-caption{
font-size: 12px;
font-weight: 400;
}
.text-thin{
font-weight: 300 !important;
}
.text-bold{
font-weight: 500 !important;
}
.highlight{
color: var(--main-title-color);
}
.breadcrumbs{
font-size: 12px;
margin-bottom: 10px;
}
.badge {
padding: 0.45em .5em !important;
font-size: 85% !important;
font-weight: 500 !important;
border-radius: .15rem !important;
}
.actions-dropdown{
font-size: 12px;
}
.normal-text{
color: var(--main-title-color);
}
.custom-pre{
white-space: pre;
}
/*
------ End Text ------
*/
/*
------ Status labels ----
*/
.custom-control-label {
vertical-align: middle !important;
}
.inactive-dot{
height: 10px;
width: 10px;
background-color: var(--label-red);
border-radius: 50%;
display: inline-block;
vertical-align: unset;
}
.active-dot{
height: 10px;
width: 10px;
background-color: var(--label-green);
border-radius: 50%;
display: inline-block;
vertical-align: unset;
}
.label{
padding: 0.4rem;
padding-left: 1rem;
padding-right: 1rem;
font-weight: 500;
border-radius: 2px;
}
.green-label{
color: var(--label-green);
background: var(--label-green-bg);
}
.red-label{
color: var(--label-red);
background: var(--label-red-bg);
}
.orange-label{
color: var(--label-orange);
background: var(--label-orange-bg);
}
.grey-label{
color: var(--label-grey);
background: var(--label-grey-bg);
}
.blue-label{
color: var(--label-blue);
background: var(--label-blue-bg);
}
.yellow-label{
color: var(--label-yellow);
background: var(--label-yellow-bg);
}
.grey-label{
color: var(--label-grey);
background: var(--label-grey-bg);
}
.option-text{
font-weight: 400 !important;
color: inherit;
}
.timer-dot {
height: 10px;
width: 10px;
border-radius: 50%;
display: inline-block;
vertical-align: baseline;
background-color: var(--label-green);
box-shadow: 0 0 0 0 rgba(225, 250, 244, 1);
transform: scale(1);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(86, 179, 150, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(86, 179, 150, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(86, 179, 150, 0);
}
}
.addon-label{
font-size: 10px;
padding: 5px;
font-weight: 500;
} | public/css/labels.css | :root{
--label-sub-head: #848486;
--label-green: #56B396;
--label-green-bg: #E1FAF4;
--label-red: #DA3C4B;
--label-red-bg: #FBE7EA;
--label-orange: #E85A41;
--label-orange-bg: #FFD4CC;
--label-grey: #262625;
--label-grey-bg: #D4D3D3;
--label-blue: #005ABA;
--label-blue-bg: #b9d2ec52;
--label-yellow: #FFBA49;
--label-yellow-bg: #ffdfac4f;
--label-grey: #666666;
--label-grey-bg: #dddddd;
--radio-select-color: #2748f6c4;
}
/*
------ Text ------
*/
.text-display-4{
font-size: 112px !important;
font-weight: 300;
}
.text-display-3{
font-size: 56px !important;
font-weight: 400;
}
.text-display-2{
font-size: 45px !important;
font-weight: 400;
}
.text-display-1{
font-size: 34px !important;
font-weight: 400;
line-height: 1.15;
}
.text-display-0{
font-size: 30px !important;
font-weight: 400;
vertical-align: text-top;
}
.text-headline{
font-size: 24px;
font-weight: 400;
}
.text-title{
font-size: 20px;
font-weight: 400;
vertical-align: text-top;
}
.text-subtitle{
font-size: 18px;
font-weight: 400;
}
.text-subhead{
color: var(--label-sub-head);
font-weight: 400;
font-size: 15px;
}
.text-subhead-bold{
font-size: 15px;
font-weight: 500;
}
.text-menu{
font-size: 14px;
font-weight: 500;
}
.text-button{
font-size: 14px;
font-weight: 500;
}
.text-caption{
font-size: 12px;
font-weight: 400;
}
.text-thin{
font-weight: 300 !important;
}
.text-bold{
font-weight: 500 !important;
}
.highlight{
color: var(--main-title-color);
}
.breadcrumbs{
font-size: 12px;
margin-bottom: 10px;
}
.badge {
padding: 0.45em .5em !important;
font-size: 85% !important;
font-weight: 500 !important;
border-radius: .15rem !important;
}
.actions-dropdown{
font-size: 12px;
}
.normal-text{
color: var(--main-title-color);
}
.custom-pre{
white-space: pre;
}
/*
------ End Text ------
*/
/*
------ Status labels ----
*/
.custom-control-label {
vertical-align: middle !important;
}
.inactive-dot{
height: 10px;
width: 10px;
background-color: var(--label-red);
border-radius: 50%;
display: inline-block;
vertical-align: unset;
}
.active-dot{
height: 10px;
width: 10px;
background-color: var(--label-green);
border-radius: 50%;
display: inline-block;
vertical-align: unset;
}
.label{
padding: 0.4rem;
padding-left: 1rem;
padding-right: 1rem;
font-weight: 500;
border-radius: 2px;
}
.green-label{
color: var(--label-green);
background: var(--label-green-bg);
}
.red-label{
color: var(--label-red);
background: var(--label-red-bg);
}
.orange-label{
color: var(--label-orange);
background: var(--label-orange-bg);
}
.grey-label{
color: var(--label-grey);
background: var(--label-grey-bg);
}
.blue-label{
color: var(--label-blue);
background: var(--label-blue-bg);
}
.yellow-label{
color: var(--label-yellow);
background: var(--label-yellow-bg);
}
.grey-label{
color: var(--label-grey);
background: var(--label-grey-bg);
}
.option-text{
font-weight: 400 !important;
color: inherit;
}
.timer-dot {
height: 10px;
width: 10px;
border-radius: 50%;
display: inline-block;
vertical-align: baseline;
background-color: var(--label-green);
box-shadow: 0 0 0 0 rgba(225, 250, 244, 1);
transform: scale(1);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(86, 179, 150, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(86, 179, 150, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(86, 179, 150, 0);
}
}
.addon-label{
font-size: 10px;
padding: 5px;
font-weight: 500;
} | 0.599602 | 0.133952 |
html{
background:#F2F2F2;
}
body
{
background:#F2F2F2;
font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica,"Microsoft YaHei",微软雅黑, "Microsoft YaHei", 微软雅黑, "Microsoft YaHei",Helvetica,"Lucida Sans Unicode",Arial,clean,sans-serif;
font-size:14px;
margin:0px;
margin-right:0px;
text-align:center;
}
div#wrapper{
display:block;
margin: 0px auto;
_margin: 0px auto;
text-align:left;
width:960px;
}
Nav
{
border:solid 0px gray;
width:960px;
height:50px;
padding-top:10px;
text-align:left;
}
div#logo{
display:table-cell;
font-size:2.5em;
margin-bottom:0px;
bottom:0px;
}
div#logo a{
color:black;
text-decoration:none;
}
div#Cards
{
display:block;
margin: 0 auto;
border:solid 1px gray;
width:960px;
height:100px;
text-align:left;
}
div#Footer
{
display:block;
margin: 0 auto;
border:solid 1px gray;
width:960px;
height:100px;
text-align:left;
}
div#main{
//overflow:hidden;
display:block;
border:solid 0px gray;
width:960px;
//height:500px;
min-height:400px;
background:rgb(250,250,250);
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-ms-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-o-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
border-color: #E5E5E5 #DBDBDB #D2D2D2;
border-top: #e5e5e5 1px solid;
border-bottom:#DBDBDB 1px solid;
border-left:#D2D2D2 1px solid;
border-right:#D2D2D2 1px solid;
border-top:#e5e5e5 1px solid \9;
border-bottom:#d2d2d2 1px solid \9;
border-left:#dbdbdb 1px solid \9;
border-right:#dbdbdb 1px solid \9;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#0000400');
text-align:left;
}
div#activity{
overflow:hidden;
//display:block;
margin: 0 auto;
border:solid 0px gray;
width:960px;
height:100px;
background:#fff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-ms-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-o-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
border-color: #E5E5E5 #DBDBDB #D2D2D2;
border-top: #e5e5e5 1px solid;
border-bottom:#DBDBDB 1px solid;
border-left:#D2D2D2 1px solid;
border-right:#D2D2D2 1px solid;
border-top:#e5e5e5 1px solid \9;
border-bottom:#d2d2d2 1px solid \9;
border-left:#dbdbdb 1px solid \9;
border-right:#dbdbdb 1px solid \9;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#0000400');
text-align:left;
}
div#cusion{
display:block;
height:10px;
text-align:left;
}
.reflect {
-webkit-box-reflect:below 1px -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(.66, transparent), to(white));
-moz-box-reflect:below 1px -moz-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(.66, transparent), to(white));
}
img#cover{
-webkit-border-top-left-radius: 4px;
margin-left:-30px;
margin-top:-90px;
}
div#description{
display:block;
}
div#act_description{
position:absolute;
margin-left:20px;
margin-top:20px;
padding-left:430px;
}
div#title{
font-weight:bold;
font-size:30px;
}
div#context{
padding-top:25px;
font-size:19px;
color:#8B8B8B;
width:490px;
}
div#act_context{
padding-top:5px;
font-size:15px;
color:#8B8B8B;
width:490px;
}
div#note{
padding-top:75px;
font-size:15x;
color:#8B8B8B;
width:490px;
}
div#add_form{
text-align:center;
/*border-bottom:solid 1px gray;*/
padding:5px;
}
table#form{
width:350px;
margin:auto;
}
table#form td.stock_code{
width:90px;
}
table#form td.stock_input{
width:50px;
text-align:left;
}
table#form td.stock_name{
width:80px;
}
input#stk_id{
border:solid 1px gray;
width:90px;
text-align:center;
font-size:15px;
}
td#delete:hover{
color:black;
text-decoration:underline;
cursor:pointer;
}
td {
color:black;
font-weight:bold;
font-size:15px !important;
}
input{
border:1px solid rgba(0, 0, 0, 0.15)!important;
border-top:1px solid rgba(0, 0, 0, 0.25)!important;
border-radius:1px;
-webkit-border-radius:1px;
}
input:active{
border:1px solid #4D90FE !important;
border-color: #4D90FE !important;
}
input:focus{
outline: 1px auto #4D90FE;
border:1px solid #4D90FE !important;
border-color: #4D90FE !important;
box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);
}
input.volume_input {
width:60px;
}
input.price_input {
width:50px;
}
div#footer{
border:1px solid #E1E1E1;
width:960px;
height:auto;
padding:0px;
color:#E1E1E1;
border-radius: 8px;
-webkit-border-radius:8px;
border:1px solid #E1E1E1;
text-align:left;
}
div#ifooter{
border:solid 1px white;
border-radius: 8px;
-webkit-border-radius:8px;
padding:5px;
}
a {
color:#C1C1C1;
} | option.css | html{
background:#F2F2F2;
}
body
{
background:#F2F2F2;
font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica,"Microsoft YaHei",微软雅黑, "Microsoft YaHei", 微软雅黑, "Microsoft YaHei",Helvetica,"Lucida Sans Unicode",Arial,clean,sans-serif;
font-size:14px;
margin:0px;
margin-right:0px;
text-align:center;
}
div#wrapper{
display:block;
margin: 0px auto;
_margin: 0px auto;
text-align:left;
width:960px;
}
Nav
{
border:solid 0px gray;
width:960px;
height:50px;
padding-top:10px;
text-align:left;
}
div#logo{
display:table-cell;
font-size:2.5em;
margin-bottom:0px;
bottom:0px;
}
div#logo a{
color:black;
text-decoration:none;
}
div#Cards
{
display:block;
margin: 0 auto;
border:solid 1px gray;
width:960px;
height:100px;
text-align:left;
}
div#Footer
{
display:block;
margin: 0 auto;
border:solid 1px gray;
width:960px;
height:100px;
text-align:left;
}
div#main{
//overflow:hidden;
display:block;
border:solid 0px gray;
width:960px;
//height:500px;
min-height:400px;
background:rgb(250,250,250);
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-ms-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-o-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
border-color: #E5E5E5 #DBDBDB #D2D2D2;
border-top: #e5e5e5 1px solid;
border-bottom:#DBDBDB 1px solid;
border-left:#D2D2D2 1px solid;
border-right:#D2D2D2 1px solid;
border-top:#e5e5e5 1px solid \9;
border-bottom:#d2d2d2 1px solid \9;
border-left:#dbdbdb 1px solid \9;
border-right:#dbdbdb 1px solid \9;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#0000400');
text-align:left;
}
div#activity{
overflow:hidden;
//display:block;
margin: 0 auto;
border:solid 0px gray;
width:960px;
height:100px;
background:#fff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-ms-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-o-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
border-color: #E5E5E5 #DBDBDB #D2D2D2;
border-top: #e5e5e5 1px solid;
border-bottom:#DBDBDB 1px solid;
border-left:#D2D2D2 1px solid;
border-right:#D2D2D2 1px solid;
border-top:#e5e5e5 1px solid \9;
border-bottom:#d2d2d2 1px solid \9;
border-left:#dbdbdb 1px solid \9;
border-right:#dbdbdb 1px solid \9;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#0000400');
text-align:left;
}
div#cusion{
display:block;
height:10px;
text-align:left;
}
.reflect {
-webkit-box-reflect:below 1px -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(.66, transparent), to(white));
-moz-box-reflect:below 1px -moz-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(.66, transparent), to(white));
}
img#cover{
-webkit-border-top-left-radius: 4px;
margin-left:-30px;
margin-top:-90px;
}
div#description{
display:block;
}
div#act_description{
position:absolute;
margin-left:20px;
margin-top:20px;
padding-left:430px;
}
div#title{
font-weight:bold;
font-size:30px;
}
div#context{
padding-top:25px;
font-size:19px;
color:#8B8B8B;
width:490px;
}
div#act_context{
padding-top:5px;
font-size:15px;
color:#8B8B8B;
width:490px;
}
div#note{
padding-top:75px;
font-size:15x;
color:#8B8B8B;
width:490px;
}
div#add_form{
text-align:center;
/*border-bottom:solid 1px gray;*/
padding:5px;
}
table#form{
width:350px;
margin:auto;
}
table#form td.stock_code{
width:90px;
}
table#form td.stock_input{
width:50px;
text-align:left;
}
table#form td.stock_name{
width:80px;
}
input#stk_id{
border:solid 1px gray;
width:90px;
text-align:center;
font-size:15px;
}
td#delete:hover{
color:black;
text-decoration:underline;
cursor:pointer;
}
td {
color:black;
font-weight:bold;
font-size:15px !important;
}
input{
border:1px solid rgba(0, 0, 0, 0.15)!important;
border-top:1px solid rgba(0, 0, 0, 0.25)!important;
border-radius:1px;
-webkit-border-radius:1px;
}
input:active{
border:1px solid #4D90FE !important;
border-color: #4D90FE !important;
}
input:focus{
outline: 1px auto #4D90FE;
border:1px solid #4D90FE !important;
border-color: #4D90FE !important;
box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);
}
input.volume_input {
width:60px;
}
input.price_input {
width:50px;
}
div#footer{
border:1px solid #E1E1E1;
width:960px;
height:auto;
padding:0px;
color:#E1E1E1;
border-radius: 8px;
-webkit-border-radius:8px;
border:1px solid #E1E1E1;
text-align:left;
}
div#ifooter{
border:solid 1px white;
border-radius: 8px;
-webkit-border-radius:8px;
padding:5px;
}
a {
color:#C1C1C1;
} | 0.188399 | 0.090173 |
@charset "utf-8";
@font-face {
font-family: "Gotham Rounded Medium";
src: url("../fonts/GothamRoundedMedium_21022.ttf") format('truetype');
}
@font-face {
font-family: "Gotham Rounded Bold";
src: url("../fonts/GothamRoundedBold_21016.ttf") format('truetype');
}
@font-face {
font-family: "Gotham Rounded Light", sans-serif;
src: url("../fonts/GothamRoundedLight_21020.ttf") format('truetype');
}
html,
body {
font-family: "Gotham Rounded Medium", sans-serif;
overflow-x: hidden;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
text-rendering: optimizeLegibility;
}
body.dark {
background-color: #222;
}
body.light {
background-color: #f7f7f7;
}
::selection {
background-color: #0FACF3;
}
::-moz-selection {
background-color: #0FACF3;
color: #fff;
}
/*abdou*/
.ribbonImg {
width: 45%;
height: 45%;
padding: 5px;
margin: 5px;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
/*background-color: #2f90e5;*/
}
.ribbonImg:hover{
background-color: red;
}
.ribbonImg2{
/*opacity: 0.65;*/
color:#0627b1;
width: 45%;
height: 45%;
padding: 5px;
margin: 5px;
border-radius: 10px;
background-color: #33cc00;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*.ribbonImg {
width: 80%;
height: 180px;
padding: 5px;
margin: 5px;
border-radius: 10px;
}
.drinkcard-cc{
cursor:pointer;
background-repeat:no-repeat;
-webkit-transition: all 100ms ease-in;
-moz-transition: all 100ms ease-in;
transition: all 100ms ease-in;
-webkit-filter: brightness(1.4) grayscale(.8) opacity(.6);
-moz-filter: brightness(1.4) grayscale(.8) opacity(.6);
filter: brightness(1.4) grayscale(.8) opacity(.6);
}
.drinkcard-cc:hover{
-webkit-filter: brightness(1.3) grayscale(.4) opacity(1);
-moz-filter: brightness(1.3) grayscale(.4) opacity(1);
filter: brightness(1.3) grayscale(.4) opacity(1);
}
.drinkcard2{
cursor:pointer;
background-repeat:no-repeat;
-webkit-transition: all 100ms ease-in;
-moz-transition: all 100ms ease-in;
transition: all 100ms ease-in;
-webkit-filter: brightness(1.3) grayscale(.4) opacity(1);
-moz-filter: brightness(1.3) grayscale(.4) opacity(1);
filter: brightness(1.3) grayscale(.4) opacity(1);
}
*/
/* end abdou */
#sizeBar {
display: block;
width: 78px;
height: 17px;
background: #10171D;
border-radius: 40px;
box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.9), 0px 1px 1px 0px rgba(255, 255, 255, 0.13);
z-index: 999;
}
#sizeBar .bar {
display: block;
width: 72px;
height: 5px;
position: relative;
top: 6px;
left: 2px;
background: -webkit-linear-gradient(left, #1d2e38 0%, #2b4254 50%, #2b4254 100%);
border-radius: 40px;
}
.sizeBarContainer{
display: inline-block;
background-color: white;
color: black;
position: absolute;
top:25px;
z-index: 99;
width: 200px;
height: 100px;
}
input[type="range"] {
-webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
position: relative;
top: 0px;
z-index: 999;
width: 11px;
height: 11px;
cursor: pointer;
-webkit-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.6);
box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.6);
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ebf1f6), color-stop(50%, #abd3ee), color-stop(51%, #89c3eb), color-stop(100%, #d5ebfb));
}
input[type="range"]:hover ~ #rangevalue,
input[type="range"]:active ~ #rangevalue {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
top: -15px;
}
#rangevalue {
font-size: 10px;
text-align: center;
font-family: Arial, sans-serif;
display: block;
color: #fff;
margin: -20px 0;
position: relative;
left: 26%;
padding: 6px 12px;
border: 1px solid black;
box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #222931), color-stop(100%, #181D21));
border-radius: 20px;
width: 30px;
opacity: 0;
transition: all 0.5s ease;
top: 0px;
}
input[type="range"]:focus {
outline: none;
}
/*EndOfsizeBarStyle*/
/* Bootstrap Customization */
/* Navbar */
.navbar {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border: 0;
margin-bottom: 0;
}
.navbar-nav > li.dropdown.open > a {
background-color: transparent !important;
color: #0FACF3 !important;
}
.btn {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border: 2px;
}
/* Custom Light Theme */
nav.navbar.light-theme {
background-color: #fff;
}
.light-theme .navbar-nav > li > a {
color: #9d9d9d;
background-color: #fff;
}
.light-theme .navbar-nav > li.dropdown > a.dropdown-toggle:link,
.light-theme .navbar-nav > li.dropdown > a.dropdown-toggle:visited {
color: #9d9d9d;
background-color: #fff;
}
.light-theme .navbar-nav > li.dropdown > a.dropdown-toggle:hover,
.light-theme .navbar-nav > li.dropdown > a.dropdown-toggle:active {
color: #0FACF3;
background-color: #fff;
}
.light-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:hover,
.light-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:link,
.light-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:visited {
color: #fff;
background-color: #fff;
}
.light-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu > li > a:hover {
color: #fff;
background-color: #0FACF3;
}
.light-theme .navbar-nav > li > a:hover {
color: #0FACF3;
background-color: #fff;
-webkit-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
-ms-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
}
.light-theme .navbar-nav > li.active > a {
background-color: transparent;
color: #0FACF3;
}
.light-theme .navbar-nav > li.active > a:hover {
background-color: transparent;
color: #0FACF3;
}
.light-theme a.navbar-brand {
color: #0FACF3 !important;
}
/* Custom Light theme End */
/* Custom Dark Theme */
nav.navbar.dark-theme {
background-color: #222;
}
.dark-theme .navbar-nav > li > a:hover {
color: #0FACF3;
background-color: #222;
-webkit-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
-ms-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
}
.dark-theme .navbar-nav > li > a {
color: #9d9d9d;
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown > a.dropdown-toggle:link,
.dark-theme .navbar-nav > li.dropdown > a.dropdown-toggle:visited {
color: #9d9d9d;
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown > a.dropdown-toggle:hover,
.dark-theme .navbar-nav > li.dropdown > a.dropdown-toggle:active {
color: #0FACF3;
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:hover,
.dark-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:link,
.dark-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:visited {
color: #fff;
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu > li > a:hover {
color: #fff;
background-color: #0FACF3;
}
.dark-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu > li > a {
color: #f7f7f7;
}
.dark-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu {
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu .divider {
background-color: #0FACF3;
}
.dark-theme form.navbar-form input#navSearch {
background-color: transparent;
}
.dark-theme .navbar-nav > li.active > a {
background-color: transparent;
color: #0FACF3;
}
.dark-theme .navbar-nav > li.active > a:hover {
background-color: transparent;
color: #0FACF3;
}
.dark-theme .navbar-brand {
color: #0FACF3 !important;
}
/* Custom Dark Theme End */
/* Modals Customization */
.modal {
text-align: center;
padding:0 !important;
}
.modal:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -4px;
}
.modal-dialog {
display: inline-block;
text-align: left;
vertical-align: middle;
}
.modal-backdrop {
background-color: #1F2D3D;
}
.modal-backdrop.in {
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
opacity: .9;
}
.close {
color: #0FACF3;
opacity: .8;
}
.close:hover {
color: #0FACF3;
opacity: 1;
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.modal-header .close {
padding-top: -1px;
padding-right: 2px;
}
/* Make Another Animation to Model */
.fade-scale {
transform: scale(0);
opacity: 0;
-webkit-transition: all .35s linear;
-o-transition: all .35s linear;
transition: all .35s linear;
}
.fade-scale.in {
opacity: 1;
transform: scale(1);
}
/* End Modals Customization */
/* Begin Panel Customization */
.panel-body {
padding: 0;
}
.CodeMirror {
height: 491px;
font-family: "Source Code Pro","Consolas", monospace;
}
/* Search Bar */
input#navSearch {
box-shadow: none;
text-align: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
color: #0FACF3;
border: 1px solid #0FACF3;
}
input#navSearch::-moz-placeholder {
color: #0FACF3;
}
input#navSearch::-webkit-input-placeholder {
color: #0FACF3;
}
input#navSearch:-moz-placeholder {
color: #0FACF3;
}
input#navSearch:-ms-input-placeholder {
color: #0FACF3;
}
/*Full Screen Search Page */
.btn-custom {
background-color: #0FACF3;
color: #f7f7f7;
}
.btn-custom:hover,
.btn-custom:focus {
background-color: #0FA0CE;
color: #f7f7f7;
}
/* End Full Screen Page Search */
div#fullSearch {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, .94);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
-webkit-transform: translate(0, -100%) scale(0, 0);
-moz-transform: translate(0, -100%) scale(0, 0);
-ms-transform: translate(0, -100%) scale(0, 0);
-o-transform: translate(0, -100%) scale(0, 0);
transform: translate(0, -100%) scale(0, 0);
opacity: 0;
}
div#fullSearch.open {
-webkit-transform: translate(0, 0) scale(1, 1);
-moz-transform: translate(0, 0) scale(1, 1);
-ms-transform: translate(0, 0) scale(1, 1);
-o-transform: translate(0, 0) scale(1, 1);
transform: translate(0, 0) scale(1, 1);
z-index: 1000; /* That's Pretty Random Hahhahah almohim fou9 999 and don't ask me why */
opacity: 1;
}
#fullSearch input[type='search'] {
position: absolute;
top: 50%;
width: 100%;
color: #0FACF3;
background: rgba(0, 0, 0, 0.01);
font-size: 60px;
font-weight: 700;
font-family: "Gotham Rounded Medium", sans-serif;
text-align: center;
border: 0;
margin: 0 auto;
margin-top: -51px;
padding-left: 30px;
padding-right: 30px;
outline: none;
}
#fullSearch .btn {
position: absolute;
top: 50%;
left: 0;
margin-top: 41px;
margin-left: 0;
}
#fullSearch .closeSearch {
position: fixed;
top: 15px;
right: 15px;
opacity: 1;
padding: 10px 17px;
font-size: 27px;
color: #0FACF3;
border: 0;
background-color: transparent;
}
#searchNote {
position: absolute;
color: #f7f7f7;
top: 80%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border-left: 4px solid #0FACF3;
border-right: 4px solid #0FACF3;
text-indent: 10px;
padding: 10px 0; /* ShortHand Padding :D :D */
padding-right: 10px;
}
div#fullSearch button[type="button"]:hover i.fa.fa-close {
-webkit-transform: scale(1.3);
-moz-transform: scale(1.3);
-ms-transform: scale(1.3);
-o-transform: scale(1.3);
transform: scale(1.3);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
/* Util CLasses */
.bg-dark {
background-color: #222;
}
.bg-light {
background-color: #fff;
}
.text-faded {
opacity: .5;
}
/* To be Modified Later */
.img-selected {
border: 3px solid #0FACF3;
}
p.text-faded {
margin: 10px auto;
}
/* Preloader */
#preloader {
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 100%;
z-index: 9999;
background: url("../../images/preloader.gif") center no-repeat #fff;
}
/* Iframe - Code Result */
#codeResult {
width: 100%;
height:491px;
}
#close {
color: #ef5350;
}
#magnify {
color: #FFEB3B;
}
#reduce {
color: #4CAF50;
margin-right: 20px;
}
#codeEditor .panel-default {
border: 0;
margin-bottom: 0;
}
#codeEditor.col-md-12 {
padding-left: 0;
padding-right: 0;
}
#codeEditor .panel-heading {
background-color: #17183b;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border-color: #0FACF3;
}
.menu-bar {
display: inline-block;
width: 100%;
padding-left: 10%;
}
div.menu-bar ul.menu-items {
list-style: none;
}
div.menu-bar ul.menu-items > li {
display: inline-block;
}
div.menu-bar ul.menu-items > li > a {
color: #fff;
margin-right: 17px;
}
div.menu-bar ul.menu-items > li > a:hover {
color: #f7f7f7;
text-decoration: none;
}
#codeEditor .panel-heading {
padding: 10px 10px;
}
#codeEditor .panel-heading ul.menu-items {
padding-left: 0;
}
#codeEditor li.dropdown > ul.dropdown-menu {
min-width: 90px;
}
.icon-menu-big {
font-size: 110%;
}
.custom-color-icon {
color: #00a8e8;
margin-right: 5px;
}
div.modal#nothingSelectedModal .modal-header h4 {
color: #dd1c1a;
}
div.modal#nothingSelectedModal .modal-body p > strong {
color: #dd1c1a;
text-decoration: underline;
}
div.modal#pasteModal .modal-header h4 {
color: #dd1c1a;
}
div.modal#pasteModal .modal-body p > strong {
color: #dd1c1a;
text-decoration: underline;
}
.thumbnail {
background-color: #0FACF3;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
ul#most-used-operations li a {
color: #f7f7f7;
padding: 7px;
margin: 0;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
transition: all .5s;
}
ul#most-used-operations li a:hover {
background-color: rgba(255, 255, 255, .2);
}
#uploadCodeModal div.CodeMirror {
height: 200px;
}
.hide {
display: none;
}
#uploadCodeModal .panel-heading {
background-color: #2c3e50;
border: 0;
color: #f7f7f7;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
#uploadCodeModal .panel-default {
border-color: rgba(13, 31, 45, 0.99);
}
#uploadCodeModal .panel {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.btn.btn-custom:hover {
background-color: #0f97e2;
}
.icon-big {
font-size: 125%;
}
.input-group-btn #searchIcon {
border: 1px solid #0FACF3;
}
.form-control {
outline: none;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.form-control:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-color: #0FACF3;
}
#addon-name {
background-color: #0FACF3;
color: #f7f7f7;
border: 1px solid #0FACF3;
}
#addon-description {
background-color: #0FACF3;
color: #f7f7f7;
border: 1px solid #0FACF3;
}
#saveCodeModal .modal-body textarea {
resize: none;
height: 100px;
}
#addon-category {
background-color: #0FACF3;
color: #f7f7f7;
border: 1px solid #0FACF3;
}
/* WebsiteSavedSuccessFully Snackbar Style START */
.SnackBar {
visibility: hidden; /* Hidden by default, only visible when class show is added */
min-width: 300px; /* Normalement 300px 1ntik w je c pas hhhhh */
/*margin-left: -150px;*/ /* Divide min-width by 2 :D that's all :D :D :D :D */
background-color: #2c3e50;
color: #2ecc71;
text-align: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
padding: 13px;
position: fixed;
z-index: 99999; /* Bach mayji ta7t 7eta haja hhhh */
left: 50%;
bottom: 30px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.snack-danger {
background-color: #2c3e50;
color: #e74c3c;
}
/* La Classe Show nzidouha b JavaScript (JQuery) ki nzidouha ywali had DIV visible */
/* Et comme ça we create l'effet de Snackbar Inspiré du Materual Design nta3 Android /D :D*/
.SnackBar.show {
visibility: visible;
/* Animation Dyal SnackBar */
/* FadeIn w FadeOut */
/* 3ala fikra we can use Animate.css :D :D, it's will be Pain Free :D */
-webkit-animation: fadeIn .5s, fadeOut .5s 3s;
-o-animation: fadeIn .5s, fadeOut .5s 3s;
animation: fadeIn .5s, fadeOut .5s 3s;
}
/* Creating Animations Now */
/* Standard */
@keyframes fadeIn {
from {
bottom: 0;
opacity:0; }
to {
bottom: 50px;
opacity: 1;
}
}
@keyframes fadeOut {
from {
bottom: 50px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Webkit */
@-webkit-keyframes fadeIn {
from {
bottom: 0;
opacity:0; }
to {
bottom: 50px;
opacity: 1;
}
}
@-webkit-keyframes fadeOut {
from {
bottom: 50px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Mozilla Browsers */
/* Moz Prefix */
@-moz-keyframes fadeIn {
from {
bottom: 0;
opacity:0; }
to {
bottom: 50px;
opacity: 1;
}
}
@-moz-keyframes fadeOut {
from {
bottom: 50px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Microsoft Browsers Prefix */
/* Ma3labalich Est ce que IE6 will handle the Keyframes hhh probably NOT */
@-ms-keyframes fadeIn {
from {
bottom: 0;
opacity:0; }
to {
bottom: 50px;
opacity: 1;
}
}
@-ms-keyframes fadeOut {
from {
bottom: 50px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Taki's Style Addition */
.tableInserting th,td{
padding:6px;
border:1px solid #D6D6D6;
}
.tableInserting table{
border-collapse: separate;
border-spacing: 3px;
}
.tableInserting {
padding: 5px;
border:1px solid #D6D6D6;
display: inline-block;
text-align: center;
position: absolute;
background-color: white;
top:-20px;
left:101%;
border-radius: 2px;
}
.hoveredSquare{
background-color: #3498db;
}
.tableInsertinghorisontal td,th{
padding:6px;
border:1px solid #D6D6D6;
}
.tableInsertinghorisontal table{
border-collapse: separate;
border-spacing: 3px;
}
.tableInsertinghorisontal {
padding: 5px;
border:1px solid #D6D6D6;
display: inline-block;
text-align: center;
position: absolute;
background-color: white;
top: 100%;
left: -200%;
border-radius: 2px;
z-index: 999;
}
.numInserting{
color:black;
display: none;
position: absolute;
background-color: white;
top: 130px;
left: 101%;
border-radius: 2px;
padding: 10px;
}
.numInserting td{
border:none;
}
.numInserting button{
float: right;
}
.numInsertingHor{
width: 300px;
z-index: 999;
color:black;
display: none;
position: absolute;
background-color: white;
top: 100%;
left: -200%;
border-radius: 2px;
padding: 10px;
}
.numInsertingHor td{
border:none;
}
.numInsertingHor button{
float: right;
}
.linksDiv td{
border:none;
}
.linksDiv{
width:260px;
position: absolute;
background-color: white;
top: 130px;
left: 101%;
border-radius: 2px;
padding: 10px;
color: black;
}
.titleInsertingHor{
width:150px;
position: absolute;
background-color: white;
top: 60px;
left: 40%;
border-radius: 2px;
padding: 0px;
color: black;
}
.linksType {
font-size: 20px;
text-align: center;
}
.linksType i{
padding-left:10px;
padding-right:10px;
}
.linksType i:hover{
color: #00a8e8;
}
.linksDiv hr{
color: red;
margin-top: 5px;
margin-bottom:5px;
border-color: #888;
}
.linksDivHor td{
border:none;
}
.linksDivHor{
width:260px;
position: absolute;
background-color: white;
top:100%;
left: -100px;
border-radius: 2px;
padding: 10px;
color: black;
z-index: 999;
}
.linksDivHor hr{
color: red;
margin-top: 5px;
margin-bottom:5px;
border-color: #888;
}
.typeClicked{
color: #0FACF3;
}
.tooltip > .tooltip-inner{
color: white;
background-color: black;
}
.tooltip.in{
opacity: 1;
}
.autoComplete{
max-height: 180px;
overflow-y: scroll;
background-color: #455A64;
color: #f7f7f7;
position: absolute;
display: none;
z-index: 9999;
cursor: pointer;
border-radius: 4px;
}
.autoComplete div{
padding-left:5px;
padding-right:20px;
margin-bottom:2px;
margin-top:2px;
}
.autoComplete div:hover{
background-color: #651FFF;
;
}
.selectedAutoComplete,div.selectedAutoComplete:hover{
background-color: #0FACF3;
color: #fff;
font-weight: 600;
}
.postInsertionContainer{
margin: auto;
width: 80%;
}
.postInsertionContainer > table{
width: 100%;
}
.postInsertion{
text-align: center;
}
.postInsertion td{
border-collapse: separate;
box-shadow: 1px 1px 2px 0px #eee;
}
.postInsertion img{
width: 100px;
height: 100px;
}
.postInsertion td{
display: inline-block;
max-width: 120px;
max-height: 120px;
text-align: center;
margin-left:20px;
margin-right:20px;
margin-top: 5px;
margin-bottom: 5px;
}
td.selectedImgInPost{
border:2px solid #33ABF3;
box-shadow: 1px 1px 10px 1px #ccc;
}
.columnTables{
width: 95%;
margin: auto;
}
.columnTables td{
border:none;
}
/* Taki's Style END */
/* Brahim's style Begin*/
.colorpicker{
z-index: 9999;!important;
}
.img__SectionS{
margin-bottom: 20px;
}
#sectionSpecialesInsertionModal .modal-dialog{
width: 1110px;!important;
height: auto;!important;
max-height: 100%;!important;
overflow-y: initial;
}
.img__SectionS:hover{
cursor: pointer;
}
#titleInsertion {
position: relative;!important;
}
#titleInsertion .fa-angle-right{
display: inline-block;
margin-left: 85px;
font-weight: bold;
}
.titlesubmenu {
top: 0;!important;
left: 100%;!important;
margin-top: -1px;!important;
}
#rotateColorPreview{
height: 42px;
width: 42px;
position: relative;
transform: rotate(45deg);
background-color: #999999;
left: 9px;
}
#colorPreview{
background-color: #999999;
display: inline-block;
position: absolute;
box-shadow: 0px 0px 10px #000;
}
#innerColorPreview{
position: absolute;
height: 46px;
width: 46px;
top:7px;
left: 7px;
}
.autoComplete::-webkit-scrollbar{
width: 10px;
background-color: #666;
}
.autoComplete::-webkit-scrollbar-thumb{
background-color: #888;
}
.autoComplete::-webkit-scrollbar-thumb:hover{
background-color: #aaa;
}
.autoComplete::-webkit-scrollbar-thumb:active{
background-color: #bbb;
}
body::-webkit-scrollbar{
width: 14px;
background-color: #333;
}
body::-webkit-scrollbar-thumb{
background-color: #444;
}
body::-webkit-scrollbar-thumb:hover{
background-color: #666;
}
body::-webkit-scrollbar-thumb:active{
background-color: #888;
}
/* Brahim's Style End*/
/* Gacem's style Begin*/
.slideInsertionContainer{
margin: auto;
width: 80%;
}
.slideInsertionContainer > table{
width: 100%;
}
.slideInsertion{
text-align: center;
}
.slideInsertion td{
border-collapse: separate;
box-shadow: 1px 1px 2px 0px #eee;
}
.slideInsertion img{
width: 100px;
height: 100px;
}
.slideInsertion td{
display: inline-block;
max-width: 120px;
max-height: 120px;
text-align: center;
margin-left:20px;
margin-right:20px;
margin-top: 5px;
margin-bottom: 5px;
}
td.selectedImgInSlide{
border:2px solid #33ABF3;
box-shadow: 1px 1px 10px 1px #ccc;
}
/* Gacem's style end*/
/* PreLoader */
.spn_hol {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #fff;
z-index: 50000;
opacity: 1;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.spinner {
position: absolute;
top: 50%;
margin-top: -12px;
left: 50%;
margin-left: -35px;
height: 24px;
width: 70px;
text-align: center;
display: block;
}
.spinner > div {
width: 18px;
height: 18px;
background-color: #333;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0.0)
}
40% {
-webkit-transform: scale(1.0)
}
}
@keyframes bouncedelay {
0%, 80%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
}
40% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
}
.section {
width: 100%;
padding-left: 2%;
padding-right: 2%;
border-bottom: 2px solid #fff;
min-height: 50px;
}
.section ul {
list-style: none;
}
.section ul li {
display: inline-block;
}
.icon-group {
font-family: "Source Code Pro", "Consolas", sans-serif,monospace;
min-height: 40px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
width: 99%;
margin: 0 auto;
}
.icon {
display: inline-block;
padding: 6px;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transition: all .5s;
transition: all .5s;
}
.icon > a > i {
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.icon:hover >a >i {
-webkit-transform: scale(1.27);
-moz-transform: scale(1.27);
-ms-transform: scale(1.27);
-o-transform: scale(1.27);
transform: scale(1.27);
color: #0FACF3;
}
.icon > a > i {
color: #f7f7f7;
}
.no-padding {
padding: 0;
}
#codeIcons,
#formatIcons,
#insertionIcons {
color: #fff;
font-family: monospace, sans-serif;
padding-bottom: 5px;
}
#codeIcons p,
#formatIcons p,
#insertionIcons p {
margin-bottom: 0;
}
#codeIcons {
border-right: 1px solid rgba(247, 247, 247, 0.4);
}
#codeIcons .icon-group {
width: 99%;
}
#formatIcons {
border-right: 1px solid rgba(247, 247, 247, 0.4);
}
#visualisationArea .panel-default {
border: 0;
}
#visualisationArea.col-md-12 {
padding-left: 0;
padding-right: 0;
margin-bottom: 50px;
}
#visualisationArea .panel-heading {
background-color: #17183b;
-webkit-border-radius: 0;
position: relative;
-moz-border-radius: 0;
border-radius: 0;
border-color: #0FACF3;
color: #fff;
}
a[href="#codeEditor"] {
position: absolute;
color: #fff;
top: 20%;
right: 20px;
}
button#upButton {
position: fixed;
bottom: 20px;
right: 40px;
display: none;
}
li.dropdown.open > ul.dropdown-menu > li > a:hover {
background-color: #0FACF3;
color: #fff;
}
#codeEditor.col-md-6 {
padding-left: 0;
}
#visualisationArea.col-md-6 {
padding-right: 0;
}
i.off {
cursor: pointer;
color: #dd1c1a;
}
i.on {
cursor: pointer;
color: #4CAF50;
} | SITE_WEB/assets/css/resources/style.css | @charset "utf-8";
@font-face {
font-family: "Gotham Rounded Medium";
src: url("../fonts/GothamRoundedMedium_21022.ttf") format('truetype');
}
@font-face {
font-family: "Gotham Rounded Bold";
src: url("../fonts/GothamRoundedBold_21016.ttf") format('truetype');
}
@font-face {
font-family: "Gotham Rounded Light", sans-serif;
src: url("../fonts/GothamRoundedLight_21020.ttf") format('truetype');
}
html,
body {
font-family: "Gotham Rounded Medium", sans-serif;
overflow-x: hidden;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
text-rendering: optimizeLegibility;
}
body.dark {
background-color: #222;
}
body.light {
background-color: #f7f7f7;
}
::selection {
background-color: #0FACF3;
}
::-moz-selection {
background-color: #0FACF3;
color: #fff;
}
/*abdou*/
.ribbonImg {
width: 45%;
height: 45%;
padding: 5px;
margin: 5px;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
/*background-color: #2f90e5;*/
}
.ribbonImg:hover{
background-color: red;
}
.ribbonImg2{
/*opacity: 0.65;*/
color:#0627b1;
width: 45%;
height: 45%;
padding: 5px;
margin: 5px;
border-radius: 10px;
background-color: #33cc00;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*.ribbonImg {
width: 80%;
height: 180px;
padding: 5px;
margin: 5px;
border-radius: 10px;
}
.drinkcard-cc{
cursor:pointer;
background-repeat:no-repeat;
-webkit-transition: all 100ms ease-in;
-moz-transition: all 100ms ease-in;
transition: all 100ms ease-in;
-webkit-filter: brightness(1.4) grayscale(.8) opacity(.6);
-moz-filter: brightness(1.4) grayscale(.8) opacity(.6);
filter: brightness(1.4) grayscale(.8) opacity(.6);
}
.drinkcard-cc:hover{
-webkit-filter: brightness(1.3) grayscale(.4) opacity(1);
-moz-filter: brightness(1.3) grayscale(.4) opacity(1);
filter: brightness(1.3) grayscale(.4) opacity(1);
}
.drinkcard2{
cursor:pointer;
background-repeat:no-repeat;
-webkit-transition: all 100ms ease-in;
-moz-transition: all 100ms ease-in;
transition: all 100ms ease-in;
-webkit-filter: brightness(1.3) grayscale(.4) opacity(1);
-moz-filter: brightness(1.3) grayscale(.4) opacity(1);
filter: brightness(1.3) grayscale(.4) opacity(1);
}
*/
/* end abdou */
#sizeBar {
display: block;
width: 78px;
height: 17px;
background: #10171D;
border-radius: 40px;
box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.9), 0px 1px 1px 0px rgba(255, 255, 255, 0.13);
z-index: 999;
}
#sizeBar .bar {
display: block;
width: 72px;
height: 5px;
position: relative;
top: 6px;
left: 2px;
background: -webkit-linear-gradient(left, #1d2e38 0%, #2b4254 50%, #2b4254 100%);
border-radius: 40px;
}
.sizeBarContainer{
display: inline-block;
background-color: white;
color: black;
position: absolute;
top:25px;
z-index: 99;
width: 200px;
height: 100px;
}
input[type="range"] {
-webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
position: relative;
top: 0px;
z-index: 999;
width: 11px;
height: 11px;
cursor: pointer;
-webkit-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.6);
box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.6);
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ebf1f6), color-stop(50%, #abd3ee), color-stop(51%, #89c3eb), color-stop(100%, #d5ebfb));
}
input[type="range"]:hover ~ #rangevalue,
input[type="range"]:active ~ #rangevalue {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
top: -15px;
}
#rangevalue {
font-size: 10px;
text-align: center;
font-family: Arial, sans-serif;
display: block;
color: #fff;
margin: -20px 0;
position: relative;
left: 26%;
padding: 6px 12px;
border: 1px solid black;
box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #222931), color-stop(100%, #181D21));
border-radius: 20px;
width: 30px;
opacity: 0;
transition: all 0.5s ease;
top: 0px;
}
input[type="range"]:focus {
outline: none;
}
/*EndOfsizeBarStyle*/
/* Bootstrap Customization */
/* Navbar */
.navbar {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border: 0;
margin-bottom: 0;
}
.navbar-nav > li.dropdown.open > a {
background-color: transparent !important;
color: #0FACF3 !important;
}
.btn {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border: 2px;
}
/* Custom Light Theme */
nav.navbar.light-theme {
background-color: #fff;
}
.light-theme .navbar-nav > li > a {
color: #9d9d9d;
background-color: #fff;
}
.light-theme .navbar-nav > li.dropdown > a.dropdown-toggle:link,
.light-theme .navbar-nav > li.dropdown > a.dropdown-toggle:visited {
color: #9d9d9d;
background-color: #fff;
}
.light-theme .navbar-nav > li.dropdown > a.dropdown-toggle:hover,
.light-theme .navbar-nav > li.dropdown > a.dropdown-toggle:active {
color: #0FACF3;
background-color: #fff;
}
.light-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:hover,
.light-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:link,
.light-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:visited {
color: #fff;
background-color: #fff;
}
.light-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu > li > a:hover {
color: #fff;
background-color: #0FACF3;
}
.light-theme .navbar-nav > li > a:hover {
color: #0FACF3;
background-color: #fff;
-webkit-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
-ms-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
}
.light-theme .navbar-nav > li.active > a {
background-color: transparent;
color: #0FACF3;
}
.light-theme .navbar-nav > li.active > a:hover {
background-color: transparent;
color: #0FACF3;
}
.light-theme a.navbar-brand {
color: #0FACF3 !important;
}
/* Custom Light theme End */
/* Custom Dark Theme */
nav.navbar.dark-theme {
background-color: #222;
}
.dark-theme .navbar-nav > li > a:hover {
color: #0FACF3;
background-color: #222;
-webkit-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
-ms-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
}
.dark-theme .navbar-nav > li > a {
color: #9d9d9d;
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown > a.dropdown-toggle:link,
.dark-theme .navbar-nav > li.dropdown > a.dropdown-toggle:visited {
color: #9d9d9d;
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown > a.dropdown-toggle:hover,
.dark-theme .navbar-nav > li.dropdown > a.dropdown-toggle:active {
color: #0FACF3;
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:hover,
.dark-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:link,
.dark-theme .navbar-nav > li.dropdown.open > a.dropdown-toggle:visited {
color: #fff;
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu > li > a:hover {
color: #fff;
background-color: #0FACF3;
}
.dark-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu > li > a {
color: #f7f7f7;
}
.dark-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu {
background-color: #222;
}
.dark-theme .navbar-nav > li.dropdown.open > ul.dropdown-menu .divider {
background-color: #0FACF3;
}
.dark-theme form.navbar-form input#navSearch {
background-color: transparent;
}
.dark-theme .navbar-nav > li.active > a {
background-color: transparent;
color: #0FACF3;
}
.dark-theme .navbar-nav > li.active > a:hover {
background-color: transparent;
color: #0FACF3;
}
.dark-theme .navbar-brand {
color: #0FACF3 !important;
}
/* Custom Dark Theme End */
/* Modals Customization */
.modal {
text-align: center;
padding:0 !important;
}
.modal:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -4px;
}
.modal-dialog {
display: inline-block;
text-align: left;
vertical-align: middle;
}
.modal-backdrop {
background-color: #1F2D3D;
}
.modal-backdrop.in {
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
opacity: .9;
}
.close {
color: #0FACF3;
opacity: .8;
}
.close:hover {
color: #0FACF3;
opacity: 1;
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.modal-header .close {
padding-top: -1px;
padding-right: 2px;
}
/* Make Another Animation to Model */
.fade-scale {
transform: scale(0);
opacity: 0;
-webkit-transition: all .35s linear;
-o-transition: all .35s linear;
transition: all .35s linear;
}
.fade-scale.in {
opacity: 1;
transform: scale(1);
}
/* End Modals Customization */
/* Begin Panel Customization */
.panel-body {
padding: 0;
}
.CodeMirror {
height: 491px;
font-family: "Source Code Pro","Consolas", monospace;
}
/* Search Bar */
input#navSearch {
box-shadow: none;
text-align: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
color: #0FACF3;
border: 1px solid #0FACF3;
}
input#navSearch::-moz-placeholder {
color: #0FACF3;
}
input#navSearch::-webkit-input-placeholder {
color: #0FACF3;
}
input#navSearch:-moz-placeholder {
color: #0FACF3;
}
input#navSearch:-ms-input-placeholder {
color: #0FACF3;
}
/*Full Screen Search Page */
.btn-custom {
background-color: #0FACF3;
color: #f7f7f7;
}
.btn-custom:hover,
.btn-custom:focus {
background-color: #0FA0CE;
color: #f7f7f7;
}
/* End Full Screen Page Search */
div#fullSearch {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, .94);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
-webkit-transform: translate(0, -100%) scale(0, 0);
-moz-transform: translate(0, -100%) scale(0, 0);
-ms-transform: translate(0, -100%) scale(0, 0);
-o-transform: translate(0, -100%) scale(0, 0);
transform: translate(0, -100%) scale(0, 0);
opacity: 0;
}
div#fullSearch.open {
-webkit-transform: translate(0, 0) scale(1, 1);
-moz-transform: translate(0, 0) scale(1, 1);
-ms-transform: translate(0, 0) scale(1, 1);
-o-transform: translate(0, 0) scale(1, 1);
transform: translate(0, 0) scale(1, 1);
z-index: 1000; /* That's Pretty Random Hahhahah almohim fou9 999 and don't ask me why */
opacity: 1;
}
#fullSearch input[type='search'] {
position: absolute;
top: 50%;
width: 100%;
color: #0FACF3;
background: rgba(0, 0, 0, 0.01);
font-size: 60px;
font-weight: 700;
font-family: "Gotham Rounded Medium", sans-serif;
text-align: center;
border: 0;
margin: 0 auto;
margin-top: -51px;
padding-left: 30px;
padding-right: 30px;
outline: none;
}
#fullSearch .btn {
position: absolute;
top: 50%;
left: 0;
margin-top: 41px;
margin-left: 0;
}
#fullSearch .closeSearch {
position: fixed;
top: 15px;
right: 15px;
opacity: 1;
padding: 10px 17px;
font-size: 27px;
color: #0FACF3;
border: 0;
background-color: transparent;
}
#searchNote {
position: absolute;
color: #f7f7f7;
top: 80%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border-left: 4px solid #0FACF3;
border-right: 4px solid #0FACF3;
text-indent: 10px;
padding: 10px 0; /* ShortHand Padding :D :D */
padding-right: 10px;
}
div#fullSearch button[type="button"]:hover i.fa.fa-close {
-webkit-transform: scale(1.3);
-moz-transform: scale(1.3);
-ms-transform: scale(1.3);
-o-transform: scale(1.3);
transform: scale(1.3);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
/* Util CLasses */
.bg-dark {
background-color: #222;
}
.bg-light {
background-color: #fff;
}
.text-faded {
opacity: .5;
}
/* To be Modified Later */
.img-selected {
border: 3px solid #0FACF3;
}
p.text-faded {
margin: 10px auto;
}
/* Preloader */
#preloader {
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 100%;
z-index: 9999;
background: url("../../images/preloader.gif") center no-repeat #fff;
}
/* Iframe - Code Result */
#codeResult {
width: 100%;
height:491px;
}
#close {
color: #ef5350;
}
#magnify {
color: #FFEB3B;
}
#reduce {
color: #4CAF50;
margin-right: 20px;
}
#codeEditor .panel-default {
border: 0;
margin-bottom: 0;
}
#codeEditor.col-md-12 {
padding-left: 0;
padding-right: 0;
}
#codeEditor .panel-heading {
background-color: #17183b;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border-color: #0FACF3;
}
.menu-bar {
display: inline-block;
width: 100%;
padding-left: 10%;
}
div.menu-bar ul.menu-items {
list-style: none;
}
div.menu-bar ul.menu-items > li {
display: inline-block;
}
div.menu-bar ul.menu-items > li > a {
color: #fff;
margin-right: 17px;
}
div.menu-bar ul.menu-items > li > a:hover {
color: #f7f7f7;
text-decoration: none;
}
#codeEditor .panel-heading {
padding: 10px 10px;
}
#codeEditor .panel-heading ul.menu-items {
padding-left: 0;
}
#codeEditor li.dropdown > ul.dropdown-menu {
min-width: 90px;
}
.icon-menu-big {
font-size: 110%;
}
.custom-color-icon {
color: #00a8e8;
margin-right: 5px;
}
div.modal#nothingSelectedModal .modal-header h4 {
color: #dd1c1a;
}
div.modal#nothingSelectedModal .modal-body p > strong {
color: #dd1c1a;
text-decoration: underline;
}
div.modal#pasteModal .modal-header h4 {
color: #dd1c1a;
}
div.modal#pasteModal .modal-body p > strong {
color: #dd1c1a;
text-decoration: underline;
}
.thumbnail {
background-color: #0FACF3;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
ul#most-used-operations li a {
color: #f7f7f7;
padding: 7px;
margin: 0;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
transition: all .5s;
}
ul#most-used-operations li a:hover {
background-color: rgba(255, 255, 255, .2);
}
#uploadCodeModal div.CodeMirror {
height: 200px;
}
.hide {
display: none;
}
#uploadCodeModal .panel-heading {
background-color: #2c3e50;
border: 0;
color: #f7f7f7;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
#uploadCodeModal .panel-default {
border-color: rgba(13, 31, 45, 0.99);
}
#uploadCodeModal .panel {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.btn.btn-custom:hover {
background-color: #0f97e2;
}
.icon-big {
font-size: 125%;
}
.input-group-btn #searchIcon {
border: 1px solid #0FACF3;
}
.form-control {
outline: none;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.form-control:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-color: #0FACF3;
}
#addon-name {
background-color: #0FACF3;
color: #f7f7f7;
border: 1px solid #0FACF3;
}
#addon-description {
background-color: #0FACF3;
color: #f7f7f7;
border: 1px solid #0FACF3;
}
#saveCodeModal .modal-body textarea {
resize: none;
height: 100px;
}
#addon-category {
background-color: #0FACF3;
color: #f7f7f7;
border: 1px solid #0FACF3;
}
/* WebsiteSavedSuccessFully Snackbar Style START */
.SnackBar {
visibility: hidden; /* Hidden by default, only visible when class show is added */
min-width: 300px; /* Normalement 300px 1ntik w je c pas hhhhh */
/*margin-left: -150px;*/ /* Divide min-width by 2 :D that's all :D :D :D :D */
background-color: #2c3e50;
color: #2ecc71;
text-align: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
padding: 13px;
position: fixed;
z-index: 99999; /* Bach mayji ta7t 7eta haja hhhh */
left: 50%;
bottom: 30px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.snack-danger {
background-color: #2c3e50;
color: #e74c3c;
}
/* La Classe Show nzidouha b JavaScript (JQuery) ki nzidouha ywali had DIV visible */
/* Et comme ça we create l'effet de Snackbar Inspiré du Materual Design nta3 Android /D :D*/
.SnackBar.show {
visibility: visible;
/* Animation Dyal SnackBar */
/* FadeIn w FadeOut */
/* 3ala fikra we can use Animate.css :D :D, it's will be Pain Free :D */
-webkit-animation: fadeIn .5s, fadeOut .5s 3s;
-o-animation: fadeIn .5s, fadeOut .5s 3s;
animation: fadeIn .5s, fadeOut .5s 3s;
}
/* Creating Animations Now */
/* Standard */
@keyframes fadeIn {
from {
bottom: 0;
opacity:0; }
to {
bottom: 50px;
opacity: 1;
}
}
@keyframes fadeOut {
from {
bottom: 50px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Webkit */
@-webkit-keyframes fadeIn {
from {
bottom: 0;
opacity:0; }
to {
bottom: 50px;
opacity: 1;
}
}
@-webkit-keyframes fadeOut {
from {
bottom: 50px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Mozilla Browsers */
/* Moz Prefix */
@-moz-keyframes fadeIn {
from {
bottom: 0;
opacity:0; }
to {
bottom: 50px;
opacity: 1;
}
}
@-moz-keyframes fadeOut {
from {
bottom: 50px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Microsoft Browsers Prefix */
/* Ma3labalich Est ce que IE6 will handle the Keyframes hhh probably NOT */
@-ms-keyframes fadeIn {
from {
bottom: 0;
opacity:0; }
to {
bottom: 50px;
opacity: 1;
}
}
@-ms-keyframes fadeOut {
from {
bottom: 50px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Taki's Style Addition */
.tableInserting th,td{
padding:6px;
border:1px solid #D6D6D6;
}
.tableInserting table{
border-collapse: separate;
border-spacing: 3px;
}
.tableInserting {
padding: 5px;
border:1px solid #D6D6D6;
display: inline-block;
text-align: center;
position: absolute;
background-color: white;
top:-20px;
left:101%;
border-radius: 2px;
}
.hoveredSquare{
background-color: #3498db;
}
.tableInsertinghorisontal td,th{
padding:6px;
border:1px solid #D6D6D6;
}
.tableInsertinghorisontal table{
border-collapse: separate;
border-spacing: 3px;
}
.tableInsertinghorisontal {
padding: 5px;
border:1px solid #D6D6D6;
display: inline-block;
text-align: center;
position: absolute;
background-color: white;
top: 100%;
left: -200%;
border-radius: 2px;
z-index: 999;
}
.numInserting{
color:black;
display: none;
position: absolute;
background-color: white;
top: 130px;
left: 101%;
border-radius: 2px;
padding: 10px;
}
.numInserting td{
border:none;
}
.numInserting button{
float: right;
}
.numInsertingHor{
width: 300px;
z-index: 999;
color:black;
display: none;
position: absolute;
background-color: white;
top: 100%;
left: -200%;
border-radius: 2px;
padding: 10px;
}
.numInsertingHor td{
border:none;
}
.numInsertingHor button{
float: right;
}
.linksDiv td{
border:none;
}
.linksDiv{
width:260px;
position: absolute;
background-color: white;
top: 130px;
left: 101%;
border-radius: 2px;
padding: 10px;
color: black;
}
.titleInsertingHor{
width:150px;
position: absolute;
background-color: white;
top: 60px;
left: 40%;
border-radius: 2px;
padding: 0px;
color: black;
}
.linksType {
font-size: 20px;
text-align: center;
}
.linksType i{
padding-left:10px;
padding-right:10px;
}
.linksType i:hover{
color: #00a8e8;
}
.linksDiv hr{
color: red;
margin-top: 5px;
margin-bottom:5px;
border-color: #888;
}
.linksDivHor td{
border:none;
}
.linksDivHor{
width:260px;
position: absolute;
background-color: white;
top:100%;
left: -100px;
border-radius: 2px;
padding: 10px;
color: black;
z-index: 999;
}
.linksDivHor hr{
color: red;
margin-top: 5px;
margin-bottom:5px;
border-color: #888;
}
.typeClicked{
color: #0FACF3;
}
.tooltip > .tooltip-inner{
color: white;
background-color: black;
}
.tooltip.in{
opacity: 1;
}
.autoComplete{
max-height: 180px;
overflow-y: scroll;
background-color: #455A64;
color: #f7f7f7;
position: absolute;
display: none;
z-index: 9999;
cursor: pointer;
border-radius: 4px;
}
.autoComplete div{
padding-left:5px;
padding-right:20px;
margin-bottom:2px;
margin-top:2px;
}
.autoComplete div:hover{
background-color: #651FFF;
;
}
.selectedAutoComplete,div.selectedAutoComplete:hover{
background-color: #0FACF3;
color: #fff;
font-weight: 600;
}
.postInsertionContainer{
margin: auto;
width: 80%;
}
.postInsertionContainer > table{
width: 100%;
}
.postInsertion{
text-align: center;
}
.postInsertion td{
border-collapse: separate;
box-shadow: 1px 1px 2px 0px #eee;
}
.postInsertion img{
width: 100px;
height: 100px;
}
.postInsertion td{
display: inline-block;
max-width: 120px;
max-height: 120px;
text-align: center;
margin-left:20px;
margin-right:20px;
margin-top: 5px;
margin-bottom: 5px;
}
td.selectedImgInPost{
border:2px solid #33ABF3;
box-shadow: 1px 1px 10px 1px #ccc;
}
.columnTables{
width: 95%;
margin: auto;
}
.columnTables td{
border:none;
}
/* Taki's Style END */
/* Brahim's style Begin*/
.colorpicker{
z-index: 9999;!important;
}
.img__SectionS{
margin-bottom: 20px;
}
#sectionSpecialesInsertionModal .modal-dialog{
width: 1110px;!important;
height: auto;!important;
max-height: 100%;!important;
overflow-y: initial;
}
.img__SectionS:hover{
cursor: pointer;
}
#titleInsertion {
position: relative;!important;
}
#titleInsertion .fa-angle-right{
display: inline-block;
margin-left: 85px;
font-weight: bold;
}
.titlesubmenu {
top: 0;!important;
left: 100%;!important;
margin-top: -1px;!important;
}
#rotateColorPreview{
height: 42px;
width: 42px;
position: relative;
transform: rotate(45deg);
background-color: #999999;
left: 9px;
}
#colorPreview{
background-color: #999999;
display: inline-block;
position: absolute;
box-shadow: 0px 0px 10px #000;
}
#innerColorPreview{
position: absolute;
height: 46px;
width: 46px;
top:7px;
left: 7px;
}
.autoComplete::-webkit-scrollbar{
width: 10px;
background-color: #666;
}
.autoComplete::-webkit-scrollbar-thumb{
background-color: #888;
}
.autoComplete::-webkit-scrollbar-thumb:hover{
background-color: #aaa;
}
.autoComplete::-webkit-scrollbar-thumb:active{
background-color: #bbb;
}
body::-webkit-scrollbar{
width: 14px;
background-color: #333;
}
body::-webkit-scrollbar-thumb{
background-color: #444;
}
body::-webkit-scrollbar-thumb:hover{
background-color: #666;
}
body::-webkit-scrollbar-thumb:active{
background-color: #888;
}
/* Brahim's Style End*/
/* Gacem's style Begin*/
.slideInsertionContainer{
margin: auto;
width: 80%;
}
.slideInsertionContainer > table{
width: 100%;
}
.slideInsertion{
text-align: center;
}
.slideInsertion td{
border-collapse: separate;
box-shadow: 1px 1px 2px 0px #eee;
}
.slideInsertion img{
width: 100px;
height: 100px;
}
.slideInsertion td{
display: inline-block;
max-width: 120px;
max-height: 120px;
text-align: center;
margin-left:20px;
margin-right:20px;
margin-top: 5px;
margin-bottom: 5px;
}
td.selectedImgInSlide{
border:2px solid #33ABF3;
box-shadow: 1px 1px 10px 1px #ccc;
}
/* Gacem's style end*/
/* PreLoader */
.spn_hol {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #fff;
z-index: 50000;
opacity: 1;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.spinner {
position: absolute;
top: 50%;
margin-top: -12px;
left: 50%;
margin-left: -35px;
height: 24px;
width: 70px;
text-align: center;
display: block;
}
.spinner > div {
width: 18px;
height: 18px;
background-color: #333;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0.0)
}
40% {
-webkit-transform: scale(1.0)
}
}
@keyframes bouncedelay {
0%, 80%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
}
40% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
}
.section {
width: 100%;
padding-left: 2%;
padding-right: 2%;
border-bottom: 2px solid #fff;
min-height: 50px;
}
.section ul {
list-style: none;
}
.section ul li {
display: inline-block;
}
.icon-group {
font-family: "Source Code Pro", "Consolas", sans-serif,monospace;
min-height: 40px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
width: 99%;
margin: 0 auto;
}
.icon {
display: inline-block;
padding: 6px;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transition: all .5s;
transition: all .5s;
}
.icon > a > i {
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.icon:hover >a >i {
-webkit-transform: scale(1.27);
-moz-transform: scale(1.27);
-ms-transform: scale(1.27);
-o-transform: scale(1.27);
transform: scale(1.27);
color: #0FACF3;
}
.icon > a > i {
color: #f7f7f7;
}
.no-padding {
padding: 0;
}
#codeIcons,
#formatIcons,
#insertionIcons {
color: #fff;
font-family: monospace, sans-serif;
padding-bottom: 5px;
}
#codeIcons p,
#formatIcons p,
#insertionIcons p {
margin-bottom: 0;
}
#codeIcons {
border-right: 1px solid rgba(247, 247, 247, 0.4);
}
#codeIcons .icon-group {
width: 99%;
}
#formatIcons {
border-right: 1px solid rgba(247, 247, 247, 0.4);
}
#visualisationArea .panel-default {
border: 0;
}
#visualisationArea.col-md-12 {
padding-left: 0;
padding-right: 0;
margin-bottom: 50px;
}
#visualisationArea .panel-heading {
background-color: #17183b;
-webkit-border-radius: 0;
position: relative;
-moz-border-radius: 0;
border-radius: 0;
border-color: #0FACF3;
color: #fff;
}
a[href="#codeEditor"] {
position: absolute;
color: #fff;
top: 20%;
right: 20px;
}
button#upButton {
position: fixed;
bottom: 20px;
right: 40px;
display: none;
}
li.dropdown.open > ul.dropdown-menu > li > a:hover {
background-color: #0FACF3;
color: #fff;
}
#codeEditor.col-md-6 {
padding-left: 0;
}
#visualisationArea.col-md-6 {
padding-right: 0;
}
i.off {
cursor: pointer;
color: #dd1c1a;
}
i.on {
cursor: pointer;
color: #4CAF50;
} | 0.338624 | 0.159381 |
@media only screen and (min-width: 700px) {
.form-container {
width: 60%;
margin-left: 20%;
}
}a {
text-decoration: none;
}
@media screen and (min-width: 1700px) {
.container { max-width: 1500px;}
}
.mycard {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border: 0;
}
.no-round {
border-radius: 0;
border: 0;
}
/* On mouse-over, add a deeper shadow */
.mycard:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
visibility: hidden; /* Hidden by default. Visible on click */
min-width: 250px; /* Set a default minimum width */
background-color: #333; /* Black background color */
color: #fff; /* White text color */
text-align: center; /* Centered text */
border-radius: 2px; /* Rounded borders */
padding: 16px; /* Padding */
position: fixed; /* Sit on top of the screen */
z-index: 999999; /* Add a z-index if needed */
left: 50%; /* Center the snackbar */
transform: translateX(-50%);
bottom: 30px; /* 30px from the bottom */
animation: fadein 0.5s;
/* animation-delay: 2.5s; */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
visibility: visible; /* Show the snackbar */
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
/* -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; */
animation: fadein 0.5s;
}
#snackbar .closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
.wrap-tile-100 {
width: 100%;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
/* overflow-x: scroll; */
}
.fab {
position: fixed;
right: 50px;
bottom: 50px;
z-index: 999;
width: 50px; height: 50px; border-radius: 50%;
cursor: pointer;
border: 1px solid #615CFA;
background-color: #615CFD;
}
.fab:focus {
border: 0px;
outline: 0px;
}
.count-badge {
padding: 2px;
border-radius: 50%;
background-color: red;
color: #efefef;
font-size: 14px;
line-height: 20px;
text-align: center;
height: 24px; width: 24px;
position: absolute;
left: -6px; top: -2px;
}
@keyframes notification-container-fadein {
from {bottom: 50px; opacity: 0;}
to {bottom: 110px; opacity: 1;}
}
#notif-container {
display: none;
border-radius: 5px;
width: 400px;
/*background-color: #ccc;*/
position: fixed; right: 50px; bottom: 110px;
z-index: 999;
max-height: 70vh;
overflow-y: scroll;
animation: notification-container-fadein 0.16s;
}
#notif-container:nth-child(odd) {
background: #5e5a5a;
}
.notification {
border-radius: 3px;
cursor: pointer;
}
.notification p {
line-height: 1.4;
font-size: 14px;
}
.notification:hover {
background-color: #f2f2f2
} | web/public/css/my-styles.css | @media only screen and (min-width: 700px) {
.form-container {
width: 60%;
margin-left: 20%;
}
}a {
text-decoration: none;
}
@media screen and (min-width: 1700px) {
.container { max-width: 1500px;}
}
.mycard {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border: 0;
}
.no-round {
border-radius: 0;
border: 0;
}
/* On mouse-over, add a deeper shadow */
.mycard:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
visibility: hidden; /* Hidden by default. Visible on click */
min-width: 250px; /* Set a default minimum width */
background-color: #333; /* Black background color */
color: #fff; /* White text color */
text-align: center; /* Centered text */
border-radius: 2px; /* Rounded borders */
padding: 16px; /* Padding */
position: fixed; /* Sit on top of the screen */
z-index: 999999; /* Add a z-index if needed */
left: 50%; /* Center the snackbar */
transform: translateX(-50%);
bottom: 30px; /* 30px from the bottom */
animation: fadein 0.5s;
/* animation-delay: 2.5s; */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
visibility: visible; /* Show the snackbar */
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
/* -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; */
animation: fadein 0.5s;
}
#snackbar .closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
.wrap-tile-100 {
width: 100%;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
/* overflow-x: scroll; */
}
.fab {
position: fixed;
right: 50px;
bottom: 50px;
z-index: 999;
width: 50px; height: 50px; border-radius: 50%;
cursor: pointer;
border: 1px solid #615CFA;
background-color: #615CFD;
}
.fab:focus {
border: 0px;
outline: 0px;
}
.count-badge {
padding: 2px;
border-radius: 50%;
background-color: red;
color: #efefef;
font-size: 14px;
line-height: 20px;
text-align: center;
height: 24px; width: 24px;
position: absolute;
left: -6px; top: -2px;
}
@keyframes notification-container-fadein {
from {bottom: 50px; opacity: 0;}
to {bottom: 110px; opacity: 1;}
}
#notif-container {
display: none;
border-radius: 5px;
width: 400px;
/*background-color: #ccc;*/
position: fixed; right: 50px; bottom: 110px;
z-index: 999;
max-height: 70vh;
overflow-y: scroll;
animation: notification-container-fadein 0.16s;
}
#notif-container:nth-child(odd) {
background: #5e5a5a;
}
.notification {
border-radius: 3px;
cursor: pointer;
}
.notification p {
line-height: 1.4;
font-size: 14px;
}
.notification:hover {
background-color: #f2f2f2
} | 0.330471 | 0.09886 |
body {
position: relative;
color: #000000;
font-family: 'Roboto';
overflow-x: hidden;
}
.background {
position: absolute;
top: 0px;
right: 0px;
width: 100%;
height: 100%;
}
.background1 {
position: absolute;
top: 0px;
right: 0px;
width: 100%;
height: 80%;
background-color: #FFFFFF;
z-index: 1;
}
.background2 {
position: absolute;
z-index: 3;
background-image: url('../img/background.png');
background-repeat: no-repeat;
}
.background2-2 {
position: absolute;
z-index: 3;
background-image: url('../img/background.png');
background-repeat: no-repeat;
}
.background2-3 {
position: absolute;
z-index: 3;
background-image: url('../img/background.png');
background-repeat: no-repeat;
}
.background3 {
position: absolute;
bottom: 0%;
right: 0px;
width: 100%;
height: 1075px;
background-color: #32354E;
z-index: 1;
}
.background4 {
position: absolute;
top: 695px;
right: 0px;
width: 100%;
height: 732px;
background-image: url('../img/mask.svg');
background-size: 100%;
background-repeat: no-repeat;
z-index: 2;
opacity: 0.5;
}
.background4-2 {
position: absolute;
top: 1142px;
right: 0px;
width: 100%;
height: 732px;
background-image: url('../img/mask.svg');
background-size: 100%;
background-repeat: no-repeat;
z-index: 2;
opacity: 0.5;
}
.background-oval {
background-image: url('../img/oval.png');
background-position: center center;
background-repeat: no-repeat;
background-size: 66px 66px;
z-index: 4;
position: absolute;
width: 66px;
height: 66px;
}
.background-oval2 {
top: 1272px;
left: 156px;
}
.background-oval2-3 {
top: 1272px;
left: 156px;
}
.background-oval3 {
top: 695px;
right: 134px;
}
.background-oval3-2 {
top: 1159px;
right: 134px;
}
.background-oval4 {
background-image: url('../img/oval_big.png');
background-size: 152px 152px;
width: 152px;
height: 152px;
bottom: -85px;
right: -29px;
}
.background-oval5 {
background-image: url('../img/oval_big.png');
background-size: 152px 152px;
width: 152px;
height: 152px;
top: 2275px;
left: -76px;
}
.container-radix {
margin: 0px auto;
position: relative;
z-index: 4;
}
.first-row {
padding-top: 46px;
}
.first-row .btn {
font-family: "Open Sans";
font-size: 13px;
font-weight: 600;
}
.header1 {
padding-top: 63px;
color: #32354E;
font-family: Roboto;
}
.header2 {
color: #32354E;
font-family: "Open Sans";
margin-top: 20px;
}
.header3 {
color: #515F7F;
font-family: "Open Sans";
margin-top: 40px;
}
.header-buttons {
padding-top: 39.2px;
}
.header-buttons .btn {
padding: 16px 36px;
margin-right: 17.2px;
}
.graph-header1 {
position: absolute;
left: 0px;
right: 0px;
text-align: center;
color: #515F7F;
font-family: "Open Sans";
}
.graph-header2 {
position: absolute;
left: 0px;
right: 0px;
color: #565BB9;
text-align: center;
font-family: Roboto;
font-weight: 500;
text-shadow: 0 20px 30px 0 rgba(81,95,127,0.35);
}
.graph-header3 {
position: absolute;
left: 0px;
right: 0px;
text-align: center;
color: #565BB9;
font-family: "Open Sans";
font-weight: 600;
}
.graph-header4 {
position: absolute;
text-align: center;
color: #515F7F;
font-family: "Open Sans";
border-radius: 3px;
border: 1px dashed #565BB9;
background-color: rgba(86,91,185,0.1);
font-weight: bold;
padding: 11px 25px;
left: calc(50% - 90px);
width: 180px;
}
.header-second-part {
color: #32354E;
font-family: Roboto;
font-size: 42px;
line-height: 64px;
display: flex;
align-items: center;
height: 100%;
}
.header-second-part .highlighted {
color: #24B47E;
}
.vertical-align-middle {
display: flex;
align-items: center;
height: 100%;
}
.header-watch-us {
color: #FFFFFF;
font-family: Roboto;
}
.text-watch-us {
color: #FFFFFF;
font-family: "Open Sans";
font-size: 16px;
line-height: 25px;
}
.background-dots {
position: absolute;
bottom: -48px;
left: 3px;
width: 250px;
height: 250px;
background-image: url('../img/dots.svg');
background-position: center center;
background-size: 250px 250px;
}
.card .btn {
padding: 16px;
text-align: center;
}
.card .table {
width: 100%;
font-family: "Open Sans";
font-size: 16px;
font-weight: 600;
line-height: 22px;
margin-bottom: 0px;
}
.card .table th:last-child {
padding-right: 35px;
}
.card .table td, .card .table th {
padding: 16px 20px;
border-top-width: 0px;
border-bottom-width: 0px;
}
.card .table thead th {
color: #A3ADB7;
font-weight: normal;
}
.card .table .text-green {
color: #24B47E;
}
.card .table .text-red {
color: #FF5964;
}
.card .table .text-date {
text-align: right;
font-weight: 600;
color: #515F7F;
}
.table-paging-buttons {
padding-top: 5px;
width: 100%;
display: flex;
align-items: stretch;
justify-content: space-between;
}
.table-paging-buttons .btn {
padding: 7px;
}
.overflow-container {
overflow-y: auto;
}
.overflow-container::-webkit-scrollbar {
background-color: #CCCCCC;
border: 1px solid #24B47E;
border-radius: 10px;
}
.overflow-container::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
background-color: #24B47E;
}
.card-join-the-conversation::after {
content: "";
background: url('../img/white_waive_top.svg');
background-size: 637px 316px;
background-repeat: no-repeat;
opacity: 0.3;
top: 20px;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: 1;
}
.card-join-the-conversation .card-inner {
background-color: transparent;
z-index: 2;
}
.card-join-the-conversation .card-title1 {
width: 100%;
text-align: center;
color: #32354E;
font-family: Roboto;
padding-top: 42px;
padding-bottom: 10px;
}
.card-join-the-conversation .card-title2 {
width: 100%;
text-align: center;
color: #515F7F;
font-family: "Open Sans";
font-size: 20px;
line-height: 25px;
padding-bottom: 40px;
}
.card-join-the-conversation .card-buttons {
padding-bottom: 42px;
text-align: center;
}
.card-join-the-conversation .card-buttons .btn {
text-align: center;
padding: 16px;
}
.counter-header1 {
text-align: center;
width: 100%;
font-family: Roboto;
font-size: 42px;
line-height: 64px;
padding-bottom: 10px;
color: #FFFFFF;
}
.counter-header2 {
text-align: center;
width: 100%;
font-family: "Open Sans";
font-size: 20px;
line-height: 25px;
color: #FFFFFF;
}
.counter-buttons {
padding-top: 75px;
text-align: center;
}
.card-with-hover {
height: 245px;
border: 10px solid rgba(219,221,224,0.5);
border-radius: 3px;
background-color: transparent;
margin: 10px;
}
.card.card-with-hover .card-inner {
padding: 35px 20px 20px 20px;
height: 100%;
}
.card.card-with-hover .background-dots {
background: url('../img/dots-gray.svg');
z-index: 5;
width: 158px;
height: 123px;
}
.card.card-with-hover:hover .card-inner {
background: url('../img/oval_big.png');
background-position: center center;
background-size: 1000px 1000px;
color: #FFFFFF !important;
}
.card.card-with-hover .background-dots.top-right {
top: 0px;
bottom: unset;
right: 0px;
left: unset;
}
.card.card-with-hover .background-dots.bottom-left {
top: unset;
bottom: 0px;
right: unset;
left: 0px;
}
.card.card-with-hover .background-dots.bottom-right {
top: unset;
bottom: 0px;
right: 0px;
left: unset;
}
.card.card-with-hover .card-header-icon {
width: 66px;
height: 66px;
margin-bottom: 20px;
background-repeat: no-repeat;
background-position: top center;
background-size: 66px 66px;
}
.card.card-with-hover .card-header-icon.group-7 {
background-image: url('../img/Group7.svg');
}
.card.card-with-hover .card-header-icon.group-8 {
background-image: url('../img/Group8.svg');
}
.card.card-with-hover .card-header-icon.group-9 {
background-image: url('../img/Group9.svg');
}
.card.card-with-hover:hover .card-text {
color: #FFFFFF !important;
}
.card.card-with-hover:hover .card-text .text-purple {
color: #FFFFFF !important;
font-weight: bold;
}
.card.card-with-hover:hover .card-header-icon.group-7 {
background-image: url('../img/Group7Active.svg');
}
.card.card-with-hover:hover .card-header-icon.group-8 {
background-image: url('../img/Group8Active.svg');
}
.card.card-with-hover:hover .card-header-icon.group-9 {
background-image: url('../img/Group9Active.svg');
}
.card.card-with-hover .card-text {
color: #515F7F;
font-family: "Open Sans";
font-size: 20px;
line-height: 34px;
z-index: 6;
position: relative;
}
.card.card-with-hover .card-text .btn {
font-family: "Open Sans";
font-size: 13px;
font-weight: 600;
line-height: 18px;
}
.row-footer {
padding-top: 55px;
}
.row-footer .text {
color: #DBDDE0;
font-family: "Lucida Grande";
font-size: 16px;
}
.row-footer .highlighted {
color: #FFFFFF;
font-family: "Lucida Grande";
font-size: 18px;
margin-bottom: 14px;
}
.row-footer .link {
color: #DBDDE0;
font-family: "Open Sans";
font-size: 16px;
margin-bottom: 14px;
display: block;
}
.row-footer .icon {
padding-left: 15px;
}
.row-footer .icon img {
width: 33px;
height: 33px;
}
.text-green {
color: #24B47E !important;
}
.text-purple {
color: #565BB9 !important;
}
@media (min-width: 1301px) {
.canvas {
width: 550px !important;
height: 550px !important;
}
.container-radix {
width: 1250px;
}
.col-watch-us {
padding-left: 180px;
}
.card-join-the-conversation {
margin-left: 171px;
margin-right: 171px;
}
}
@media (min-width: 1240px) and (max-width: 1300px) {
.canvas {
width: 550px !important;
height: 550px !important;
}
.container-radix {
width: 1100px;
}
.col-watch-us {
padding-left: 120px;
}
.card-join-the-conversation {
margin-left: 171px;
margin-right: 171px;
}
.card.card-with-hover .card-text {
font-size: 16px;
line-height: 32px;
}
}
@media (min-width: 1140px) and (max-width: 1239px) {
.canvas {
width: 515px !important;
height: 515px !important;
}
.graph-header2 {
top: 207px !important;
font-size: 80px !important;
}
.graph-header3 {
top: 305px !important;
}
.graph-header4 {
top: 365px !important;
width: 150px;
left: calc(50% - 75px);
font-size: 16px !important;
}
.container-radix {
width: 1000px;
}
.col-watch-us {
padding-left: 80px;
}
.card-join-the-conversation {
margin-left: 101px;
margin-right: 101px;
}
.card.card-with-hover .card-text {
font-size: 14px;
line-height: 30px;
}
.card.card-with-hover .card-text .btn {
padding-left: 8px;
padding-right: 8px;
}
.row-footer .icon {
padding-left: 3px !important;
}
}
@media (min-width: 960px) and (max-width: 1139px) {
.canvas {
width: 450px !important;
height: 450px !important;
}
.container-radix {
width: 900px;
}
.col-watch-us {
padding-left: 30px;
}
.card-join-the-conversation {
margin-left: 71px;
margin-right: 71px;
}
.card.card-with-hover .card-text {
font-size: 12px;
line-height: 25px;
}
.card.card-with-hover .card-text .btn {
padding-left: 4px;
padding-right: 4px;
}
.graph-header2 {
top: 195px !important;
font-size: 60px !important;
}
.graph-header3 {
top: 275px !important;
}
.graph-header4 {
top: 325px !important;
width: 150px;
left: calc(50% - 75px);
font-size: 16px !important;
}
.row-footer .icon {
padding-left: 3px !important;
}
}
@media (min-width: 960px) {
.col-radix-2 {
flex: 0 0 50%;
max-width: 50%;
}
.col-radix-3 {
flex: 0 0 33%;
max-width: 33%;
}
.background2 {
top: 1107px;
right: 0px;
width: 100%;
height: 1206px;
background-size: 100% 1206px;
}
.background2-2 {
top: 1555px;
right: 0px;
width: 100%;
height: 1206px;
background-size: 100% 1206px;
}
.background2-3 {
top: 1082px;
right: 0px;
width: 100%;
height: 1206px;
background-size: 100% 1206px;
}
.background-oval1 {
top: 254px;
width: 33px;
background-position: top right;
left: 0px;
}
.card-join-the-conversation .card-buttons .btn {
width: 215px;
margin-left: 10px;
margin-right: 10px;
}
.flip-clock-wrapper.bigger {
margin: 1em auto;
width: 865px;
}
.flip-clock-wrapper.bigger .flip-clock-divider .flip-clock-label {
top: 151px;
right: -117px !important;
}
.flip-clock-wrapper.bigger .flip-clock-divider.hours .flip-clock-label {
right: -174px !important;
}
.flip-clock-wrapper.bigger ul li a div div.inn {
font-size: 82px;
line-height: 164px;
}
.flip-clock-wrapper.bigger ul {
height: 167px;
width: 111px;
}
.flip-clock-wrapper.bigger .flip-clock-divider {
height: 110px;
top: 30px;
}
.header1 {
font-size: 56px;
line-height: 74px;
}
.header2 {
font-size: 20px;
line-height: 25px;
margin-top: 20px;
}
.header3 {
font-size: 16px;
line-height: 34px;
margin-top: 40px;
}
.graph-header1 {
top: 180px;
font-size: 18px;
}
.graph-header2 {
top: 224px;
font-size: 80px;
letter-spacing: 0.56px;
}
.graph-header3 {
top: 325px;
font-size: 18px;
font-weight: 600;
}
.graph-header4 {
top: 398px;
font-size: 20px;
line-height: 34px;
}
.header-watch-us {
font-size: 42px;
line-height: 64px;
padding-bottom: 30px;
}
.btn-watch {
width: 100px;
}
.card-with-hover-wrapper {
padding-top: 185px;
}
.card-join-the-conversation .card-title1 {
font-size: 42px;
line-height: 64px;
}
.padding-left-right-on-bigger {
padding-left: 50px;
padding-right: 50px;
}
.row-footer {
margin-left: 171px;
margin-right: 171px;
}
.row-footer .logo {
padding-bottom: 158px;
}
.radix-only-on-smaller {
display: none;
}
.pt-150-on-bigger {
padding-top: 150px;
}
}
@media (max-width: 959px) {
.canvas {
width: 350px !important;
height: 350px !important;
}
.flip-clock-wrapper {
margin: 1em auto;
width: 416px;
}
.flip-clock-wrapper.bigger {
margin: 1em auto;
width: 500px;
}
.container-radix {
width: calc(100% - 48px);
}
.col-radix-2 {
flex: 0 0 100%;
max-width: 100%;
padding-right: 15px;
padding-left: 15px;
}
.col-radix-3 {
flex: 0 0 100%;
max-width: 100%;
padding-right: 15px;
padding-left: 15px;
}
.background2 {
top: 627px;
right: 0px;
width: 100%;
height: 2200px;
background-size: 3400px 2200px;
background-position: top center;
}
.background2-2 {
top: 1131px;
right: 0px;
width: 100%;
height: 2200px;
background-size: 3400px 2200px;
background-position: top center;
}
.background2-3 {
top: 460px;
right: 0px;
width: 100%;
height: 1800px;
background-size: 2900px 1800px;
background-position: top center;
}
.background4 {
display: none;
}
.background-oval1 {
top: 340px;
right: -48px;
background-size: 96px 96px;
width: 96px;
height: 96px;
}
.background-oval2 {
top: 1051px;
left: 217px;
}
.background-oval2-3 {
top: 884px;
left: 217px;
}
.background-oval3 {
display: none;
}
.background-oval3-2 {
display: none;
}
.background-oval4 {
right: -1px;
}
.background-oval5 {
display: none;
}
.canvas {
margin-top: 50px;
}
.header1 {
font-size: 36px;
line-height: 48px;
}
.header2 {
font-size: 20px;
line-height: 25px;
margin-top: 20px;
}
.header3 {
font-size: 16px;
line-height: 34px;
margin-top: 40px;
}
.graph-header1 {
top: 179px;
font-size: 12px;
}
.graph-header2 {
top: 200px;
font-size: 34px;
font-weight: 600;
}
.graph-header3 {
top: 249px;
font-size: 14px;
font-weight: 600;
}
.header-watch-us {
font-size: 30px;
line-height: 44px;
text-align: center;
padding-bottom: 30px;
}
.col-watch-us {
text-align: center;
padding-top: 100px;
}
.btn-watch {
width: 100px;
}
.text-watch-us {
padding-top: 40px;
text-align: center;
width: 100%;
}
.background-dots {
display: none;
}
.flip-clock-wrapper.bigger .flip-clock-divider.hours .flip-clock-label {
right: -93px !important;
}
.card-join-the-conversation .card-title1 {
font-size: 30px;
line-height: 44px;
}
.radix-only-on-bigger {
display: none;
}
.card-join-the-conversation .card-buttons {
margin-left: 36px;
margin-right: 36px;
}
.card-join-the-conversation .card-buttons .btn {
width: 100%;
margin-bottom: 10px;
}
}
.txt-watch {
border: none;
outline: none;
width: calc(100% - 100px);
} | explorer/app2/css/main.css | body {
position: relative;
color: #000000;
font-family: 'Roboto';
overflow-x: hidden;
}
.background {
position: absolute;
top: 0px;
right: 0px;
width: 100%;
height: 100%;
}
.background1 {
position: absolute;
top: 0px;
right: 0px;
width: 100%;
height: 80%;
background-color: #FFFFFF;
z-index: 1;
}
.background2 {
position: absolute;
z-index: 3;
background-image: url('../img/background.png');
background-repeat: no-repeat;
}
.background2-2 {
position: absolute;
z-index: 3;
background-image: url('../img/background.png');
background-repeat: no-repeat;
}
.background2-3 {
position: absolute;
z-index: 3;
background-image: url('../img/background.png');
background-repeat: no-repeat;
}
.background3 {
position: absolute;
bottom: 0%;
right: 0px;
width: 100%;
height: 1075px;
background-color: #32354E;
z-index: 1;
}
.background4 {
position: absolute;
top: 695px;
right: 0px;
width: 100%;
height: 732px;
background-image: url('../img/mask.svg');
background-size: 100%;
background-repeat: no-repeat;
z-index: 2;
opacity: 0.5;
}
.background4-2 {
position: absolute;
top: 1142px;
right: 0px;
width: 100%;
height: 732px;
background-image: url('../img/mask.svg');
background-size: 100%;
background-repeat: no-repeat;
z-index: 2;
opacity: 0.5;
}
.background-oval {
background-image: url('../img/oval.png');
background-position: center center;
background-repeat: no-repeat;
background-size: 66px 66px;
z-index: 4;
position: absolute;
width: 66px;
height: 66px;
}
.background-oval2 {
top: 1272px;
left: 156px;
}
.background-oval2-3 {
top: 1272px;
left: 156px;
}
.background-oval3 {
top: 695px;
right: 134px;
}
.background-oval3-2 {
top: 1159px;
right: 134px;
}
.background-oval4 {
background-image: url('../img/oval_big.png');
background-size: 152px 152px;
width: 152px;
height: 152px;
bottom: -85px;
right: -29px;
}
.background-oval5 {
background-image: url('../img/oval_big.png');
background-size: 152px 152px;
width: 152px;
height: 152px;
top: 2275px;
left: -76px;
}
.container-radix {
margin: 0px auto;
position: relative;
z-index: 4;
}
.first-row {
padding-top: 46px;
}
.first-row .btn {
font-family: "Open Sans";
font-size: 13px;
font-weight: 600;
}
.header1 {
padding-top: 63px;
color: #32354E;
font-family: Roboto;
}
.header2 {
color: #32354E;
font-family: "Open Sans";
margin-top: 20px;
}
.header3 {
color: #515F7F;
font-family: "Open Sans";
margin-top: 40px;
}
.header-buttons {
padding-top: 39.2px;
}
.header-buttons .btn {
padding: 16px 36px;
margin-right: 17.2px;
}
.graph-header1 {
position: absolute;
left: 0px;
right: 0px;
text-align: center;
color: #515F7F;
font-family: "Open Sans";
}
.graph-header2 {
position: absolute;
left: 0px;
right: 0px;
color: #565BB9;
text-align: center;
font-family: Roboto;
font-weight: 500;
text-shadow: 0 20px 30px 0 rgba(81,95,127,0.35);
}
.graph-header3 {
position: absolute;
left: 0px;
right: 0px;
text-align: center;
color: #565BB9;
font-family: "Open Sans";
font-weight: 600;
}
.graph-header4 {
position: absolute;
text-align: center;
color: #515F7F;
font-family: "Open Sans";
border-radius: 3px;
border: 1px dashed #565BB9;
background-color: rgba(86,91,185,0.1);
font-weight: bold;
padding: 11px 25px;
left: calc(50% - 90px);
width: 180px;
}
.header-second-part {
color: #32354E;
font-family: Roboto;
font-size: 42px;
line-height: 64px;
display: flex;
align-items: center;
height: 100%;
}
.header-second-part .highlighted {
color: #24B47E;
}
.vertical-align-middle {
display: flex;
align-items: center;
height: 100%;
}
.header-watch-us {
color: #FFFFFF;
font-family: Roboto;
}
.text-watch-us {
color: #FFFFFF;
font-family: "Open Sans";
font-size: 16px;
line-height: 25px;
}
.background-dots {
position: absolute;
bottom: -48px;
left: 3px;
width: 250px;
height: 250px;
background-image: url('../img/dots.svg');
background-position: center center;
background-size: 250px 250px;
}
.card .btn {
padding: 16px;
text-align: center;
}
.card .table {
width: 100%;
font-family: "Open Sans";
font-size: 16px;
font-weight: 600;
line-height: 22px;
margin-bottom: 0px;
}
.card .table th:last-child {
padding-right: 35px;
}
.card .table td, .card .table th {
padding: 16px 20px;
border-top-width: 0px;
border-bottom-width: 0px;
}
.card .table thead th {
color: #A3ADB7;
font-weight: normal;
}
.card .table .text-green {
color: #24B47E;
}
.card .table .text-red {
color: #FF5964;
}
.card .table .text-date {
text-align: right;
font-weight: 600;
color: #515F7F;
}
.table-paging-buttons {
padding-top: 5px;
width: 100%;
display: flex;
align-items: stretch;
justify-content: space-between;
}
.table-paging-buttons .btn {
padding: 7px;
}
.overflow-container {
overflow-y: auto;
}
.overflow-container::-webkit-scrollbar {
background-color: #CCCCCC;
border: 1px solid #24B47E;
border-radius: 10px;
}
.overflow-container::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
background-color: #24B47E;
}
.card-join-the-conversation::after {
content: "";
background: url('../img/white_waive_top.svg');
background-size: 637px 316px;
background-repeat: no-repeat;
opacity: 0.3;
top: 20px;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: 1;
}
.card-join-the-conversation .card-inner {
background-color: transparent;
z-index: 2;
}
.card-join-the-conversation .card-title1 {
width: 100%;
text-align: center;
color: #32354E;
font-family: Roboto;
padding-top: 42px;
padding-bottom: 10px;
}
.card-join-the-conversation .card-title2 {
width: 100%;
text-align: center;
color: #515F7F;
font-family: "Open Sans";
font-size: 20px;
line-height: 25px;
padding-bottom: 40px;
}
.card-join-the-conversation .card-buttons {
padding-bottom: 42px;
text-align: center;
}
.card-join-the-conversation .card-buttons .btn {
text-align: center;
padding: 16px;
}
.counter-header1 {
text-align: center;
width: 100%;
font-family: Roboto;
font-size: 42px;
line-height: 64px;
padding-bottom: 10px;
color: #FFFFFF;
}
.counter-header2 {
text-align: center;
width: 100%;
font-family: "Open Sans";
font-size: 20px;
line-height: 25px;
color: #FFFFFF;
}
.counter-buttons {
padding-top: 75px;
text-align: center;
}
.card-with-hover {
height: 245px;
border: 10px solid rgba(219,221,224,0.5);
border-radius: 3px;
background-color: transparent;
margin: 10px;
}
.card.card-with-hover .card-inner {
padding: 35px 20px 20px 20px;
height: 100%;
}
.card.card-with-hover .background-dots {
background: url('../img/dots-gray.svg');
z-index: 5;
width: 158px;
height: 123px;
}
.card.card-with-hover:hover .card-inner {
background: url('../img/oval_big.png');
background-position: center center;
background-size: 1000px 1000px;
color: #FFFFFF !important;
}
.card.card-with-hover .background-dots.top-right {
top: 0px;
bottom: unset;
right: 0px;
left: unset;
}
.card.card-with-hover .background-dots.bottom-left {
top: unset;
bottom: 0px;
right: unset;
left: 0px;
}
.card.card-with-hover .background-dots.bottom-right {
top: unset;
bottom: 0px;
right: 0px;
left: unset;
}
.card.card-with-hover .card-header-icon {
width: 66px;
height: 66px;
margin-bottom: 20px;
background-repeat: no-repeat;
background-position: top center;
background-size: 66px 66px;
}
.card.card-with-hover .card-header-icon.group-7 {
background-image: url('../img/Group7.svg');
}
.card.card-with-hover .card-header-icon.group-8 {
background-image: url('../img/Group8.svg');
}
.card.card-with-hover .card-header-icon.group-9 {
background-image: url('../img/Group9.svg');
}
.card.card-with-hover:hover .card-text {
color: #FFFFFF !important;
}
.card.card-with-hover:hover .card-text .text-purple {
color: #FFFFFF !important;
font-weight: bold;
}
.card.card-with-hover:hover .card-header-icon.group-7 {
background-image: url('../img/Group7Active.svg');
}
.card.card-with-hover:hover .card-header-icon.group-8 {
background-image: url('../img/Group8Active.svg');
}
.card.card-with-hover:hover .card-header-icon.group-9 {
background-image: url('../img/Group9Active.svg');
}
.card.card-with-hover .card-text {
color: #515F7F;
font-family: "Open Sans";
font-size: 20px;
line-height: 34px;
z-index: 6;
position: relative;
}
.card.card-with-hover .card-text .btn {
font-family: "Open Sans";
font-size: 13px;
font-weight: 600;
line-height: 18px;
}
.row-footer {
padding-top: 55px;
}
.row-footer .text {
color: #DBDDE0;
font-family: "Lucida Grande";
font-size: 16px;
}
.row-footer .highlighted {
color: #FFFFFF;
font-family: "Lucida Grande";
font-size: 18px;
margin-bottom: 14px;
}
.row-footer .link {
color: #DBDDE0;
font-family: "Open Sans";
font-size: 16px;
margin-bottom: 14px;
display: block;
}
.row-footer .icon {
padding-left: 15px;
}
.row-footer .icon img {
width: 33px;
height: 33px;
}
.text-green {
color: #24B47E !important;
}
.text-purple {
color: #565BB9 !important;
}
@media (min-width: 1301px) {
.canvas {
width: 550px !important;
height: 550px !important;
}
.container-radix {
width: 1250px;
}
.col-watch-us {
padding-left: 180px;
}
.card-join-the-conversation {
margin-left: 171px;
margin-right: 171px;
}
}
@media (min-width: 1240px) and (max-width: 1300px) {
.canvas {
width: 550px !important;
height: 550px !important;
}
.container-radix {
width: 1100px;
}
.col-watch-us {
padding-left: 120px;
}
.card-join-the-conversation {
margin-left: 171px;
margin-right: 171px;
}
.card.card-with-hover .card-text {
font-size: 16px;
line-height: 32px;
}
}
@media (min-width: 1140px) and (max-width: 1239px) {
.canvas {
width: 515px !important;
height: 515px !important;
}
.graph-header2 {
top: 207px !important;
font-size: 80px !important;
}
.graph-header3 {
top: 305px !important;
}
.graph-header4 {
top: 365px !important;
width: 150px;
left: calc(50% - 75px);
font-size: 16px !important;
}
.container-radix {
width: 1000px;
}
.col-watch-us {
padding-left: 80px;
}
.card-join-the-conversation {
margin-left: 101px;
margin-right: 101px;
}
.card.card-with-hover .card-text {
font-size: 14px;
line-height: 30px;
}
.card.card-with-hover .card-text .btn {
padding-left: 8px;
padding-right: 8px;
}
.row-footer .icon {
padding-left: 3px !important;
}
}
@media (min-width: 960px) and (max-width: 1139px) {
.canvas {
width: 450px !important;
height: 450px !important;
}
.container-radix {
width: 900px;
}
.col-watch-us {
padding-left: 30px;
}
.card-join-the-conversation {
margin-left: 71px;
margin-right: 71px;
}
.card.card-with-hover .card-text {
font-size: 12px;
line-height: 25px;
}
.card.card-with-hover .card-text .btn {
padding-left: 4px;
padding-right: 4px;
}
.graph-header2 {
top: 195px !important;
font-size: 60px !important;
}
.graph-header3 {
top: 275px !important;
}
.graph-header4 {
top: 325px !important;
width: 150px;
left: calc(50% - 75px);
font-size: 16px !important;
}
.row-footer .icon {
padding-left: 3px !important;
}
}
@media (min-width: 960px) {
.col-radix-2 {
flex: 0 0 50%;
max-width: 50%;
}
.col-radix-3 {
flex: 0 0 33%;
max-width: 33%;
}
.background2 {
top: 1107px;
right: 0px;
width: 100%;
height: 1206px;
background-size: 100% 1206px;
}
.background2-2 {
top: 1555px;
right: 0px;
width: 100%;
height: 1206px;
background-size: 100% 1206px;
}
.background2-3 {
top: 1082px;
right: 0px;
width: 100%;
height: 1206px;
background-size: 100% 1206px;
}
.background-oval1 {
top: 254px;
width: 33px;
background-position: top right;
left: 0px;
}
.card-join-the-conversation .card-buttons .btn {
width: 215px;
margin-left: 10px;
margin-right: 10px;
}
.flip-clock-wrapper.bigger {
margin: 1em auto;
width: 865px;
}
.flip-clock-wrapper.bigger .flip-clock-divider .flip-clock-label {
top: 151px;
right: -117px !important;
}
.flip-clock-wrapper.bigger .flip-clock-divider.hours .flip-clock-label {
right: -174px !important;
}
.flip-clock-wrapper.bigger ul li a div div.inn {
font-size: 82px;
line-height: 164px;
}
.flip-clock-wrapper.bigger ul {
height: 167px;
width: 111px;
}
.flip-clock-wrapper.bigger .flip-clock-divider {
height: 110px;
top: 30px;
}
.header1 {
font-size: 56px;
line-height: 74px;
}
.header2 {
font-size: 20px;
line-height: 25px;
margin-top: 20px;
}
.header3 {
font-size: 16px;
line-height: 34px;
margin-top: 40px;
}
.graph-header1 {
top: 180px;
font-size: 18px;
}
.graph-header2 {
top: 224px;
font-size: 80px;
letter-spacing: 0.56px;
}
.graph-header3 {
top: 325px;
font-size: 18px;
font-weight: 600;
}
.graph-header4 {
top: 398px;
font-size: 20px;
line-height: 34px;
}
.header-watch-us {
font-size: 42px;
line-height: 64px;
padding-bottom: 30px;
}
.btn-watch {
width: 100px;
}
.card-with-hover-wrapper {
padding-top: 185px;
}
.card-join-the-conversation .card-title1 {
font-size: 42px;
line-height: 64px;
}
.padding-left-right-on-bigger {
padding-left: 50px;
padding-right: 50px;
}
.row-footer {
margin-left: 171px;
margin-right: 171px;
}
.row-footer .logo {
padding-bottom: 158px;
}
.radix-only-on-smaller {
display: none;
}
.pt-150-on-bigger {
padding-top: 150px;
}
}
@media (max-width: 959px) {
.canvas {
width: 350px !important;
height: 350px !important;
}
.flip-clock-wrapper {
margin: 1em auto;
width: 416px;
}
.flip-clock-wrapper.bigger {
margin: 1em auto;
width: 500px;
}
.container-radix {
width: calc(100% - 48px);
}
.col-radix-2 {
flex: 0 0 100%;
max-width: 100%;
padding-right: 15px;
padding-left: 15px;
}
.col-radix-3 {
flex: 0 0 100%;
max-width: 100%;
padding-right: 15px;
padding-left: 15px;
}
.background2 {
top: 627px;
right: 0px;
width: 100%;
height: 2200px;
background-size: 3400px 2200px;
background-position: top center;
}
.background2-2 {
top: 1131px;
right: 0px;
width: 100%;
height: 2200px;
background-size: 3400px 2200px;
background-position: top center;
}
.background2-3 {
top: 460px;
right: 0px;
width: 100%;
height: 1800px;
background-size: 2900px 1800px;
background-position: top center;
}
.background4 {
display: none;
}
.background-oval1 {
top: 340px;
right: -48px;
background-size: 96px 96px;
width: 96px;
height: 96px;
}
.background-oval2 {
top: 1051px;
left: 217px;
}
.background-oval2-3 {
top: 884px;
left: 217px;
}
.background-oval3 {
display: none;
}
.background-oval3-2 {
display: none;
}
.background-oval4 {
right: -1px;
}
.background-oval5 {
display: none;
}
.canvas {
margin-top: 50px;
}
.header1 {
font-size: 36px;
line-height: 48px;
}
.header2 {
font-size: 20px;
line-height: 25px;
margin-top: 20px;
}
.header3 {
font-size: 16px;
line-height: 34px;
margin-top: 40px;
}
.graph-header1 {
top: 179px;
font-size: 12px;
}
.graph-header2 {
top: 200px;
font-size: 34px;
font-weight: 600;
}
.graph-header3 {
top: 249px;
font-size: 14px;
font-weight: 600;
}
.header-watch-us {
font-size: 30px;
line-height: 44px;
text-align: center;
padding-bottom: 30px;
}
.col-watch-us {
text-align: center;
padding-top: 100px;
}
.btn-watch {
width: 100px;
}
.text-watch-us {
padding-top: 40px;
text-align: center;
width: 100%;
}
.background-dots {
display: none;
}
.flip-clock-wrapper.bigger .flip-clock-divider.hours .flip-clock-label {
right: -93px !important;
}
.card-join-the-conversation .card-title1 {
font-size: 30px;
line-height: 44px;
}
.radix-only-on-bigger {
display: none;
}
.card-join-the-conversation .card-buttons {
margin-left: 36px;
margin-right: 36px;
}
.card-join-the-conversation .card-buttons .btn {
width: 100%;
margin-bottom: 10px;
}
}
.txt-watch {
border: none;
outline: none;
width: calc(100% - 100px);
} | 0.482917 | 0.052716 |
* 1. Allow cells to wrap into the next line
* 2. Reset list
*/
.uk-grid {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
/* 1 */
-ms-flex-wrap: wrap;
flex-wrap: wrap;
/* 2 */
margin: 0;
padding: 0;
list-style: none;
}
/*
* Grid cell
* Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
* Reset margin for e.g. paragraphs
*/
.uk-grid > * {
margin: 0;
}
/*
* Remove margin from the last-child
*/
.uk-grid > * > :last-child {
margin-bottom: 0;
}
/* Gutter
========================================================================== */
/*
* Default
*/
/* Horizontal */
.uk-grid {
margin-left: -30px;
}
.uk-grid > * {
padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
margin-top: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
/* Horizontal */
.uk-grid {
margin-left: -40px;
}
.uk-grid > * {
padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
margin-top: 40px;
}
}
/*
* Small
*/
/* Horizontal */
.uk-grid-small {
margin-left: -15px;
}
.uk-grid-small > * {
padding-left: 15px;
}
/* Vertical */
.uk-grid + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
* + .uk-grid-margin-small {
margin-top: 15px;
}
/*
* Medium
*/
/* Horizontal */
.uk-grid-medium {
margin-left: -30px;
}
.uk-grid-medium > * {
padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
margin-top: 30px;
}
/*
* Large
*/
/* Horizontal */
.uk-grid-large {
margin-left: -40px;
}
.uk-grid-large > * {
padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid-large > .uk-grid-margin,
* + .uk-grid-margin-large {
margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
/* Horizontal */
.uk-grid-large {
margin-left: -70px;
}
.uk-grid-large > * {
padding-left: 70px;
}
/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid-large > .uk-grid-margin,
* + .uk-grid-margin-large {
margin-top: 70px;
}
}
/*
* Collapse
*/
/* Horizontal */
.uk-grid-collapse {
margin-left: 0;
}
.uk-grid-collapse > * {
padding-left: 0;
}
/* Vertical */
.uk-grid + .uk-grid-collapse,
.uk-grid-collapse > .uk-grid-margin {
margin-top: 0;
}
/* Divider
========================================================================== */
.uk-grid-divider > * {
position: relative;
}
.uk-grid-divider > :not(.uk-first-column)::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
border-left: 1px solid #e5e5e5;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
content: "";
position: absolute;
left: 0;
right: 0;
border-top: 1px solid #e5e5e5;
}
/*
* Default
*/
/* Horizontal */
.uk-grid-divider {
margin-left: -60px;
}
.uk-grid-divider > * {
padding-left: 60px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
margin-top: 60px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
top: -30px;
left: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
/* Horizontal */
.uk-grid-divider {
margin-left: -80px;
}
.uk-grid-divider > * {
padding-left: 80px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
margin-top: 80px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
top: -40px;
left: 80px;
}
}
/*
* Small
*/
/* Horizontal */
.uk-grid-divider.uk-grid-small {
margin-left: -30px;
}
.uk-grid-divider.uk-grid-small > * {
padding-left: 30px;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before {
left: 15px;
}
/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin {
margin-top: 30px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
top: -15px;
left: 30px;
}
/*
* Medium
*/
/* Horizontal */
.uk-grid-divider.uk-grid-medium {
margin-left: -60px;
}
.uk-grid-divider.uk-grid-medium > * {
padding-left: 60px;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before {
left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin {
margin-top: 60px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
top: -30px;
left: 60px;
}
/*
* Large
*/
/* Horizontal */
.uk-grid-divider.uk-grid-large {
margin-left: -80px;
}
.uk-grid-divider.uk-grid-large > * {
padding-left: 80px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
margin-top: 80px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
top: -40px;
left: 80px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
/* Horizontal */
.uk-grid-divider.uk-grid-large {
margin-left: -140px;
}
.uk-grid-divider.uk-grid-large > * {
padding-left: 140px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
left: 70px;
}
/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
margin-top: 140px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
top: -70px;
left: 140px;
}
}
/* Match child of a grid cell
========================================================================== */
/*
* Behave like a block element
* 1. Wrap into the next line
* 2. Take the full width, at least 100%. Only if no class from the Width component is set.
* 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
*/
.uk-grid-match > *,
.uk-grid-item-match {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
/* 1 */
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.uk-grid-match > * > :not([class*='uk-width']),
.uk-grid-item-match > :not([class*='uk-width']) {
/* 2 */
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
/* 3 */
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto;
}
/* ========================================================================
Component: Container
========================================================================== */
/*
* 1. Box sizing has to be `content-box` so the max-width is always the same and
* unaffected by the padding on different breakpoints. It's important for the size modifiers.
*/
.uk-container {
/* 1 */
-webkit-box-sizing: content-box;
box-sizing: content-box;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
.uk-container {
padding-left: 30px;
padding-right: 30px;
}
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
.uk-container {
padding-left: 40px;
padding-right: 40px;
}
}
/*
* Micro clearfix
*/
.uk-container::before,
.uk-container::after {
content: "";
display: table;
}
.uk-container::after {
clear: both;
}
/*
* Remove margin from the last-child
*/
.uk-container > :last-child {
margin-bottom: 0;
}
/*
* Remove padding from nested containers
*/
.uk-container .uk-container {
padding-left: 0;
padding-right: 0;
}
/* Size modifier
========================================================================== */
.uk-container-xsmall {
max-width: 750px;
}
.uk-container-small {
max-width: 900px;
}
.uk-container-large {
max-width: 1600px;
}
.uk-container-expand {
max-width: none;
}
/* Expand modifier
========================================================================== */
/*
* Expand one side only
*/
.uk-container-expand-left {
margin-left: 0;
}
.uk-container-expand-right {
margin-right: 0;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
.uk-container-expand-left.uk-container-xsmall,
.uk-container-expand-right.uk-container-xsmall {
max-width: calc(50% + (750px / 2) - 30px);
}
.uk-container-expand-left.uk-container-small,
.uk-container-expand-right.uk-container-small {
max-width: calc(50% + (900px / 2) - 30px);
}
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
.uk-container-expand-left,
.uk-container-expand-right {
max-width: calc(50% + (1200px / 2) - 40px);
}
.uk-container-expand-left.uk-container-xsmall,
.uk-container-expand-right.uk-container-xsmall {
max-width: calc(50% + (750px / 2) - 40px);
}
.uk-container-expand-left.uk-container-small,
.uk-container-expand-right.uk-container-small {
max-width: calc(50% + (900px / 2) - 40px);
}
.uk-container-expand-left.uk-container-large,
.uk-container-expand-right.uk-container-large {
max-width: calc(50% + (1600px / 2) - 40px);
}
}
/* Item
========================================================================== */
/*
* Utility classes to reset container padding on the left or right side
* Note: It has to be negative margin on the item, because it's specific to the item.
*/
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
width: calc(100% + 15px);
}
.uk-container-item-padding-remove-left {
margin-left: -15px;
}
.uk-container-item-padding-remove-right {
margin-right: -15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
width: calc(100% + 30px);
}
.uk-container-item-padding-remove-left {
margin-left: -30px;
}
.uk-container-item-padding-remove-right {
margin-right: -30px;
}
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
width: calc(100% + 40px);
}
.uk-container-item-padding-remove-left {
margin-left: -40px;
}
.uk-container-item-padding-remove-right {
margin-right: -40px;
}
} | public/css/app.css | * 1. Allow cells to wrap into the next line
* 2. Reset list
*/
.uk-grid {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
/* 1 */
-ms-flex-wrap: wrap;
flex-wrap: wrap;
/* 2 */
margin: 0;
padding: 0;
list-style: none;
}
/*
* Grid cell
* Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
* Reset margin for e.g. paragraphs
*/
.uk-grid > * {
margin: 0;
}
/*
* Remove margin from the last-child
*/
.uk-grid > * > :last-child {
margin-bottom: 0;
}
/* Gutter
========================================================================== */
/*
* Default
*/
/* Horizontal */
.uk-grid {
margin-left: -30px;
}
.uk-grid > * {
padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
margin-top: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
/* Horizontal */
.uk-grid {
margin-left: -40px;
}
.uk-grid > * {
padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
margin-top: 40px;
}
}
/*
* Small
*/
/* Horizontal */
.uk-grid-small {
margin-left: -15px;
}
.uk-grid-small > * {
padding-left: 15px;
}
/* Vertical */
.uk-grid + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
* + .uk-grid-margin-small {
margin-top: 15px;
}
/*
* Medium
*/
/* Horizontal */
.uk-grid-medium {
margin-left: -30px;
}
.uk-grid-medium > * {
padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
margin-top: 30px;
}
/*
* Large
*/
/* Horizontal */
.uk-grid-large {
margin-left: -40px;
}
.uk-grid-large > * {
padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid-large > .uk-grid-margin,
* + .uk-grid-margin-large {
margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
/* Horizontal */
.uk-grid-large {
margin-left: -70px;
}
.uk-grid-large > * {
padding-left: 70px;
}
/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid-large > .uk-grid-margin,
* + .uk-grid-margin-large {
margin-top: 70px;
}
}
/*
* Collapse
*/
/* Horizontal */
.uk-grid-collapse {
margin-left: 0;
}
.uk-grid-collapse > * {
padding-left: 0;
}
/* Vertical */
.uk-grid + .uk-grid-collapse,
.uk-grid-collapse > .uk-grid-margin {
margin-top: 0;
}
/* Divider
========================================================================== */
.uk-grid-divider > * {
position: relative;
}
.uk-grid-divider > :not(.uk-first-column)::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
border-left: 1px solid #e5e5e5;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
content: "";
position: absolute;
left: 0;
right: 0;
border-top: 1px solid #e5e5e5;
}
/*
* Default
*/
/* Horizontal */
.uk-grid-divider {
margin-left: -60px;
}
.uk-grid-divider > * {
padding-left: 60px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
margin-top: 60px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
top: -30px;
left: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
/* Horizontal */
.uk-grid-divider {
margin-left: -80px;
}
.uk-grid-divider > * {
padding-left: 80px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
margin-top: 80px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
top: -40px;
left: 80px;
}
}
/*
* Small
*/
/* Horizontal */
.uk-grid-divider.uk-grid-small {
margin-left: -30px;
}
.uk-grid-divider.uk-grid-small > * {
padding-left: 30px;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before {
left: 15px;
}
/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin {
margin-top: 30px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
top: -15px;
left: 30px;
}
/*
* Medium
*/
/* Horizontal */
.uk-grid-divider.uk-grid-medium {
margin-left: -60px;
}
.uk-grid-divider.uk-grid-medium > * {
padding-left: 60px;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before {
left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin {
margin-top: 60px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
top: -30px;
left: 60px;
}
/*
* Large
*/
/* Horizontal */
.uk-grid-divider.uk-grid-large {
margin-left: -80px;
}
.uk-grid-divider.uk-grid-large > * {
padding-left: 80px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
margin-top: 80px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
top: -40px;
left: 80px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
/* Horizontal */
.uk-grid-divider.uk-grid-large {
margin-left: -140px;
}
.uk-grid-divider.uk-grid-large > * {
padding-left: 140px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
left: 70px;
}
/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
margin-top: 140px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
top: -70px;
left: 140px;
}
}
/* Match child of a grid cell
========================================================================== */
/*
* Behave like a block element
* 1. Wrap into the next line
* 2. Take the full width, at least 100%. Only if no class from the Width component is set.
* 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
*/
.uk-grid-match > *,
.uk-grid-item-match {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
/* 1 */
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.uk-grid-match > * > :not([class*='uk-width']),
.uk-grid-item-match > :not([class*='uk-width']) {
/* 2 */
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
/* 3 */
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto;
}
/* ========================================================================
Component: Container
========================================================================== */
/*
* 1. Box sizing has to be `content-box` so the max-width is always the same and
* unaffected by the padding on different breakpoints. It's important for the size modifiers.
*/
.uk-container {
/* 1 */
-webkit-box-sizing: content-box;
box-sizing: content-box;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
.uk-container {
padding-left: 30px;
padding-right: 30px;
}
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
.uk-container {
padding-left: 40px;
padding-right: 40px;
}
}
/*
* Micro clearfix
*/
.uk-container::before,
.uk-container::after {
content: "";
display: table;
}
.uk-container::after {
clear: both;
}
/*
* Remove margin from the last-child
*/
.uk-container > :last-child {
margin-bottom: 0;
}
/*
* Remove padding from nested containers
*/
.uk-container .uk-container {
padding-left: 0;
padding-right: 0;
}
/* Size modifier
========================================================================== */
.uk-container-xsmall {
max-width: 750px;
}
.uk-container-small {
max-width: 900px;
}
.uk-container-large {
max-width: 1600px;
}
.uk-container-expand {
max-width: none;
}
/* Expand modifier
========================================================================== */
/*
* Expand one side only
*/
.uk-container-expand-left {
margin-left: 0;
}
.uk-container-expand-right {
margin-right: 0;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
.uk-container-expand-left.uk-container-xsmall,
.uk-container-expand-right.uk-container-xsmall {
max-width: calc(50% + (750px / 2) - 30px);
}
.uk-container-expand-left.uk-container-small,
.uk-container-expand-right.uk-container-small {
max-width: calc(50% + (900px / 2) - 30px);
}
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
.uk-container-expand-left,
.uk-container-expand-right {
max-width: calc(50% + (1200px / 2) - 40px);
}
.uk-container-expand-left.uk-container-xsmall,
.uk-container-expand-right.uk-container-xsmall {
max-width: calc(50% + (750px / 2) - 40px);
}
.uk-container-expand-left.uk-container-small,
.uk-container-expand-right.uk-container-small {
max-width: calc(50% + (900px / 2) - 40px);
}
.uk-container-expand-left.uk-container-large,
.uk-container-expand-right.uk-container-large {
max-width: calc(50% + (1600px / 2) - 40px);
}
}
/* Item
========================================================================== */
/*
* Utility classes to reset container padding on the left or right side
* Note: It has to be negative margin on the item, because it's specific to the item.
*/
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
width: calc(100% + 15px);
}
.uk-container-item-padding-remove-left {
margin-left: -15px;
}
.uk-container-item-padding-remove-right {
margin-right: -15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
width: calc(100% + 30px);
}
.uk-container-item-padding-remove-left {
margin-left: -30px;
}
.uk-container-item-padding-remove-right {
margin-right: -30px;
}
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
width: calc(100% + 40px);
}
.uk-container-item-padding-remove-left {
margin-left: -40px;
}
.uk-container-item-padding-remove-right {
margin-right: -40px;
}
} | 0.381911 | 0.066843 |
:root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-gray-100: #f8f9fa;
--bs-gray-200: #e9ecef;
--bs-gray-300: #dee2e6;
--bs-gray-400: #ced4da;
--bs-gray-500: #adb5bd;
--bs-gray-600: #6c757d;
--bs-gray-700: #495057;
--bs-gray-800: #343a40;
--bs-gray-900: #212529;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-primary-rgb: 13, 110, 253;
--bs-secondary-rgb: 108, 117, 125;
--bs-success-rgb: 25, 135, 84;
--bs-info-rgb: 13, 202, 240;
--bs-warning-rgb: 255, 193, 7;
--bs-danger-rgb: 220, 53, 69;
--bs-light-rgb: 248, 249, 250;
--bs-dark-rgb: 33, 37, 41;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--bs-body-color-rgb: 33, 37, 41;
--bs-body-bg-rgb: 255, 255, 255;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
--bs-body-font-family: var(--bs-font-sans-serif);
--bs-body-font-size: 1rem;
--bs-body-font-weight: 400;
--bs-body-line-height: 1.5;
--bs-body-color: #212529;
--bs-body-bg: #fff;
}
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: var(--bs-body-font-family);
font-size: var(--bs-body-font-size);
font-weight: var(--bs-body-font-weight);
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
text-align: var(--bs-body-text-align);
background-color: var(--bs-body-bg);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
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] {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul {
padding-left: 2rem;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small, .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: -.25em;
}
sup {
top: -.5em;
}
a {
color: #0d6efd;
text-decoration: underline;
}
a:hover {
color: #0a58ca;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
pre,
code,
kbd,
samp {
font-family: var(--bs-font-monospace);
font-size: 1em;
direction: ltr /* rtl:ignore */;
unicode-bidi: bidi-override;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
font-size: 0.875em;
color: #d63384;
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 0.875em;
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
font-size: 1em;
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
img,
svg {
vertical-align: middle;
}
table {
caption-side: bottom;
border-collapse: collapse;
}
caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: left;
}
th {
text-align: inherit;
text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
select {
text-transform: none;
}
[role="button"] {
cursor: pointer;
}
select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
display: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
float: left;
width: 100%;
padding: 0;
margin-bottom: 0.5rem;
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
}
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
}
legend + * {
clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
*/
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
padding: 0;
}
::file-selector-button {
font: inherit;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
iframe {
border: 0;
}
summary {
display: list-item;
cursor: pointer;
}
progress {
vertical-align: baseline;
}
[hidden] {
display: none !important;
}
.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\00A0";
}
.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-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
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, .container-sm {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container, .container-sm, .container-md {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container, .container-sm, .container-md, .container-lg {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container, .container-sm, .container-md, .container-lg, .container-xl {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
max-width: 1320px;
}
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: calc(-1 * var(--bs-gutter-y));
margin-right: calc(-.5 * var(--bs-gutter-x));
margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > * {
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
.col {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.33333%;
}
.offset-2 {
margin-left: 16.66667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.33333%;
}
.offset-5 {
margin-left: 41.66667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.33333%;
}
.offset-8 {
margin-left: 66.66667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.33333%;
}
.offset-11 {
margin-left: 91.66667%;
}
.g-0,
.gx-0 {
--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
.col-sm {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-sm-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.33333%;
}
.offset-sm-2 {
margin-left: 16.66667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.33333%;
}
.offset-sm-5 {
margin-left: 41.66667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.33333%;
}
.offset-sm-8 {
margin-left: 66.66667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.33333%;
}
.offset-sm-11 {
margin-left: 91.66667%;
}
.g-sm-0,
.gx-sm-0 {
--bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
--bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
--bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
--bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
--bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
--bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
--bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
--bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
--bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
--bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
--bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 768px) {
.col-md {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-md-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-md-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-md-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-md-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-md-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-md-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-md-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-md-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.33333%;
}
.offset-md-2 {
margin-left: 16.66667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.33333%;
}
.offset-md-5 {
margin-left: 41.66667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.33333%;
}
.offset-md-8 {
margin-left: 66.66667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.33333%;
}
.offset-md-11 {
margin-left: 91.66667%;
}
.g-md-0,
.gx-md-0 {
--bs-gutter-x: 0;
}
.g-md-0,
.gy-md-0 {
--bs-gutter-y: 0;
}
.g-md-1,
.gx-md-1 {
--bs-gutter-x: 0.25rem;
}
.g-md-1,
.gy-md-1 {
--bs-gutter-y: 0.25rem;
}
.g-md-2,
.gx-md-2 {
--bs-gutter-x: 0.5rem;
}
.g-md-2,
.gy-md-2 {
--bs-gutter-y: 0.5rem;
}
.g-md-3,
.gx-md-3 {
--bs-gutter-x: 1rem;
}
.g-md-3,
.gy-md-3 {
--bs-gutter-y: 1rem;
}
.g-md-4,
.gx-md-4 {
--bs-gutter-x: 1.5rem;
}
.g-md-4,
.gy-md-4 {
--bs-gutter-y: 1.5rem;
}
.g-md-5,
.gx-md-5 {
--bs-gutter-x: 3rem;
}
.g-md-5,
.gy-md-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 992px) {
.col-lg {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-lg-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-lg-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-lg-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-lg-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-lg-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-lg-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-lg-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-lg-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.33333%;
}
.offset-lg-2 {
margin-left: 16.66667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.33333%;
}
.offset-lg-5 {
margin-left: 41.66667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.33333%;
}
.offset-lg-8 {
margin-left: 66.66667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.33333%;
}
.offset-lg-11 {
margin-left: 91.66667%;
}
.g-lg-0,
.gx-lg-0 {
--bs-gutter-x: 0;
}
.g-lg-0,
.gy-lg-0 {
--bs-gutter-y: 0;
}
.g-lg-1,
.gx-lg-1 {
--bs-gutter-x: 0.25rem;
}
.g-lg-1,
.gy-lg-1 {
--bs-gutter-y: 0.25rem;
}
.g-lg-2,
.gx-lg-2 {
--bs-gutter-x: 0.5rem;
}
.g-lg-2,
.gy-lg-2 {
--bs-gutter-y: 0.5rem;
}
.g-lg-3,
.gx-lg-3 {
--bs-gutter-x: 1rem;
}
.g-lg-3,
.gy-lg-3 {
--bs-gutter-y: 1rem;
}
.g-lg-4,
.gx-lg-4 {
--bs-gutter-x: 1.5rem;
}
.g-lg-4,
.gy-lg-4 {
--bs-gutter-y: 1.5rem;
}
.g-lg-5,
.gx-lg-5 {
--bs-gutter-x: 3rem;
}
.g-lg-5,
.gy-lg-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1200px) {
.col-xl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.33333%;
}
.offset-xl-2 {
margin-left: 16.66667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.33333%;
}
.offset-xl-5 {
margin-left: 41.66667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.33333%;
}
.offset-xl-8 {
margin-left: 66.66667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.33333%;
}
.offset-xl-11 {
margin-left: 91.66667%;
}
.g-xl-0,
.gx-xl-0 {
--bs-gutter-x: 0;
}
.g-xl-0,
.gy-xl-0 {
--bs-gutter-y: 0;
}
.g-xl-1,
.gx-xl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xl-1,
.gy-xl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xl-2,
.gx-xl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xl-2,
.gy-xl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xl-3,
.gx-xl-3 {
--bs-gutter-x: 1rem;
}
.g-xl-3,
.gy-xl-3 {
--bs-gutter-y: 1rem;
}
.g-xl-4,
.gx-xl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xl-4,
.gy-xl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xl-5,
.gx-xl-5 {
--bs-gutter-x: 3rem;
}
.g-xl-5,
.gy-xl-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1400px) {
.col-xxl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xxl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xxl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xxl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xxl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xxl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xxl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xxl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xxl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.33333%;
}
.offset-xxl-2 {
margin-left: 16.66667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.33333%;
}
.offset-xxl-5 {
margin-left: 41.66667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.33333%;
}
.offset-xxl-8 {
margin-left: 66.66667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.33333%;
}
.offset-xxl-11 {
margin-left: 91.66667%;
}
.g-xxl-0,
.gx-xxl-0 {
--bs-gutter-x: 0;
}
.g-xxl-0,
.gy-xxl-0 {
--bs-gutter-y: 0;
}
.g-xxl-1,
.gx-xxl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xxl-1,
.gy-xxl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xxl-2,
.gx-xxl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xxl-2,
.gy-xxl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xxl-3,
.gx-xxl-3 {
--bs-gutter-x: 1rem;
}
.g-xxl-3,
.gy-xxl-3 {
--bs-gutter-y: 1rem;
}
.g-xxl-4,
.gx-xxl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xxl-4,
.gy-xxl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xxl-5,
.gx-xxl-5 {
--bs-gutter-x: 3rem;
}
.g-xxl-5,
.gy-xxl-5 {
--bs-gutter-y: 3rem;
}
}
.table {
--bs-table-bg: transparent;
--bs-table-accent-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);
border-bottom-width: 1px;
-webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
vertical-align: inherit;
}
.table > thead {
vertical-align: bottom;
}
.table > :not(:first-child) {
border-top: 2px solid 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-borderless > :not(:first-child) {
border-top-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;
-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control {
-webkit-transition: none;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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::-webkit-input-placeholder {
color: #6c757d;
opacity: 1;
}
.form-control:-ms-input-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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control::file-selector-button {
-webkit-transition: none;
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, -webkit-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, -webkit-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;
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, -webkit-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 {
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 2.25rem 0.375rem 0.75rem;
-moz-padding-start: calc(0.75rem - 3px);
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
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-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-select {
-webkit-transition: none;
transition: none;
}
}
.form-select:focus {
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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 {
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;
border-radius: 0.2rem;
}
.form-select-lg {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.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;
color-adjust: exact;
}
.form-check-input[type="checkbox"] {
border-radius: 0.25em;
}
.form-check-input[type="radio"] {
border-radius: 50%;
}
.form-check-input:active {
-webkit-filter: brightness(90%);
filter: brightness(90%);
}
.form-check-input:focus {
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
-webkit-filter: 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;
-webkit-transition: background-position 0.15s ease-in-out;
transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-switch .form-check-input {
-webkit-transition: none;
transition: none;
}
}
.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;
-webkit-filter: 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: 0;
}
.form-range:focus::-webkit-slider-thumb {
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-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;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-range::-moz-range-thumb {
-webkit-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);
line-height: 1.25;
}
.form-floating > label {
position: absolute;
top: 0;
left: 0;
height: 100%;
padding: 1rem 0.75rem;
pointer-events: none;
border: 1px solid transparent;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-floating > label {
-webkit-transition: none;
transition: none;
}
}
.form-floating > .form-control {
padding: 1rem 0.75rem;
}
.form-floating > .form-control::-webkit-input-placeholder {
color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::placeholder {
color: transparent;
}
.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:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
opacity: 0.65;
-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
opacity: 0.65;
-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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: 3rem;
}
.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: .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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
padding-right: 4.125rem;
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 2.25rem;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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: .5em;
}
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
.input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
z-index: 3;
}
.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: .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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
padding-right: 4.125rem;
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 2.25rem;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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: .5em;
}
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
.input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
z-index: 3;
}
.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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
-webkit-transition: none;
transition: none;
}
}
.btn:hover {
color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
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-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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
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-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 {
-webkit-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
.fade {
-webkit-transition: none;
transition: none;
}
}
.fade:not(.show) {
opacity: 0;
}
.collapse:not(.show) {
display: none;
}
.collapsing {
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing {
-webkit-transition: none;
transition: none;
}
}
.collapsing.collapse-horizontal {
width: 0;
height: auto;
-webkit-transition: width 0.35s ease;
transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing.collapse-horizontal {
-webkit-transition: none;
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;
z-index: 1000;
display: none;
min-width: 10rem;
padding: 0.5rem 0;
margin: 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[data-bs-popper] {
top: 100%;
left: 0;
margin-top: 0.125rem;
}
.dropdown-menu-start {
--bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-end {
--bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
right: 0;
left: auto;
}
@media (min-width: 576px) {
.dropdown-menu-sm-start {
--bs-position: start;
}
.dropdown-menu-sm-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-sm-end {
--bs-position: end;
}
.dropdown-menu-sm-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 768px) {
.dropdown-menu-md-start {
--bs-position: start;
}
.dropdown-menu-md-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-md-end {
--bs-position: end;
}
.dropdown-menu-md-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 992px) {
.dropdown-menu-lg-start {
--bs-position: start;
}
.dropdown-menu-lg-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-lg-end {
--bs-position: end;
}
.dropdown-menu-lg-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 1200px) {
.dropdown-menu-xl-start {
--bs-position: start;
}
.dropdown-menu-xl-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-xl-end {
--bs-position: end;
}
.dropdown-menu-xl-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 1400px) {
.dropdown-menu-xxl-start {
--bs-position: start;
}
.dropdown-menu-xxl-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-xxl-end {
--bs-position: end;
}
.dropdown-menu-xxl-end[data-bs-popper] {
right: 0;
left: auto;
}
}
.dropup .dropdown-menu[data-bs-popper] {
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[data-bs-popper] {
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[data-bs-popper] {
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: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
color: #adb5bd;
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: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
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 {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
color: #0d6efd;
text-decoration: none;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 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;
}
@media (prefers-reduced-motion: reduce) {
.nav-link {
-webkit-transition: none;
transition: none;
}
}
.nav-link:hover, .nav-link:focus {
color: #0a58ca;
}
.nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}
.nav-tabs {
border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
margin-bottom: -1px;
background: none;
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;
isolation: isolate;
}
.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 {
background: none;
border: 0;
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 {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
width: 100%;
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.navbar {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: inherit;
flex-wrap: inherit;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.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;
-webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
transition: -webkit-box-shadow 0.15s ease-in-out;
transition: box-shadow 0.15s ease-in-out;
transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.navbar-toggler {
-webkit-transition: none;
transition: none;
}
}
.navbar-toggler:hover {
text-decoration: none;
}
.navbar-toggler:focus {
text-decoration: none;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem;
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%;
}
.navbar-nav-scroll {
max-height: var(--bs-scroll-height, 75vh);
overflow-y: auto;
}
@media (min-width: 576px) {
.navbar-expand-sm {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-sm .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-sm .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-sm .navbar-toggler {
display: none;
}
.navbar-expand-sm .offcanvas-header {
display: none;
}
.navbar-expand-sm .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-sm .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 768px) {
.navbar-expand-md {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-md .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-md .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-md .navbar-toggler {
display: none;
}
.navbar-expand-md .offcanvas-header {
display: none;
}
.navbar-expand-md .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-md .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 992px) {
.navbar-expand-lg {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-lg .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-lg .navbar-toggler {
display: none;
}
.navbar-expand-lg .offcanvas-header {
display: none;
}
.navbar-expand-lg .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-lg .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 1200px) {
.navbar-expand-xl {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xl .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-xl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xl .navbar-toggler {
display: none;
}
.navbar-expand-xl .offcanvas-header {
display: none;
}
.navbar-expand-xl .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-xl .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 1400px) {
.navbar-expand-xxl {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xxl .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-xxl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xxl .navbar-toggler {
display: none;
}
.navbar-expand-xxl .offcanvas-header {
display: none;
}
.navbar-expand-xxl .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-xxl .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
.navbar-expand {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand .navbar-toggler {
display: none;
}
.navbar-expand .offcanvas-header {
display: none;
}
.navbar-expand .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
.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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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 {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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 + .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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
}
.card-group > .card {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
padding: 1rem 1.25rem;
font-size: 1rem;
color: #212529;
text-align: left;
background-color: #fff;
border: 0;
border-radius: 0;
overflow-anchor: none;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-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, border-radius 0.15s ease, -webkit-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, border-radius 0.15s ease;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button {
-webkit-transition: none;
transition: none;
}
}
.accordion-button:not(.collapsed) {
color: #0c63e4;
background-color: #e7f1ff;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.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");
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
.accordion-button::after {
-ms-flex-negative: 0;
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;
-webkit-transition: -webkit-transform 0.2s ease-in-out;
transition: -webkit-transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button::after {
-webkit-transition: none;
transition: none;
}
}
.accordion-button:hover {
z-index: 2;
}
.accordion-button:focus {
z-index: 3;
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
margin-bottom: 0;
}
.accordion-item {
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
border-top: 0;
}
.accordion-item:last-of-type {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-body {
padding: 1rem 1.25rem;
}
.accordion-flush .accordion-collapse {
border-width: 0;
}
.accordion-flush .accordion-item {
border-right: 0;
border-left: 0;
border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
border-top: 0;
}
.accordion-flush .accordion-item:last-child {
border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
border-radius: 0;
}
.breadcrumb {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
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, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
color: #6c757d;
}
.pagination {
display: -webkit-box;
display: -ms-flexbox;
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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.page-link {
-webkit-transition: none;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
}
@-webkit-keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
@keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
.progress {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #e9ecef;
border-radius: 0.25rem;
}
.progress-bar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
overflow: hidden;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #0d6efd;
-webkit-transition: width 0.6s ease;
transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar {
-webkit-transition: none;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
border-radius: 0.25rem;
}
.list-group-numbered {
list-style-type: none;
counter-reset: section;
}
.list-group-numbered > li::before {
content: counters(section, ".") ". ";
counter-increment: section;
}
.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;
color: #212529;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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;
}
.btn-close {
-webkit-box-sizing: content-box;
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: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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 {
-webkit-filter: invert(1) grayscale(100%) brightness(200%);
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);
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
}
.toast.showing {
opacity: 0;
}
.toast:not(.show) {
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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;
word-wrap: break-word;
}
.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1055;
display: none;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
-webkit-transition: -webkit-transform 0.3s ease-out;
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
-webkit-transform: translate(0, -50px);
transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
-webkit-transition: none;
transition: none;
}
}
.modal.show .modal-dialog {
-webkit-transform: none;
transform: none;
}
.modal.modal-static .modal-dialog {
-webkit-transform: scale(1.02);
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - 1rem);
}
.modal-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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: 1050;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.5;
}
.modal-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-negative: 0;
flex-shrink: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1rem;
}
.modal-footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-negative: 0;
flex-shrink: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
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;
}
@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: 1080;
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 /* rtl:ignore */;
z-index: 1070;
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;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
position: absolute;
display: block;
content: "";
border-color: transparent;
border-style: solid;
}
.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 > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
left: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
}
.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 > .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 > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
right: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
}
.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 rgba(0, 0, 0, 0.2);
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 {
-ms-touch-action: pan-y;
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;
-webkit-transition: -webkit-transform 0.6s ease-in-out;
transition: -webkit-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.carousel-item {
-webkit-transition: none;
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 {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
/* rtl:end:ignore */
.carousel-fade .carousel-item {
opacity: 0;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transform: none;
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;
-webkit-transition: opacity 0s 0.6s;
transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
-webkit-transition: none;
transition: none;
}
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 15%;
padding: 0;
color: #fff;
text-align: center;
background: none;
border: 0;
opacity: 0.5;
-webkit-transition: opacity 0.15s ease;
transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
-webkit-transition: none;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0;
margin-right: 15%;
margin-bottom: 1rem;
margin-left: 15%;
list-style: none;
}
.carousel-indicators [data-bs-target] {
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
width: 30px;
height: 3px;
padding: 0;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #fff;
background-clip: padding-box;
border: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: 0.5;
-webkit-transition: opacity 0.6s ease;
transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-indicators [data-bs-target] {
-webkit-transition: none;
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 {
-webkit-filter: invert(1) grayscale(100);
filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
background-color: #000;
}
.carousel-dark .carousel-caption {
color: #000;
}
@-webkit-keyframes spinner-border {
to {
-webkit-transform: rotate(360deg) /* rtl:ignore */;
transform: rotate(360deg) /* rtl:ignore */;
}
}
@keyframes spinner-border {
to {
-webkit-transform: rotate(360deg) /* rtl:ignore */;
transform: rotate(360deg) /* rtl:ignore */;
}
}
.spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: -0.125em;
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% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes spinner-grow {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: -0.125em;
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;
}
}
.offcanvas {
position: fixed;
bottom: 0;
z-index: 1045;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
max-width: 100%;
visibility: hidden;
background-color: #fff;
background-clip: padding-box;
outline: 0;
-webkit-transition: -webkit-transform 0.3s ease-in-out;
transition: -webkit-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.offcanvas {
-webkit-transition: none;
transition: none;
}
}
.offcanvas-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.offcanvas-backdrop.fade {
opacity: 0;
}
.offcanvas-backdrop.show {
opacity: 0.5;
}
.offcanvas-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
padding: 0.5rem 0.5rem;
margin-top: -0.5rem;
margin-right: -0.5rem;
margin-bottom: -0.5rem;
}
.offcanvas-title {
margin-bottom: 0;
line-height: 1.5;
}
.offcanvas-body {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 1rem 1rem;
overflow-y: auto;
}
.offcanvas-start {
top: 0;
left: 0;
width: 400px;
border-right: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
.offcanvas-end {
top: 0;
right: 0;
width: 400px;
border-left: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.offcanvas-top {
top: 0;
right: 0;
left: 0;
height: 30vh;
max-height: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.offcanvas-bottom {
right: 0;
left: 0;
height: 30vh;
max-height: 100%;
border-top: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
.offcanvas.show {
-webkit-transform: none;
transform: none;
}
.placeholder {
display: inline-block;
min-height: 1em;
vertical-align: middle;
cursor: wait;
background-color: currentColor;
opacity: 0.5;
}
.placeholder.btn::before {
display: inline-block;
content: "";
}
.placeholder-xs {
min-height: .6em;
}
.placeholder-sm {
min-height: .8em;
}
.placeholder-lg {
min-height: 1.2em;
}
.placeholder-glow .placeholder {
-webkit-animation: placeholder-glow 2s ease-in-out infinite;
animation: placeholder-glow 2s ease-in-out infinite;
}
@-webkit-keyframes placeholder-glow {
50% {
opacity: 0.2;
}
}
@keyframes placeholder-glow {
50% {
opacity: 0.2;
}
}
.placeholder-wave {
-webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
-webkit-mask-size: 200% 100%;
mask-size: 200% 100%;
-webkit-animation: placeholder-wave 2s linear infinite;
animation: placeholder-wave 2s linear infinite;
}
@-webkit-keyframes placeholder-wave {
100% {
-webkit-mask-position: -200% 0%;
mask-position: -200% 0%;
}
}
@keyframes placeholder-wave {
100% {
-webkit-mask-position: -200% 0%;
mask-position: -200% 0%;
}
}
.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;
}
.ratio {
position: relative;
width: 100%;
}
.ratio::before {
display: block;
padding-top: var(--bs-aspect-ratio);
content: "";
}
.ratio > * {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ratio-1x1 {
--bs-aspect-ratio: 100%;
}
.ratio-4x3 {
--bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
--bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
--bs-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;
}
}
.hstack {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.vstack {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
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;
}
.vr {
display: inline-block;
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
width: 1px;
min-height: 1em;
background-color: currentColor;
opacity: 0.25;
}
.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;
}
.opacity-0 {
opacity: 0 !important;
}
.opacity-25 {
opacity: 0.25 !important;
}
.opacity-50 {
opacity: 0.5 !important;
}
.opacity-75 {
opacity: 0.75 !important;
}
.opacity-100 {
opacity: 1 !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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.shadow {
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
-webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
-webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
-webkit-box-shadow: none !important;
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 {
-webkit-transform: translate(-50%, -50%) !important;
transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
-webkit-transform: translateX(-50%) !important;
transform: translateX(-50%) !important;
}
.translate-middle-y {
-webkit-transform: translateY(-50%) !important;
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-white {
border-color: #fff !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 {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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;
}
.font-monospace {
font-family: var(--bs-font-monospace) !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;
}
.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;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-decoration-none {
text-decoration: none !important;
}
.text-decoration-underline {
text-decoration: underline !important;
}
.text-decoration-line-through {
text-decoration: line-through !important;
}
.text-lowercase {
text-transform: lowercase !important;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: capitalize !important;
}
.text-wrap {
white-space: normal !important;
}
.text-nowrap {
white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
word-wrap: break-word !important;
word-break: break-word !important;
}
/* rtl:end:remove */
.text-primary {
--bs-text-opacity: 1;
color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
--bs-text-opacity: 1;
color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
--bs-text-opacity: 1;
color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
--bs-text-opacity: 1;
color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
--bs-text-opacity: 1;
color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
--bs-text-opacity: 1;
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
--bs-text-opacity: 1;
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
--bs-text-opacity: 1;
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
--bs-text-opacity: 1;
color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
--bs-text-opacity: 1;
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
--bs-text-opacity: 1;
color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
--bs-text-opacity: 1;
color: #6c757d !important;
}
.text-black-50 {
--bs-text-opacity: 1;
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
--bs-text-opacity: 1;
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
--bs-text-opacity: 1;
color: inherit !important;
}
.text-opacity-25 {
--bs-text-opacity: 0.25;
}
.text-opacity-50 {
--bs-text-opacity: 0.5;
}
.text-opacity-75 {
--bs-text-opacity: 0.75;
}
.text-opacity-100 {
--bs-text-opacity: 1;
}
.bg-primary {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
--bs-bg-opacity: 1;
background-color: transparent !important;
}
.bg-opacity-10 {
--bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
--bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
--bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
--bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
--bs-bg-opacity: 1;
}
.bg-gradient {
background-image: var(--bs-gradient) !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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-sm-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-sm-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-sm-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-sm-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-sm-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-sm-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-sm-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-sm-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-sm-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-sm-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-sm-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-sm-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-sm-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-sm-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-sm-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-sm-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-sm-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-sm-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-sm-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-sm-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-sm-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-sm-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-sm-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-sm-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-sm-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-sm-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-sm-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-sm-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-sm-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-sm-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-sm-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-sm-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-sm-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-sm-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-sm-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-md-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-md-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-md-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-md-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-md-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-md-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-md-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-md-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-md-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-md-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-md-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-md-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-md-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-md-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-md-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-md-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-md-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-md-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-md-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-md-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-md-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-md-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-md-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-md-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-md-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-md-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-md-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-md-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-md-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-md-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-md-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-md-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-md-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-md-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-md-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-md-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-md-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-lg-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-lg-none {
display: none !important;
}
.flex-lg-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-lg-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-lg-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-lg-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-lg-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-lg-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-lg-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-lg-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-lg-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-lg-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-lg-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-lg-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-lg-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-lg-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-lg-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-lg-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-lg-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-lg-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-lg-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-lg-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-lg-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-lg-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-lg-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-lg-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-lg-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-lg-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-lg-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-lg-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-lg-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-lg-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-lg-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-lg-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-lg-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-lg-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-lg-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-lg-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-xl-none {
display: none !important;
}
.flex-xl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-xl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-xl-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-xl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-xl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-xl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-xl-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-xl-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-xl-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-xl-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-xl-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-xl-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-xl-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-xl-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xxl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-xxl-none {
display: none !important;
}
.flex-xxl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xxl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xxl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xxl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xxl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-xxl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xxl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xxl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xxl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xxl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-xxl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xxl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xxl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xxl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xxl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xxl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xxl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xxl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xxl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xxl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xxl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xxl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-xxl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xxl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xxl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-xxl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xxl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-xxl-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-xxl-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-xxl-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-xxl-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-xxl-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-xxl-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-xxl-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-xxl-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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;
}
}
@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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-print-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-print-none {
display: none !important;
}
}
.bg-rc-red {
background-color: #DA291C !important;
}
.text-rc-red {
color: #DA291C !important;
}
.bg-rc-wine {
background-color: #A50034 !important;
}
.text-rc-wine {
color: #A50034 !important;
}
.bg-rc-blue {
background-color: #002554 !important;
}
.text-rc-blue {
color: #002554 !important;
}
.bg-rc-gold {
background-color: #FFB200 !important;
}
.text-rc-gold {
color: #FFB200 !important;
}
.bg-rc-silver {
background-color: #808080 !important;
}
.text-rc-silver {
color: #808080 !important;
}
.bg-rc-skyblue {
background-color: #00B0F0 !important;
}
.text-rc-skyblue {
color: #00B0F0 !important;
}
.bg-aliceblue {
background-color: #F0F8FF !important;
}
.text-aliceblue {
color: #F0F8FF !important;
}
.bg-antiquewhite {
background-color: #FAEBD7 !important;
}
.text-antiquewhite {
color: #FAEBD7 !important;
}
.bg-aqua {
background-color: #00FFFF !important;
}
.text-aqua {
color: #00FFFF !important;
}
.bg-aquamarine {
background-color: #7FFFD4 !important;
}
.text-aquamarine {
color: #7FFFD4 !important;
}
.bg-azure {
background-color: #F0FFFF !important;
}
.text-azure {
color: #F0FFFF !important;
}
.bg-beige {
background-color: #F5F5DC !important;
}
.text-beige {
color: #F5F5DC !important;
}
.bg-bisque {
background-color: #FFE4C4 !important;
}
.text-bisque {
color: #FFE4C4 !important;
}
.bg-blanchedalmond {
background-color: #FFEBCD !important;
}
.text-blanchedalmond {
color: #FFEBCD !important;
}
.bg-blueviolet {
background-color: #8A2BE2 !important;
}
.text-blueviolet {
color: #8A2BE2 !important;
}
.bg-brown {
background-color: #A52A2A !important;
}
.text-brown {
color: #A52A2A !important;
}
.bg-burlywood {
background-color: #DEB887 !important;
}
.text-burlywood {
color: #DEB887 !important;
}
.bg-cadetblue {
background-color: #5F9EA0 !important;
}
.text-cadetblue {
color: #5F9EA0 !important;
}
.bg-chartreuse {
background-color: #7FFF00 !important;
}
.text-chartreuse {
color: #7FFF00 !important;
}
.bg-chocolate {
background-color: #D2691E !important;
}
.text-chocolate {
color: #D2691E !important;
}
.bg-coral {
background-color: #FF7F50 !important;
}
.text-coral {
color: #FF7F50 !important;
}
.bg-cornflowerblue {
background-color: #6495ED !important;
}
.text-cornflowerblue {
color: #6495ED !important;
}
.bg-cornsilk {
background-color: #FFF8DC !important;
}
.text-cornsilk {
color: #FFF8DC !important;
}
.bg-crimson {
background-color: #DC143C !important;
}
.text-crimson {
color: #DC143C !important;
}
.bg-darkblue {
background-color: #00008B !important;
}
.text-darkblue {
color: #00008B !important;
}
.bg-darkcyan {
background-color: #008B8B !important;
}
.text-darkcyan {
color: #008B8B !important;
}
.bg-darkgoldenrod {
background-color: #B8860B !important;
}
.text-darkgoldenrod {
color: #B8860B !important;
}
.bg-darkgray {
background-color: #A9A9A9 !important;
}
.text-darkgray {
color: #A9A9A9 !important;
}
.bg-darkgreen {
background-color: #006400 !important;
}
.text-darkgreen {
color: #006400 !important;
}
.bg-darkgrey {
background-color: #A9A9A9 !important;
}
.text-darkgrey {
color: #A9A9A9 !important;
}
.bg-darkkhaki {
background-color: #BDB76B !important;
}
.text-darkkhaki {
color: #BDB76B !important;
}
.bg-darkmagenta {
background-color: #8B008B !important;
}
.text-darkmagenta {
color: #8B008B !important;
}
.bg-darkolivegreen {
background-color: #556B2F !important;
}
.text-darkolivegreen {
color: #556B2F !important;
}
.bg-darkorange {
background-color: #FF8C00 !important;
}
.text-darkorange {
color: #FF8C00 !important;
}
.bg-darkorchid {
background-color: #9932CC !important;
}
.text-darkorchid {
color: #9932CC !important;
}
.bg-darkred {
background-color: #8B0000 !important;
}
.text-darkred {
color: #8B0000 !important;
}
.bg-darksalmon {
background-color: #E9967A !important;
}
.text-darksalmon {
color: #E9967A !important;
}
.bg-darkseagreen {
background-color: #8FBC8F !important;
}
.text-darkseagreen {
color: #8FBC8F !important;
}
.bg-darkslateblue {
background-color: #483D8B !important;
}
.text-darkslateblue {
color: #483D8B !important;
}
.bg-darkslategray {
background-color: #2F4F4F !important;
}
.text-darkslategray {
color: #2F4F4F !important;
}
.bg-darkslategrey {
background-color: #2F4F4F !important;
}
.text-darkslategrey {
color: #2F4F4F !important;
}
.bg-darkturquoise {
background-color: #00CED1 !important;
}
.text-darkturquoise {
color: #00CED1 !important;
}
.bg-darkviolet {
background-color: #9400D3 !important;
}
.text-darkviolet {
color: #9400D3 !important;
}
.bg-deeppink {
background-color: #FF1493 !important;
}
.text-deeppink {
color: #FF1493 !important;
}
.bg-deepskyblue {
background-color: #00BFFF !important;
}
.text-deepskyblue {
color: #00BFFF !important;
}
.bg-dimgray {
background-color: #696969 !important;
}
.text-dimgray {
color: #696969 !important;
}
.bg-dimgrey {
background-color: #696969 !important;
}
.text-dimgrey {
color: #696969 !important;
}
.bg-dodgerblue {
background-color: #1E90FF !important;
}
.text-dodgerblue {
color: #1E90FF !important;
}
.bg-firebrick {
background-color: #B22222 !important;
}
.text-firebrick {
color: #B22222 !important;
}
.bg-floralwhite {
background-color: #FFFAF0 !important;
}
.text-floralwhite {
color: #FFFAF0 !important;
}
.bg-forestgreen {
background-color: #228B22 !important;
}
.text-forestgreen {
color: #228B22 !important;
}
.bg-fuchsia {
background-color: #FF00FF !important;
}
.text-fuchsia {
color: #FF00FF !important;
}
.bg-gainsboro {
background-color: #DCDCDC !important;
}
.text-gainsboro {
color: #DCDCDC !important;
}
.bg-ghostwhite {
background-color: #F8F8FF !important;
}
.text-ghostwhite {
color: #F8F8FF !important;
}
.bg-gold {
background-color: #FFD700 !important;
}
.text-gold {
color: #FFD700 !important;
}
.bg-goldenrod {
background-color: #DAA520 !important;
}
.text-goldenrod {
color: #DAA520 !important;
}
.bg-greenyellow {
background-color: #ADFF2F !important;
}
.text-greenyellow {
color: #ADFF2F !important;
}
.bg-grey {
background-color: #808080 !important;
}
.text-grey {
color: #808080 !important;
}
.bg-honeydew {
background-color: #F0FFF0 !important;
}
.text-honeydew {
color: #F0FFF0 !important;
}
.bg-hotpink {
background-color: #FF69B4 !important;
}
.text-hotpink {
color: #FF69B4 !important;
}
.bg-indianred {
background-color: #CD5C5C !important;
}
.text-indianred {
color: #CD5C5C !important;
}
.bg-ivory {
background-color: #FFFFF0 !important;
}
.text-ivory {
color: #FFFFF0 !important;
}
.bg-khaki {
background-color: #F0E68C !important;
}
.text-khaki {
color: #F0E68C !important;
}
.bg-lavender {
background-color: #E6E6FA !important;
}
.text-lavender {
color: #E6E6FA !important;
}
.bg-lavenderblush {
background-color: #FFF0F5 !important;
}
.text-lavenderblush {
color: #FFF0F5 !important;
}
.bg-lawngreen {
background-color: #7CFC00 !important;
}
.text-lawngreen {
color: #7CFC00 !important;
}
.bg-lemonchiffon {
background-color: #FFFACD !important;
}
.text-lemonchiffon {
color: #FFFACD !important;
}
.bg-lightblue {
background-color: #ADD8E6 !important;
}
.text-lightblue {
color: #ADD8E6 !important;
}
.bg-lightcoral {
background-color: #F08080 !important;
}
.text-lightcoral {
color: #F08080 !important;
}
.bg-lightcyan {
background-color: #E0FFFF !important;
}
.text-lightcyan {
color: #E0FFFF !important;
}
.bg-lightgoldenrodyellow {
background-color: #FAFAD2 !important;
}
.text-lightgoldenrodyellow {
color: #FAFAD2 !important;
}
.bg-lightgray {
background-color: #D3D3D3 !important;
}
.text-lightgray {
color: #D3D3D3 !important;
}
.bg-lightgreen {
background-color: #90EE90 !important;
}
.text-lightgreen {
color: #90EE90 !important;
}
.bg-lightgrey {
background-color: #D3D3D3 !important;
}
.text-lightgrey {
color: #D3D3D3 !important;
}
.bg-lightpink {
background-color: #FFB6C1 !important;
}
.text-lightpink {
color: #FFB6C1 !important;
}
.bg-lightsalmon {
background-color: #FFA07A !important;
}
.text-lightsalmon {
color: #FFA07A !important;
}
.bg-lightseagreen {
background-color: #20B2AA !important;
}
.text-lightseagreen {
color: #20B2AA !important;
}
.bg-lightskyblue {
background-color: #87CEFA !important;
}
.text-lightskyblue {
color: #87CEFA !important;
}
.bg-lightslategray {
background-color: #778899 !important;
}
.text-lightslategray {
color: #778899 !important;
}
.bg-lightslategrey {
background-color: #778899 !important;
}
.text-lightslategrey {
color: #778899 !important;
}
.bg-lightsteelblue {
background-color: #B0C4DE !important;
}
.text-lightsteelblue {
color: #B0C4DE !important;
}
.bg-lightyellow {
background-color: #FFFFE0 !important;
}
.text-lightyellow {
color: #FFFFE0 !important;
}
.bg-lime {
background-color: #00FF00 !important;
}
.text-lime {
color: #00FF00 !important;
}
.bg-limegreen {
background-color: #32CD32 !important;
}
.text-limegreen {
color: #32CD32 !important;
}
.bg-linen {
background-color: #FAF0E6 !important;
}
.text-linen {
color: #FAF0E6 !important;
}
.bg-magenta {
background-color: #FF00FF !important;
}
.text-magenta {
color: #FF00FF !important;
}
.bg-maroon {
background-color: #800000 !important;
}
.text-maroon {
color: #800000 !important;
}
.bg-mediumaquamarine {
background-color: #66CDAA !important;
}
.text-mediumaquamarine {
color: #66CDAA !important;
}
.bg-mediumblue {
background-color: #0000CD !important;
}
.text-mediumblue {
color: #0000CD !important;
}
.bg-mediumorchid {
background-color: #BA55D3 !important;
}
.text-mediumorchid {
color: #BA55D3 !important;
}
.bg-mediumpurple {
background-color: #9370DB !important;
}
.text-mediumpurple {
color: #9370DB !important;
}
.bg-mediumseagreen {
background-color: #3CB371 !important;
}
.text-mediumseagreen {
color: #3CB371 !important;
}
.bg-mediumslateblue {
background-color: #7B68EE !important;
}
.text-mediumslateblue {
color: #7B68EE !important;
}
.bg-mediumspringgreen {
background-color: #00FA9A !important;
}
.text-mediumspringgreen {
color: #00FA9A !important;
}
.bg-mediumturquoise {
background-color: #48D1CC !important;
}
.text-mediumturquoise {
color: #48D1CC !important;
}
.bg-mediumvioletred {
background-color: #C71585 !important;
}
.text-mediumvioletred {
color: #C71585 !important;
}
.bg-midnightblue {
background-color: #191970 !important;
}
.text-midnightblue {
color: #191970 !important;
}
.bg-mintcream {
background-color: #F5FFFA !important;
}
.text-mintcream {
color: #F5FFFA !important;
}
.bg-mistyrose {
background-color: #FFE4E1 !important;
}
.text-mistyrose {
color: #FFE4E1 !important;
}
.bg-moccasin {
background-color: #FFE4B5 !important;
}
.text-moccasin {
color: #FFE4B5 !important;
}
.bg-navajowhite {
background-color: #FFDEAD !important;
}
.text-navajowhite {
color: #FFDEAD !important;
}
.bg-navy {
background-color: #000080 !important;
}
.text-navy {
color: #000080 !important;
}
.bg-oldlace {
background-color: #FDF5E6 !important;
}
.text-oldlace {
color: #FDF5E6 !important;
}
.bg-olive {
background-color: #808000 !important;
}
.text-olive {
color: #808000 !important;
}
.bg-olivedrab {
background-color: #6B8E23 !important;
}
.text-olivedrab {
color: #6B8E23 !important;
}
.bg-orangered {
background-color: #FF4500 !important;
}
.text-orangered {
color: #FF4500 !important;
}
.bg-orchid {
background-color: #DA70D6 !important;
}
.text-orchid {
color: #DA70D6 !important;
}
.bg-palegoldenrod {
background-color: #EEE8AA !important;
}
.text-palegoldenrod {
color: #EEE8AA !important;
}
.bg-palegreen {
background-color: #98FB98 !important;
}
.text-palegreen {
color: #98FB98 !important;
}
.bg-paleturquoise {
background-color: #AFEEEE !important;
}
.text-paleturquoise {
color: #AFEEEE !important;
}
.bg-palevioletred {
background-color: #DB7093 !important;
}
.text-palevioletred {
color: #DB7093 !important;
}
.bg-papayawhip {
background-color: #FFEFD5 !important;
}
.text-papayawhip {
color: #FFEFD5 !important;
}
.bg-peachpuff {
background-color: #FFDAB9 !important;
}
.text-peachpuff {
color: #FFDAB9 !important;
}
.bg-peru {
background-color: #CD853F !important;
}
.text-peru {
color: #CD853F !important;
}
.bg-plum {
background-color: #DDA0DD !important;
}
.text-plum {
color: #DDA0DD !important;
}
.bg-powderblue {
background-color: #B0E0E6 !important;
}
.text-powderblue {
color: #B0E0E6 !important;
}
.bg-rebeccapurple {
background-color: #663399 !important;
}
.text-rebeccapurple {
color: #663399 !important;
}
.bg-rosybrown {
background-color: #BC8F8F !important;
}
.text-rosybrown {
color: #BC8F8F !important;
}
.bg-royalblue {
background-color: #4169E1 !important;
}
.text-royalblue {
color: #4169E1 !important;
}
.bg-saddlebrown {
background-color: #8B4513 !important;
}
.text-saddlebrown {
color: #8B4513 !important;
}
.bg-salmon {
background-color: #FA8072 !important;
}
.text-salmon {
color: #FA8072 !important;
}
.bg-sandybrown {
background-color: #F4A460 !important;
}
.text-sandybrown {
color: #F4A460 !important;
}
.bg-seagreen {
background-color: #2E8B57 !important;
}
.text-seagreen {
color: #2E8B57 !important;
}
.bg-seashell {
background-color: #FFF5EE !important;
}
.text-seashell {
color: #FFF5EE !important;
}
.bg-sienna {
background-color: #A0522D !important;
}
.text-sienna {
color: #A0522D !important;
}
.bg-silver {
background-color: #C0C0C0 !important;
}
.text-silver {
color: #C0C0C0 !important;
}
.bg-skyblue {
background-color: #87CEEB !important;
}
.text-skyblue {
color: #87CEEB !important;
}
.bg-slateblue {
background-color: #6A5ACD !important;
}
.text-slateblue {
color: #6A5ACD !important;
}
.bg-slategray {
background-color: #708090 !important;
}
.text-slategray {
color: #708090 !important;
}
.bg-slategrey {
background-color: #708090 !important;
}
.text-slategrey {
color: #708090 !important;
}
.bg-snow {
background-color: #FFFAFA !important;
}
.text-snow {
color: #FFFAFA !important;
}
.bg-springgreen {
background-color: #00FF7F !important;
}
.text-springgreen {
color: #00FF7F !important;
}
.bg-steelblue {
background-color: #4682B4 !important;
}
.text-steelblue {
color: #4682B4 !important;
}
.bg-tan {
background-color: #D2B48C !important;
}
.text-tan {
color: #D2B48C !important;
}
.bg-thistle {
background-color: #D8BFD8 !important;
}
.text-thistle {
color: #D8BFD8 !important;
}
.bg-tomato {
background-color: #FF6347 !important;
}
.text-tomato {
color: #FF6347 !important;
}
.bg-turquoise {
background-color: #40E0D0 !important;
}
.text-turquoise {
color: #40E0D0 !important;
}
.bg-violet {
background-color: #EE82EE !important;
}
.text-violet {
color: #EE82EE !important;
}
.bg-wheat {
background-color: #F5DEB3 !important;
}
.text-wheat {
color: #F5DEB3 !important;
}
.bg-whitesmoke {
background-color: #F5F5F5 !important;
}
.text-whitesmoke {
color: #F5F5F5 !important;
}
.bg-yellowgreen {
background-color: #9ACD32 !important;
}
.text-yellowgreen {
color: #9ACD32 !important;
}
/*!
* Bootstrap v5.1.3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 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-gray-100: #f8f9fa;
--bs-gray-200: #e9ecef;
--bs-gray-300: #dee2e6;
--bs-gray-400: #ced4da;
--bs-gray-500: #adb5bd;
--bs-gray-600: #6c757d;
--bs-gray-700: #495057;
--bs-gray-800: #343a40;
--bs-gray-900: #212529;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-rc-red: #DA291C;
--bs-rc-wine: #A50034;
--bs-rc-blue: #002554;
--bs-rc-gold: #FFB200;
--bs-rc-silver: #808080;
--bs-rc-skyblue: #00B0F0;
--bs-aliceblue: #F0F8FF;
--bs-antiquewhite: #FAEBD7;
--bs-aqua: #00FFFF;
--bs-aquamarine: #7FFFD4;
--bs-azure: #F0FFFF;
--bs-beige: #F5F5DC;
--bs-bisque: #FFE4C4;
--bs-blanchedalmond: #FFEBCD;
--bs-blueviolet: #8A2BE2;
--bs-brown: #A52A2A;
--bs-burlywood: #DEB887;
--bs-cadetblue: #5F9EA0;
--bs-chartreuse: #7FFF00;
--bs-chocolate: #D2691E;
--bs-coral: #FF7F50;
--bs-cornflowerblue: #6495ED;
--bs-cornsilk: #FFF8DC;
--bs-crimson: #DC143C;
--bs-darkblue: #00008B;
--bs-darkcyan: #008B8B;
--bs-darkgoldenrod: #B8860B;
--bs-darkgray: #A9A9A9;
--bs-darkgreen: #006400;
--bs-darkgrey: #A9A9A9;
--bs-darkkhaki: #BDB76B;
--bs-darkmagenta: #8B008B;
--bs-darkolivegreen: #556B2F;
--bs-darkorange: #FF8C00;
--bs-darkorchid: #9932CC;
--bs-darkred: #8B0000;
--bs-darksalmon: #E9967A;
--bs-darkseagreen: #8FBC8F;
--bs-darkslateblue: #483D8B;
--bs-darkslategray: #2F4F4F;
--bs-darkslategrey: #2F4F4F;
--bs-darkturquoise: #00CED1;
--bs-darkviolet: #9400D3;
--bs-deeppink: #FF1493;
--bs-deepskyblue: #00BFFF;
--bs-dimgray: #696969;
--bs-dimgrey: #696969;
--bs-dodgerblue: #1E90FF;
--bs-firebrick: #B22222;
--bs-floralwhite: #FFFAF0;
--bs-forestgreen: #228B22;
--bs-fuchsia: #FF00FF;
--bs-gainsboro: #DCDCDC;
--bs-ghostwhite: #F8F8FF;
--bs-gold: #FFD700;
--bs-goldenrod: #DAA520;
--bs-greenyellow: #ADFF2F;
--bs-grey: #808080;
--bs-honeydew: #F0FFF0;
--bs-hotpink: #FF69B4;
--bs-indianred: #CD5C5C;
--bs-ivory: #FFFFF0;
--bs-khaki: #F0E68C;
--bs-lavender: #E6E6FA;
--bs-lavenderblush: #FFF0F5;
--bs-lawngreen: #7CFC00;
--bs-lemonchiffon: #FFFACD;
--bs-lightblue: #ADD8E6;
--bs-lightcoral: #F08080;
--bs-lightcyan: #E0FFFF;
--bs-lightgoldenrodyellow: #FAFAD2;
--bs-lightgray: #D3D3D3;
--bs-lightgreen: #90EE90;
--bs-lightgrey: #D3D3D3;
--bs-lightpink: #FFB6C1;
--bs-lightsalmon: #FFA07A;
--bs-lightseagreen: #20B2AA;
--bs-lightskyblue: #87CEFA;
--bs-lightslategray: #778899;
--bs-lightslategrey: #778899;
--bs-lightsteelblue: #B0C4DE;
--bs-lightyellow: #FFFFE0;
--bs-lime: #00FF00;
--bs-limegreen: #32CD32;
--bs-linen: #FAF0E6;
--bs-magenta: #FF00FF;
--bs-maroon: #800000;
--bs-mediumaquamarine: #66CDAA;
--bs-mediumblue: #0000CD;
--bs-mediumorchid: #BA55D3;
--bs-mediumpurple: #9370DB;
--bs-mediumseagreen: #3CB371;
--bs-mediumslateblue: #7B68EE;
--bs-mediumspringgreen: #00FA9A;
--bs-mediumturquoise: #48D1CC;
--bs-mediumvioletred: #C71585;
--bs-midnightblue: #191970;
--bs-mintcream: #F5FFFA;
--bs-mistyrose: #FFE4E1;
--bs-moccasin: #FFE4B5;
--bs-navajowhite: #FFDEAD;
--bs-navy: #000080;
--bs-oldlace: #FDF5E6;
--bs-olive: #808000;
--bs-olivedrab: #6B8E23;
--bs-orangered: #FF4500;
--bs-orchid: #DA70D6;
--bs-palegoldenrod: #EEE8AA;
--bs-palegreen: #98FB98;
--bs-paleturquoise: #AFEEEE;
--bs-palevioletred: #DB7093;
--bs-papayawhip: #FFEFD5;
--bs-peachpuff: #FFDAB9;
--bs-peru: #CD853F;
--bs-plum: #DDA0DD;
--bs-powderblue: #B0E0E6;
--bs-rebeccapurple: #663399;
--bs-rosybrown: #BC8F8F;
--bs-royalblue: #4169E1;
--bs-saddlebrown: #8B4513;
--bs-salmon: #FA8072;
--bs-sandybrown: #F4A460;
--bs-seagreen: #2E8B57;
--bs-seashell: #FFF5EE;
--bs-sienna: #A0522D;
--bs-silver: #C0C0C0;
--bs-skyblue: #87CEEB;
--bs-slateblue: #6A5ACD;
--bs-slategray: #708090;
--bs-slategrey: #708090;
--bs-snow: #FFFAFA;
--bs-springgreen: #00FF7F;
--bs-steelblue: #4682B4;
--bs-tan: #D2B48C;
--bs-thistle: #D8BFD8;
--bs-tomato: #FF6347;
--bs-turquoise: #40E0D0;
--bs-violet: #EE82EE;
--bs-wheat: #F5DEB3;
--bs-whitesmoke: #F5F5F5;
--bs-yellowgreen: #9ACD32;
--bs-primary-rgb: 13, 110, 253;
--bs-secondary-rgb: 108, 117, 125;
--bs-success-rgb: 25, 135, 84;
--bs-info-rgb: 13, 202, 240;
--bs-warning-rgb: 255, 193, 7;
--bs-danger-rgb: 220, 53, 69;
--bs-light-rgb: 248, 249, 250;
--bs-dark-rgb: 33, 37, 41;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--bs-body-color-rgb: 33, 37, 41;
--bs-body-bg-rgb: 255, 255, 255;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
--bs-body-font-family: var(--bs-font-sans-serif);
--bs-body-font-size: 1rem;
--bs-body-font-weight: 400;
--bs-body-line-height: 1.5;
--bs-body-color: #212529;
--bs-body-bg: #fff;
}
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: var(--bs-body-font-family);
font-size: var(--bs-body-font-size);
font-weight: var(--bs-body-font-weight);
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
text-align: var(--bs-body-text-align);
background-color: var(--bs-body-bg);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
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] {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul {
padding-left: 2rem;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small, .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: -.25em;
}
sup {
top: -.5em;
}
a {
color: #0d6efd;
text-decoration: underline;
}
a:hover {
color: #0a58ca;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
pre,
code,
kbd,
samp {
font-family: var(--bs-font-monospace);
font-size: 1em;
direction: ltr /* rtl:ignore */;
unicode-bidi: bidi-override;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
font-size: 0.875em;
color: #d63384;
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 0.875em;
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
font-size: 1em;
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
img,
svg {
vertical-align: middle;
}
table {
caption-side: bottom;
border-collapse: collapse;
}
caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: left;
}
th {
text-align: inherit;
text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
select {
text-transform: none;
}
[role="button"] {
cursor: pointer;
}
select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
display: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
float: left;
width: 100%;
padding: 0;
margin-bottom: 0.5rem;
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
}
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
}
legend + * {
clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
*/
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
padding: 0;
}
::file-selector-button {
font: inherit;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
iframe {
border: 0;
}
summary {
display: list-item;
cursor: pointer;
}
progress {
vertical-align: baseline;
}
[hidden] {
display: none !important;
}
.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\00A0";
}
.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-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
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, .container-sm {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container, .container-sm, .container-md {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container, .container-sm, .container-md, .container-lg {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container, .container-sm, .container-md, .container-lg, .container-xl {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
max-width: 1320px;
}
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: calc(-1 * var(--bs-gutter-y));
margin-right: calc(-.5 * var(--bs-gutter-x));
margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > * {
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
.col {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.33333%;
}
.offset-2 {
margin-left: 16.66667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.33333%;
}
.offset-5 {
margin-left: 41.66667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.33333%;
}
.offset-8 {
margin-left: 66.66667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.33333%;
}
.offset-11 {
margin-left: 91.66667%;
}
.g-0,
.gx-0 {
--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
.col-sm {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-sm-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.33333%;
}
.offset-sm-2 {
margin-left: 16.66667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.33333%;
}
.offset-sm-5 {
margin-left: 41.66667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.33333%;
}
.offset-sm-8 {
margin-left: 66.66667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.33333%;
}
.offset-sm-11 {
margin-left: 91.66667%;
}
.g-sm-0,
.gx-sm-0 {
--bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
--bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
--bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
--bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
--bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
--bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
--bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
--bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
--bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
--bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
--bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 768px) {
.col-md {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-md-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-md-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-md-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-md-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-md-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-md-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-md-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-md-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.33333%;
}
.offset-md-2 {
margin-left: 16.66667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.33333%;
}
.offset-md-5 {
margin-left: 41.66667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.33333%;
}
.offset-md-8 {
margin-left: 66.66667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.33333%;
}
.offset-md-11 {
margin-left: 91.66667%;
}
.g-md-0,
.gx-md-0 {
--bs-gutter-x: 0;
}
.g-md-0,
.gy-md-0 {
--bs-gutter-y: 0;
}
.g-md-1,
.gx-md-1 {
--bs-gutter-x: 0.25rem;
}
.g-md-1,
.gy-md-1 {
--bs-gutter-y: 0.25rem;
}
.g-md-2,
.gx-md-2 {
--bs-gutter-x: 0.5rem;
}
.g-md-2,
.gy-md-2 {
--bs-gutter-y: 0.5rem;
}
.g-md-3,
.gx-md-3 {
--bs-gutter-x: 1rem;
}
.g-md-3,
.gy-md-3 {
--bs-gutter-y: 1rem;
}
.g-md-4,
.gx-md-4 {
--bs-gutter-x: 1.5rem;
}
.g-md-4,
.gy-md-4 {
--bs-gutter-y: 1.5rem;
}
.g-md-5,
.gx-md-5 {
--bs-gutter-x: 3rem;
}
.g-md-5,
.gy-md-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 992px) {
.col-lg {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-lg-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-lg-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-lg-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-lg-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-lg-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-lg-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-lg-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-lg-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.33333%;
}
.offset-lg-2 {
margin-left: 16.66667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.33333%;
}
.offset-lg-5 {
margin-left: 41.66667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.33333%;
}
.offset-lg-8 {
margin-left: 66.66667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.33333%;
}
.offset-lg-11 {
margin-left: 91.66667%;
}
.g-lg-0,
.gx-lg-0 {
--bs-gutter-x: 0;
}
.g-lg-0,
.gy-lg-0 {
--bs-gutter-y: 0;
}
.g-lg-1,
.gx-lg-1 {
--bs-gutter-x: 0.25rem;
}
.g-lg-1,
.gy-lg-1 {
--bs-gutter-y: 0.25rem;
}
.g-lg-2,
.gx-lg-2 {
--bs-gutter-x: 0.5rem;
}
.g-lg-2,
.gy-lg-2 {
--bs-gutter-y: 0.5rem;
}
.g-lg-3,
.gx-lg-3 {
--bs-gutter-x: 1rem;
}
.g-lg-3,
.gy-lg-3 {
--bs-gutter-y: 1rem;
}
.g-lg-4,
.gx-lg-4 {
--bs-gutter-x: 1.5rem;
}
.g-lg-4,
.gy-lg-4 {
--bs-gutter-y: 1.5rem;
}
.g-lg-5,
.gx-lg-5 {
--bs-gutter-x: 3rem;
}
.g-lg-5,
.gy-lg-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1200px) {
.col-xl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.33333%;
}
.offset-xl-2 {
margin-left: 16.66667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.33333%;
}
.offset-xl-5 {
margin-left: 41.66667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.33333%;
}
.offset-xl-8 {
margin-left: 66.66667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.33333%;
}
.offset-xl-11 {
margin-left: 91.66667%;
}
.g-xl-0,
.gx-xl-0 {
--bs-gutter-x: 0;
}
.g-xl-0,
.gy-xl-0 {
--bs-gutter-y: 0;
}
.g-xl-1,
.gx-xl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xl-1,
.gy-xl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xl-2,
.gx-xl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xl-2,
.gy-xl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xl-3,
.gx-xl-3 {
--bs-gutter-x: 1rem;
}
.g-xl-3,
.gy-xl-3 {
--bs-gutter-y: 1rem;
}
.g-xl-4,
.gx-xl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xl-4,
.gy-xl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xl-5,
.gx-xl-5 {
--bs-gutter-x: 3rem;
}
.g-xl-5,
.gy-xl-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1400px) {
.col-xxl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xxl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xxl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xxl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xxl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xxl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xxl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xxl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xxl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.33333%;
}
.offset-xxl-2 {
margin-left: 16.66667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.33333%;
}
.offset-xxl-5 {
margin-left: 41.66667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.33333%;
}
.offset-xxl-8 {
margin-left: 66.66667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.33333%;
}
.offset-xxl-11 {
margin-left: 91.66667%;
}
.g-xxl-0,
.gx-xxl-0 {
--bs-gutter-x: 0;
}
.g-xxl-0,
.gy-xxl-0 {
--bs-gutter-y: 0;
}
.g-xxl-1,
.gx-xxl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xxl-1,
.gy-xxl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xxl-2,
.gx-xxl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xxl-2,
.gy-xxl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xxl-3,
.gx-xxl-3 {
--bs-gutter-x: 1rem;
}
.g-xxl-3,
.gy-xxl-3 {
--bs-gutter-y: 1rem;
}
.g-xxl-4,
.gx-xxl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xxl-4,
.gy-xxl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xxl-5,
.gx-xxl-5 {
--bs-gutter-x: 3rem;
}
.g-xxl-5,
.gy-xxl-5 {
--bs-gutter-y: 3rem;
}
}
.table {
--bs-table-bg: transparent;
--bs-table-accent-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);
border-bottom-width: 1px;
-webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
vertical-align: inherit;
}
.table > thead {
vertical-align: bottom;
}
.table > :not(:first-child) {
border-top: 2px solid 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-borderless > :not(:first-child) {
border-top-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;
-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control {
-webkit-transition: none;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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::-webkit-input-placeholder {
color: #6c757d;
opacity: 1;
}
.form-control:-ms-input-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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control::file-selector-button {
-webkit-transition: none;
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, -webkit-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, -webkit-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;
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, -webkit-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 {
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 2.25rem 0.375rem 0.75rem;
-moz-padding-start: calc(0.75rem - 3px);
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
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-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-select {
-webkit-transition: none;
transition: none;
}
}
.form-select:focus {
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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 {
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;
border-radius: 0.2rem;
}
.form-select-lg {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.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;
color-adjust: exact;
}
.form-check-input[type="checkbox"] {
border-radius: 0.25em;
}
.form-check-input[type="radio"] {
border-radius: 50%;
}
.form-check-input:active {
-webkit-filter: brightness(90%);
filter: brightness(90%);
}
.form-check-input:focus {
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
-webkit-filter: 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;
-webkit-transition: background-position 0.15s ease-in-out;
transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-switch .form-check-input {
-webkit-transition: none;
transition: none;
}
}
.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;
-webkit-filter: 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: 0;
}
.form-range:focus::-webkit-slider-thumb {
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-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;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-range::-moz-range-thumb {
-webkit-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);
line-height: 1.25;
}
.form-floating > label {
position: absolute;
top: 0;
left: 0;
height: 100%;
padding: 1rem 0.75rem;
pointer-events: none;
border: 1px solid transparent;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-floating > label {
-webkit-transition: none;
transition: none;
}
}
.form-floating > .form-control {
padding: 1rem 0.75rem;
}
.form-floating > .form-control::-webkit-input-placeholder {
color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::placeholder {
color: transparent;
}
.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:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
opacity: 0.65;
-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
opacity: 0.65;
-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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: 3rem;
}
.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: .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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
padding-right: 4.125rem;
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 2.25rem;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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: .5em;
}
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
.input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
z-index: 3;
}
.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: .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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
padding-right: 4.125rem;
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 2.25rem;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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: .5em;
}
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
.input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
z-index: 3;
}
.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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
-webkit-transition: none;
transition: none;
}
}
.btn:hover {
color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
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-rc-red {
color: #fff;
background-color: #DA291C;
border-color: #DA291C;
}
.btn-rc-red:hover {
color: #fff;
background-color: #b92318;
border-color: #ae2116;
}
.btn-check:focus + .btn-rc-red, .btn-rc-red:focus {
color: #fff;
background-color: #b92318;
border-color: #ae2116;
-webkit-box-shadow: 0 0 0 0.25rem rgba(224, 73, 62, 0.5);
box-shadow: 0 0 0 0.25rem rgba(224, 73, 62, 0.5);
}
.btn-check:checked + .btn-rc-red,
.btn-check:active + .btn-rc-red, .btn-rc-red:active, .btn-rc-red.active,
.show > .btn-rc-red.dropdown-toggle {
color: #fff;
background-color: #ae2116;
border-color: #a41f15;
}
.btn-check:checked + .btn-rc-red:focus,
.btn-check:active + .btn-rc-red:focus, .btn-rc-red:active:focus, .btn-rc-red.active:focus,
.show > .btn-rc-red.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(224, 73, 62, 0.5);
box-shadow: 0 0 0 0.25rem rgba(224, 73, 62, 0.5);
}
.btn-rc-red:disabled, .btn-rc-red.disabled {
color: #fff;
background-color: #DA291C;
border-color: #DA291C;
}
.btn-rc-wine {
color: #fff;
background-color: #A50034;
border-color: #A50034;
}
.btn-rc-wine:hover {
color: #fff;
background-color: #8c002c;
border-color: #84002a;
}
.btn-check:focus + .btn-rc-wine, .btn-rc-wine:focus {
color: #fff;
background-color: #8c002c;
border-color: #84002a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 38, 82, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 38, 82, 0.5);
}
.btn-check:checked + .btn-rc-wine,
.btn-check:active + .btn-rc-wine, .btn-rc-wine:active, .btn-rc-wine.active,
.show > .btn-rc-wine.dropdown-toggle {
color: #fff;
background-color: #84002a;
border-color: #7c0027;
}
.btn-check:checked + .btn-rc-wine:focus,
.btn-check:active + .btn-rc-wine:focus, .btn-rc-wine:active:focus, .btn-rc-wine.active:focus,
.show > .btn-rc-wine.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 38, 82, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 38, 82, 0.5);
}
.btn-rc-wine:disabled, .btn-rc-wine.disabled {
color: #fff;
background-color: #A50034;
border-color: #A50034;
}
.btn-rc-blue {
color: #fff;
background-color: #002554;
border-color: #002554;
}
.btn-rc-blue:hover {
color: #fff;
background-color: #001f47;
border-color: #001e43;
}
.btn-check:focus + .btn-rc-blue, .btn-rc-blue:focus {
color: #fff;
background-color: #001f47;
border-color: #001e43;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 70, 110, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 70, 110, 0.5);
}
.btn-check:checked + .btn-rc-blue,
.btn-check:active + .btn-rc-blue, .btn-rc-blue:active, .btn-rc-blue.active,
.show > .btn-rc-blue.dropdown-toggle {
color: #fff;
background-color: #001e43;
border-color: #001c3f;
}
.btn-check:checked + .btn-rc-blue:focus,
.btn-check:active + .btn-rc-blue:focus, .btn-rc-blue:active:focus, .btn-rc-blue.active:focus,
.show > .btn-rc-blue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 70, 110, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 70, 110, 0.5);
}
.btn-rc-blue:disabled, .btn-rc-blue.disabled {
color: #fff;
background-color: #002554;
border-color: #002554;
}
.btn-rc-gold {
color: #000;
background-color: #FFB200;
border-color: #FFB200;
}
.btn-rc-gold:hover {
color: #000;
background-color: #ffbe26;
border-color: #ffba1a;
}
.btn-check:focus + .btn-rc-gold, .btn-rc-gold:focus {
color: #000;
background-color: #ffbe26;
border-color: #ffba1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 151, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 151, 0, 0.5);
}
.btn-check:checked + .btn-rc-gold,
.btn-check:active + .btn-rc-gold, .btn-rc-gold:active, .btn-rc-gold.active,
.show > .btn-rc-gold.dropdown-toggle {
color: #000;
background-color: #ffc133;
border-color: #ffba1a;
}
.btn-check:checked + .btn-rc-gold:focus,
.btn-check:active + .btn-rc-gold:focus, .btn-rc-gold:active:focus, .btn-rc-gold.active:focus,
.show > .btn-rc-gold.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 151, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 151, 0, 0.5);
}
.btn-rc-gold:disabled, .btn-rc-gold.disabled {
color: #000;
background-color: #FFB200;
border-color: #FFB200;
}
.btn-rc-silver {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-rc-silver:hover {
color: #000;
background-color: #939393;
border-color: #8d8d8d;
}
.btn-check:focus + .btn-rc-silver, .btn-rc-silver:focus {
color: #000;
background-color: #939393;
border-color: #8d8d8d;
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
}
.btn-check:checked + .btn-rc-silver,
.btn-check:active + .btn-rc-silver, .btn-rc-silver:active, .btn-rc-silver.active,
.show > .btn-rc-silver.dropdown-toggle {
color: #000;
background-color: #999999;
border-color: #8d8d8d;
}
.btn-check:checked + .btn-rc-silver:focus,
.btn-check:active + .btn-rc-silver:focus, .btn-rc-silver:active:focus, .btn-rc-silver.active:focus,
.show > .btn-rc-silver.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
}
.btn-rc-silver:disabled, .btn-rc-silver.disabled {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-rc-skyblue {
color: #000;
background-color: #00B0F0;
border-color: #00B0F0;
}
.btn-rc-skyblue:hover {
color: #000;
background-color: #26bcf2;
border-color: #1ab8f2;
}
.btn-check:focus + .btn-rc-skyblue, .btn-rc-skyblue:focus {
color: #000;
background-color: #26bcf2;
border-color: #1ab8f2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 150, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 150, 204, 0.5);
}
.btn-check:checked + .btn-rc-skyblue,
.btn-check:active + .btn-rc-skyblue, .btn-rc-skyblue:active, .btn-rc-skyblue.active,
.show > .btn-rc-skyblue.dropdown-toggle {
color: #000;
background-color: #33c0f3;
border-color: #1ab8f2;
}
.btn-check:checked + .btn-rc-skyblue:focus,
.btn-check:active + .btn-rc-skyblue:focus, .btn-rc-skyblue:active:focus, .btn-rc-skyblue.active:focus,
.show > .btn-rc-skyblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 150, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 150, 204, 0.5);
}
.btn-rc-skyblue:disabled, .btn-rc-skyblue.disabled {
color: #000;
background-color: #00B0F0;
border-color: #00B0F0;
}
.btn-aliceblue {
color: #000;
background-color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-aliceblue:hover {
color: #000;
background-color: #f2f9ff;
border-color: #f2f9ff;
}
.btn-check:focus + .btn-aliceblue, .btn-aliceblue:focus {
color: #000;
background-color: #f2f9ff;
border-color: #f2f9ff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 211, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 211, 217, 0.5);
}
.btn-check:checked + .btn-aliceblue,
.btn-check:active + .btn-aliceblue, .btn-aliceblue:active, .btn-aliceblue.active,
.show > .btn-aliceblue.dropdown-toggle {
color: #000;
background-color: #f3f9ff;
border-color: #f2f9ff;
}
.btn-check:checked + .btn-aliceblue:focus,
.btn-check:active + .btn-aliceblue:focus, .btn-aliceblue:active:focus, .btn-aliceblue.active:focus,
.show > .btn-aliceblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 211, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 211, 217, 0.5);
}
.btn-aliceblue:disabled, .btn-aliceblue.disabled {
color: #000;
background-color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-antiquewhite {
color: #000;
background-color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-antiquewhite:hover {
color: #000;
background-color: #fbeedd;
border-color: #fbeddb;
}
.btn-check:focus + .btn-antiquewhite, .btn-antiquewhite:focus {
color: #000;
background-color: #fbeedd;
border-color: #fbeddb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 200, 183, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 200, 183, 0.5);
}
.btn-check:checked + .btn-antiquewhite,
.btn-check:active + .btn-antiquewhite, .btn-antiquewhite:active, .btn-antiquewhite.active,
.show > .btn-antiquewhite.dropdown-toggle {
color: #000;
background-color: #fbefdf;
border-color: #fbeddb;
}
.btn-check:checked + .btn-antiquewhite:focus,
.btn-check:active + .btn-antiquewhite:focus, .btn-antiquewhite:active:focus, .btn-antiquewhite.active:focus,
.show > .btn-antiquewhite.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 200, 183, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 200, 183, 0.5);
}
.btn-antiquewhite:disabled, .btn-antiquewhite.disabled {
color: #000;
background-color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-aqua {
color: #000;
background-color: #00FFFF;
border-color: #00FFFF;
}
.btn-aqua:hover {
color: #000;
background-color: #26ffff;
border-color: #1affff;
}
.btn-check:focus + .btn-aqua, .btn-aqua:focus {
color: #000;
background-color: #26ffff;
border-color: #1affff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 217, 0.5);
}
.btn-check:checked + .btn-aqua,
.btn-check:active + .btn-aqua, .btn-aqua:active, .btn-aqua.active,
.show > .btn-aqua.dropdown-toggle {
color: #000;
background-color: #33ffff;
border-color: #1affff;
}
.btn-check:checked + .btn-aqua:focus,
.btn-check:active + .btn-aqua:focus, .btn-aqua:active:focus, .btn-aqua.active:focus,
.show > .btn-aqua.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 217, 0.5);
}
.btn-aqua:disabled, .btn-aqua.disabled {
color: #000;
background-color: #00FFFF;
border-color: #00FFFF;
}
.btn-aquamarine {
color: #000;
background-color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-aquamarine:hover {
color: #000;
background-color: #92ffda;
border-color: #8cffd8;
}
.btn-check:focus + .btn-aquamarine, .btn-aquamarine:focus {
color: #000;
background-color: #92ffda;
border-color: #8cffd8;
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 217, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(108, 217, 180, 0.5);
}
.btn-check:checked + .btn-aquamarine,
.btn-check:active + .btn-aquamarine, .btn-aquamarine:active, .btn-aquamarine.active,
.show > .btn-aquamarine.dropdown-toggle {
color: #000;
background-color: #99ffdd;
border-color: #8cffd8;
}
.btn-check:checked + .btn-aquamarine:focus,
.btn-check:active + .btn-aquamarine:focus, .btn-aquamarine:active:focus, .btn-aquamarine.active:focus,
.show > .btn-aquamarine.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 217, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(108, 217, 180, 0.5);
}
.btn-aquamarine:disabled, .btn-aquamarine.disabled {
color: #000;
background-color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-azure {
color: #000;
background-color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-azure:hover {
color: #000;
background-color: #f2ffff;
border-color: #f2ffff;
}
.btn-check:focus + .btn-azure, .btn-azure:focus {
color: #000;
background-color: #f2ffff;
border-color: #f2ffff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 217, 217, 0.5);
}
.btn-check:checked + .btn-azure,
.btn-check:active + .btn-azure, .btn-azure:active, .btn-azure.active,
.show > .btn-azure.dropdown-toggle {
color: #000;
background-color: #f3ffff;
border-color: #f2ffff;
}
.btn-check:checked + .btn-azure:focus,
.btn-check:active + .btn-azure:focus, .btn-azure:active:focus, .btn-azure.active:focus,
.show > .btn-azure.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 217, 217, 0.5);
}
.btn-azure:disabled, .btn-azure.disabled {
color: #000;
background-color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-beige {
color: #000;
background-color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-beige:hover {
color: #000;
background-color: #f7f7e1;
border-color: #f6f6e0;
}
.btn-check:focus + .btn-beige, .btn-beige:focus {
color: #000;
background-color: #f7f7e1;
border-color: #f6f6e0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 208, 187, 0.5);
}
.btn-check:checked + .btn-beige,
.btn-check:active + .btn-beige, .btn-beige:active, .btn-beige.active,
.show > .btn-beige.dropdown-toggle {
color: #000;
background-color: #f7f7e3;
border-color: #f6f6e0;
}
.btn-check:checked + .btn-beige:focus,
.btn-check:active + .btn-beige:focus, .btn-beige:active:focus, .btn-beige.active:focus,
.show > .btn-beige.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 208, 187, 0.5);
}
.btn-beige:disabled, .btn-beige.disabled {
color: #000;
background-color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-bisque {
color: #000;
background-color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-bisque:hover {
color: #000;
background-color: #ffe8cd;
border-color: #ffe7ca;
}
.btn-check:focus + .btn-bisque, .btn-bisque:focus {
color: #000;
background-color: #ffe8cd;
border-color: #ffe7ca;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 167, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 167, 0.5);
}
.btn-check:checked + .btn-bisque,
.btn-check:active + .btn-bisque, .btn-bisque:active, .btn-bisque.active,
.show > .btn-bisque.dropdown-toggle {
color: #000;
background-color: #ffe9d0;
border-color: #ffe7ca;
}
.btn-check:checked + .btn-bisque:focus,
.btn-check:active + .btn-bisque:focus, .btn-bisque:active:focus, .btn-bisque.active:focus,
.show > .btn-bisque.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 167, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 167, 0.5);
}
.btn-bisque:disabled, .btn-bisque.disabled {
color: #000;
background-color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-blanchedalmond {
color: #000;
background-color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-blanchedalmond:hover {
color: #000;
background-color: #ffeed5;
border-color: #ffedd2;
}
.btn-check:focus + .btn-blanchedalmond, .btn-blanchedalmond:focus {
color: #000;
background-color: #ffeed5;
border-color: #ffedd2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 200, 174, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 200, 174, 0.5);
}
.btn-check:checked + .btn-blanchedalmond,
.btn-check:active + .btn-blanchedalmond, .btn-blanchedalmond:active, .btn-blanchedalmond.active,
.show > .btn-blanchedalmond.dropdown-toggle {
color: #000;
background-color: #ffefd7;
border-color: #ffedd2;
}
.btn-check:checked + .btn-blanchedalmond:focus,
.btn-check:active + .btn-blanchedalmond:focus, .btn-blanchedalmond:active:focus, .btn-blanchedalmond.active:focus,
.show > .btn-blanchedalmond.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 200, 174, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 200, 174, 0.5);
}
.btn-blanchedalmond:disabled, .btn-blanchedalmond.disabled {
color: #000;
background-color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-blueviolet {
color: #fff;
background-color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-blueviolet:hover {
color: #fff;
background-color: #7525c0;
border-color: #6e22b5;
}
.btn-check:focus + .btn-blueviolet, .btn-blueviolet:focus {
color: #fff;
background-color: #7525c0;
border-color: #6e22b5;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 75, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 75, 230, 0.5);
}
.btn-check:checked + .btn-blueviolet,
.btn-check:active + .btn-blueviolet, .btn-blueviolet:active, .btn-blueviolet.active,
.show > .btn-blueviolet.dropdown-toggle {
color: #fff;
background-color: #6e22b5;
border-color: #6820aa;
}
.btn-check:checked + .btn-blueviolet:focus,
.btn-check:active + .btn-blueviolet:focus, .btn-blueviolet:active:focus, .btn-blueviolet.active:focus,
.show > .btn-blueviolet.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 75, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 75, 230, 0.5);
}
.btn-blueviolet:disabled, .btn-blueviolet.disabled {
color: #fff;
background-color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-brown {
color: #fff;
background-color: #A52A2A;
border-color: #A52A2A;
}
.btn-brown:hover {
color: #fff;
background-color: #8c2424;
border-color: #842222;
}
.btn-check:focus + .btn-brown, .btn-brown:focus {
color: #fff;
background-color: #8c2424;
border-color: #842222;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 74, 74, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 74, 74, 0.5);
}
.btn-check:checked + .btn-brown,
.btn-check:active + .btn-brown, .btn-brown:active, .btn-brown.active,
.show > .btn-brown.dropdown-toggle {
color: #fff;
background-color: #842222;
border-color: #7c2020;
}
.btn-check:checked + .btn-brown:focus,
.btn-check:active + .btn-brown:focus, .btn-brown:active:focus, .btn-brown.active:focus,
.show > .btn-brown.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 74, 74, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 74, 74, 0.5);
}
.btn-brown:disabled, .btn-brown.disabled {
color: #fff;
background-color: #A52A2A;
border-color: #A52A2A;
}
.btn-burlywood {
color: #000;
background-color: #DEB887;
border-color: #DEB887;
}
.btn-burlywood:hover {
color: #000;
background-color: #e3c399;
border-color: #e1bf93;
}
.btn-check:focus + .btn-burlywood, .btn-burlywood:focus {
color: #000;
background-color: #e3c399;
border-color: #e1bf93;
-webkit-box-shadow: 0 0 0 0.25rem rgba(189, 156, 115, 0.5);
box-shadow: 0 0 0 0.25rem rgba(189, 156, 115, 0.5);
}
.btn-check:checked + .btn-burlywood,
.btn-check:active + .btn-burlywood, .btn-burlywood:active, .btn-burlywood.active,
.show > .btn-burlywood.dropdown-toggle {
color: #000;
background-color: #e5c69f;
border-color: #e1bf93;
}
.btn-check:checked + .btn-burlywood:focus,
.btn-check:active + .btn-burlywood:focus, .btn-burlywood:active:focus, .btn-burlywood.active:focus,
.show > .btn-burlywood.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(189, 156, 115, 0.5);
box-shadow: 0 0 0 0.25rem rgba(189, 156, 115, 0.5);
}
.btn-burlywood:disabled, .btn-burlywood.disabled {
color: #000;
background-color: #DEB887;
border-color: #DEB887;
}
.btn-cadetblue {
color: #000;
background-color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-cadetblue:hover {
color: #000;
background-color: #77adae;
border-color: #6fa8aa;
}
.btn-check:focus + .btn-cadetblue, .btn-cadetblue:focus {
color: #000;
background-color: #77adae;
border-color: #6fa8aa;
-webkit-box-shadow: 0 0 0 0.25rem rgba(81, 134, 136, 0.5);
box-shadow: 0 0 0 0.25rem rgba(81, 134, 136, 0.5);
}
.btn-check:checked + .btn-cadetblue,
.btn-check:active + .btn-cadetblue, .btn-cadetblue:active, .btn-cadetblue.active,
.show > .btn-cadetblue.dropdown-toggle {
color: #000;
background-color: #7fb1b3;
border-color: #6fa8aa;
}
.btn-check:checked + .btn-cadetblue:focus,
.btn-check:active + .btn-cadetblue:focus, .btn-cadetblue:active:focus, .btn-cadetblue.active:focus,
.show > .btn-cadetblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(81, 134, 136, 0.5);
box-shadow: 0 0 0 0.25rem rgba(81, 134, 136, 0.5);
}
.btn-cadetblue:disabled, .btn-cadetblue.disabled {
color: #000;
background-color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-chartreuse {
color: #000;
background-color: #7FFF00;
border-color: #7FFF00;
}
.btn-chartreuse:hover {
color: #000;
background-color: #92ff26;
border-color: #8cff1a;
}
.btn-check:focus + .btn-chartreuse, .btn-chartreuse:focus {
color: #000;
background-color: #92ff26;
border-color: #8cff1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 217, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(108, 217, 0, 0.5);
}
.btn-check:checked + .btn-chartreuse,
.btn-check:active + .btn-chartreuse, .btn-chartreuse:active, .btn-chartreuse.active,
.show > .btn-chartreuse.dropdown-toggle {
color: #000;
background-color: #99ff33;
border-color: #8cff1a;
}
.btn-check:checked + .btn-chartreuse:focus,
.btn-check:active + .btn-chartreuse:focus, .btn-chartreuse:active:focus, .btn-chartreuse.active:focus,
.show > .btn-chartreuse.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 217, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(108, 217, 0, 0.5);
}
.btn-chartreuse:disabled, .btn-chartreuse.disabled {
color: #000;
background-color: #7FFF00;
border-color: #7FFF00;
}
.btn-chocolate {
color: #000;
background-color: #D2691E;
border-color: #D2691E;
}
.btn-chocolate:hover {
color: #000;
background-color: #d98040;
border-color: #d77835;
}
.btn-check:focus + .btn-chocolate, .btn-chocolate:focus {
color: #000;
background-color: #d98040;
border-color: #d77835;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 89, 26, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 89, 26, 0.5);
}
.btn-check:checked + .btn-chocolate,
.btn-check:active + .btn-chocolate, .btn-chocolate:active, .btn-chocolate.active,
.show > .btn-chocolate.dropdown-toggle {
color: #000;
background-color: #db874b;
border-color: #d77835;
}
.btn-check:checked + .btn-chocolate:focus,
.btn-check:active + .btn-chocolate:focus, .btn-chocolate:active:focus, .btn-chocolate.active:focus,
.show > .btn-chocolate.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 89, 26, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 89, 26, 0.5);
}
.btn-chocolate:disabled, .btn-chocolate.disabled {
color: #000;
background-color: #D2691E;
border-color: #D2691E;
}
.btn-coral {
color: #000;
background-color: #FF7F50;
border-color: #FF7F50;
}
.btn-coral:hover {
color: #000;
background-color: #ff926a;
border-color: #ff8c62;
}
.btn-check:focus + .btn-coral, .btn-coral:focus {
color: #000;
background-color: #ff926a;
border-color: #ff8c62;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 108, 68, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 108, 68, 0.5);
}
.btn-check:checked + .btn-coral,
.btn-check:active + .btn-coral, .btn-coral:active, .btn-coral.active,
.show > .btn-coral.dropdown-toggle {
color: #000;
background-color: #ff9973;
border-color: #ff8c62;
}
.btn-check:checked + .btn-coral:focus,
.btn-check:active + .btn-coral:focus, .btn-coral:active:focus, .btn-coral.active:focus,
.show > .btn-coral.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 108, 68, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 108, 68, 0.5);
}
.btn-coral:disabled, .btn-coral.disabled {
color: #000;
background-color: #FF7F50;
border-color: #FF7F50;
}
.btn-cornflowerblue {
color: #000;
background-color: #6495ED;
border-color: #6495ED;
}
.btn-cornflowerblue:hover {
color: #000;
background-color: #7ba5f0;
border-color: #74a0ef;
}
.btn-check:focus + .btn-cornflowerblue, .btn-cornflowerblue:focus {
color: #000;
background-color: #7ba5f0;
border-color: #74a0ef;
-webkit-box-shadow: 0 0 0 0.25rem rgba(85, 127, 201, 0.5);
box-shadow: 0 0 0 0.25rem rgba(85, 127, 201, 0.5);
}
.btn-check:checked + .btn-cornflowerblue,
.btn-check:active + .btn-cornflowerblue, .btn-cornflowerblue:active, .btn-cornflowerblue.active,
.show > .btn-cornflowerblue.dropdown-toggle {
color: #000;
background-color: #83aaf1;
border-color: #74a0ef;
}
.btn-check:checked + .btn-cornflowerblue:focus,
.btn-check:active + .btn-cornflowerblue:focus, .btn-cornflowerblue:active:focus, .btn-cornflowerblue.active:focus,
.show > .btn-cornflowerblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(85, 127, 201, 0.5);
box-shadow: 0 0 0 0.25rem rgba(85, 127, 201, 0.5);
}
.btn-cornflowerblue:disabled, .btn-cornflowerblue.disabled {
color: #000;
background-color: #6495ED;
border-color: #6495ED;
}
.btn-cornsilk {
color: #000;
background-color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-cornsilk:hover {
color: #000;
background-color: #fff9e1;
border-color: #fff9e0;
}
.btn-check:focus + .btn-cornsilk, .btn-cornsilk:focus {
color: #000;
background-color: #fff9e1;
border-color: #fff9e0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 211, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 211, 187, 0.5);
}
.btn-check:checked + .btn-cornsilk,
.btn-check:active + .btn-cornsilk, .btn-cornsilk:active, .btn-cornsilk.active,
.show > .btn-cornsilk.dropdown-toggle {
color: #000;
background-color: #fff9e3;
border-color: #fff9e0;
}
.btn-check:checked + .btn-cornsilk:focus,
.btn-check:active + .btn-cornsilk:focus, .btn-cornsilk:active:focus, .btn-cornsilk.active:focus,
.show > .btn-cornsilk.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 211, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 211, 187, 0.5);
}
.btn-cornsilk:disabled, .btn-cornsilk.disabled {
color: #000;
background-color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-crimson {
color: #fff;
background-color: #DC143C;
border-color: #DC143C;
}
.btn-crimson:hover {
color: #fff;
background-color: #bb1133;
border-color: #b01030;
}
.btn-check:focus + .btn-crimson, .btn-crimson:focus {
color: #fff;
background-color: #bb1133;
border-color: #b01030;
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 55, 89, 0.5);
box-shadow: 0 0 0 0.25rem rgba(225, 55, 89, 0.5);
}
.btn-check:checked + .btn-crimson,
.btn-check:active + .btn-crimson, .btn-crimson:active, .btn-crimson.active,
.show > .btn-crimson.dropdown-toggle {
color: #fff;
background-color: #b01030;
border-color: #a50f2d;
}
.btn-check:checked + .btn-crimson:focus,
.btn-check:active + .btn-crimson:focus, .btn-crimson:active:focus, .btn-crimson.active:focus,
.show > .btn-crimson.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 55, 89, 0.5);
box-shadow: 0 0 0 0.25rem rgba(225, 55, 89, 0.5);
}
.btn-crimson:disabled, .btn-crimson.disabled {
color: #fff;
background-color: #DC143C;
border-color: #DC143C;
}
.btn-darkblue {
color: #fff;
background-color: #00008B;
border-color: #00008B;
}
.btn-darkblue:hover {
color: #fff;
background-color: #000076;
border-color: #00006f;
}
.btn-check:focus + .btn-darkblue, .btn-darkblue:focus {
color: #fff;
background-color: #000076;
border-color: #00006f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 156, 0.5);
}
.btn-check:checked + .btn-darkblue,
.btn-check:active + .btn-darkblue, .btn-darkblue:active, .btn-darkblue.active,
.show > .btn-darkblue.dropdown-toggle {
color: #fff;
background-color: #00006f;
border-color: #000068;
}
.btn-check:checked + .btn-darkblue:focus,
.btn-check:active + .btn-darkblue:focus, .btn-darkblue:active:focus, .btn-darkblue.active:focus,
.show > .btn-darkblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 156, 0.5);
}
.btn-darkblue:disabled, .btn-darkblue.disabled {
color: #fff;
background-color: #00008B;
border-color: #00008B;
}
.btn-darkcyan {
color: #000;
background-color: #008B8B;
border-color: #008B8B;
}
.btn-darkcyan:hover {
color: #000;
background-color: #269c9c;
border-color: #1a9797;
}
.btn-check:focus + .btn-darkcyan, .btn-darkcyan:focus {
color: #000;
background-color: #269c9c;
border-color: #1a9797;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 118, 118, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 118, 118, 0.5);
}
.btn-check:checked + .btn-darkcyan,
.btn-check:active + .btn-darkcyan, .btn-darkcyan:active, .btn-darkcyan.active,
.show > .btn-darkcyan.dropdown-toggle {
color: #000;
background-color: #33a2a2;
border-color: #1a9797;
}
.btn-check:checked + .btn-darkcyan:focus,
.btn-check:active + .btn-darkcyan:focus, .btn-darkcyan:active:focus, .btn-darkcyan.active:focus,
.show > .btn-darkcyan.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 118, 118, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 118, 118, 0.5);
}
.btn-darkcyan:disabled, .btn-darkcyan.disabled {
color: #000;
background-color: #008B8B;
border-color: #008B8B;
}
.btn-darkgoldenrod {
color: #000;
background-color: #B8860B;
border-color: #B8860B;
}
.btn-darkgoldenrod:hover {
color: #000;
background-color: #c39830;
border-color: #bf9223;
}
.btn-check:focus + .btn-darkgoldenrod, .btn-darkgoldenrod:focus {
color: #000;
background-color: #c39830;
border-color: #bf9223;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 114, 9, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 114, 9, 0.5);
}
.btn-check:checked + .btn-darkgoldenrod,
.btn-check:active + .btn-darkgoldenrod, .btn-darkgoldenrod:active, .btn-darkgoldenrod.active,
.show > .btn-darkgoldenrod.dropdown-toggle {
color: #000;
background-color: #c69e3c;
border-color: #bf9223;
}
.btn-check:checked + .btn-darkgoldenrod:focus,
.btn-check:active + .btn-darkgoldenrod:focus, .btn-darkgoldenrod:active:focus, .btn-darkgoldenrod.active:focus,
.show > .btn-darkgoldenrod.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 114, 9, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 114, 9, 0.5);
}
.btn-darkgoldenrod:disabled, .btn-darkgoldenrod.disabled {
color: #000;
background-color: #B8860B;
border-color: #B8860B;
}
.btn-darkgray {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-darkgray:hover {
color: #000;
background-color: #b6b6b6;
border-color: #b2b2b2;
}
.btn-check:focus + .btn-darkgray, .btn-darkgray:focus {
color: #000;
background-color: #b6b6b6;
border-color: #b2b2b2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
}
.btn-check:checked + .btn-darkgray,
.btn-check:active + .btn-darkgray, .btn-darkgray:active, .btn-darkgray.active,
.show > .btn-darkgray.dropdown-toggle {
color: #000;
background-color: #bababa;
border-color: #b2b2b2;
}
.btn-check:checked + .btn-darkgray:focus,
.btn-check:active + .btn-darkgray:focus, .btn-darkgray:active:focus, .btn-darkgray.active:focus,
.show > .btn-darkgray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
}
.btn-darkgray:disabled, .btn-darkgray.disabled {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-darkgreen {
color: #fff;
background-color: #006400;
border-color: #006400;
}
.btn-darkgreen:hover {
color: #fff;
background-color: #005500;
border-color: #005000;
}
.btn-check:focus + .btn-darkgreen, .btn-darkgreen:focus {
color: #fff;
background-color: #005500;
border-color: #005000;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 123, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 123, 38, 0.5);
}
.btn-check:checked + .btn-darkgreen,
.btn-check:active + .btn-darkgreen, .btn-darkgreen:active, .btn-darkgreen.active,
.show > .btn-darkgreen.dropdown-toggle {
color: #fff;
background-color: #005000;
border-color: #004b00;
}
.btn-check:checked + .btn-darkgreen:focus,
.btn-check:active + .btn-darkgreen:focus, .btn-darkgreen:active:focus, .btn-darkgreen.active:focus,
.show > .btn-darkgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 123, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 123, 38, 0.5);
}
.btn-darkgreen:disabled, .btn-darkgreen.disabled {
color: #fff;
background-color: #006400;
border-color: #006400;
}
.btn-darkgrey {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-darkgrey:hover {
color: #000;
background-color: #b6b6b6;
border-color: #b2b2b2;
}
.btn-check:focus + .btn-darkgrey, .btn-darkgrey:focus {
color: #000;
background-color: #b6b6b6;
border-color: #b2b2b2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
}
.btn-check:checked + .btn-darkgrey,
.btn-check:active + .btn-darkgrey, .btn-darkgrey:active, .btn-darkgrey.active,
.show > .btn-darkgrey.dropdown-toggle {
color: #000;
background-color: #bababa;
border-color: #b2b2b2;
}
.btn-check:checked + .btn-darkgrey:focus,
.btn-check:active + .btn-darkgrey:focus, .btn-darkgrey:active:focus, .btn-darkgrey.active:focus,
.show > .btn-darkgrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
}
.btn-darkgrey:disabled, .btn-darkgrey.disabled {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-darkkhaki {
color: #000;
background-color: #BDB76B;
border-color: #BDB76B;
}
.btn-darkkhaki:hover {
color: #000;
background-color: #c7c281;
border-color: #c4be7a;
}
.btn-check:focus + .btn-darkkhaki, .btn-darkkhaki:focus {
color: #000;
background-color: #c7c281;
border-color: #c4be7a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(161, 156, 91, 0.5);
box-shadow: 0 0 0 0.25rem rgba(161, 156, 91, 0.5);
}
.btn-check:checked + .btn-darkkhaki,
.btn-check:active + .btn-darkkhaki, .btn-darkkhaki:active, .btn-darkkhaki.active,
.show > .btn-darkkhaki.dropdown-toggle {
color: #000;
background-color: #cac589;
border-color: #c4be7a;
}
.btn-check:checked + .btn-darkkhaki:focus,
.btn-check:active + .btn-darkkhaki:focus, .btn-darkkhaki:active:focus, .btn-darkkhaki.active:focus,
.show > .btn-darkkhaki.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(161, 156, 91, 0.5);
box-shadow: 0 0 0 0.25rem rgba(161, 156, 91, 0.5);
}
.btn-darkkhaki:disabled, .btn-darkkhaki.disabled {
color: #000;
background-color: #BDB76B;
border-color: #BDB76B;
}
.btn-darkmagenta {
color: #fff;
background-color: #8B008B;
border-color: #8B008B;
}
.btn-darkmagenta:hover {
color: #fff;
background-color: #760076;
border-color: #6f006f;
}
.btn-check:focus + .btn-darkmagenta, .btn-darkmagenta:focus {
color: #fff;
background-color: #760076;
border-color: #6f006f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 38, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 38, 156, 0.5);
}
.btn-check:checked + .btn-darkmagenta,
.btn-check:active + .btn-darkmagenta, .btn-darkmagenta:active, .btn-darkmagenta.active,
.show > .btn-darkmagenta.dropdown-toggle {
color: #fff;
background-color: #6f006f;
border-color: #680068;
}
.btn-check:checked + .btn-darkmagenta:focus,
.btn-check:active + .btn-darkmagenta:focus, .btn-darkmagenta:active:focus, .btn-darkmagenta.active:focus,
.show > .btn-darkmagenta.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 38, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 38, 156, 0.5);
}
.btn-darkmagenta:disabled, .btn-darkmagenta.disabled {
color: #fff;
background-color: #8B008B;
border-color: #8B008B;
}
.btn-darkolivegreen {
color: #fff;
background-color: #556B2F;
border-color: #556B2F;
}
.btn-darkolivegreen:hover {
color: #fff;
background-color: #485b28;
border-color: #445626;
}
.btn-check:focus + .btn-darkolivegreen, .btn-darkolivegreen:focus {
color: #fff;
background-color: #485b28;
border-color: #445626;
-webkit-box-shadow: 0 0 0 0.25rem rgba(111, 129, 78, 0.5);
box-shadow: 0 0 0 0.25rem rgba(111, 129, 78, 0.5);
}
.btn-check:checked + .btn-darkolivegreen,
.btn-check:active + .btn-darkolivegreen, .btn-darkolivegreen:active, .btn-darkolivegreen.active,
.show > .btn-darkolivegreen.dropdown-toggle {
color: #fff;
background-color: #445626;
border-color: #405023;
}
.btn-check:checked + .btn-darkolivegreen:focus,
.btn-check:active + .btn-darkolivegreen:focus, .btn-darkolivegreen:active:focus, .btn-darkolivegreen.active:focus,
.show > .btn-darkolivegreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(111, 129, 78, 0.5);
box-shadow: 0 0 0 0.25rem rgba(111, 129, 78, 0.5);
}
.btn-darkolivegreen:disabled, .btn-darkolivegreen.disabled {
color: #fff;
background-color: #556B2F;
border-color: #556B2F;
}
.btn-darkorange {
color: #000;
background-color: #FF8C00;
border-color: #FF8C00;
}
.btn-darkorange:hover {
color: #000;
background-color: #ff9d26;
border-color: #ff981a;
}
.btn-check:focus + .btn-darkorange, .btn-darkorange:focus {
color: #000;
background-color: #ff9d26;
border-color: #ff981a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 119, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 119, 0, 0.5);
}
.btn-check:checked + .btn-darkorange,
.btn-check:active + .btn-darkorange, .btn-darkorange:active, .btn-darkorange.active,
.show > .btn-darkorange.dropdown-toggle {
color: #000;
background-color: #ffa333;
border-color: #ff981a;
}
.btn-check:checked + .btn-darkorange:focus,
.btn-check:active + .btn-darkorange:focus, .btn-darkorange:active:focus, .btn-darkorange.active:focus,
.show > .btn-darkorange.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 119, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 119, 0, 0.5);
}
.btn-darkorange:disabled, .btn-darkorange.disabled {
color: #000;
background-color: #FF8C00;
border-color: #FF8C00;
}
.btn-darkorchid {
color: #fff;
background-color: #9932CC;
border-color: #9932CC;
}
.btn-darkorchid:hover {
color: #fff;
background-color: #822bad;
border-color: #7a28a3;
}
.btn-check:focus + .btn-darkorchid, .btn-darkorchid:focus {
color: #fff;
background-color: #822bad;
border-color: #7a28a3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(168, 81, 212, 0.5);
box-shadow: 0 0 0 0.25rem rgba(168, 81, 212, 0.5);
}
.btn-check:checked + .btn-darkorchid,
.btn-check:active + .btn-darkorchid, .btn-darkorchid:active, .btn-darkorchid.active,
.show > .btn-darkorchid.dropdown-toggle {
color: #fff;
background-color: #7a28a3;
border-color: #732699;
}
.btn-check:checked + .btn-darkorchid:focus,
.btn-check:active + .btn-darkorchid:focus, .btn-darkorchid:active:focus, .btn-darkorchid.active:focus,
.show > .btn-darkorchid.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(168, 81, 212, 0.5);
box-shadow: 0 0 0 0.25rem rgba(168, 81, 212, 0.5);
}
.btn-darkorchid:disabled, .btn-darkorchid.disabled {
color: #fff;
background-color: #9932CC;
border-color: #9932CC;
}
.btn-darkred {
color: #fff;
background-color: #8B0000;
border-color: #8B0000;
}
.btn-darkred:hover {
color: #fff;
background-color: #760000;
border-color: #6f0000;
}
.btn-check:focus + .btn-darkred, .btn-darkred:focus {
color: #fff;
background-color: #760000;
border-color: #6f0000;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 38, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 38, 38, 0.5);
}
.btn-check:checked + .btn-darkred,
.btn-check:active + .btn-darkred, .btn-darkred:active, .btn-darkred.active,
.show > .btn-darkred.dropdown-toggle {
color: #fff;
background-color: #6f0000;
border-color: #680000;
}
.btn-check:checked + .btn-darkred:focus,
.btn-check:active + .btn-darkred:focus, .btn-darkred:active:focus, .btn-darkred.active:focus,
.show > .btn-darkred.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 38, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 38, 38, 0.5);
}
.btn-darkred:disabled, .btn-darkred.disabled {
color: #fff;
background-color: #8B0000;
border-color: #8B0000;
}
.btn-darksalmon {
color: #000;
background-color: #E9967A;
border-color: #E9967A;
}
.btn-darksalmon:hover {
color: #000;
background-color: #eca68e;
border-color: #eba187;
}
.btn-check:focus + .btn-darksalmon, .btn-darksalmon:focus {
color: #000;
background-color: #eca68e;
border-color: #eba187;
-webkit-box-shadow: 0 0 0 0.25rem rgba(198, 128, 104, 0.5);
box-shadow: 0 0 0 0.25rem rgba(198, 128, 104, 0.5);
}
.btn-check:checked + .btn-darksalmon,
.btn-check:active + .btn-darksalmon, .btn-darksalmon:active, .btn-darksalmon.active,
.show > .btn-darksalmon.dropdown-toggle {
color: #000;
background-color: #edab95;
border-color: #eba187;
}
.btn-check:checked + .btn-darksalmon:focus,
.btn-check:active + .btn-darksalmon:focus, .btn-darksalmon:active:focus, .btn-darksalmon.active:focus,
.show > .btn-darksalmon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(198, 128, 104, 0.5);
box-shadow: 0 0 0 0.25rem rgba(198, 128, 104, 0.5);
}
.btn-darksalmon:disabled, .btn-darksalmon.disabled {
color: #000;
background-color: #E9967A;
border-color: #E9967A;
}
.btn-darkseagreen {
color: #000;
background-color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-darkseagreen:hover {
color: #000;
background-color: #a0c6a0;
border-color: #9ac39a;
}
.btn-check:focus + .btn-darkseagreen, .btn-darkseagreen:focus {
color: #000;
background-color: #a0c6a0;
border-color: #9ac39a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(122, 160, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(122, 160, 122, 0.5);
}
.btn-check:checked + .btn-darkseagreen,
.btn-check:active + .btn-darkseagreen, .btn-darkseagreen:active, .btn-darkseagreen.active,
.show > .btn-darkseagreen.dropdown-toggle {
color: #000;
background-color: #a5c9a5;
border-color: #9ac39a;
}
.btn-check:checked + .btn-darkseagreen:focus,
.btn-check:active + .btn-darkseagreen:focus, .btn-darkseagreen:active:focus, .btn-darkseagreen.active:focus,
.show > .btn-darkseagreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(122, 160, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(122, 160, 122, 0.5);
}
.btn-darkseagreen:disabled, .btn-darkseagreen.disabled {
color: #000;
background-color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-darkslateblue {
color: #fff;
background-color: #483D8B;
border-color: #483D8B;
}
.btn-darkslateblue:hover {
color: #fff;
background-color: #3d3476;
border-color: #3a316f;
}
.btn-check:focus + .btn-darkslateblue, .btn-darkslateblue:focus {
color: #fff;
background-color: #3d3476;
border-color: #3a316f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(99, 90, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(99, 90, 156, 0.5);
}
.btn-check:checked + .btn-darkslateblue,
.btn-check:active + .btn-darkslateblue, .btn-darkslateblue:active, .btn-darkslateblue.active,
.show > .btn-darkslateblue.dropdown-toggle {
color: #fff;
background-color: #3a316f;
border-color: #362e68;
}
.btn-check:checked + .btn-darkslateblue:focus,
.btn-check:active + .btn-darkslateblue:focus, .btn-darkslateblue:active:focus, .btn-darkslateblue.active:focus,
.show > .btn-darkslateblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(99, 90, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(99, 90, 156, 0.5);
}
.btn-darkslateblue:disabled, .btn-darkslateblue.disabled {
color: #fff;
background-color: #483D8B;
border-color: #483D8B;
}
.btn-darkslategray {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-darkslategray:hover {
color: #fff;
background-color: #284343;
border-color: #263f3f;
}
.btn-check:focus + .btn-darkslategray, .btn-darkslategray:focus {
color: #fff;
background-color: #284343;
border-color: #263f3f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
}
.btn-check:checked + .btn-darkslategray,
.btn-check:active + .btn-darkslategray, .btn-darkslategray:active, .btn-darkslategray.active,
.show > .btn-darkslategray.dropdown-toggle {
color: #fff;
background-color: #263f3f;
border-color: #233b3b;
}
.btn-check:checked + .btn-darkslategray:focus,
.btn-check:active + .btn-darkslategray:focus, .btn-darkslategray:active:focus, .btn-darkslategray.active:focus,
.show > .btn-darkslategray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
}
.btn-darkslategray:disabled, .btn-darkslategray.disabled {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-darkslategrey {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-darkslategrey:hover {
color: #fff;
background-color: #284343;
border-color: #263f3f;
}
.btn-check:focus + .btn-darkslategrey, .btn-darkslategrey:focus {
color: #fff;
background-color: #284343;
border-color: #263f3f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
}
.btn-check:checked + .btn-darkslategrey,
.btn-check:active + .btn-darkslategrey, .btn-darkslategrey:active, .btn-darkslategrey.active,
.show > .btn-darkslategrey.dropdown-toggle {
color: #fff;
background-color: #263f3f;
border-color: #233b3b;
}
.btn-check:checked + .btn-darkslategrey:focus,
.btn-check:active + .btn-darkslategrey:focus, .btn-darkslategrey:active:focus, .btn-darkslategrey.active:focus,
.show > .btn-darkslategrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
}
.btn-darkslategrey:disabled, .btn-darkslategrey.disabled {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-darkturquoise {
color: #000;
background-color: #00CED1;
border-color: #00CED1;
}
.btn-darkturquoise:hover {
color: #000;
background-color: #26d5d8;
border-color: #1ad3d6;
}
.btn-check:focus + .btn-darkturquoise, .btn-darkturquoise:focus {
color: #000;
background-color: #26d5d8;
border-color: #1ad3d6;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 175, 178, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 175, 178, 0.5);
}
.btn-check:checked + .btn-darkturquoise,
.btn-check:active + .btn-darkturquoise, .btn-darkturquoise:active, .btn-darkturquoise.active,
.show > .btn-darkturquoise.dropdown-toggle {
color: #000;
background-color: #33d8da;
border-color: #1ad3d6;
}
.btn-check:checked + .btn-darkturquoise:focus,
.btn-check:active + .btn-darkturquoise:focus, .btn-darkturquoise:active:focus, .btn-darkturquoise.active:focus,
.show > .btn-darkturquoise.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 175, 178, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 175, 178, 0.5);
}
.btn-darkturquoise:disabled, .btn-darkturquoise.disabled {
color: #000;
background-color: #00CED1;
border-color: #00CED1;
}
.btn-darkviolet {
color: #fff;
background-color: #9400D3;
border-color: #9400D3;
}
.btn-darkviolet:hover {
color: #fff;
background-color: #7e00b3;
border-color: #7600a9;
}
.btn-check:focus + .btn-darkviolet, .btn-darkviolet:focus {
color: #fff;
background-color: #7e00b3;
border-color: #7600a9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(164, 38, 218, 0.5);
box-shadow: 0 0 0 0.25rem rgba(164, 38, 218, 0.5);
}
.btn-check:checked + .btn-darkviolet,
.btn-check:active + .btn-darkviolet, .btn-darkviolet:active, .btn-darkviolet.active,
.show > .btn-darkviolet.dropdown-toggle {
color: #fff;
background-color: #7600a9;
border-color: #6f009e;
}
.btn-check:checked + .btn-darkviolet:focus,
.btn-check:active + .btn-darkviolet:focus, .btn-darkviolet:active:focus, .btn-darkviolet.active:focus,
.show > .btn-darkviolet.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(164, 38, 218, 0.5);
box-shadow: 0 0 0 0.25rem rgba(164, 38, 218, 0.5);
}
.btn-darkviolet:disabled, .btn-darkviolet.disabled {
color: #fff;
background-color: #9400D3;
border-color: #9400D3;
}
.btn-deeppink {
color: #000;
background-color: #FF1493;
border-color: #FF1493;
}
.btn-deeppink:hover {
color: #000;
background-color: #ff37a3;
border-color: #ff2c9e;
}
.btn-check:focus + .btn-deeppink, .btn-deeppink:focus {
color: #000;
background-color: #ff37a3;
border-color: #ff2c9e;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 17, 125, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 17, 125, 0.5);
}
.btn-check:checked + .btn-deeppink,
.btn-check:active + .btn-deeppink, .btn-deeppink:active, .btn-deeppink.active,
.show > .btn-deeppink.dropdown-toggle {
color: #000;
background-color: #ff43a9;
border-color: #ff2c9e;
}
.btn-check:checked + .btn-deeppink:focus,
.btn-check:active + .btn-deeppink:focus, .btn-deeppink:active:focus, .btn-deeppink.active:focus,
.show > .btn-deeppink.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 17, 125, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 17, 125, 0.5);
}
.btn-deeppink:disabled, .btn-deeppink.disabled {
color: #000;
background-color: #FF1493;
border-color: #FF1493;
}
.btn-deepskyblue {
color: #000;
background-color: #00BFFF;
border-color: #00BFFF;
}
.btn-deepskyblue:hover {
color: #000;
background-color: #26c9ff;
border-color: #1ac5ff;
}
.btn-check:focus + .btn-deepskyblue, .btn-deepskyblue:focus {
color: #000;
background-color: #26c9ff;
border-color: #1ac5ff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 162, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 162, 217, 0.5);
}
.btn-check:checked + .btn-deepskyblue,
.btn-check:active + .btn-deepskyblue, .btn-deepskyblue:active, .btn-deepskyblue.active,
.show > .btn-deepskyblue.dropdown-toggle {
color: #000;
background-color: #33ccff;
border-color: #1ac5ff;
}
.btn-check:checked + .btn-deepskyblue:focus,
.btn-check:active + .btn-deepskyblue:focus, .btn-deepskyblue:active:focus, .btn-deepskyblue.active:focus,
.show > .btn-deepskyblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 162, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 162, 217, 0.5);
}
.btn-deepskyblue:disabled, .btn-deepskyblue.disabled {
color: #000;
background-color: #00BFFF;
border-color: #00BFFF;
}
.btn-dimgray {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-dimgray:hover {
color: #fff;
background-color: #595959;
border-color: #545454;
}
.btn-check:focus + .btn-dimgray, .btn-dimgray:focus {
color: #fff;
background-color: #595959;
border-color: #545454;
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-check:checked + .btn-dimgray,
.btn-check:active + .btn-dimgray, .btn-dimgray:active, .btn-dimgray.active,
.show > .btn-dimgray.dropdown-toggle {
color: #fff;
background-color: #545454;
border-color: #4f4f4f;
}
.btn-check:checked + .btn-dimgray:focus,
.btn-check:active + .btn-dimgray:focus, .btn-dimgray:active:focus, .btn-dimgray.active:focus,
.show > .btn-dimgray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-dimgray:disabled, .btn-dimgray.disabled {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-dimgrey {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-dimgrey:hover {
color: #fff;
background-color: #595959;
border-color: #545454;
}
.btn-check:focus + .btn-dimgrey, .btn-dimgrey:focus {
color: #fff;
background-color: #595959;
border-color: #545454;
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-check:checked + .btn-dimgrey,
.btn-check:active + .btn-dimgrey, .btn-dimgrey:active, .btn-dimgrey.active,
.show > .btn-dimgrey.dropdown-toggle {
color: #fff;
background-color: #545454;
border-color: #4f4f4f;
}
.btn-check:checked + .btn-dimgrey:focus,
.btn-check:active + .btn-dimgrey:focus, .btn-dimgrey:active:focus, .btn-dimgrey.active:focus,
.show > .btn-dimgrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-dimgrey:disabled, .btn-dimgrey.disabled {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-dodgerblue {
color: #000;
background-color: #1E90FF;
border-color: #1E90FF;
}
.btn-dodgerblue:hover {
color: #000;
background-color: #40a1ff;
border-color: #359bff;
}
.btn-check:focus + .btn-dodgerblue, .btn-dodgerblue:focus {
color: #000;
background-color: #40a1ff;
border-color: #359bff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(26, 122, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(26, 122, 217, 0.5);
}
.btn-check:checked + .btn-dodgerblue,
.btn-check:active + .btn-dodgerblue, .btn-dodgerblue:active, .btn-dodgerblue.active,
.show > .btn-dodgerblue.dropdown-toggle {
color: #000;
background-color: #4ba6ff;
border-color: #359bff;
}
.btn-check:checked + .btn-dodgerblue:focus,
.btn-check:active + .btn-dodgerblue:focus, .btn-dodgerblue:active:focus, .btn-dodgerblue.active:focus,
.show > .btn-dodgerblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(26, 122, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(26, 122, 217, 0.5);
}
.btn-dodgerblue:disabled, .btn-dodgerblue.disabled {
color: #000;
background-color: #1E90FF;
border-color: #1E90FF;
}
.btn-firebrick {
color: #fff;
background-color: #B22222;
border-color: #B22222;
}
.btn-firebrick:hover {
color: #fff;
background-color: #971d1d;
border-color: #8e1b1b;
}
.btn-check:focus + .btn-firebrick, .btn-firebrick:focus {
color: #fff;
background-color: #971d1d;
border-color: #8e1b1b;
-webkit-box-shadow: 0 0 0 0.25rem rgba(190, 67, 67, 0.5);
box-shadow: 0 0 0 0.25rem rgba(190, 67, 67, 0.5);
}
.btn-check:checked + .btn-firebrick,
.btn-check:active + .btn-firebrick, .btn-firebrick:active, .btn-firebrick.active,
.show > .btn-firebrick.dropdown-toggle {
color: #fff;
background-color: #8e1b1b;
border-color: #861a1a;
}
.btn-check:checked + .btn-firebrick:focus,
.btn-check:active + .btn-firebrick:focus, .btn-firebrick:active:focus, .btn-firebrick.active:focus,
.show > .btn-firebrick.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(190, 67, 67, 0.5);
box-shadow: 0 0 0 0.25rem rgba(190, 67, 67, 0.5);
}
.btn-firebrick:disabled, .btn-firebrick.disabled {
color: #fff;
background-color: #B22222;
border-color: #B22222;
}
.btn-floralwhite {
color: #000;
background-color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-floralwhite:hover {
color: #000;
background-color: #fffbf2;
border-color: #fffbf2;
}
.btn-check:focus + .btn-floralwhite, .btn-floralwhite:focus {
color: #000;
background-color: #fffbf2;
border-color: #fffbf2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 204, 0.5);
}
.btn-check:checked + .btn-floralwhite,
.btn-check:active + .btn-floralwhite, .btn-floralwhite:active, .btn-floralwhite.active,
.show > .btn-floralwhite.dropdown-toggle {
color: #000;
background-color: #fffbf3;
border-color: #fffbf2;
}
.btn-check:checked + .btn-floralwhite:focus,
.btn-check:active + .btn-floralwhite:focus, .btn-floralwhite:active:focus, .btn-floralwhite.active:focus,
.show > .btn-floralwhite.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 204, 0.5);
}
.btn-floralwhite:disabled, .btn-floralwhite.disabled {
color: #000;
background-color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-forestgreen {
color: #000;
background-color: #228B22;
border-color: #228B22;
}
.btn-forestgreen:hover {
color: #000;
background-color: #439c43;
border-color: #389738;
}
.btn-check:focus + .btn-forestgreen, .btn-forestgreen:focus {
color: #000;
background-color: #439c43;
border-color: #389738;
-webkit-box-shadow: 0 0 0 0.25rem rgba(29, 118, 29, 0.5);
box-shadow: 0 0 0 0.25rem rgba(29, 118, 29, 0.5);
}
.btn-check:checked + .btn-forestgreen,
.btn-check:active + .btn-forestgreen, .btn-forestgreen:active, .btn-forestgreen.active,
.show > .btn-forestgreen.dropdown-toggle {
color: #000;
background-color: #4ea24e;
border-color: #389738;
}
.btn-check:checked + .btn-forestgreen:focus,
.btn-check:active + .btn-forestgreen:focus, .btn-forestgreen:active:focus, .btn-forestgreen.active:focus,
.show > .btn-forestgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(29, 118, 29, 0.5);
box-shadow: 0 0 0 0.25rem rgba(29, 118, 29, 0.5);
}
.btn-forestgreen:disabled, .btn-forestgreen.disabled {
color: #000;
background-color: #228B22;
border-color: #228B22;
}
.btn-fuchsia {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-fuchsia:hover {
color: #000;
background-color: #ff26ff;
border-color: #ff1aff;
}
.btn-check:focus + .btn-fuchsia, .btn-fuchsia:focus {
color: #000;
background-color: #ff26ff;
border-color: #ff1aff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
}
.btn-check:checked + .btn-fuchsia,
.btn-check:active + .btn-fuchsia, .btn-fuchsia:active, .btn-fuchsia.active,
.show > .btn-fuchsia.dropdown-toggle {
color: #000;
background-color: #ff33ff;
border-color: #ff1aff;
}
.btn-check:checked + .btn-fuchsia:focus,
.btn-check:active + .btn-fuchsia:focus, .btn-fuchsia:active:focus, .btn-fuchsia.active:focus,
.show > .btn-fuchsia.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
}
.btn-fuchsia:disabled, .btn-fuchsia.disabled {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-gainsboro {
color: #000;
background-color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-gainsboro:hover {
color: #000;
background-color: #e1e1e1;
border-color: #e0e0e0;
}
.btn-check:focus + .btn-gainsboro, .btn-gainsboro:focus {
color: #000;
background-color: #e1e1e1;
border-color: #e0e0e0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(187, 187, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(187, 187, 187, 0.5);
}
.btn-check:checked + .btn-gainsboro,
.btn-check:active + .btn-gainsboro, .btn-gainsboro:active, .btn-gainsboro.active,
.show > .btn-gainsboro.dropdown-toggle {
color: #000;
background-color: #e3e3e3;
border-color: #e0e0e0;
}
.btn-check:checked + .btn-gainsboro:focus,
.btn-check:active + .btn-gainsboro:focus, .btn-gainsboro:active:focus, .btn-gainsboro.active:focus,
.show > .btn-gainsboro.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(187, 187, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(187, 187, 187, 0.5);
}
.btn-gainsboro:disabled, .btn-gainsboro.disabled {
color: #000;
background-color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-ghostwhite {
color: #000;
background-color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-ghostwhite:hover {
color: #000;
background-color: #f9f9ff;
border-color: #f9f9ff;
}
.btn-check:focus + .btn-ghostwhite, .btn-ghostwhite:focus {
color: #000;
background-color: #f9f9ff;
border-color: #f9f9ff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 217, 0.5);
}
.btn-check:checked + .btn-ghostwhite,
.btn-check:active + .btn-ghostwhite, .btn-ghostwhite:active, .btn-ghostwhite.active,
.show > .btn-ghostwhite.dropdown-toggle {
color: #000;
background-color: #f9f9ff;
border-color: #f9f9ff;
}
.btn-check:checked + .btn-ghostwhite:focus,
.btn-check:active + .btn-ghostwhite:focus, .btn-ghostwhite:active:focus, .btn-ghostwhite.active:focus,
.show > .btn-ghostwhite.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 217, 0.5);
}
.btn-ghostwhite:disabled, .btn-ghostwhite.disabled {
color: #000;
background-color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-gold {
color: #000;
background-color: #FFD700;
border-color: #FFD700;
}
.btn-gold:hover {
color: #000;
background-color: #ffdd26;
border-color: #ffdb1a;
}
.btn-check:focus + .btn-gold, .btn-gold:focus {
color: #000;
background-color: #ffdd26;
border-color: #ffdb1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 183, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 183, 0, 0.5);
}
.btn-check:checked + .btn-gold,
.btn-check:active + .btn-gold, .btn-gold:active, .btn-gold.active,
.show > .btn-gold.dropdown-toggle {
color: #000;
background-color: #ffdf33;
border-color: #ffdb1a;
}
.btn-check:checked + .btn-gold:focus,
.btn-check:active + .btn-gold:focus, .btn-gold:active:focus, .btn-gold.active:focus,
.show > .btn-gold.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 183, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 183, 0, 0.5);
}
.btn-gold:disabled, .btn-gold.disabled {
color: #000;
background-color: #FFD700;
border-color: #FFD700;
}
.btn-goldenrod {
color: #000;
background-color: #DAA520;
border-color: #DAA520;
}
.btn-goldenrod:hover {
color: #000;
background-color: #e0b341;
border-color: #deae36;
}
.btn-check:focus + .btn-goldenrod, .btn-goldenrod:focus {
color: #000;
background-color: #e0b341;
border-color: #deae36;
-webkit-box-shadow: 0 0 0 0.25rem rgba(185, 140, 27, 0.5);
box-shadow: 0 0 0 0.25rem rgba(185, 140, 27, 0.5);
}
.btn-check:checked + .btn-goldenrod,
.btn-check:active + .btn-goldenrod, .btn-goldenrod:active, .btn-goldenrod.active,
.show > .btn-goldenrod.dropdown-toggle {
color: #000;
background-color: #e1b74d;
border-color: #deae36;
}
.btn-check:checked + .btn-goldenrod:focus,
.btn-check:active + .btn-goldenrod:focus, .btn-goldenrod:active:focus, .btn-goldenrod.active:focus,
.show > .btn-goldenrod.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(185, 140, 27, 0.5);
box-shadow: 0 0 0 0.25rem rgba(185, 140, 27, 0.5);
}
.btn-goldenrod:disabled, .btn-goldenrod.disabled {
color: #000;
background-color: #DAA520;
border-color: #DAA520;
}
.btn-greenyellow {
color: #000;
background-color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-greenyellow:hover {
color: #000;
background-color: #b9ff4e;
border-color: #b5ff44;
}
.btn-check:focus + .btn-greenyellow, .btn-greenyellow:focus {
color: #000;
background-color: #b9ff4e;
border-color: #b5ff44;
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 217, 40, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 217, 40, 0.5);
}
.btn-check:checked + .btn-greenyellow,
.btn-check:active + .btn-greenyellow, .btn-greenyellow:active, .btn-greenyellow.active,
.show > .btn-greenyellow.dropdown-toggle {
color: #000;
background-color: #bdff59;
border-color: #b5ff44;
}
.btn-check:checked + .btn-greenyellow:focus,
.btn-check:active + .btn-greenyellow:focus, .btn-greenyellow:active:focus, .btn-greenyellow.active:focus,
.show > .btn-greenyellow.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 217, 40, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 217, 40, 0.5);
}
.btn-greenyellow:disabled, .btn-greenyellow.disabled {
color: #000;
background-color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-grey {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-grey:hover {
color: #000;
background-color: #939393;
border-color: #8d8d8d;
}
.btn-check:focus + .btn-grey, .btn-grey:focus {
color: #000;
background-color: #939393;
border-color: #8d8d8d;
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
}
.btn-check:checked + .btn-grey,
.btn-check:active + .btn-grey, .btn-grey:active, .btn-grey.active,
.show > .btn-grey.dropdown-toggle {
color: #000;
background-color: #999999;
border-color: #8d8d8d;
}
.btn-check:checked + .btn-grey:focus,
.btn-check:active + .btn-grey:focus, .btn-grey:active:focus, .btn-grey.active:focus,
.show > .btn-grey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
}
.btn-grey:disabled, .btn-grey.disabled {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-honeydew {
color: #000;
background-color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-honeydew:hover {
color: #000;
background-color: #f2fff2;
border-color: #f2fff2;
}
.btn-check:focus + .btn-honeydew, .btn-honeydew:focus {
color: #000;
background-color: #f2fff2;
border-color: #f2fff2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 217, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 217, 204, 0.5);
}
.btn-check:checked + .btn-honeydew,
.btn-check:active + .btn-honeydew, .btn-honeydew:active, .btn-honeydew.active,
.show > .btn-honeydew.dropdown-toggle {
color: #000;
background-color: #f3fff3;
border-color: #f2fff2;
}
.btn-check:checked + .btn-honeydew:focus,
.btn-check:active + .btn-honeydew:focus, .btn-honeydew:active:focus, .btn-honeydew.active:focus,
.show > .btn-honeydew.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 217, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 217, 204, 0.5);
}
.btn-honeydew:disabled, .btn-honeydew.disabled {
color: #000;
background-color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-hotpink {
color: #000;
background-color: #FF69B4;
border-color: #FF69B4;
}
.btn-hotpink:hover {
color: #000;
background-color: #ff80bf;
border-color: #ff78bc;
}
.btn-check:focus + .btn-hotpink, .btn-hotpink:focus {
color: #000;
background-color: #ff80bf;
border-color: #ff78bc;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 89, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 89, 153, 0.5);
}
.btn-check:checked + .btn-hotpink,
.btn-check:active + .btn-hotpink, .btn-hotpink:active, .btn-hotpink.active,
.show > .btn-hotpink.dropdown-toggle {
color: #000;
background-color: #ff87c3;
border-color: #ff78bc;
}
.btn-check:checked + .btn-hotpink:focus,
.btn-check:active + .btn-hotpink:focus, .btn-hotpink:active:focus, .btn-hotpink.active:focus,
.show > .btn-hotpink.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 89, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 89, 153, 0.5);
}
.btn-hotpink:disabled, .btn-hotpink.disabled {
color: #000;
background-color: #FF69B4;
border-color: #FF69B4;
}
.btn-indianred {
color: #000;
background-color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-indianred:hover {
color: #000;
background-color: #d57474;
border-color: #d26c6c;
}
.btn-check:focus + .btn-indianred, .btn-indianred:focus {
color: #000;
background-color: #d57474;
border-color: #d26c6c;
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 78, 78, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 78, 78, 0.5);
}
.btn-check:checked + .btn-indianred,
.btn-check:active + .btn-indianred, .btn-indianred:active, .btn-indianred.active,
.show > .btn-indianred.dropdown-toggle {
color: #000;
background-color: #d77d7d;
border-color: #d26c6c;
}
.btn-check:checked + .btn-indianred:focus,
.btn-check:active + .btn-indianred:focus, .btn-indianred:active:focus, .btn-indianred.active:focus,
.show > .btn-indianred.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 78, 78, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 78, 78, 0.5);
}
.btn-indianred:disabled, .btn-indianred.disabled {
color: #000;
background-color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-ivory {
color: #000;
background-color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-ivory:hover {
color: #000;
background-color: #fffff2;
border-color: #fffff2;
}
.btn-check:focus + .btn-ivory, .btn-ivory:focus {
color: #000;
background-color: #fffff2;
border-color: #fffff2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 217, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 217, 204, 0.5);
}
.btn-check:checked + .btn-ivory,
.btn-check:active + .btn-ivory, .btn-ivory:active, .btn-ivory.active,
.show > .btn-ivory.dropdown-toggle {
color: #000;
background-color: #fffff3;
border-color: #fffff2;
}
.btn-check:checked + .btn-ivory:focus,
.btn-check:active + .btn-ivory:focus, .btn-ivory:active:focus, .btn-ivory.active:focus,
.show > .btn-ivory.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 217, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 217, 204, 0.5);
}
.btn-ivory:disabled, .btn-ivory.disabled {
color: #000;
background-color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-khaki {
color: #000;
background-color: #F0E68C;
border-color: #F0E68C;
}
.btn-khaki:hover {
color: #000;
background-color: #f2ea9d;
border-color: #f2e998;
}
.btn-check:focus + .btn-khaki, .btn-khaki:focus {
color: #000;
background-color: #f2ea9d;
border-color: #f2e998;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 196, 119, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 196, 119, 0.5);
}
.btn-check:checked + .btn-khaki,
.btn-check:active + .btn-khaki, .btn-khaki:active, .btn-khaki.active,
.show > .btn-khaki.dropdown-toggle {
color: #000;
background-color: #f3eba3;
border-color: #f2e998;
}
.btn-check:checked + .btn-khaki:focus,
.btn-check:active + .btn-khaki:focus, .btn-khaki:active:focus, .btn-khaki.active:focus,
.show > .btn-khaki.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 196, 119, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 196, 119, 0.5);
}
.btn-khaki:disabled, .btn-khaki.disabled {
color: #000;
background-color: #F0E68C;
border-color: #F0E68C;
}
.btn-lavender {
color: #000;
background-color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-lavender:hover {
color: #000;
background-color: #eaeafb;
border-color: #e9e9fb;
}
.btn-check:focus + .btn-lavender, .btn-lavender:focus {
color: #000;
background-color: #eaeafb;
border-color: #e9e9fb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(196, 196, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(196, 196, 213, 0.5);
}
.btn-check:checked + .btn-lavender,
.btn-check:active + .btn-lavender, .btn-lavender:active, .btn-lavender.active,
.show > .btn-lavender.dropdown-toggle {
color: #000;
background-color: #ebebfb;
border-color: #e9e9fb;
}
.btn-check:checked + .btn-lavender:focus,
.btn-check:active + .btn-lavender:focus, .btn-lavender:active:focus, .btn-lavender.active:focus,
.show > .btn-lavender.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(196, 196, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(196, 196, 213, 0.5);
}
.btn-lavender:disabled, .btn-lavender.disabled {
color: #000;
background-color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-lavenderblush {
color: #000;
background-color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-lavenderblush:hover {
color: #000;
background-color: #fff2f7;
border-color: #fff2f6;
}
.btn-check:focus + .btn-lavenderblush, .btn-lavenderblush:focus {
color: #000;
background-color: #fff2f7;
border-color: #fff2f6;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 204, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 204, 208, 0.5);
}
.btn-check:checked + .btn-lavenderblush,
.btn-check:active + .btn-lavenderblush, .btn-lavenderblush:active, .btn-lavenderblush.active,
.show > .btn-lavenderblush.dropdown-toggle {
color: #000;
background-color: #fff3f7;
border-color: #fff2f6;
}
.btn-check:checked + .btn-lavenderblush:focus,
.btn-check:active + .btn-lavenderblush:focus, .btn-lavenderblush:active:focus, .btn-lavenderblush.active:focus,
.show > .btn-lavenderblush.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 204, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 204, 208, 0.5);
}
.btn-lavenderblush:disabled, .btn-lavenderblush.disabled {
color: #000;
background-color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-lawngreen {
color: #000;
background-color: #7CFC00;
border-color: #7CFC00;
}
.btn-lawngreen:hover {
color: #000;
background-color: #90fc26;
border-color: #89fc1a;
}
.btn-check:focus + .btn-lawngreen, .btn-lawngreen:focus {
color: #000;
background-color: #90fc26;
border-color: #89fc1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 214, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 214, 0, 0.5);
}
.btn-check:checked + .btn-lawngreen,
.btn-check:active + .btn-lawngreen, .btn-lawngreen:active, .btn-lawngreen.active,
.show > .btn-lawngreen.dropdown-toggle {
color: #000;
background-color: #96fd33;
border-color: #89fc1a;
}
.btn-check:checked + .btn-lawngreen:focus,
.btn-check:active + .btn-lawngreen:focus, .btn-lawngreen:active:focus, .btn-lawngreen.active:focus,
.show > .btn-lawngreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 214, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 214, 0, 0.5);
}
.btn-lawngreen:disabled, .btn-lawngreen.disabled {
color: #000;
background-color: #7CFC00;
border-color: #7CFC00;
}
.btn-lemonchiffon {
color: #000;
background-color: #FFFACD;
border-color: #FFFACD;
}
.btn-lemonchiffon:hover {
color: #000;
background-color: #fffbd5;
border-color: #fffbd2;
}
.btn-check:focus + .btn-lemonchiffon, .btn-lemonchiffon:focus {
color: #000;
background-color: #fffbd5;
border-color: #fffbd2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 174, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 174, 0.5);
}
.btn-check:checked + .btn-lemonchiffon,
.btn-check:active + .btn-lemonchiffon, .btn-lemonchiffon:active, .btn-lemonchiffon.active,
.show > .btn-lemonchiffon.dropdown-toggle {
color: #000;
background-color: #fffbd7;
border-color: #fffbd2;
}
.btn-check:checked + .btn-lemonchiffon:focus,
.btn-check:active + .btn-lemonchiffon:focus, .btn-lemonchiffon:active:focus, .btn-lemonchiffon.active:focus,
.show > .btn-lemonchiffon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 174, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 174, 0.5);
}
.btn-lemonchiffon:disabled, .btn-lemonchiffon.disabled {
color: #000;
background-color: #FFFACD;
border-color: #FFFACD;
}
.btn-lightblue {
color: #000;
background-color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-lightblue:hover {
color: #000;
background-color: #b9deea;
border-color: #b5dce9;
}
.btn-check:focus + .btn-lightblue, .btn-lightblue:focus {
color: #000;
background-color: #b9deea;
border-color: #b5dce9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 184, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 184, 196, 0.5);
}
.btn-check:checked + .btn-lightblue,
.btn-check:active + .btn-lightblue, .btn-lightblue:active, .btn-lightblue.active,
.show > .btn-lightblue.dropdown-toggle {
color: #000;
background-color: #bde0eb;
border-color: #b5dce9;
}
.btn-check:checked + .btn-lightblue:focus,
.btn-check:active + .btn-lightblue:focus, .btn-lightblue:active:focus, .btn-lightblue.active:focus,
.show > .btn-lightblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 184, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 184, 196, 0.5);
}
.btn-lightblue:disabled, .btn-lightblue.disabled {
color: #000;
background-color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-lightcoral {
color: #000;
background-color: #F08080;
border-color: #F08080;
}
.btn-lightcoral:hover {
color: #000;
background-color: #f29393;
border-color: #f28d8d;
}
.btn-check:focus + .btn-lightcoral, .btn-lightcoral:focus {
color: #000;
background-color: #f29393;
border-color: #f28d8d;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 109, 109, 0.5);
}
.btn-check:checked + .btn-lightcoral,
.btn-check:active + .btn-lightcoral, .btn-lightcoral:active, .btn-lightcoral.active,
.show > .btn-lightcoral.dropdown-toggle {
color: #000;
background-color: #f39999;
border-color: #f28d8d;
}
.btn-check:checked + .btn-lightcoral:focus,
.btn-check:active + .btn-lightcoral:focus, .btn-lightcoral:active:focus, .btn-lightcoral.active:focus,
.show > .btn-lightcoral.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 109, 109, 0.5);
}
.btn-lightcoral:disabled, .btn-lightcoral.disabled {
color: #000;
background-color: #F08080;
border-color: #F08080;
}
.btn-lightcyan {
color: #000;
background-color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-lightcyan:hover {
color: #000;
background-color: #e5ffff;
border-color: #e3ffff;
}
.btn-check:focus + .btn-lightcyan, .btn-lightcyan:focus {
color: #000;
background-color: #e5ffff;
border-color: #e3ffff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(190, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(190, 217, 217, 0.5);
}
.btn-check:checked + .btn-lightcyan,
.btn-check:active + .btn-lightcyan, .btn-lightcyan:active, .btn-lightcyan.active,
.show > .btn-lightcyan.dropdown-toggle {
color: #000;
background-color: #e6ffff;
border-color: #e3ffff;
}
.btn-check:checked + .btn-lightcyan:focus,
.btn-check:active + .btn-lightcyan:focus, .btn-lightcyan:active:focus, .btn-lightcyan.active:focus,
.show > .btn-lightcyan.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(190, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(190, 217, 217, 0.5);
}
.btn-lightcyan:disabled, .btn-lightcyan.disabled {
color: #000;
background-color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-lightgoldenrodyellow {
color: #000;
background-color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-lightgoldenrodyellow:hover {
color: #000;
background-color: #fbfbd9;
border-color: #fbfbd7;
}
.btn-check:focus + .btn-lightgoldenrodyellow, .btn-lightgoldenrodyellow:focus {
color: #000;
background-color: #fbfbd9;
border-color: #fbfbd7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 213, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 213, 179, 0.5);
}
.btn-check:checked + .btn-lightgoldenrodyellow,
.btn-check:active + .btn-lightgoldenrodyellow, .btn-lightgoldenrodyellow:active, .btn-lightgoldenrodyellow.active,
.show > .btn-lightgoldenrodyellow.dropdown-toggle {
color: #000;
background-color: #fbfbdb;
border-color: #fbfbd7;
}
.btn-check:checked + .btn-lightgoldenrodyellow:focus,
.btn-check:active + .btn-lightgoldenrodyellow:focus, .btn-lightgoldenrodyellow:active:focus, .btn-lightgoldenrodyellow.active:focus,
.show > .btn-lightgoldenrodyellow.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 213, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 213, 179, 0.5);
}
.btn-lightgoldenrodyellow:disabled, .btn-lightgoldenrodyellow.disabled {
color: #000;
background-color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-lightgray {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-lightgray:hover {
color: #000;
background-color: #dadada;
border-color: #d7d7d7;
}
.btn-check:focus + .btn-lightgray, .btn-lightgray:focus {
color: #000;
background-color: #dadada;
border-color: #d7d7d7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
}
.btn-check:checked + .btn-lightgray,
.btn-check:active + .btn-lightgray, .btn-lightgray:active, .btn-lightgray.active,
.show > .btn-lightgray.dropdown-toggle {
color: #000;
background-color: gainsboro;
border-color: #d7d7d7;
}
.btn-check:checked + .btn-lightgray:focus,
.btn-check:active + .btn-lightgray:focus, .btn-lightgray:active:focus, .btn-lightgray.active:focus,
.show > .btn-lightgray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
}
.btn-lightgray:disabled, .btn-lightgray.disabled {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-lightgreen {
color: #000;
background-color: #90EE90;
border-color: #90EE90;
}
.btn-lightgreen:hover {
color: #000;
background-color: #a1f1a1;
border-color: #9bf09b;
}
.btn-check:focus + .btn-lightgreen, .btn-lightgreen:focus {
color: #000;
background-color: #a1f1a1;
border-color: #9bf09b;
-webkit-box-shadow: 0 0 0 0.25rem rgba(122, 202, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(122, 202, 122, 0.5);
}
.btn-check:checked + .btn-lightgreen,
.btn-check:active + .btn-lightgreen, .btn-lightgreen:active, .btn-lightgreen.active,
.show > .btn-lightgreen.dropdown-toggle {
color: #000;
background-color: #a6f1a6;
border-color: #9bf09b;
}
.btn-check:checked + .btn-lightgreen:focus,
.btn-check:active + .btn-lightgreen:focus, .btn-lightgreen:active:focus, .btn-lightgreen.active:focus,
.show > .btn-lightgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(122, 202, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(122, 202, 122, 0.5);
}
.btn-lightgreen:disabled, .btn-lightgreen.disabled {
color: #000;
background-color: #90EE90;
border-color: #90EE90;
}
.btn-lightgrey {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-lightgrey:hover {
color: #000;
background-color: #dadada;
border-color: #d7d7d7;
}
.btn-check:focus + .btn-lightgrey, .btn-lightgrey:focus {
color: #000;
background-color: #dadada;
border-color: #d7d7d7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
}
.btn-check:checked + .btn-lightgrey,
.btn-check:active + .btn-lightgrey, .btn-lightgrey:active, .btn-lightgrey.active,
.show > .btn-lightgrey.dropdown-toggle {
color: #000;
background-color: gainsboro;
border-color: #d7d7d7;
}
.btn-check:checked + .btn-lightgrey:focus,
.btn-check:active + .btn-lightgrey:focus, .btn-lightgrey:active:focus, .btn-lightgrey.active:focus,
.show > .btn-lightgrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
}
.btn-lightgrey:disabled, .btn-lightgrey.disabled {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-lightpink {
color: #000;
background-color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-lightpink:hover {
color: #000;
background-color: #ffc1ca;
border-color: #ffbdc7;
}
.btn-check:focus + .btn-lightpink, .btn-lightpink:focus {
color: #000;
background-color: #ffc1ca;
border-color: #ffbdc7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 155, 164, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 155, 164, 0.5);
}
.btn-check:checked + .btn-lightpink,
.btn-check:active + .btn-lightpink, .btn-lightpink:active, .btn-lightpink.active,
.show > .btn-lightpink.dropdown-toggle {
color: #000;
background-color: #ffc5cd;
border-color: #ffbdc7;
}
.btn-check:checked + .btn-lightpink:focus,
.btn-check:active + .btn-lightpink:focus, .btn-lightpink:active:focus, .btn-lightpink.active:focus,
.show > .btn-lightpink.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 155, 164, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 155, 164, 0.5);
}
.btn-lightpink:disabled, .btn-lightpink.disabled {
color: #000;
background-color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-lightsalmon {
color: #000;
background-color: #FFA07A;
border-color: #FFA07A;
}
.btn-lightsalmon:hover {
color: #000;
background-color: #ffae8e;
border-color: #ffaa87;
}
.btn-check:focus + .btn-lightsalmon, .btn-lightsalmon:focus {
color: #000;
background-color: #ffae8e;
border-color: #ffaa87;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 136, 104, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 136, 104, 0.5);
}
.btn-check:checked + .btn-lightsalmon,
.btn-check:active + .btn-lightsalmon, .btn-lightsalmon:active, .btn-lightsalmon.active,
.show > .btn-lightsalmon.dropdown-toggle {
color: #000;
background-color: #ffb395;
border-color: #ffaa87;
}
.btn-check:checked + .btn-lightsalmon:focus,
.btn-check:active + .btn-lightsalmon:focus, .btn-lightsalmon:active:focus, .btn-lightsalmon.active:focus,
.show > .btn-lightsalmon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 136, 104, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 136, 104, 0.5);
}
.btn-lightsalmon:disabled, .btn-lightsalmon.disabled {
color: #000;
background-color: #FFA07A;
border-color: #FFA07A;
}
.btn-lightseagreen {
color: #000;
background-color: #20B2AA;
border-color: #20B2AA;
}
.btn-lightseagreen:hover {
color: #000;
background-color: #41beb7;
border-color: #36bab3;
}
.btn-check:focus + .btn-lightseagreen, .btn-lightseagreen:focus {
color: #000;
background-color: #41beb7;
border-color: #36bab3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(27, 151, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(27, 151, 145, 0.5);
}
.btn-check:checked + .btn-lightseagreen,
.btn-check:active + .btn-lightseagreen, .btn-lightseagreen:active, .btn-lightseagreen.active,
.show > .btn-lightseagreen.dropdown-toggle {
color: #000;
background-color: #4dc1bb;
border-color: #36bab3;
}
.btn-check:checked + .btn-lightseagreen:focus,
.btn-check:active + .btn-lightseagreen:focus, .btn-lightseagreen:active:focus, .btn-lightseagreen.active:focus,
.show > .btn-lightseagreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(27, 151, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(27, 151, 145, 0.5);
}
.btn-lightseagreen:disabled, .btn-lightseagreen.disabled {
color: #000;
background-color: #20B2AA;
border-color: #20B2AA;
}
.btn-lightskyblue {
color: #000;
background-color: #87CEFA;
border-color: #87CEFA;
}
.btn-lightskyblue:hover {
color: #000;
background-color: #99d5fb;
border-color: #93d3fb;
}
.btn-check:focus + .btn-lightskyblue, .btn-lightskyblue:focus {
color: #000;
background-color: #99d5fb;
border-color: #93d3fb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(115, 175, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(115, 175, 213, 0.5);
}
.btn-check:checked + .btn-lightskyblue,
.btn-check:active + .btn-lightskyblue, .btn-lightskyblue:active, .btn-lightskyblue.active,
.show > .btn-lightskyblue.dropdown-toggle {
color: #000;
background-color: #9fd8fb;
border-color: #93d3fb;
}
.btn-check:checked + .btn-lightskyblue:focus,
.btn-check:active + .btn-lightskyblue:focus, .btn-lightskyblue:active:focus, .btn-lightskyblue.active:focus,
.show > .btn-lightskyblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(115, 175, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(115, 175, 213, 0.5);
}
.btn-lightskyblue:disabled, .btn-lightskyblue.disabled {
color: #000;
background-color: #87CEFA;
border-color: #87CEFA;
}
.btn-lightslategray {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-lightslategray:hover {
color: #000;
background-color: #8b9aa8;
border-color: #8594a3;
}
.btn-check:focus + .btn-lightslategray, .btn-lightslategray:focus {
color: #000;
background-color: #8b9aa8;
border-color: #8594a3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
}
.btn-check:checked + .btn-lightslategray,
.btn-check:active + .btn-lightslategray, .btn-lightslategray:active, .btn-lightslategray.active,
.show > .btn-lightslategray.dropdown-toggle {
color: #000;
background-color: #92a0ad;
border-color: #8594a3;
}
.btn-check:checked + .btn-lightslategray:focus,
.btn-check:active + .btn-lightslategray:focus, .btn-lightslategray:active:focus, .btn-lightslategray.active:focus,
.show > .btn-lightslategray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
}
.btn-lightslategray:disabled, .btn-lightslategray.disabled {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-lightslategrey {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-lightslategrey:hover {
color: #000;
background-color: #8b9aa8;
border-color: #8594a3;
}
.btn-check:focus + .btn-lightslategrey, .btn-lightslategrey:focus {
color: #000;
background-color: #8b9aa8;
border-color: #8594a3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
}
.btn-check:checked + .btn-lightslategrey,
.btn-check:active + .btn-lightslategrey, .btn-lightslategrey:active, .btn-lightslategrey.active,
.show > .btn-lightslategrey.dropdown-toggle {
color: #000;
background-color: #92a0ad;
border-color: #8594a3;
}
.btn-check:checked + .btn-lightslategrey:focus,
.btn-check:active + .btn-lightslategrey:focus, .btn-lightslategrey:active:focus, .btn-lightslategrey.active:focus,
.show > .btn-lightslategrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
}
.btn-lightslategrey:disabled, .btn-lightslategrey.disabled {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-lightsteelblue {
color: #000;
background-color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-lightsteelblue:hover {
color: #000;
background-color: #bccde3;
border-color: #b8cae1;
}
.btn-check:focus + .btn-lightsteelblue, .btn-lightsteelblue:focus {
color: #000;
background-color: #bccde3;
border-color: #b8cae1;
-webkit-box-shadow: 0 0 0 0.25rem rgba(150, 167, 189, 0.5);
box-shadow: 0 0 0 0.25rem rgba(150, 167, 189, 0.5);
}
.btn-check:checked + .btn-lightsteelblue,
.btn-check:active + .btn-lightsteelblue, .btn-lightsteelblue:active, .btn-lightsteelblue.active,
.show > .btn-lightsteelblue.dropdown-toggle {
color: #000;
background-color: #c0d0e5;
border-color: #b8cae1;
}
.btn-check:checked + .btn-lightsteelblue:focus,
.btn-check:active + .btn-lightsteelblue:focus, .btn-lightsteelblue:active:focus, .btn-lightsteelblue.active:focus,
.show > .btn-lightsteelblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(150, 167, 189, 0.5);
box-shadow: 0 0 0 0.25rem rgba(150, 167, 189, 0.5);
}
.btn-lightsteelblue:disabled, .btn-lightsteelblue.disabled {
color: #000;
background-color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-lightyellow {
color: #000;
background-color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-lightyellow:hover {
color: #000;
background-color: #ffffe5;
border-color: #ffffe3;
}
.btn-check:focus + .btn-lightyellow, .btn-lightyellow:focus {
color: #000;
background-color: #ffffe5;
border-color: #ffffe3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 217, 190, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 217, 190, 0.5);
}
.btn-check:checked + .btn-lightyellow,
.btn-check:active + .btn-lightyellow, .btn-lightyellow:active, .btn-lightyellow.active,
.show > .btn-lightyellow.dropdown-toggle {
color: #000;
background-color: #ffffe6;
border-color: #ffffe3;
}
.btn-check:checked + .btn-lightyellow:focus,
.btn-check:active + .btn-lightyellow:focus, .btn-lightyellow:active:focus, .btn-lightyellow.active:focus,
.show > .btn-lightyellow.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 217, 190, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 217, 190, 0.5);
}
.btn-lightyellow:disabled, .btn-lightyellow.disabled {
color: #000;
background-color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-lime {
color: #000;
background-color: #00FF00;
border-color: #00FF00;
}
.btn-lime:hover {
color: #000;
background-color: #26ff26;
border-color: #1aff1a;
}
.btn-check:focus + .btn-lime, .btn-lime:focus {
color: #000;
background-color: #26ff26;
border-color: #1aff1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 0, 0.5);
}
.btn-check:checked + .btn-lime,
.btn-check:active + .btn-lime, .btn-lime:active, .btn-lime.active,
.show > .btn-lime.dropdown-toggle {
color: #000;
background-color: #33ff33;
border-color: #1aff1a;
}
.btn-check:checked + .btn-lime:focus,
.btn-check:active + .btn-lime:focus, .btn-lime:active:focus, .btn-lime.active:focus,
.show > .btn-lime.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 0, 0.5);
}
.btn-lime:disabled, .btn-lime.disabled {
color: #000;
background-color: #00FF00;
border-color: #00FF00;
}
.btn-limegreen {
color: #000;
background-color: #32CD32;
border-color: #32CD32;
}
.btn-limegreen:hover {
color: #000;
background-color: #51d551;
border-color: #47d247;
}
.btn-check:focus + .btn-limegreen, .btn-limegreen:focus {
color: #000;
background-color: #51d551;
border-color: #47d247;
-webkit-box-shadow: 0 0 0 0.25rem rgba(43, 174, 43, 0.5);
box-shadow: 0 0 0 0.25rem rgba(43, 174, 43, 0.5);
}
.btn-check:checked + .btn-limegreen,
.btn-check:active + .btn-limegreen, .btn-limegreen:active, .btn-limegreen.active,
.show > .btn-limegreen.dropdown-toggle {
color: #000;
background-color: #5bd75b;
border-color: #47d247;
}
.btn-check:checked + .btn-limegreen:focus,
.btn-check:active + .btn-limegreen:focus, .btn-limegreen:active:focus, .btn-limegreen.active:focus,
.show > .btn-limegreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(43, 174, 43, 0.5);
box-shadow: 0 0 0 0.25rem rgba(43, 174, 43, 0.5);
}
.btn-limegreen:disabled, .btn-limegreen.disabled {
color: #000;
background-color: #32CD32;
border-color: #32CD32;
}
.btn-linen {
color: #000;
background-color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-linen:hover {
color: #000;
background-color: #fbf2ea;
border-color: #fbf2e9;
}
.btn-check:focus + .btn-linen, .btn-linen:focus {
color: #000;
background-color: #fbf2ea;
border-color: #fbf2e9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 204, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 204, 196, 0.5);
}
.btn-check:checked + .btn-linen,
.btn-check:active + .btn-linen, .btn-linen:active, .btn-linen.active,
.show > .btn-linen.dropdown-toggle {
color: #000;
background-color: #fbf3eb;
border-color: #fbf2e9;
}
.btn-check:checked + .btn-linen:focus,
.btn-check:active + .btn-linen:focus, .btn-linen:active:focus, .btn-linen.active:focus,
.show > .btn-linen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 204, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 204, 196, 0.5);
}
.btn-linen:disabled, .btn-linen.disabled {
color: #000;
background-color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-magenta {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-magenta:hover {
color: #000;
background-color: #ff26ff;
border-color: #ff1aff;
}
.btn-check:focus + .btn-magenta, .btn-magenta:focus {
color: #000;
background-color: #ff26ff;
border-color: #ff1aff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
}
.btn-check:checked + .btn-magenta,
.btn-check:active + .btn-magenta, .btn-magenta:active, .btn-magenta.active,
.show > .btn-magenta.dropdown-toggle {
color: #000;
background-color: #ff33ff;
border-color: #ff1aff;
}
.btn-check:checked + .btn-magenta:focus,
.btn-check:active + .btn-magenta:focus, .btn-magenta:active:focus, .btn-magenta.active:focus,
.show > .btn-magenta.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
}
.btn-magenta:disabled, .btn-magenta.disabled {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-maroon {
color: #fff;
background-color: #800000;
border-color: #800000;
}
.btn-maroon:hover {
color: #fff;
background-color: #6d0000;
border-color: #660000;
}
.btn-check:focus + .btn-maroon, .btn-maroon:focus {
color: #fff;
background-color: #6d0000;
border-color: #660000;
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 38, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 38, 38, 0.5);
}
.btn-check:checked + .btn-maroon,
.btn-check:active + .btn-maroon, .btn-maroon:active, .btn-maroon.active,
.show > .btn-maroon.dropdown-toggle {
color: #fff;
background-color: #660000;
border-color: #600000;
}
.btn-check:checked + .btn-maroon:focus,
.btn-check:active + .btn-maroon:focus, .btn-maroon:active:focus, .btn-maroon.active:focus,
.show > .btn-maroon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 38, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 38, 38, 0.5);
}
.btn-maroon:disabled, .btn-maroon.disabled {
color: #fff;
background-color: #800000;
border-color: #800000;
}
.btn-mediumaquamarine {
color: #000;
background-color: #66CDAA;
border-color: #66CDAA;
}
.btn-mediumaquamarine:hover {
color: #000;
background-color: #7dd5b7;
border-color: #75d2b3;
}
.btn-check:focus + .btn-mediumaquamarine, .btn-mediumaquamarine:focus {
color: #000;
background-color: #7dd5b7;
border-color: #75d2b3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(87, 174, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(87, 174, 145, 0.5);
}
.btn-check:checked + .btn-mediumaquamarine,
.btn-check:active + .btn-mediumaquamarine, .btn-mediumaquamarine:active, .btn-mediumaquamarine.active,
.show > .btn-mediumaquamarine.dropdown-toggle {
color: #000;
background-color: #85d7bb;
border-color: #75d2b3;
}
.btn-check:checked + .btn-mediumaquamarine:focus,
.btn-check:active + .btn-mediumaquamarine:focus, .btn-mediumaquamarine:active:focus, .btn-mediumaquamarine.active:focus,
.show > .btn-mediumaquamarine.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(87, 174, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(87, 174, 145, 0.5);
}
.btn-mediumaquamarine:disabled, .btn-mediumaquamarine.disabled {
color: #000;
background-color: #66CDAA;
border-color: #66CDAA;
}
.btn-mediumblue {
color: #fff;
background-color: #0000CD;
border-color: #0000CD;
}
.btn-mediumblue:hover {
color: #fff;
background-color: #0000ae;
border-color: #0000a4;
}
.btn-check:focus + .btn-mediumblue, .btn-mediumblue:focus {
color: #fff;
background-color: #0000ae;
border-color: #0000a4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 213, 0.5);
}
.btn-check:checked + .btn-mediumblue,
.btn-check:active + .btn-mediumblue, .btn-mediumblue:active, .btn-mediumblue.active,
.show > .btn-mediumblue.dropdown-toggle {
color: #fff;
background-color: #0000a4;
border-color: #00009a;
}
.btn-check:checked + .btn-mediumblue:focus,
.btn-check:active + .btn-mediumblue:focus, .btn-mediumblue:active:focus, .btn-mediumblue.active:focus,
.show > .btn-mediumblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 213, 0.5);
}
.btn-mediumblue:disabled, .btn-mediumblue.disabled {
color: #fff;
background-color: #0000CD;
border-color: #0000CD;
}
.btn-mediumorchid {
color: #000;
background-color: #BA55D3;
border-color: #BA55D3;
}
.btn-mediumorchid:hover {
color: #000;
background-color: #c46fda;
border-color: #c166d7;
}
.btn-check:focus + .btn-mediumorchid, .btn-mediumorchid:focus {
color: #000;
background-color: #c46fda;
border-color: #c166d7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(158, 72, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(158, 72, 179, 0.5);
}
.btn-check:checked + .btn-mediumorchid,
.btn-check:active + .btn-mediumorchid, .btn-mediumorchid:active, .btn-mediumorchid.active,
.show > .btn-mediumorchid.dropdown-toggle {
color: #000;
background-color: #c877dc;
border-color: #c166d7;
}
.btn-check:checked + .btn-mediumorchid:focus,
.btn-check:active + .btn-mediumorchid:focus, .btn-mediumorchid:active:focus, .btn-mediumorchid.active:focus,
.show > .btn-mediumorchid.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(158, 72, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(158, 72, 179, 0.5);
}
.btn-mediumorchid:disabled, .btn-mediumorchid.disabled {
color: #000;
background-color: #BA55D3;
border-color: #BA55D3;
}
.btn-mediumpurple {
color: #000;
background-color: #9370DB;
border-color: #9370DB;
}
.btn-mediumpurple:hover {
color: #000;
background-color: #a385e0;
border-color: #9e7edf;
}
.btn-check:focus + .btn-mediumpurple, .btn-mediumpurple:focus {
color: #000;
background-color: #a385e0;
border-color: #9e7edf;
-webkit-box-shadow: 0 0 0 0.25rem rgba(125, 95, 186, 0.5);
box-shadow: 0 0 0 0.25rem rgba(125, 95, 186, 0.5);
}
.btn-check:checked + .btn-mediumpurple,
.btn-check:active + .btn-mediumpurple, .btn-mediumpurple:active, .btn-mediumpurple.active,
.show > .btn-mediumpurple.dropdown-toggle {
color: #000;
background-color: #a98de2;
border-color: #9e7edf;
}
.btn-check:checked + .btn-mediumpurple:focus,
.btn-check:active + .btn-mediumpurple:focus, .btn-mediumpurple:active:focus, .btn-mediumpurple.active:focus,
.show > .btn-mediumpurple.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(125, 95, 186, 0.5);
box-shadow: 0 0 0 0.25rem rgba(125, 95, 186, 0.5);
}
.btn-mediumpurple:disabled, .btn-mediumpurple.disabled {
color: #000;
background-color: #9370DB;
border-color: #9370DB;
}
.btn-mediumseagreen {
color: #000;
background-color: #3CB371;
border-color: #3CB371;
}
.btn-mediumseagreen:hover {
color: #000;
background-color: #59be86;
border-color: #50bb7f;
}
.btn-check:focus + .btn-mediumseagreen, .btn-mediumseagreen:focus {
color: #000;
background-color: #59be86;
border-color: #50bb7f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(51, 152, 96, 0.5);
box-shadow: 0 0 0 0.25rem rgba(51, 152, 96, 0.5);
}
.btn-check:checked + .btn-mediumseagreen,
.btn-check:active + .btn-mediumseagreen, .btn-mediumseagreen:active, .btn-mediumseagreen.active,
.show > .btn-mediumseagreen.dropdown-toggle {
color: #000;
background-color: #63c28d;
border-color: #50bb7f;
}
.btn-check:checked + .btn-mediumseagreen:focus,
.btn-check:active + .btn-mediumseagreen:focus, .btn-mediumseagreen:active:focus, .btn-mediumseagreen.active:focus,
.show > .btn-mediumseagreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(51, 152, 96, 0.5);
box-shadow: 0 0 0 0.25rem rgba(51, 152, 96, 0.5);
}
.btn-mediumseagreen:disabled, .btn-mediumseagreen.disabled {
color: #000;
background-color: #3CB371;
border-color: #3CB371;
}
.btn-mediumslateblue {
color: #000;
background-color: #7B68EE;
border-color: #7B68EE;
}
.btn-mediumslateblue:hover {
color: #000;
background-color: #8f7ff1;
border-color: #8877f0;
}
.btn-check:focus + .btn-mediumslateblue, .btn-mediumslateblue:focus {
color: #000;
background-color: #8f7ff1;
border-color: #8877f0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 88, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 88, 202, 0.5);
}
.btn-check:checked + .btn-mediumslateblue,
.btn-check:active + .btn-mediumslateblue, .btn-mediumslateblue:active, .btn-mediumslateblue.active,
.show > .btn-mediumslateblue.dropdown-toggle {
color: #000;
background-color: #9586f1;
border-color: #8877f0;
}
.btn-check:checked + .btn-mediumslateblue:focus,
.btn-check:active + .btn-mediumslateblue:focus, .btn-mediumslateblue:active:focus, .btn-mediumslateblue.active:focus,
.show > .btn-mediumslateblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 88, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 88, 202, 0.5);
}
.btn-mediumslateblue:disabled, .btn-mediumslateblue.disabled {
color: #000;
background-color: #7B68EE;
border-color: #7B68EE;
}
.btn-mediumspringgreen {
color: #000;
background-color: #00FA9A;
border-color: #00FA9A;
}
.btn-mediumspringgreen:hover {
color: #000;
background-color: #26fba9;
border-color: #1afba4;
}
.btn-check:focus + .btn-mediumspringgreen, .btn-mediumspringgreen:focus {
color: #000;
background-color: #26fba9;
border-color: #1afba4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 213, 131, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 213, 131, 0.5);
}
.btn-check:checked + .btn-mediumspringgreen,
.btn-check:active + .btn-mediumspringgreen, .btn-mediumspringgreen:active, .btn-mediumspringgreen.active,
.show > .btn-mediumspringgreen.dropdown-toggle {
color: #000;
background-color: #33fbae;
border-color: #1afba4;
}
.btn-check:checked + .btn-mediumspringgreen:focus,
.btn-check:active + .btn-mediumspringgreen:focus, .btn-mediumspringgreen:active:focus, .btn-mediumspringgreen.active:focus,
.show > .btn-mediumspringgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 213, 131, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 213, 131, 0.5);
}
.btn-mediumspringgreen:disabled, .btn-mediumspringgreen.disabled {
color: #000;
background-color: #00FA9A;
border-color: #00FA9A;
}
.btn-mediumturquoise {
color: #000;
background-color: #48D1CC;
border-color: #48D1CC;
}
.btn-mediumturquoise:hover {
color: #000;
background-color: #63d8d4;
border-color: #5ad6d1;
}
.btn-check:focus + .btn-mediumturquoise, .btn-mediumturquoise:focus {
color: #000;
background-color: #63d8d4;
border-color: #5ad6d1;
-webkit-box-shadow: 0 0 0 0.25rem rgba(61, 178, 173, 0.5);
box-shadow: 0 0 0 0.25rem rgba(61, 178, 173, 0.5);
}
.btn-check:checked + .btn-mediumturquoise,
.btn-check:active + .btn-mediumturquoise, .btn-mediumturquoise:active, .btn-mediumturquoise.active,
.show > .btn-mediumturquoise.dropdown-toggle {
color: #000;
background-color: #6ddad6;
border-color: #5ad6d1;
}
.btn-check:checked + .btn-mediumturquoise:focus,
.btn-check:active + .btn-mediumturquoise:focus, .btn-mediumturquoise:active:focus, .btn-mediumturquoise.active:focus,
.show > .btn-mediumturquoise.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(61, 178, 173, 0.5);
box-shadow: 0 0 0 0.25rem rgba(61, 178, 173, 0.5);
}
.btn-mediumturquoise:disabled, .btn-mediumturquoise.disabled {
color: #000;
background-color: #48D1CC;
border-color: #48D1CC;
}
.btn-mediumvioletred {
color: #fff;
background-color: #C71585;
border-color: #C71585;
}
.btn-mediumvioletred:hover {
color: #fff;
background-color: #a91271;
border-color: #9f116a;
}
.btn-check:focus + .btn-mediumvioletred, .btn-mediumvioletred:focus {
color: #fff;
background-color: #a91271;
border-color: #9f116a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(207, 56, 151, 0.5);
box-shadow: 0 0 0 0.25rem rgba(207, 56, 151, 0.5);
}
.btn-check:checked + .btn-mediumvioletred,
.btn-check:active + .btn-mediumvioletred, .btn-mediumvioletred:active, .btn-mediumvioletred.active,
.show > .btn-mediumvioletred.dropdown-toggle {
color: #fff;
background-color: #9f116a;
border-color: #951064;
}
.btn-check:checked + .btn-mediumvioletred:focus,
.btn-check:active + .btn-mediumvioletred:focus, .btn-mediumvioletred:active:focus, .btn-mediumvioletred.active:focus,
.show > .btn-mediumvioletred.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(207, 56, 151, 0.5);
box-shadow: 0 0 0 0.25rem rgba(207, 56, 151, 0.5);
}
.btn-mediumvioletred:disabled, .btn-mediumvioletred.disabled {
color: #fff;
background-color: #C71585;
border-color: #C71585;
}
.btn-midnightblue {
color: #fff;
background-color: #191970;
border-color: #191970;
}
.btn-midnightblue:hover {
color: #fff;
background-color: #15155f;
border-color: #14145a;
}
.btn-check:focus + .btn-midnightblue, .btn-midnightblue:focus {
color: #fff;
background-color: #15155f;
border-color: #14145a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 60, 133, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 60, 133, 0.5);
}
.btn-check:checked + .btn-midnightblue,
.btn-check:active + .btn-midnightblue, .btn-midnightblue:active, .btn-midnightblue.active,
.show > .btn-midnightblue.dropdown-toggle {
color: #fff;
background-color: #14145a;
border-color: #131354;
}
.btn-check:checked + .btn-midnightblue:focus,
.btn-check:active + .btn-midnightblue:focus, .btn-midnightblue:active:focus, .btn-midnightblue.active:focus,
.show > .btn-midnightblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 60, 133, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 60, 133, 0.5);
}
.btn-midnightblue:disabled, .btn-midnightblue.disabled {
color: #fff;
background-color: #191970;
border-color: #191970;
}
.btn-mintcream {
color: #000;
background-color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-mintcream:hover {
color: #000;
background-color: #f7fffb;
border-color: #f6fffb;
}
.btn-check:focus + .btn-mintcream, .btn-mintcream:focus {
color: #000;
background-color: #f7fffb;
border-color: #f6fffb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 217, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 217, 213, 0.5);
}
.btn-check:checked + .btn-mintcream,
.btn-check:active + .btn-mintcream, .btn-mintcream:active, .btn-mintcream.active,
.show > .btn-mintcream.dropdown-toggle {
color: #000;
background-color: #f7fffb;
border-color: #f6fffb;
}
.btn-check:checked + .btn-mintcream:focus,
.btn-check:active + .btn-mintcream:focus, .btn-mintcream:active:focus, .btn-mintcream.active:focus,
.show > .btn-mintcream.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 217, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 217, 213, 0.5);
}
.btn-mintcream:disabled, .btn-mintcream.disabled {
color: #000;
background-color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-mistyrose {
color: #000;
background-color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-mistyrose:hover {
color: #000;
background-color: #ffe8e6;
border-color: #ffe7e4;
}
.btn-check:focus + .btn-mistyrose, .btn-mistyrose:focus {
color: #000;
background-color: #ffe8e6;
border-color: #ffe7e4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 191, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 191, 0.5);
}
.btn-check:checked + .btn-mistyrose,
.btn-check:active + .btn-mistyrose, .btn-mistyrose:active, .btn-mistyrose.active,
.show > .btn-mistyrose.dropdown-toggle {
color: #000;
background-color: #ffe9e7;
border-color: #ffe7e4;
}
.btn-check:checked + .btn-mistyrose:focus,
.btn-check:active + .btn-mistyrose:focus, .btn-mistyrose:active:focus, .btn-mistyrose.active:focus,
.show > .btn-mistyrose.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 191, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 191, 0.5);
}
.btn-mistyrose:disabled, .btn-mistyrose.disabled {
color: #000;
background-color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-moccasin {
color: #000;
background-color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-moccasin:hover {
color: #000;
background-color: #ffe8c0;
border-color: #ffe7bc;
}
.btn-check:focus + .btn-moccasin, .btn-moccasin:focus {
color: #000;
background-color: #ffe8c0;
border-color: #ffe7bc;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 154, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 154, 0.5);
}
.btn-check:checked + .btn-moccasin,
.btn-check:active + .btn-moccasin, .btn-moccasin:active, .btn-moccasin.active,
.show > .btn-moccasin.dropdown-toggle {
color: #000;
background-color: #ffe9c4;
border-color: #ffe7bc;
}
.btn-check:checked + .btn-moccasin:focus,
.btn-check:active + .btn-moccasin:focus, .btn-moccasin:active:focus, .btn-moccasin.active:focus,
.show > .btn-moccasin.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 154, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 154, 0.5);
}
.btn-moccasin:disabled, .btn-moccasin.disabled {
color: #000;
background-color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-navajowhite {
color: #000;
background-color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-navajowhite:hover {
color: #000;
background-color: #ffe3b9;
border-color: #ffe1b5;
}
.btn-check:focus + .btn-navajowhite, .btn-navajowhite:focus {
color: #000;
background-color: #ffe3b9;
border-color: #ffe1b5;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 189, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 189, 147, 0.5);
}
.btn-check:checked + .btn-navajowhite,
.btn-check:active + .btn-navajowhite, .btn-navajowhite:active, .btn-navajowhite.active,
.show > .btn-navajowhite.dropdown-toggle {
color: #000;
background-color: #ffe5bd;
border-color: #ffe1b5;
}
.btn-check:checked + .btn-navajowhite:focus,
.btn-check:active + .btn-navajowhite:focus, .btn-navajowhite:active:focus, .btn-navajowhite.active:focus,
.show > .btn-navajowhite.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 189, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 189, 147, 0.5);
}
.btn-navajowhite:disabled, .btn-navajowhite.disabled {
color: #000;
background-color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-navy {
color: #fff;
background-color: #000080;
border-color: #000080;
}
.btn-navy:hover {
color: #fff;
background-color: #00006d;
border-color: #000066;
}
.btn-check:focus + .btn-navy, .btn-navy:focus {
color: #fff;
background-color: #00006d;
border-color: #000066;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 147, 0.5);
}
.btn-check:checked + .btn-navy,
.btn-check:active + .btn-navy, .btn-navy:active, .btn-navy.active,
.show > .btn-navy.dropdown-toggle {
color: #fff;
background-color: #000066;
border-color: #000060;
}
.btn-check:checked + .btn-navy:focus,
.btn-check:active + .btn-navy:focus, .btn-navy:active:focus, .btn-navy.active:focus,
.show > .btn-navy.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 147, 0.5);
}
.btn-navy:disabled, .btn-navy.disabled {
color: #fff;
background-color: #000080;
border-color: #000080;
}
.btn-oldlace {
color: #000;
background-color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-oldlace:hover {
color: #000;
background-color: #fdf7ea;
border-color: #fdf6e9;
}
.btn-check:focus + .btn-oldlace, .btn-oldlace:focus {
color: #000;
background-color: #fdf7ea;
border-color: #fdf6e9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(215, 208, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(215, 208, 196, 0.5);
}
.btn-check:checked + .btn-oldlace,
.btn-check:active + .btn-oldlace, .btn-oldlace:active, .btn-oldlace.active,
.show > .btn-oldlace.dropdown-toggle {
color: #000;
background-color: #fdf7eb;
border-color: #fdf6e9;
}
.btn-check:checked + .btn-oldlace:focus,
.btn-check:active + .btn-oldlace:focus, .btn-oldlace:active:focus, .btn-oldlace.active:focus,
.show > .btn-oldlace.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(215, 208, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(215, 208, 196, 0.5);
}
.btn-oldlace:disabled, .btn-oldlace.disabled {
color: #000;
background-color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-olive {
color: #000;
background-color: #808000;
border-color: #808000;
}
.btn-olive:hover {
color: #000;
background-color: #939326;
border-color: #8d8d1a;
}
.btn-check:focus + .btn-olive, .btn-olive:focus {
color: #000;
background-color: #939326;
border-color: #8d8d1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 0, 0.5);
}
.btn-check:checked + .btn-olive,
.btn-check:active + .btn-olive, .btn-olive:active, .btn-olive.active,
.show > .btn-olive.dropdown-toggle {
color: #000;
background-color: #999933;
border-color: #8d8d1a;
}
.btn-check:checked + .btn-olive:focus,
.btn-check:active + .btn-olive:focus, .btn-olive:active:focus, .btn-olive.active:focus,
.show > .btn-olive.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 0, 0.5);
}
.btn-olive:disabled, .btn-olive.disabled {
color: #000;
background-color: #808000;
border-color: #808000;
}
.btn-olivedrab {
color: #000;
background-color: #6B8E23;
border-color: #6B8E23;
}
.btn-olivedrab:hover {
color: #000;
background-color: #819f44;
border-color: #7a9939;
}
.btn-check:focus + .btn-olivedrab, .btn-olivedrab:focus {
color: #000;
background-color: #819f44;
border-color: #7a9939;
-webkit-box-shadow: 0 0 0 0.25rem rgba(91, 121, 30, 0.5);
box-shadow: 0 0 0 0.25rem rgba(91, 121, 30, 0.5);
}
.btn-check:checked + .btn-olivedrab,
.btn-check:active + .btn-olivedrab, .btn-olivedrab:active, .btn-olivedrab.active,
.show > .btn-olivedrab.dropdown-toggle {
color: #000;
background-color: #89a54f;
border-color: #7a9939;
}
.btn-check:checked + .btn-olivedrab:focus,
.btn-check:active + .btn-olivedrab:focus, .btn-olivedrab:active:focus, .btn-olivedrab.active:focus,
.show > .btn-olivedrab.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(91, 121, 30, 0.5);
box-shadow: 0 0 0 0.25rem rgba(91, 121, 30, 0.5);
}
.btn-olivedrab:disabled, .btn-olivedrab.disabled {
color: #000;
background-color: #6B8E23;
border-color: #6B8E23;
}
.btn-orangered {
color: #000;
background-color: #FF4500;
border-color: #FF4500;
}
.btn-orangered:hover {
color: #000;
background-color: #ff6126;
border-color: #ff581a;
}
.btn-check:focus + .btn-orangered, .btn-orangered:focus {
color: #000;
background-color: #ff6126;
border-color: #ff581a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 59, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 59, 0, 0.5);
}
.btn-check:checked + .btn-orangered,
.btn-check:active + .btn-orangered, .btn-orangered:active, .btn-orangered.active,
.show > .btn-orangered.dropdown-toggle {
color: #000;
background-color: #ff6a33;
border-color: #ff581a;
}
.btn-check:checked + .btn-orangered:focus,
.btn-check:active + .btn-orangered:focus, .btn-orangered:active:focus, .btn-orangered.active:focus,
.show > .btn-orangered.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 59, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 59, 0, 0.5);
}
.btn-orangered:disabled, .btn-orangered.disabled {
color: #000;
background-color: #FF4500;
border-color: #FF4500;
}
.btn-orchid {
color: #000;
background-color: #DA70D6;
border-color: #DA70D6;
}
.btn-orchid:hover {
color: #000;
background-color: #e085dc;
border-color: #de7eda;
}
.btn-check:focus + .btn-orchid, .btn-orchid:focus {
color: #000;
background-color: #e085dc;
border-color: #de7eda;
-webkit-box-shadow: 0 0 0 0.25rem rgba(185, 95, 182, 0.5);
box-shadow: 0 0 0 0.25rem rgba(185, 95, 182, 0.5);
}
.btn-check:checked + .btn-orchid,
.btn-check:active + .btn-orchid, .btn-orchid:active, .btn-orchid.active,
.show > .btn-orchid.dropdown-toggle {
color: #000;
background-color: #e18dde;
border-color: #de7eda;
}
.btn-check:checked + .btn-orchid:focus,
.btn-check:active + .btn-orchid:focus, .btn-orchid:active:focus, .btn-orchid.active:focus,
.show > .btn-orchid.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(185, 95, 182, 0.5);
box-shadow: 0 0 0 0.25rem rgba(185, 95, 182, 0.5);
}
.btn-orchid:disabled, .btn-orchid.disabled {
color: #000;
background-color: #DA70D6;
border-color: #DA70D6;
}
.btn-palegoldenrod {
color: #000;
background-color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-palegoldenrod:hover {
color: #000;
background-color: #f1ebb7;
border-color: #f0eab3;
}
.btn-check:focus + .btn-palegoldenrod, .btn-palegoldenrod:focus {
color: #000;
background-color: #f1ebb7;
border-color: #f0eab3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(202, 197, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(202, 197, 145, 0.5);
}
.btn-check:checked + .btn-palegoldenrod,
.btn-check:active + .btn-palegoldenrod, .btn-palegoldenrod:active, .btn-palegoldenrod.active,
.show > .btn-palegoldenrod.dropdown-toggle {
color: #000;
background-color: #f1edbb;
border-color: #f0eab3;
}
.btn-check:checked + .btn-palegoldenrod:focus,
.btn-check:active + .btn-palegoldenrod:focus, .btn-palegoldenrod:active:focus, .btn-palegoldenrod.active:focus,
.show > .btn-palegoldenrod.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(202, 197, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(202, 197, 145, 0.5);
}
.btn-palegoldenrod:disabled, .btn-palegoldenrod.disabled {
color: #000;
background-color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-palegreen {
color: #000;
background-color: #98FB98;
border-color: #98FB98;
}
.btn-palegreen:hover {
color: #000;
background-color: #a7fca7;
border-color: #a2fba2;
}
.btn-check:focus + .btn-palegreen, .btn-palegreen:focus {
color: #000;
background-color: #a7fca7;
border-color: #a2fba2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(129, 213, 129, 0.5);
box-shadow: 0 0 0 0.25rem rgba(129, 213, 129, 0.5);
}
.btn-check:checked + .btn-palegreen,
.btn-check:active + .btn-palegreen, .btn-palegreen:active, .btn-palegreen.active,
.show > .btn-palegreen.dropdown-toggle {
color: #000;
background-color: #adfcad;
border-color: #a2fba2;
}
.btn-check:checked + .btn-palegreen:focus,
.btn-check:active + .btn-palegreen:focus, .btn-palegreen:active:focus, .btn-palegreen.active:focus,
.show > .btn-palegreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(129, 213, 129, 0.5);
box-shadow: 0 0 0 0.25rem rgba(129, 213, 129, 0.5);
}
.btn-palegreen:disabled, .btn-palegreen.disabled {
color: #000;
background-color: #98FB98;
border-color: #98FB98;
}
.btn-paleturquoise {
color: #000;
background-color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-paleturquoise:hover {
color: #000;
background-color: #bbf1f1;
border-color: #b7f0f0;
}
.btn-check:focus + .btn-paleturquoise, .btn-paleturquoise:focus {
color: #000;
background-color: #bbf1f1;
border-color: #b7f0f0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(149, 202, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(149, 202, 202, 0.5);
}
.btn-check:checked + .btn-paleturquoise,
.btn-check:active + .btn-paleturquoise, .btn-paleturquoise:active, .btn-paleturquoise.active,
.show > .btn-paleturquoise.dropdown-toggle {
color: #000;
background-color: #bff1f1;
border-color: #b7f0f0;
}
.btn-check:checked + .btn-paleturquoise:focus,
.btn-check:active + .btn-paleturquoise:focus, .btn-paleturquoise:active:focus, .btn-paleturquoise.active:focus,
.show > .btn-paleturquoise.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(149, 202, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(149, 202, 202, 0.5);
}
.btn-paleturquoise:disabled, .btn-paleturquoise.disabled {
color: #000;
background-color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-palevioletred {
color: #000;
background-color: #DB7093;
border-color: #DB7093;
}
.btn-palevioletred:hover {
color: #000;
background-color: #e085a3;
border-color: #df7e9e;
}
.btn-check:focus + .btn-palevioletred, .btn-palevioletred:focus {
color: #000;
background-color: #e085a3;
border-color: #df7e9e;
-webkit-box-shadow: 0 0 0 0.25rem rgba(186, 95, 125, 0.5);
box-shadow: 0 0 0 0.25rem rgba(186, 95, 125, 0.5);
}
.btn-check:checked + .btn-palevioletred,
.btn-check:active + .btn-palevioletred, .btn-palevioletred:active, .btn-palevioletred.active,
.show > .btn-palevioletred.dropdown-toggle {
color: #000;
background-color: #e28da9;
border-color: #df7e9e;
}
.btn-check:checked + .btn-palevioletred:focus,
.btn-check:active + .btn-palevioletred:focus, .btn-palevioletred:active:focus, .btn-palevioletred.active:focus,
.show > .btn-palevioletred.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(186, 95, 125, 0.5);
box-shadow: 0 0 0 0.25rem rgba(186, 95, 125, 0.5);
}
.btn-palevioletred:disabled, .btn-palevioletred.disabled {
color: #000;
background-color: #DB7093;
border-color: #DB7093;
}
.btn-papayawhip {
color: #000;
background-color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-papayawhip:hover {
color: #000;
background-color: #fff1db;
border-color: #fff1d9;
}
.btn-check:focus + .btn-papayawhip, .btn-papayawhip:focus {
color: #000;
background-color: #fff1db;
border-color: #fff1d9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 203, 181, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 203, 181, 0.5);
}
.btn-check:checked + .btn-papayawhip,
.btn-check:active + .btn-papayawhip, .btn-papayawhip:active, .btn-papayawhip.active,
.show > .btn-papayawhip.dropdown-toggle {
color: #000;
background-color: #fff2dd;
border-color: #fff1d9;
}
.btn-check:checked + .btn-papayawhip:focus,
.btn-check:active + .btn-papayawhip:focus, .btn-papayawhip:active:focus, .btn-papayawhip.active:focus,
.show > .btn-papayawhip.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 203, 181, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 203, 181, 0.5);
}
.btn-papayawhip:disabled, .btn-papayawhip.disabled {
color: #000;
background-color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-peachpuff {
color: #000;
background-color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-peachpuff:hover {
color: #000;
background-color: #ffe0c4;
border-color: #ffdec0;
}
.btn-check:focus + .btn-peachpuff, .btn-peachpuff:focus {
color: #000;
background-color: #ffe0c4;
border-color: #ffdec0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 185, 157, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 185, 157, 0.5);
}
.btn-check:checked + .btn-peachpuff,
.btn-check:active + .btn-peachpuff, .btn-peachpuff:active, .btn-peachpuff.active,
.show > .btn-peachpuff.dropdown-toggle {
color: #000;
background-color: #ffe1c7;
border-color: #ffdec0;
}
.btn-check:checked + .btn-peachpuff:focus,
.btn-check:active + .btn-peachpuff:focus, .btn-peachpuff:active:focus, .btn-peachpuff.active:focus,
.show > .btn-peachpuff.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 185, 157, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 185, 157, 0.5);
}
.btn-peachpuff:disabled, .btn-peachpuff.disabled {
color: #000;
background-color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-peru {
color: #000;
background-color: #CD853F;
border-color: #CD853F;
}
.btn-peru:hover {
color: #000;
background-color: #d5975c;
border-color: #d29152;
}
.btn-check:focus + .btn-peru, .btn-peru:focus {
color: #000;
background-color: #d5975c;
border-color: #d29152;
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 113, 54, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 113, 54, 0.5);
}
.btn-check:checked + .btn-peru,
.btn-check:active + .btn-peru, .btn-peru:active, .btn-peru.active,
.show > .btn-peru.dropdown-toggle {
color: #000;
background-color: #d79d65;
border-color: #d29152;
}
.btn-check:checked + .btn-peru:focus,
.btn-check:active + .btn-peru:focus, .btn-peru:active:focus, .btn-peru.active:focus,
.show > .btn-peru.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 113, 54, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 113, 54, 0.5);
}
.btn-peru:disabled, .btn-peru.disabled {
color: #000;
background-color: #CD853F;
border-color: #CD853F;
}
.btn-plum {
color: #000;
background-color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-plum:hover {
color: #000;
background-color: #e2aee2;
border-color: #e0aae0;
}
.btn-check:focus + .btn-plum, .btn-plum:focus {
color: #000;
background-color: #e2aee2;
border-color: #e0aae0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(188, 136, 188, 0.5);
box-shadow: 0 0 0 0.25rem rgba(188, 136, 188, 0.5);
}
.btn-check:checked + .btn-plum,
.btn-check:active + .btn-plum, .btn-plum:active, .btn-plum.active,
.show > .btn-plum.dropdown-toggle {
color: #000;
background-color: #e4b3e4;
border-color: #e0aae0;
}
.btn-check:checked + .btn-plum:focus,
.btn-check:active + .btn-plum:focus, .btn-plum:active:focus, .btn-plum.active:focus,
.show > .btn-plum.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(188, 136, 188, 0.5);
box-shadow: 0 0 0 0.25rem rgba(188, 136, 188, 0.5);
}
.btn-plum:disabled, .btn-plum.disabled {
color: #000;
background-color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-powderblue {
color: #000;
background-color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-powderblue:hover {
color: #000;
background-color: #bce5ea;
border-color: #b8e3e9;
}
.btn-check:focus + .btn-powderblue, .btn-powderblue:focus {
color: #000;
background-color: #bce5ea;
border-color: #b8e3e9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(150, 190, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(150, 190, 196, 0.5);
}
.btn-check:checked + .btn-powderblue,
.btn-check:active + .btn-powderblue, .btn-powderblue:active, .btn-powderblue.active,
.show > .btn-powderblue.dropdown-toggle {
color: #000;
background-color: #c0e6eb;
border-color: #b8e3e9;
}
.btn-check:checked + .btn-powderblue:focus,
.btn-check:active + .btn-powderblue:focus, .btn-powderblue:active:focus, .btn-powderblue.active:focus,
.show > .btn-powderblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(150, 190, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(150, 190, 196, 0.5);
}
.btn-powderblue:disabled, .btn-powderblue.disabled {
color: #000;
background-color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-rebeccapurple {
color: #fff;
background-color: #663399;
border-color: #663399;
}
.btn-rebeccapurple:hover {
color: #fff;
background-color: #572b82;
border-color: #52297a;
}
.btn-check:focus + .btn-rebeccapurple, .btn-rebeccapurple:focus {
color: #fff;
background-color: #572b82;
border-color: #52297a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(125, 82, 168, 0.5);
box-shadow: 0 0 0 0.25rem rgba(125, 82, 168, 0.5);
}
.btn-check:checked + .btn-rebeccapurple,
.btn-check:active + .btn-rebeccapurple, .btn-rebeccapurple:active, .btn-rebeccapurple.active,
.show > .btn-rebeccapurple.dropdown-toggle {
color: #fff;
background-color: #52297a;
border-color: #4d2673;
}
.btn-check:checked + .btn-rebeccapurple:focus,
.btn-check:active + .btn-rebeccapurple:focus, .btn-rebeccapurple:active:focus, .btn-rebeccapurple.active:focus,
.show > .btn-rebeccapurple.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(125, 82, 168, 0.5);
box-shadow: 0 0 0 0.25rem rgba(125, 82, 168, 0.5);
}
.btn-rebeccapurple:disabled, .btn-rebeccapurple.disabled {
color: #fff;
background-color: #663399;
border-color: #663399;
}
.btn-rosybrown {
color: #000;
background-color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-rosybrown:hover {
color: #000;
background-color: #c6a0a0;
border-color: #c39a9a;
}
.btn-check:focus + .btn-rosybrown, .btn-rosybrown:focus {
color: #000;
background-color: #c6a0a0;
border-color: #c39a9a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(160, 122, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(160, 122, 122, 0.5);
}
.btn-check:checked + .btn-rosybrown,
.btn-check:active + .btn-rosybrown, .btn-rosybrown:active, .btn-rosybrown.active,
.show > .btn-rosybrown.dropdown-toggle {
color: #000;
background-color: #c9a5a5;
border-color: #c39a9a;
}
.btn-check:checked + .btn-rosybrown:focus,
.btn-check:active + .btn-rosybrown:focus, .btn-rosybrown:active:focus, .btn-rosybrown.active:focus,
.show > .btn-rosybrown.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(160, 122, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(160, 122, 122, 0.5);
}
.btn-rosybrown:disabled, .btn-rosybrown.disabled {
color: #000;
background-color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-royalblue {
color: #fff;
background-color: #4169E1;
border-color: #4169E1;
}
.btn-royalblue:hover {
color: #fff;
background-color: #3759bf;
border-color: #3454b4;
}
.btn-check:focus + .btn-royalblue, .btn-royalblue:focus {
color: #fff;
background-color: #3759bf;
border-color: #3454b4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(94, 128, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(94, 128, 230, 0.5);
}
.btn-check:checked + .btn-royalblue,
.btn-check:active + .btn-royalblue, .btn-royalblue:active, .btn-royalblue.active,
.show > .btn-royalblue.dropdown-toggle {
color: #fff;
background-color: #3454b4;
border-color: #314fa9;
}
.btn-check:checked + .btn-royalblue:focus,
.btn-check:active + .btn-royalblue:focus, .btn-royalblue:active:focus, .btn-royalblue.active:focus,
.show > .btn-royalblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(94, 128, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(94, 128, 230, 0.5);
}
.btn-royalblue:disabled, .btn-royalblue.disabled {
color: #fff;
background-color: #4169E1;
border-color: #4169E1;
}
.btn-saddlebrown {
color: #fff;
background-color: #8B4513;
border-color: #8B4513;
}
.btn-saddlebrown:hover {
color: #fff;
background-color: #763b10;
border-color: #6f370f;
}
.btn-check:focus + .btn-saddlebrown, .btn-saddlebrown:focus {
color: #fff;
background-color: #763b10;
border-color: #6f370f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 97, 54, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 97, 54, 0.5);
}
.btn-check:checked + .btn-saddlebrown,
.btn-check:active + .btn-saddlebrown, .btn-saddlebrown:active, .btn-saddlebrown.active,
.show > .btn-saddlebrown.dropdown-toggle {
color: #fff;
background-color: #6f370f;
border-color: #68340e;
}
.btn-check:checked + .btn-saddlebrown:focus,
.btn-check:active + .btn-saddlebrown:focus, .btn-saddlebrown:active:focus, .btn-saddlebrown.active:focus,
.show > .btn-saddlebrown.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 97, 54, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 97, 54, 0.5);
}
.btn-saddlebrown:disabled, .btn-saddlebrown.disabled {
color: #fff;
background-color: #8B4513;
border-color: #8B4513;
}
.btn-salmon {
color: #000;
background-color: #FA8072;
border-color: #FA8072;
}
.btn-salmon:hover {
color: #000;
background-color: #fb9387;
border-color: #fb8d80;
}
.btn-check:focus + .btn-salmon, .btn-salmon:focus {
color: #000;
background-color: #fb9387;
border-color: #fb8d80;
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 109, 97, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 109, 97, 0.5);
}
.btn-check:checked + .btn-salmon,
.btn-check:active + .btn-salmon, .btn-salmon:active, .btn-salmon.active,
.show > .btn-salmon.dropdown-toggle {
color: #000;
background-color: #fb998e;
border-color: #fb8d80;
}
.btn-check:checked + .btn-salmon:focus,
.btn-check:active + .btn-salmon:focus, .btn-salmon:active:focus, .btn-salmon.active:focus,
.show > .btn-salmon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 109, 97, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 109, 97, 0.5);
}
.btn-salmon:disabled, .btn-salmon.disabled {
color: #000;
background-color: #FA8072;
border-color: #FA8072;
}
.btn-sandybrown {
color: #000;
background-color: #F4A460;
border-color: #F4A460;
}
.btn-sandybrown:hover {
color: #000;
background-color: #f6b278;
border-color: #f5ad70;
}
.btn-check:focus + .btn-sandybrown, .btn-sandybrown:focus {
color: #000;
background-color: #f6b278;
border-color: #f5ad70;
-webkit-box-shadow: 0 0 0 0.25rem rgba(207, 139, 82, 0.5);
box-shadow: 0 0 0 0.25rem rgba(207, 139, 82, 0.5);
}
.btn-check:checked + .btn-sandybrown,
.btn-check:active + .btn-sandybrown, .btn-sandybrown:active, .btn-sandybrown.active,
.show > .btn-sandybrown.dropdown-toggle {
color: #000;
background-color: #f6b680;
border-color: #f5ad70;
}
.btn-check:checked + .btn-sandybrown:focus,
.btn-check:active + .btn-sandybrown:focus, .btn-sandybrown:active:focus, .btn-sandybrown.active:focus,
.show > .btn-sandybrown.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(207, 139, 82, 0.5);
box-shadow: 0 0 0 0.25rem rgba(207, 139, 82, 0.5);
}
.btn-sandybrown:disabled, .btn-sandybrown.disabled {
color: #000;
background-color: #F4A460;
border-color: #F4A460;
}
.btn-seagreen {
color: #000;
background-color: #2E8B57;
border-color: #2E8B57;
}
.btn-seagreen:hover {
color: #000;
background-color: #4d9c70;
border-color: #439768;
}
.btn-check:focus + .btn-seagreen, .btn-seagreen:focus {
color: #000;
background-color: #4d9c70;
border-color: #439768;
-webkit-box-shadow: 0 0 0 0.25rem rgba(39, 118, 74, 0.5);
box-shadow: 0 0 0 0.25rem rgba(39, 118, 74, 0.5);
}
.btn-check:checked + .btn-seagreen,
.btn-check:active + .btn-seagreen, .btn-seagreen:active, .btn-seagreen.active,
.show > .btn-seagreen.dropdown-toggle {
color: #000;
background-color: #58a279;
border-color: #439768;
}
.btn-check:checked + .btn-seagreen:focus,
.btn-check:active + .btn-seagreen:focus, .btn-seagreen:active:focus, .btn-seagreen.active:focus,
.show > .btn-seagreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(39, 118, 74, 0.5);
box-shadow: 0 0 0 0.25rem rgba(39, 118, 74, 0.5);
}
.btn-seagreen:disabled, .btn-seagreen.disabled {
color: #000;
background-color: #2E8B57;
border-color: #2E8B57;
}
.btn-seashell {
color: #000;
background-color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-seashell:hover {
color: #000;
background-color: #fff7f1;
border-color: #fff6f0;
}
.btn-check:focus + .btn-seashell, .btn-seashell:focus {
color: #000;
background-color: #fff7f1;
border-color: #fff6f0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 208, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 208, 202, 0.5);
}
.btn-check:checked + .btn-seashell,
.btn-check:active + .btn-seashell, .btn-seashell:active, .btn-seashell.active,
.show > .btn-seashell.dropdown-toggle {
color: #000;
background-color: #fff7f1;
border-color: #fff6f0;
}
.btn-check:checked + .btn-seashell:focus,
.btn-check:active + .btn-seashell:focus, .btn-seashell:active:focus, .btn-seashell.active:focus,
.show > .btn-seashell.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 208, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 208, 202, 0.5);
}
.btn-seashell:disabled, .btn-seashell.disabled {
color: #000;
background-color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-sienna {
color: #fff;
background-color: #A0522D;
border-color: #A0522D;
}
.btn-sienna:hover {
color: #fff;
background-color: #884626;
border-color: #804224;
}
.btn-check:focus + .btn-sienna, .btn-sienna:focus {
color: #fff;
background-color: #884626;
border-color: #804224;
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 108, 77, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 108, 77, 0.5);
}
.btn-check:checked + .btn-sienna,
.btn-check:active + .btn-sienna, .btn-sienna:active, .btn-sienna.active,
.show > .btn-sienna.dropdown-toggle {
color: #fff;
background-color: #804224;
border-color: #783e22;
}
.btn-check:checked + .btn-sienna:focus,
.btn-check:active + .btn-sienna:focus, .btn-sienna:active:focus, .btn-sienna.active:focus,
.show > .btn-sienna.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 108, 77, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 108, 77, 0.5);
}
.btn-sienna:disabled, .btn-sienna.disabled {
color: #fff;
background-color: #A0522D;
border-color: #A0522D;
}
.btn-silver {
color: #000;
background-color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-silver:hover {
color: #000;
background-color: #c9c9c9;
border-color: #c6c6c6;
}
.btn-check:focus + .btn-silver, .btn-silver:focus {
color: #000;
background-color: #c9c9c9;
border-color: #c6c6c6;
-webkit-box-shadow: 0 0 0 0.25rem rgba(163, 163, 163, 0.5);
box-shadow: 0 0 0 0.25rem rgba(163, 163, 163, 0.5);
}
.btn-check:checked + .btn-silver,
.btn-check:active + .btn-silver, .btn-silver:active, .btn-silver.active,
.show > .btn-silver.dropdown-toggle {
color: #000;
background-color: #cdcdcd;
border-color: #c6c6c6;
}
.btn-check:checked + .btn-silver:focus,
.btn-check:active + .btn-silver:focus, .btn-silver:active:focus, .btn-silver.active:focus,
.show > .btn-silver.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(163, 163, 163, 0.5);
box-shadow: 0 0 0 0.25rem rgba(163, 163, 163, 0.5);
}
.btn-silver:disabled, .btn-silver.disabled {
color: #000;
background-color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-skyblue {
color: #000;
background-color: #87CEEB;
border-color: #87CEEB;
}
.btn-skyblue:hover {
color: #000;
background-color: #99d5ee;
border-color: #93d3ed;
}
.btn-check:focus + .btn-skyblue, .btn-skyblue:focus {
color: #000;
background-color: #99d5ee;
border-color: #93d3ed;
-webkit-box-shadow: 0 0 0 0.25rem rgba(115, 175, 200, 0.5);
box-shadow: 0 0 0 0.25rem rgba(115, 175, 200, 0.5);
}
.btn-check:checked + .btn-skyblue,
.btn-check:active + .btn-skyblue, .btn-skyblue:active, .btn-skyblue.active,
.show > .btn-skyblue.dropdown-toggle {
color: #000;
background-color: #9fd8ef;
border-color: #93d3ed;
}
.btn-check:checked + .btn-skyblue:focus,
.btn-check:active + .btn-skyblue:focus, .btn-skyblue:active:focus, .btn-skyblue.active:focus,
.show > .btn-skyblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(115, 175, 200, 0.5);
box-shadow: 0 0 0 0.25rem rgba(115, 175, 200, 0.5);
}
.btn-skyblue:disabled, .btn-skyblue.disabled {
color: #000;
background-color: #87CEEB;
border-color: #87CEEB;
}
.btn-slateblue {
color: #fff;
background-color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-slateblue:hover {
color: #fff;
background-color: #5a4dae;
border-color: #5548a4;
}
.btn-check:focus + .btn-slateblue, .btn-slateblue:focus {
color: #fff;
background-color: #5a4dae;
border-color: #5548a4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 115, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 115, 213, 0.5);
}
.btn-check:checked + .btn-slateblue,
.btn-check:active + .btn-slateblue, .btn-slateblue:active, .btn-slateblue.active,
.show > .btn-slateblue.dropdown-toggle {
color: #fff;
background-color: #5548a4;
border-color: #50449a;
}
.btn-check:checked + .btn-slateblue:focus,
.btn-check:active + .btn-slateblue:focus, .btn-slateblue:active:focus, .btn-slateblue.active:focus,
.show > .btn-slateblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 115, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 115, 213, 0.5);
}
.btn-slateblue:disabled, .btn-slateblue.disabled {
color: #fff;
background-color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-slategray {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-slategray:hover {
color: #000;
background-color: #8593a1;
border-color: #7e8d9b;
}
.btn-check:focus + .btn-slategray, .btn-slategray:focus {
color: #000;
background-color: #8593a1;
border-color: #7e8d9b;
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
}
.btn-check:checked + .btn-slategray,
.btn-check:active + .btn-slategray, .btn-slategray:active, .btn-slategray.active,
.show > .btn-slategray.dropdown-toggle {
color: #000;
background-color: #8d99a6;
border-color: #7e8d9b;
}
.btn-check:checked + .btn-slategray:focus,
.btn-check:active + .btn-slategray:focus, .btn-slategray:active:focus, .btn-slategray.active:focus,
.show > .btn-slategray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
}
.btn-slategray:disabled, .btn-slategray.disabled {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-slategrey {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-slategrey:hover {
color: #000;
background-color: #8593a1;
border-color: #7e8d9b;
}
.btn-check:focus + .btn-slategrey, .btn-slategrey:focus {
color: #000;
background-color: #8593a1;
border-color: #7e8d9b;
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
}
.btn-check:checked + .btn-slategrey,
.btn-check:active + .btn-slategrey, .btn-slategrey:active, .btn-slategrey.active,
.show > .btn-slategrey.dropdown-toggle {
color: #000;
background-color: #8d99a6;
border-color: #7e8d9b;
}
.btn-check:checked + .btn-slategrey:focus,
.btn-check:active + .btn-slategrey:focus, .btn-slategrey:active:focus, .btn-slategrey.active:focus,
.show > .btn-slategrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
}
.btn-slategrey:disabled, .btn-slategrey.disabled {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-snow {
color: #000;
background-color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-snow:hover {
color: #000;
background-color: #fffbfb;
border-color: #fffbfb;
}
.btn-check:focus + .btn-snow, .btn-snow:focus {
color: #000;
background-color: #fffbfb;
border-color: #fffbfb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 213, 0.5);
}
.btn-check:checked + .btn-snow,
.btn-check:active + .btn-snow, .btn-snow:active, .btn-snow.active,
.show > .btn-snow.dropdown-toggle {
color: #000;
background-color: #fffbfb;
border-color: #fffbfb;
}
.btn-check:checked + .btn-snow:focus,
.btn-check:active + .btn-snow:focus, .btn-snow:active:focus, .btn-snow.active:focus,
.show > .btn-snow.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 213, 0.5);
}
.btn-snow:disabled, .btn-snow.disabled {
color: #000;
background-color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-springgreen {
color: #000;
background-color: #00FF7F;
border-color: #00FF7F;
}
.btn-springgreen:hover {
color: #000;
background-color: #26ff92;
border-color: #1aff8c;
}
.btn-check:focus + .btn-springgreen, .btn-springgreen:focus {
color: #000;
background-color: #26ff92;
border-color: #1aff8c;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 108, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 108, 0.5);
}
.btn-check:checked + .btn-springgreen,
.btn-check:active + .btn-springgreen, .btn-springgreen:active, .btn-springgreen.active,
.show > .btn-springgreen.dropdown-toggle {
color: #000;
background-color: #33ff99;
border-color: #1aff8c;
}
.btn-check:checked + .btn-springgreen:focus,
.btn-check:active + .btn-springgreen:focus, .btn-springgreen:active:focus, .btn-springgreen.active:focus,
.show > .btn-springgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 108, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 108, 0.5);
}
.btn-springgreen:disabled, .btn-springgreen.disabled {
color: #000;
background-color: #00FF7F;
border-color: #00FF7F;
}
.btn-steelblue {
color: #000;
background-color: #4682B4;
border-color: #4682B4;
}
.btn-steelblue:hover {
color: #000;
background-color: #6295bf;
border-color: #598fbc;
}
.btn-check:focus + .btn-steelblue, .btn-steelblue:focus {
color: #000;
background-color: #6295bf;
border-color: #598fbc;
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 111, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 111, 153, 0.5);
}
.btn-check:checked + .btn-steelblue,
.btn-check:active + .btn-steelblue, .btn-steelblue:active, .btn-steelblue.active,
.show > .btn-steelblue.dropdown-toggle {
color: #000;
background-color: #6b9bc3;
border-color: #598fbc;
}
.btn-check:checked + .btn-steelblue:focus,
.btn-check:active + .btn-steelblue:focus, .btn-steelblue:active:focus, .btn-steelblue.active:focus,
.show > .btn-steelblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 111, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 111, 153, 0.5);
}
.btn-steelblue:disabled, .btn-steelblue.disabled {
color: #000;
background-color: #4682B4;
border-color: #4682B4;
}
.btn-tan {
color: #000;
background-color: #D2B48C;
border-color: #D2B48C;
}
.btn-tan:hover {
color: #000;
background-color: #d9bf9d;
border-color: #d7bc98;
}
.btn-check:focus + .btn-tan, .btn-tan:focus {
color: #000;
background-color: #d9bf9d;
border-color: #d7bc98;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 153, 119, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 153, 119, 0.5);
}
.btn-check:checked + .btn-tan,
.btn-check:active + .btn-tan, .btn-tan:active, .btn-tan.active,
.show > .btn-tan.dropdown-toggle {
color: #000;
background-color: #dbc3a3;
border-color: #d7bc98;
}
.btn-check:checked + .btn-tan:focus,
.btn-check:active + .btn-tan:focus, .btn-tan:active:focus, .btn-tan.active:focus,
.show > .btn-tan.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 153, 119, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 153, 119, 0.5);
}
.btn-tan:disabled, .btn-tan.disabled {
color: #000;
background-color: #D2B48C;
border-color: #D2B48C;
}
.btn-thistle {
color: #000;
background-color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-thistle:hover {
color: #000;
background-color: #dec9de;
border-color: #dcc5dc;
}
.btn-check:focus + .btn-thistle, .btn-thistle:focus {
color: #000;
background-color: #dec9de;
border-color: #dcc5dc;
-webkit-box-shadow: 0 0 0 0.25rem rgba(184, 162, 184, 0.5);
box-shadow: 0 0 0 0.25rem rgba(184, 162, 184, 0.5);
}
.btn-check:checked + .btn-thistle,
.btn-check:active + .btn-thistle, .btn-thistle:active, .btn-thistle.active,
.show > .btn-thistle.dropdown-toggle {
color: #000;
background-color: #e0cce0;
border-color: #dcc5dc;
}
.btn-check:checked + .btn-thistle:focus,
.btn-check:active + .btn-thistle:focus, .btn-thistle:active:focus, .btn-thistle.active:focus,
.show > .btn-thistle.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(184, 162, 184, 0.5);
box-shadow: 0 0 0 0.25rem rgba(184, 162, 184, 0.5);
}
.btn-thistle:disabled, .btn-thistle.disabled {
color: #000;
background-color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-tomato {
color: #000;
background-color: #FF6347;
border-color: #FF6347;
}
.btn-tomato:hover {
color: #000;
background-color: #ff7a63;
border-color: #ff7359;
}
.btn-check:focus + .btn-tomato, .btn-tomato:focus {
color: #000;
background-color: #ff7a63;
border-color: #ff7359;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 84, 60, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 84, 60, 0.5);
}
.btn-check:checked + .btn-tomato,
.btn-check:active + .btn-tomato, .btn-tomato:active, .btn-tomato.active,
.show > .btn-tomato.dropdown-toggle {
color: #000;
background-color: #ff826c;
border-color: #ff7359;
}
.btn-check:checked + .btn-tomato:focus,
.btn-check:active + .btn-tomato:focus, .btn-tomato:active:focus, .btn-tomato.active:focus,
.show > .btn-tomato.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 84, 60, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 84, 60, 0.5);
}
.btn-tomato:disabled, .btn-tomato.disabled {
color: #000;
background-color: #FF6347;
border-color: #FF6347;
}
.btn-turquoise {
color: #000;
background-color: #40E0D0;
border-color: #40E0D0;
}
.btn-turquoise:hover {
color: #000;
background-color: #5de5d7;
border-color: #53e3d5;
}
.btn-check:focus + .btn-turquoise, .btn-turquoise:focus {
color: #000;
background-color: #5de5d7;
border-color: #53e3d5;
-webkit-box-shadow: 0 0 0 0.25rem rgba(54, 190, 177, 0.5);
box-shadow: 0 0 0 0.25rem rgba(54, 190, 177, 0.5);
}
.btn-check:checked + .btn-turquoise,
.btn-check:active + .btn-turquoise, .btn-turquoise:active, .btn-turquoise.active,
.show > .btn-turquoise.dropdown-toggle {
color: #000;
background-color: #66e6d9;
border-color: #53e3d5;
}
.btn-check:checked + .btn-turquoise:focus,
.btn-check:active + .btn-turquoise:focus, .btn-turquoise:active:focus, .btn-turquoise.active:focus,
.show > .btn-turquoise.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(54, 190, 177, 0.5);
box-shadow: 0 0 0 0.25rem rgba(54, 190, 177, 0.5);
}
.btn-turquoise:disabled, .btn-turquoise.disabled {
color: #000;
background-color: #40E0D0;
border-color: #40E0D0;
}
.btn-violet {
color: #000;
background-color: #EE82EE;
border-color: #EE82EE;
}
.btn-violet:hover {
color: #000;
background-color: #f195f1;
border-color: #f08ff0;
}
.btn-check:focus + .btn-violet, .btn-violet:focus {
color: #000;
background-color: #f195f1;
border-color: #f08ff0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(202, 111, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(202, 111, 202, 0.5);
}
.btn-check:checked + .btn-violet,
.btn-check:active + .btn-violet, .btn-violet:active, .btn-violet.active,
.show > .btn-violet.dropdown-toggle {
color: #000;
background-color: #f19bf1;
border-color: #f08ff0;
}
.btn-check:checked + .btn-violet:focus,
.btn-check:active + .btn-violet:focus, .btn-violet:active:focus, .btn-violet.active:focus,
.show > .btn-violet.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(202, 111, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(202, 111, 202, 0.5);
}
.btn-violet:disabled, .btn-violet.disabled {
color: #000;
background-color: #EE82EE;
border-color: #EE82EE;
}
.btn-wheat {
color: #000;
background-color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-wheat:hover {
color: #000;
background-color: #f7e3be;
border-color: #f6e1bb;
}
.btn-check:focus + .btn-wheat, .btn-wheat:focus {
color: #000;
background-color: #f7e3be;
border-color: #f6e1bb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 189, 152, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 189, 152, 0.5);
}
.btn-check:checked + .btn-wheat,
.btn-check:active + .btn-wheat, .btn-wheat:active, .btn-wheat.active,
.show > .btn-wheat.dropdown-toggle {
color: #000;
background-color: #f7e5c2;
border-color: #f6e1bb;
}
.btn-check:checked + .btn-wheat:focus,
.btn-check:active + .btn-wheat:focus, .btn-wheat:active:focus, .btn-wheat.active:focus,
.show > .btn-wheat.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 189, 152, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 189, 152, 0.5);
}
.btn-wheat:disabled, .btn-wheat.disabled {
color: #000;
background-color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-whitesmoke {
color: #000;
background-color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-whitesmoke:hover {
color: #000;
background-color: #f7f7f7;
border-color: #f6f6f6;
}
.btn-check:focus + .btn-whitesmoke, .btn-whitesmoke:focus {
color: #000;
background-color: #f7f7f7;
border-color: #f6f6f6;
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
}
.btn-check:checked + .btn-whitesmoke,
.btn-check:active + .btn-whitesmoke, .btn-whitesmoke:active, .btn-whitesmoke.active,
.show > .btn-whitesmoke.dropdown-toggle {
color: #000;
background-color: #f7f7f7;
border-color: #f6f6f6;
}
.btn-check:checked + .btn-whitesmoke:focus,
.btn-check:active + .btn-whitesmoke:focus, .btn-whitesmoke:active:focus, .btn-whitesmoke.active:focus,
.show > .btn-whitesmoke.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
}
.btn-whitesmoke:disabled, .btn-whitesmoke.disabled {
color: #000;
background-color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-yellowgreen {
color: #000;
background-color: #9ACD32;
border-color: #9ACD32;
}
.btn-yellowgreen:hover {
color: #000;
background-color: #a9d551;
border-color: #a4d247;
}
.btn-check:focus + .btn-yellowgreen, .btn-yellowgreen:focus {
color: #000;
background-color: #a9d551;
border-color: #a4d247;
-webkit-box-shadow: 0 0 0 0.25rem rgba(131, 174, 43, 0.5);
box-shadow: 0 0 0 0.25rem rgba(131, 174, 43, 0.5);
}
.btn-check:checked + .btn-yellowgreen,
.btn-check:active + .btn-yellowgreen, .btn-yellowgreen:active, .btn-yellowgreen.active,
.show > .btn-yellowgreen.dropdown-toggle {
color: #000;
background-color: #aed75b;
border-color: #a4d247;
}
.btn-check:checked + .btn-yellowgreen:focus,
.btn-check:active + .btn-yellowgreen:focus, .btn-yellowgreen:active:focus, .btn-yellowgreen.active:focus,
.show > .btn-yellowgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(131, 174, 43, 0.5);
box-shadow: 0 0 0 0.25rem rgba(131, 174, 43, 0.5);
}
.btn-yellowgreen:disabled, .btn-yellowgreen.disabled {
color: #000;
background-color: #9ACD32;
border-color: #9ACD32;
}
.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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
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-rc-red {
color: #DA291C;
border-color: #DA291C;
}
.btn-outline-rc-red:hover {
color: #fff;
background-color: #DA291C;
border-color: #DA291C;
}
.btn-check:focus + .btn-outline-rc-red, .btn-outline-rc-red:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.5);
}
.btn-check:checked + .btn-outline-rc-red,
.btn-check:active + .btn-outline-rc-red, .btn-outline-rc-red:active, .btn-outline-rc-red.active, .btn-outline-rc-red.dropdown-toggle.show {
color: #fff;
background-color: #DA291C;
border-color: #DA291C;
}
.btn-check:checked + .btn-outline-rc-red:focus,
.btn-check:active + .btn-outline-rc-red:focus, .btn-outline-rc-red:active:focus, .btn-outline-rc-red.active:focus, .btn-outline-rc-red.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.5);
}
.btn-outline-rc-red:disabled, .btn-outline-rc-red.disabled {
color: #DA291C;
background-color: transparent;
}
.btn-outline-rc-wine {
color: #A50034;
border-color: #A50034;
}
.btn-outline-rc-wine:hover {
color: #fff;
background-color: #A50034;
border-color: #A50034;
}
.btn-check:focus + .btn-outline-rc-wine, .btn-outline-rc-wine:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(165, 0, 52, 0.5);
box-shadow: 0 0 0 0.25rem rgba(165, 0, 52, 0.5);
}
.btn-check:checked + .btn-outline-rc-wine,
.btn-check:active + .btn-outline-rc-wine, .btn-outline-rc-wine:active, .btn-outline-rc-wine.active, .btn-outline-rc-wine.dropdown-toggle.show {
color: #fff;
background-color: #A50034;
border-color: #A50034;
}
.btn-check:checked + .btn-outline-rc-wine:focus,
.btn-check:active + .btn-outline-rc-wine:focus, .btn-outline-rc-wine:active:focus, .btn-outline-rc-wine.active:focus, .btn-outline-rc-wine.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(165, 0, 52, 0.5);
box-shadow: 0 0 0 0.25rem rgba(165, 0, 52, 0.5);
}
.btn-outline-rc-wine:disabled, .btn-outline-rc-wine.disabled {
color: #A50034;
background-color: transparent;
}
.btn-outline-rc-blue {
color: #002554;
border-color: #002554;
}
.btn-outline-rc-blue:hover {
color: #fff;
background-color: #002554;
border-color: #002554;
}
.btn-check:focus + .btn-outline-rc-blue, .btn-outline-rc-blue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 37, 84, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 37, 84, 0.5);
}
.btn-check:checked + .btn-outline-rc-blue,
.btn-check:active + .btn-outline-rc-blue, .btn-outline-rc-blue:active, .btn-outline-rc-blue.active, .btn-outline-rc-blue.dropdown-toggle.show {
color: #fff;
background-color: #002554;
border-color: #002554;
}
.btn-check:checked + .btn-outline-rc-blue:focus,
.btn-check:active + .btn-outline-rc-blue:focus, .btn-outline-rc-blue:active:focus, .btn-outline-rc-blue.active:focus, .btn-outline-rc-blue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 37, 84, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 37, 84, 0.5);
}
.btn-outline-rc-blue:disabled, .btn-outline-rc-blue.disabled {
color: #002554;
background-color: transparent;
}
.btn-outline-rc-gold {
color: #FFB200;
border-color: #FFB200;
}
.btn-outline-rc-gold:hover {
color: #000;
background-color: #FFB200;
border-color: #FFB200;
}
.btn-check:focus + .btn-outline-rc-gold, .btn-outline-rc-gold:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 178, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 178, 0, 0.5);
}
.btn-check:checked + .btn-outline-rc-gold,
.btn-check:active + .btn-outline-rc-gold, .btn-outline-rc-gold:active, .btn-outline-rc-gold.active, .btn-outline-rc-gold.dropdown-toggle.show {
color: #000;
background-color: #FFB200;
border-color: #FFB200;
}
.btn-check:checked + .btn-outline-rc-gold:focus,
.btn-check:active + .btn-outline-rc-gold:focus, .btn-outline-rc-gold:active:focus, .btn-outline-rc-gold.active:focus, .btn-outline-rc-gold.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 178, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 178, 0, 0.5);
}
.btn-outline-rc-gold:disabled, .btn-outline-rc-gold.disabled {
color: #FFB200;
background-color: transparent;
}
.btn-outline-rc-silver {
color: #808080;
border-color: #808080;
}
.btn-outline-rc-silver:hover {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-check:focus + .btn-outline-rc-silver, .btn-outline-rc-silver:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-check:checked + .btn-outline-rc-silver,
.btn-check:active + .btn-outline-rc-silver, .btn-outline-rc-silver:active, .btn-outline-rc-silver.active, .btn-outline-rc-silver.dropdown-toggle.show {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-check:checked + .btn-outline-rc-silver:focus,
.btn-check:active + .btn-outline-rc-silver:focus, .btn-outline-rc-silver:active:focus, .btn-outline-rc-silver.active:focus, .btn-outline-rc-silver.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-outline-rc-silver:disabled, .btn-outline-rc-silver.disabled {
color: #808080;
background-color: transparent;
}
.btn-outline-rc-skyblue {
color: #00B0F0;
border-color: #00B0F0;
}
.btn-outline-rc-skyblue:hover {
color: #000;
background-color: #00B0F0;
border-color: #00B0F0;
}
.btn-check:focus + .btn-outline-rc-skyblue, .btn-outline-rc-skyblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 176, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 176, 240, 0.5);
}
.btn-check:checked + .btn-outline-rc-skyblue,
.btn-check:active + .btn-outline-rc-skyblue, .btn-outline-rc-skyblue:active, .btn-outline-rc-skyblue.active, .btn-outline-rc-skyblue.dropdown-toggle.show {
color: #000;
background-color: #00B0F0;
border-color: #00B0F0;
}
.btn-check:checked + .btn-outline-rc-skyblue:focus,
.btn-check:active + .btn-outline-rc-skyblue:focus, .btn-outline-rc-skyblue:active:focus, .btn-outline-rc-skyblue.active:focus, .btn-outline-rc-skyblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 176, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 176, 240, 0.5);
}
.btn-outline-rc-skyblue:disabled, .btn-outline-rc-skyblue.disabled {
color: #00B0F0;
background-color: transparent;
}
.btn-outline-aliceblue {
color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-outline-aliceblue:hover {
color: #000;
background-color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-check:focus + .btn-outline-aliceblue, .btn-outline-aliceblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 248, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 248, 255, 0.5);
}
.btn-check:checked + .btn-outline-aliceblue,
.btn-check:active + .btn-outline-aliceblue, .btn-outline-aliceblue:active, .btn-outline-aliceblue.active, .btn-outline-aliceblue.dropdown-toggle.show {
color: #000;
background-color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-check:checked + .btn-outline-aliceblue:focus,
.btn-check:active + .btn-outline-aliceblue:focus, .btn-outline-aliceblue:active:focus, .btn-outline-aliceblue.active:focus, .btn-outline-aliceblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 248, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 248, 255, 0.5);
}
.btn-outline-aliceblue:disabled, .btn-outline-aliceblue.disabled {
color: #F0F8FF;
background-color: transparent;
}
.btn-outline-antiquewhite {
color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-outline-antiquewhite:hover {
color: #000;
background-color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-check:focus + .btn-outline-antiquewhite, .btn-outline-antiquewhite:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 235, 215, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 235, 215, 0.5);
}
.btn-check:checked + .btn-outline-antiquewhite,
.btn-check:active + .btn-outline-antiquewhite, .btn-outline-antiquewhite:active, .btn-outline-antiquewhite.active, .btn-outline-antiquewhite.dropdown-toggle.show {
color: #000;
background-color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-check:checked + .btn-outline-antiquewhite:focus,
.btn-check:active + .btn-outline-antiquewhite:focus, .btn-outline-antiquewhite:active:focus, .btn-outline-antiquewhite.active:focus, .btn-outline-antiquewhite.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 235, 215, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 235, 215, 0.5);
}
.btn-outline-antiquewhite:disabled, .btn-outline-antiquewhite.disabled {
color: #FAEBD7;
background-color: transparent;
}
.btn-outline-aqua {
color: #00FFFF;
border-color: #00FFFF;
}
.btn-outline-aqua:hover {
color: #000;
background-color: #00FFFF;
border-color: #00FFFF;
}
.btn-check:focus + .btn-outline-aqua, .btn-outline-aqua:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-aqua,
.btn-check:active + .btn-outline-aqua, .btn-outline-aqua:active, .btn-outline-aqua.active, .btn-outline-aqua.dropdown-toggle.show {
color: #000;
background-color: #00FFFF;
border-color: #00FFFF;
}
.btn-check:checked + .btn-outline-aqua:focus,
.btn-check:active + .btn-outline-aqua:focus, .btn-outline-aqua:active:focus, .btn-outline-aqua.active:focus, .btn-outline-aqua.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.5);
}
.btn-outline-aqua:disabled, .btn-outline-aqua.disabled {
color: #00FFFF;
background-color: transparent;
}
.btn-outline-aquamarine {
color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-outline-aquamarine:hover {
color: #000;
background-color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-check:focus + .btn-outline-aquamarine, .btn-outline-aquamarine:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(127, 255, 212, 0.5);
box-shadow: 0 0 0 0.25rem rgba(127, 255, 212, 0.5);
}
.btn-check:checked + .btn-outline-aquamarine,
.btn-check:active + .btn-outline-aquamarine, .btn-outline-aquamarine:active, .btn-outline-aquamarine.active, .btn-outline-aquamarine.dropdown-toggle.show {
color: #000;
background-color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-check:checked + .btn-outline-aquamarine:focus,
.btn-check:active + .btn-outline-aquamarine:focus, .btn-outline-aquamarine:active:focus, .btn-outline-aquamarine.active:focus, .btn-outline-aquamarine.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(127, 255, 212, 0.5);
box-shadow: 0 0 0 0.25rem rgba(127, 255, 212, 0.5);
}
.btn-outline-aquamarine:disabled, .btn-outline-aquamarine.disabled {
color: #7FFFD4;
background-color: transparent;
}
.btn-outline-azure {
color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-outline-azure:hover {
color: #000;
background-color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-check:focus + .btn-outline-azure, .btn-outline-azure:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-azure,
.btn-check:active + .btn-outline-azure, .btn-outline-azure:active, .btn-outline-azure.active, .btn-outline-azure.dropdown-toggle.show {
color: #000;
background-color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-check:checked + .btn-outline-azure:focus,
.btn-check:active + .btn-outline-azure:focus, .btn-outline-azure:active:focus, .btn-outline-azure.active:focus, .btn-outline-azure.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 255, 255, 0.5);
}
.btn-outline-azure:disabled, .btn-outline-azure.disabled {
color: #F0FFFF;
background-color: transparent;
}
.btn-outline-beige {
color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-outline-beige:hover {
color: #000;
background-color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-check:focus + .btn-outline-beige, .btn-outline-beige:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 245, 220, 0.5);
}
.btn-check:checked + .btn-outline-beige,
.btn-check:active + .btn-outline-beige, .btn-outline-beige:active, .btn-outline-beige.active, .btn-outline-beige.dropdown-toggle.show {
color: #000;
background-color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-check:checked + .btn-outline-beige:focus,
.btn-check:active + .btn-outline-beige:focus, .btn-outline-beige:active:focus, .btn-outline-beige.active:focus, .btn-outline-beige.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 245, 220, 0.5);
}
.btn-outline-beige:disabled, .btn-outline-beige.disabled {
color: #F5F5DC;
background-color: transparent;
}
.btn-outline-bisque {
color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-outline-bisque:hover {
color: #000;
background-color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-check:focus + .btn-outline-bisque, .btn-outline-bisque:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 196, 0.5);
}
.btn-check:checked + .btn-outline-bisque,
.btn-check:active + .btn-outline-bisque, .btn-outline-bisque:active, .btn-outline-bisque.active, .btn-outline-bisque.dropdown-toggle.show {
color: #000;
background-color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-check:checked + .btn-outline-bisque:focus,
.btn-check:active + .btn-outline-bisque:focus, .btn-outline-bisque:active:focus, .btn-outline-bisque.active:focus, .btn-outline-bisque.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 196, 0.5);
}
.btn-outline-bisque:disabled, .btn-outline-bisque.disabled {
color: #FFE4C4;
background-color: transparent;
}
.btn-outline-blanchedalmond {
color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-outline-blanchedalmond:hover {
color: #000;
background-color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-check:focus + .btn-outline-blanchedalmond, .btn-outline-blanchedalmond:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 235, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 235, 205, 0.5);
}
.btn-check:checked + .btn-outline-blanchedalmond,
.btn-check:active + .btn-outline-blanchedalmond, .btn-outline-blanchedalmond:active, .btn-outline-blanchedalmond.active, .btn-outline-blanchedalmond.dropdown-toggle.show {
color: #000;
background-color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-check:checked + .btn-outline-blanchedalmond:focus,
.btn-check:active + .btn-outline-blanchedalmond:focus, .btn-outline-blanchedalmond:active:focus, .btn-outline-blanchedalmond.active:focus, .btn-outline-blanchedalmond.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 235, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 235, 205, 0.5);
}
.btn-outline-blanchedalmond:disabled, .btn-outline-blanchedalmond.disabled {
color: #FFEBCD;
background-color: transparent;
}
.btn-outline-blueviolet {
color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-outline-blueviolet:hover {
color: #fff;
background-color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-check:focus + .btn-outline-blueviolet, .btn-outline-blueviolet:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.5);
box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.5);
}
.btn-check:checked + .btn-outline-blueviolet,
.btn-check:active + .btn-outline-blueviolet, .btn-outline-blueviolet:active, .btn-outline-blueviolet.active, .btn-outline-blueviolet.dropdown-toggle.show {
color: #fff;
background-color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-check:checked + .btn-outline-blueviolet:focus,
.btn-check:active + .btn-outline-blueviolet:focus, .btn-outline-blueviolet:active:focus, .btn-outline-blueviolet.active:focus, .btn-outline-blueviolet.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.5);
box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.5);
}
.btn-outline-blueviolet:disabled, .btn-outline-blueviolet.disabled {
color: #8A2BE2;
background-color: transparent;
}
.btn-outline-brown {
color: #A52A2A;
border-color: #A52A2A;
}
.btn-outline-brown:hover {
color: #fff;
background-color: #A52A2A;
border-color: #A52A2A;
}
.btn-check:focus + .btn-outline-brown, .btn-outline-brown:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.5);
box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.5);
}
.btn-check:checked + .btn-outline-brown,
.btn-check:active + .btn-outline-brown, .btn-outline-brown:active, .btn-outline-brown.active, .btn-outline-brown.dropdown-toggle.show {
color: #fff;
background-color: #A52A2A;
border-color: #A52A2A;
}
.btn-check:checked + .btn-outline-brown:focus,
.btn-check:active + .btn-outline-brown:focus, .btn-outline-brown:active:focus, .btn-outline-brown.active:focus, .btn-outline-brown.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.5);
box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.5);
}
.btn-outline-brown:disabled, .btn-outline-brown.disabled {
color: #A52A2A;
background-color: transparent;
}
.btn-outline-burlywood {
color: #DEB887;
border-color: #DEB887;
}
.btn-outline-burlywood:hover {
color: #000;
background-color: #DEB887;
border-color: #DEB887;
}
.btn-check:focus + .btn-outline-burlywood, .btn-outline-burlywood:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(222, 184, 135, 0.5);
box-shadow: 0 0 0 0.25rem rgba(222, 184, 135, 0.5);
}
.btn-check:checked + .btn-outline-burlywood,
.btn-check:active + .btn-outline-burlywood, .btn-outline-burlywood:active, .btn-outline-burlywood.active, .btn-outline-burlywood.dropdown-toggle.show {
color: #000;
background-color: #DEB887;
border-color: #DEB887;
}
.btn-check:checked + .btn-outline-burlywood:focus,
.btn-check:active + .btn-outline-burlywood:focus, .btn-outline-burlywood:active:focus, .btn-outline-burlywood.active:focus, .btn-outline-burlywood.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(222, 184, 135, 0.5);
box-shadow: 0 0 0 0.25rem rgba(222, 184, 135, 0.5);
}
.btn-outline-burlywood:disabled, .btn-outline-burlywood.disabled {
color: #DEB887;
background-color: transparent;
}
.btn-outline-cadetblue {
color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-outline-cadetblue:hover {
color: #000;
background-color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-check:focus + .btn-outline-cadetblue, .btn-outline-cadetblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 158, 160, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 158, 160, 0.5);
}
.btn-check:checked + .btn-outline-cadetblue,
.btn-check:active + .btn-outline-cadetblue, .btn-outline-cadetblue:active, .btn-outline-cadetblue.active, .btn-outline-cadetblue.dropdown-toggle.show {
color: #000;
background-color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-check:checked + .btn-outline-cadetblue:focus,
.btn-check:active + .btn-outline-cadetblue:focus, .btn-outline-cadetblue:active:focus, .btn-outline-cadetblue.active:focus, .btn-outline-cadetblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 158, 160, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 158, 160, 0.5);
}
.btn-outline-cadetblue:disabled, .btn-outline-cadetblue.disabled {
color: #5F9EA0;
background-color: transparent;
}
.btn-outline-chartreuse {
color: #7FFF00;
border-color: #7FFF00;
}
.btn-outline-chartreuse:hover {
color: #000;
background-color: #7FFF00;
border-color: #7FFF00;
}
.btn-check:focus + .btn-outline-chartreuse, .btn-outline-chartreuse:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(127, 255, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(127, 255, 0, 0.5);
}
.btn-check:checked + .btn-outline-chartreuse,
.btn-check:active + .btn-outline-chartreuse, .btn-outline-chartreuse:active, .btn-outline-chartreuse.active, .btn-outline-chartreuse.dropdown-toggle.show {
color: #000;
background-color: #7FFF00;
border-color: #7FFF00;
}
.btn-check:checked + .btn-outline-chartreuse:focus,
.btn-check:active + .btn-outline-chartreuse:focus, .btn-outline-chartreuse:active:focus, .btn-outline-chartreuse.active:focus, .btn-outline-chartreuse.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(127, 255, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(127, 255, 0, 0.5);
}
.btn-outline-chartreuse:disabled, .btn-outline-chartreuse.disabled {
color: #7FFF00;
background-color: transparent;
}
.btn-outline-chocolate {
color: #D2691E;
border-color: #D2691E;
}
.btn-outline-chocolate:hover {
color: #000;
background-color: #D2691E;
border-color: #D2691E;
}
.btn-check:focus + .btn-outline-chocolate, .btn-outline-chocolate:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.5);
box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.5);
}
.btn-check:checked + .btn-outline-chocolate,
.btn-check:active + .btn-outline-chocolate, .btn-outline-chocolate:active, .btn-outline-chocolate.active, .btn-outline-chocolate.dropdown-toggle.show {
color: #000;
background-color: #D2691E;
border-color: #D2691E;
}
.btn-check:checked + .btn-outline-chocolate:focus,
.btn-check:active + .btn-outline-chocolate:focus, .btn-outline-chocolate:active:focus, .btn-outline-chocolate.active:focus, .btn-outline-chocolate.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.5);
box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.5);
}
.btn-outline-chocolate:disabled, .btn-outline-chocolate.disabled {
color: #D2691E;
background-color: transparent;
}
.btn-outline-coral {
color: #FF7F50;
border-color: #FF7F50;
}
.btn-outline-coral:hover {
color: #000;
background-color: #FF7F50;
border-color: #FF7F50;
}
.btn-check:focus + .btn-outline-coral, .btn-outline-coral:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.5);
}
.btn-check:checked + .btn-outline-coral,
.btn-check:active + .btn-outline-coral, .btn-outline-coral:active, .btn-outline-coral.active, .btn-outline-coral.dropdown-toggle.show {
color: #000;
background-color: #FF7F50;
border-color: #FF7F50;
}
.btn-check:checked + .btn-outline-coral:focus,
.btn-check:active + .btn-outline-coral:focus, .btn-outline-coral:active:focus, .btn-outline-coral.active:focus, .btn-outline-coral.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.5);
}
.btn-outline-coral:disabled, .btn-outline-coral.disabled {
color: #FF7F50;
background-color: transparent;
}
.btn-outline-cornflowerblue {
color: #6495ED;
border-color: #6495ED;
}
.btn-outline-cornflowerblue:hover {
color: #000;
background-color: #6495ED;
border-color: #6495ED;
}
.btn-check:focus + .btn-outline-cornflowerblue, .btn-outline-cornflowerblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(100, 149, 237, 0.5);
box-shadow: 0 0 0 0.25rem rgba(100, 149, 237, 0.5);
}
.btn-check:checked + .btn-outline-cornflowerblue,
.btn-check:active + .btn-outline-cornflowerblue, .btn-outline-cornflowerblue:active, .btn-outline-cornflowerblue.active, .btn-outline-cornflowerblue.dropdown-toggle.show {
color: #000;
background-color: #6495ED;
border-color: #6495ED;
}
.btn-check:checked + .btn-outline-cornflowerblue:focus,
.btn-check:active + .btn-outline-cornflowerblue:focus, .btn-outline-cornflowerblue:active:focus, .btn-outline-cornflowerblue.active:focus, .btn-outline-cornflowerblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(100, 149, 237, 0.5);
box-shadow: 0 0 0 0.25rem rgba(100, 149, 237, 0.5);
}
.btn-outline-cornflowerblue:disabled, .btn-outline-cornflowerblue.disabled {
color: #6495ED;
background-color: transparent;
}
.btn-outline-cornsilk {
color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-outline-cornsilk:hover {
color: #000;
background-color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-check:focus + .btn-outline-cornsilk, .btn-outline-cornsilk:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 248, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 248, 220, 0.5);
}
.btn-check:checked + .btn-outline-cornsilk,
.btn-check:active + .btn-outline-cornsilk, .btn-outline-cornsilk:active, .btn-outline-cornsilk.active, .btn-outline-cornsilk.dropdown-toggle.show {
color: #000;
background-color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-check:checked + .btn-outline-cornsilk:focus,
.btn-check:active + .btn-outline-cornsilk:focus, .btn-outline-cornsilk:active:focus, .btn-outline-cornsilk.active:focus, .btn-outline-cornsilk.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 248, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 248, 220, 0.5);
}
.btn-outline-cornsilk:disabled, .btn-outline-cornsilk.disabled {
color: #FFF8DC;
background-color: transparent;
}
.btn-outline-crimson {
color: #DC143C;
border-color: #DC143C;
}
.btn-outline-crimson:hover {
color: #fff;
background-color: #DC143C;
border-color: #DC143C;
}
.btn-check:focus + .btn-outline-crimson, .btn-outline-crimson:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.5);
box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.5);
}
.btn-check:checked + .btn-outline-crimson,
.btn-check:active + .btn-outline-crimson, .btn-outline-crimson:active, .btn-outline-crimson.active, .btn-outline-crimson.dropdown-toggle.show {
color: #fff;
background-color: #DC143C;
border-color: #DC143C;
}
.btn-check:checked + .btn-outline-crimson:focus,
.btn-check:active + .btn-outline-crimson:focus, .btn-outline-crimson:active:focus, .btn-outline-crimson.active:focus, .btn-outline-crimson.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.5);
box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.5);
}
.btn-outline-crimson:disabled, .btn-outline-crimson.disabled {
color: #DC143C;
background-color: transparent;
}
.btn-outline-darkblue {
color: #00008B;
border-color: #00008B;
}
.btn-outline-darkblue:hover {
color: #fff;
background-color: #00008B;
border-color: #00008B;
}
.btn-check:focus + .btn-outline-darkblue, .btn-outline-darkblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.5);
}
.btn-check:checked + .btn-outline-darkblue,
.btn-check:active + .btn-outline-darkblue, .btn-outline-darkblue:active, .btn-outline-darkblue.active, .btn-outline-darkblue.dropdown-toggle.show {
color: #fff;
background-color: #00008B;
border-color: #00008B;
}
.btn-check:checked + .btn-outline-darkblue:focus,
.btn-check:active + .btn-outline-darkblue:focus, .btn-outline-darkblue:active:focus, .btn-outline-darkblue.active:focus, .btn-outline-darkblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.5);
}
.btn-outline-darkblue:disabled, .btn-outline-darkblue.disabled {
color: #00008B;
background-color: transparent;
}
.btn-outline-darkcyan {
color: #008B8B;
border-color: #008B8B;
}
.btn-outline-darkcyan:hover {
color: #000;
background-color: #008B8B;
border-color: #008B8B;
}
.btn-check:focus + .btn-outline-darkcyan, .btn-outline-darkcyan:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.5);
}
.btn-check:checked + .btn-outline-darkcyan,
.btn-check:active + .btn-outline-darkcyan, .btn-outline-darkcyan:active, .btn-outline-darkcyan.active, .btn-outline-darkcyan.dropdown-toggle.show {
color: #000;
background-color: #008B8B;
border-color: #008B8B;
}
.btn-check:checked + .btn-outline-darkcyan:focus,
.btn-check:active + .btn-outline-darkcyan:focus, .btn-outline-darkcyan:active:focus, .btn-outline-darkcyan.active:focus, .btn-outline-darkcyan.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.5);
}
.btn-outline-darkcyan:disabled, .btn-outline-darkcyan.disabled {
color: #008B8B;
background-color: transparent;
}
.btn-outline-darkgoldenrod {
color: #B8860B;
border-color: #B8860B;
}
.btn-outline-darkgoldenrod:hover {
color: #000;
background-color: #B8860B;
border-color: #B8860B;
}
.btn-check:focus + .btn-outline-darkgoldenrod, .btn-outline-darkgoldenrod:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5);
box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5);
}
.btn-check:checked + .btn-outline-darkgoldenrod,
.btn-check:active + .btn-outline-darkgoldenrod, .btn-outline-darkgoldenrod:active, .btn-outline-darkgoldenrod.active, .btn-outline-darkgoldenrod.dropdown-toggle.show {
color: #000;
background-color: #B8860B;
border-color: #B8860B;
}
.btn-check:checked + .btn-outline-darkgoldenrod:focus,
.btn-check:active + .btn-outline-darkgoldenrod:focus, .btn-outline-darkgoldenrod:active:focus, .btn-outline-darkgoldenrod.active:focus, .btn-outline-darkgoldenrod.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5);
box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5);
}
.btn-outline-darkgoldenrod:disabled, .btn-outline-darkgoldenrod.disabled {
color: #B8860B;
background-color: transparent;
}
.btn-outline-darkgray {
color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-outline-darkgray:hover {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-check:focus + .btn-outline-darkgray, .btn-outline-darkgray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
}
.btn-check:checked + .btn-outline-darkgray,
.btn-check:active + .btn-outline-darkgray, .btn-outline-darkgray:active, .btn-outline-darkgray.active, .btn-outline-darkgray.dropdown-toggle.show {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-check:checked + .btn-outline-darkgray:focus,
.btn-check:active + .btn-outline-darkgray:focus, .btn-outline-darkgray:active:focus, .btn-outline-darkgray.active:focus, .btn-outline-darkgray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
}
.btn-outline-darkgray:disabled, .btn-outline-darkgray.disabled {
color: #A9A9A9;
background-color: transparent;
}
.btn-outline-darkgreen {
color: #006400;
border-color: #006400;
}
.btn-outline-darkgreen:hover {
color: #fff;
background-color: #006400;
border-color: #006400;
}
.btn-check:focus + .btn-outline-darkgreen, .btn-outline-darkgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.5);
}
.btn-check:checked + .btn-outline-darkgreen,
.btn-check:active + .btn-outline-darkgreen, .btn-outline-darkgreen:active, .btn-outline-darkgreen.active, .btn-outline-darkgreen.dropdown-toggle.show {
color: #fff;
background-color: #006400;
border-color: #006400;
}
.btn-check:checked + .btn-outline-darkgreen:focus,
.btn-check:active + .btn-outline-darkgreen:focus, .btn-outline-darkgreen:active:focus, .btn-outline-darkgreen.active:focus, .btn-outline-darkgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.5);
}
.btn-outline-darkgreen:disabled, .btn-outline-darkgreen.disabled {
color: #006400;
background-color: transparent;
}
.btn-outline-darkgrey {
color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-outline-darkgrey:hover {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-check:focus + .btn-outline-darkgrey, .btn-outline-darkgrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
}
.btn-check:checked + .btn-outline-darkgrey,
.btn-check:active + .btn-outline-darkgrey, .btn-outline-darkgrey:active, .btn-outline-darkgrey.active, .btn-outline-darkgrey.dropdown-toggle.show {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-check:checked + .btn-outline-darkgrey:focus,
.btn-check:active + .btn-outline-darkgrey:focus, .btn-outline-darkgrey:active:focus, .btn-outline-darkgrey.active:focus, .btn-outline-darkgrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
}
.btn-outline-darkgrey:disabled, .btn-outline-darkgrey.disabled {
color: #A9A9A9;
background-color: transparent;
}
.btn-outline-darkkhaki {
color: #BDB76B;
border-color: #BDB76B;
}
.btn-outline-darkkhaki:hover {
color: #000;
background-color: #BDB76B;
border-color: #BDB76B;
}
.btn-check:focus + .btn-outline-darkkhaki, .btn-outline-darkkhaki:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(189, 183, 107, 0.5);
box-shadow: 0 0 0 0.25rem rgba(189, 183, 107, 0.5);
}
.btn-check:checked + .btn-outline-darkkhaki,
.btn-check:active + .btn-outline-darkkhaki, .btn-outline-darkkhaki:active, .btn-outline-darkkhaki.active, .btn-outline-darkkhaki.dropdown-toggle.show {
color: #000;
background-color: #BDB76B;
border-color: #BDB76B;
}
.btn-check:checked + .btn-outline-darkkhaki:focus,
.btn-check:active + .btn-outline-darkkhaki:focus, .btn-outline-darkkhaki:active:focus, .btn-outline-darkkhaki.active:focus, .btn-outline-darkkhaki.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(189, 183, 107, 0.5);
box-shadow: 0 0 0 0.25rem rgba(189, 183, 107, 0.5);
}
.btn-outline-darkkhaki:disabled, .btn-outline-darkkhaki.disabled {
color: #BDB76B;
background-color: transparent;
}
.btn-outline-darkmagenta {
color: #8B008B;
border-color: #8B008B;
}
.btn-outline-darkmagenta:hover {
color: #fff;
background-color: #8B008B;
border-color: #8B008B;
}
.btn-check:focus + .btn-outline-darkmagenta, .btn-outline-darkmagenta:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 0, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 0, 139, 0.5);
}
.btn-check:checked + .btn-outline-darkmagenta,
.btn-check:active + .btn-outline-darkmagenta, .btn-outline-darkmagenta:active, .btn-outline-darkmagenta.active, .btn-outline-darkmagenta.dropdown-toggle.show {
color: #fff;
background-color: #8B008B;
border-color: #8B008B;
}
.btn-check:checked + .btn-outline-darkmagenta:focus,
.btn-check:active + .btn-outline-darkmagenta:focus, .btn-outline-darkmagenta:active:focus, .btn-outline-darkmagenta.active:focus, .btn-outline-darkmagenta.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 0, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 0, 139, 0.5);
}
.btn-outline-darkmagenta:disabled, .btn-outline-darkmagenta.disabled {
color: #8B008B;
background-color: transparent;
}
.btn-outline-darkolivegreen {
color: #556B2F;
border-color: #556B2F;
}
.btn-outline-darkolivegreen:hover {
color: #fff;
background-color: #556B2F;
border-color: #556B2F;
}
.btn-check:focus + .btn-outline-darkolivegreen, .btn-outline-darkolivegreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.5);
box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.5);
}
.btn-check:checked + .btn-outline-darkolivegreen,
.btn-check:active + .btn-outline-darkolivegreen, .btn-outline-darkolivegreen:active, .btn-outline-darkolivegreen.active, .btn-outline-darkolivegreen.dropdown-toggle.show {
color: #fff;
background-color: #556B2F;
border-color: #556B2F;
}
.btn-check:checked + .btn-outline-darkolivegreen:focus,
.btn-check:active + .btn-outline-darkolivegreen:focus, .btn-outline-darkolivegreen:active:focus, .btn-outline-darkolivegreen.active:focus, .btn-outline-darkolivegreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.5);
box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.5);
}
.btn-outline-darkolivegreen:disabled, .btn-outline-darkolivegreen.disabled {
color: #556B2F;
background-color: transparent;
}
.btn-outline-darkorange {
color: #FF8C00;
border-color: #FF8C00;
}
.btn-outline-darkorange:hover {
color: #000;
background-color: #FF8C00;
border-color: #FF8C00;
}
.btn-check:focus + .btn-outline-darkorange, .btn-outline-darkorange:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
}
.btn-check:checked + .btn-outline-darkorange,
.btn-check:active + .btn-outline-darkorange, .btn-outline-darkorange:active, .btn-outline-darkorange.active, .btn-outline-darkorange.dropdown-toggle.show {
color: #000;
background-color: #FF8C00;
border-color: #FF8C00;
}
.btn-check:checked + .btn-outline-darkorange:focus,
.btn-check:active + .btn-outline-darkorange:focus, .btn-outline-darkorange:active:focus, .btn-outline-darkorange.active:focus, .btn-outline-darkorange.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
}
.btn-outline-darkorange:disabled, .btn-outline-darkorange.disabled {
color: #FF8C00;
background-color: transparent;
}
.btn-outline-darkorchid {
color: #9932CC;
border-color: #9932CC;
}
.btn-outline-darkorchid:hover {
color: #fff;
background-color: #9932CC;
border-color: #9932CC;
}
.btn-check:focus + .btn-outline-darkorchid, .btn-outline-darkorchid:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(153, 50, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(153, 50, 204, 0.5);
}
.btn-check:checked + .btn-outline-darkorchid,
.btn-check:active + .btn-outline-darkorchid, .btn-outline-darkorchid:active, .btn-outline-darkorchid.active, .btn-outline-darkorchid.dropdown-toggle.show {
color: #fff;
background-color: #9932CC;
border-color: #9932CC;
}
.btn-check:checked + .btn-outline-darkorchid:focus,
.btn-check:active + .btn-outline-darkorchid:focus, .btn-outline-darkorchid:active:focus, .btn-outline-darkorchid.active:focus, .btn-outline-darkorchid.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(153, 50, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(153, 50, 204, 0.5);
}
.btn-outline-darkorchid:disabled, .btn-outline-darkorchid.disabled {
color: #9932CC;
background-color: transparent;
}
.btn-outline-darkred {
color: #8B0000;
border-color: #8B0000;
}
.btn-outline-darkred:hover {
color: #fff;
background-color: #8B0000;
border-color: #8B0000;
}
.btn-check:focus + .btn-outline-darkred, .btn-outline-darkred:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.5);
}
.btn-check:checked + .btn-outline-darkred,
.btn-check:active + .btn-outline-darkred, .btn-outline-darkred:active, .btn-outline-darkred.active, .btn-outline-darkred.dropdown-toggle.show {
color: #fff;
background-color: #8B0000;
border-color: #8B0000;
}
.btn-check:checked + .btn-outline-darkred:focus,
.btn-check:active + .btn-outline-darkred:focus, .btn-outline-darkred:active:focus, .btn-outline-darkred.active:focus, .btn-outline-darkred.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.5);
}
.btn-outline-darkred:disabled, .btn-outline-darkred.disabled {
color: #8B0000;
background-color: transparent;
}
.btn-outline-darksalmon {
color: #E9967A;
border-color: #E9967A;
}
.btn-outline-darksalmon:hover {
color: #000;
background-color: #E9967A;
border-color: #E9967A;
}
.btn-check:focus + .btn-outline-darksalmon, .btn-outline-darksalmon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(233, 150, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(233, 150, 122, 0.5);
}
.btn-check:checked + .btn-outline-darksalmon,
.btn-check:active + .btn-outline-darksalmon, .btn-outline-darksalmon:active, .btn-outline-darksalmon.active, .btn-outline-darksalmon.dropdown-toggle.show {
color: #000;
background-color: #E9967A;
border-color: #E9967A;
}
.btn-check:checked + .btn-outline-darksalmon:focus,
.btn-check:active + .btn-outline-darksalmon:focus, .btn-outline-darksalmon:active:focus, .btn-outline-darksalmon.active:focus, .btn-outline-darksalmon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(233, 150, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(233, 150, 122, 0.5);
}
.btn-outline-darksalmon:disabled, .btn-outline-darksalmon.disabled {
color: #E9967A;
background-color: transparent;
}
.btn-outline-darkseagreen {
color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-outline-darkseagreen:hover {
color: #000;
background-color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-check:focus + .btn-outline-darkseagreen, .btn-outline-darkseagreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(143, 188, 143, 0.5);
box-shadow: 0 0 0 0.25rem rgba(143, 188, 143, 0.5);
}
.btn-check:checked + .btn-outline-darkseagreen,
.btn-check:active + .btn-outline-darkseagreen, .btn-outline-darkseagreen:active, .btn-outline-darkseagreen.active, .btn-outline-darkseagreen.dropdown-toggle.show {
color: #000;
background-color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-check:checked + .btn-outline-darkseagreen:focus,
.btn-check:active + .btn-outline-darkseagreen:focus, .btn-outline-darkseagreen:active:focus, .btn-outline-darkseagreen.active:focus, .btn-outline-darkseagreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(143, 188, 143, 0.5);
box-shadow: 0 0 0 0.25rem rgba(143, 188, 143, 0.5);
}
.btn-outline-darkseagreen:disabled, .btn-outline-darkseagreen.disabled {
color: #8FBC8F;
background-color: transparent;
}
.btn-outline-darkslateblue {
color: #483D8B;
border-color: #483D8B;
}
.btn-outline-darkslateblue:hover {
color: #fff;
background-color: #483D8B;
border-color: #483D8B;
}
.btn-check:focus + .btn-outline-darkslateblue, .btn-outline-darkslateblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.5);
}
.btn-check:checked + .btn-outline-darkslateblue,
.btn-check:active + .btn-outline-darkslateblue, .btn-outline-darkslateblue:active, .btn-outline-darkslateblue.active, .btn-outline-darkslateblue.dropdown-toggle.show {
color: #fff;
background-color: #483D8B;
border-color: #483D8B;
}
.btn-check:checked + .btn-outline-darkslateblue:focus,
.btn-check:active + .btn-outline-darkslateblue:focus, .btn-outline-darkslateblue:active:focus, .btn-outline-darkslateblue.active:focus, .btn-outline-darkslateblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.5);
}
.btn-outline-darkslateblue:disabled, .btn-outline-darkslateblue.disabled {
color: #483D8B;
background-color: transparent;
}
.btn-outline-darkslategray {
color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-outline-darkslategray:hover {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-check:focus + .btn-outline-darkslategray, .btn-outline-darkslategray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
}
.btn-check:checked + .btn-outline-darkslategray,
.btn-check:active + .btn-outline-darkslategray, .btn-outline-darkslategray:active, .btn-outline-darkslategray.active, .btn-outline-darkslategray.dropdown-toggle.show {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-check:checked + .btn-outline-darkslategray:focus,
.btn-check:active + .btn-outline-darkslategray:focus, .btn-outline-darkslategray:active:focus, .btn-outline-darkslategray.active:focus, .btn-outline-darkslategray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
}
.btn-outline-darkslategray:disabled, .btn-outline-darkslategray.disabled {
color: #2F4F4F;
background-color: transparent;
}
.btn-outline-darkslategrey {
color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-outline-darkslategrey:hover {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-check:focus + .btn-outline-darkslategrey, .btn-outline-darkslategrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
}
.btn-check:checked + .btn-outline-darkslategrey,
.btn-check:active + .btn-outline-darkslategrey, .btn-outline-darkslategrey:active, .btn-outline-darkslategrey.active, .btn-outline-darkslategrey.dropdown-toggle.show {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-check:checked + .btn-outline-darkslategrey:focus,
.btn-check:active + .btn-outline-darkslategrey:focus, .btn-outline-darkslategrey:active:focus, .btn-outline-darkslategrey.active:focus, .btn-outline-darkslategrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
}
.btn-outline-darkslategrey:disabled, .btn-outline-darkslategrey.disabled {
color: #2F4F4F;
background-color: transparent;
}
.btn-outline-darkturquoise {
color: #00CED1;
border-color: #00CED1;
}
.btn-outline-darkturquoise:hover {
color: #000;
background-color: #00CED1;
border-color: #00CED1;
}
.btn-check:focus + .btn-outline-darkturquoise, .btn-outline-darkturquoise:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 206, 209, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 206, 209, 0.5);
}
.btn-check:checked + .btn-outline-darkturquoise,
.btn-check:active + .btn-outline-darkturquoise, .btn-outline-darkturquoise:active, .btn-outline-darkturquoise.active, .btn-outline-darkturquoise.dropdown-toggle.show {
color: #000;
background-color: #00CED1;
border-color: #00CED1;
}
.btn-check:checked + .btn-outline-darkturquoise:focus,
.btn-check:active + .btn-outline-darkturquoise:focus, .btn-outline-darkturquoise:active:focus, .btn-outline-darkturquoise.active:focus, .btn-outline-darkturquoise.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 206, 209, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 206, 209, 0.5);
}
.btn-outline-darkturquoise:disabled, .btn-outline-darkturquoise.disabled {
color: #00CED1;
background-color: transparent;
}
.btn-outline-darkviolet {
color: #9400D3;
border-color: #9400D3;
}
.btn-outline-darkviolet:hover {
color: #fff;
background-color: #9400D3;
border-color: #9400D3;
}
.btn-check:focus + .btn-outline-darkviolet, .btn-outline-darkviolet:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.5);
}
.btn-check:checked + .btn-outline-darkviolet,
.btn-check:active + .btn-outline-darkviolet, .btn-outline-darkviolet:active, .btn-outline-darkviolet.active, .btn-outline-darkviolet.dropdown-toggle.show {
color: #fff;
background-color: #9400D3;
border-color: #9400D3;
}
.btn-check:checked + .btn-outline-darkviolet:focus,
.btn-check:active + .btn-outline-darkviolet:focus, .btn-outline-darkviolet:active:focus, .btn-outline-darkviolet.active:focus, .btn-outline-darkviolet.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.5);
}
.btn-outline-darkviolet:disabled, .btn-outline-darkviolet.disabled {
color: #9400D3;
background-color: transparent;
}
.btn-outline-deeppink {
color: #FF1493;
border-color: #FF1493;
}
.btn-outline-deeppink:hover {
color: #000;
background-color: #FF1493;
border-color: #FF1493;
}
.btn-check:focus + .btn-outline-deeppink, .btn-outline-deeppink:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.5);
}
.btn-check:checked + .btn-outline-deeppink,
.btn-check:active + .btn-outline-deeppink, .btn-outline-deeppink:active, .btn-outline-deeppink.active, .btn-outline-deeppink.dropdown-toggle.show {
color: #000;
background-color: #FF1493;
border-color: #FF1493;
}
.btn-check:checked + .btn-outline-deeppink:focus,
.btn-check:active + .btn-outline-deeppink:focus, .btn-outline-deeppink:active:focus, .btn-outline-deeppink.active:focus, .btn-outline-deeppink.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.5);
}
.btn-outline-deeppink:disabled, .btn-outline-deeppink.disabled {
color: #FF1493;
background-color: transparent;
}
.btn-outline-deepskyblue {
color: #00BFFF;
border-color: #00BFFF;
}
.btn-outline-deepskyblue:hover {
color: #000;
background-color: #00BFFF;
border-color: #00BFFF;
}
.btn-check:focus + .btn-outline-deepskyblue, .btn-outline-deepskyblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
}
.btn-check:checked + .btn-outline-deepskyblue,
.btn-check:active + .btn-outline-deepskyblue, .btn-outline-deepskyblue:active, .btn-outline-deepskyblue.active, .btn-outline-deepskyblue.dropdown-toggle.show {
color: #000;
background-color: #00BFFF;
border-color: #00BFFF;
}
.btn-check:checked + .btn-outline-deepskyblue:focus,
.btn-check:active + .btn-outline-deepskyblue:focus, .btn-outline-deepskyblue:active:focus, .btn-outline-deepskyblue.active:focus, .btn-outline-deepskyblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
}
.btn-outline-deepskyblue:disabled, .btn-outline-deepskyblue.disabled {
color: #00BFFF;
background-color: transparent;
}
.btn-outline-dimgray {
color: #696969;
border-color: #696969;
}
.btn-outline-dimgray:hover {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-check:focus + .btn-outline-dimgray, .btn-outline-dimgray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
}
.btn-check:checked + .btn-outline-dimgray,
.btn-check:active + .btn-outline-dimgray, .btn-outline-dimgray:active, .btn-outline-dimgray.active, .btn-outline-dimgray.dropdown-toggle.show {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-check:checked + .btn-outline-dimgray:focus,
.btn-check:active + .btn-outline-dimgray:focus, .btn-outline-dimgray:active:focus, .btn-outline-dimgray.active:focus, .btn-outline-dimgray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
}
.btn-outline-dimgray:disabled, .btn-outline-dimgray.disabled {
color: #696969;
background-color: transparent;
}
.btn-outline-dimgrey {
color: #696969;
border-color: #696969;
}
.btn-outline-dimgrey:hover {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-check:focus + .btn-outline-dimgrey, .btn-outline-dimgrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
}
.btn-check:checked + .btn-outline-dimgrey,
.btn-check:active + .btn-outline-dimgrey, .btn-outline-dimgrey:active, .btn-outline-dimgrey.active, .btn-outline-dimgrey.dropdown-toggle.show {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-check:checked + .btn-outline-dimgrey:focus,
.btn-check:active + .btn-outline-dimgrey:focus, .btn-outline-dimgrey:active:focus, .btn-outline-dimgrey.active:focus, .btn-outline-dimgrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
}
.btn-outline-dimgrey:disabled, .btn-outline-dimgrey.disabled {
color: #696969;
background-color: transparent;
}
.btn-outline-dodgerblue {
color: #1E90FF;
border-color: #1E90FF;
}
.btn-outline-dodgerblue:hover {
color: #000;
background-color: #1E90FF;
border-color: #1E90FF;
}
.btn-check:focus + .btn-outline-dodgerblue, .btn-outline-dodgerblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.5);
}
.btn-check:checked + .btn-outline-dodgerblue,
.btn-check:active + .btn-outline-dodgerblue, .btn-outline-dodgerblue:active, .btn-outline-dodgerblue.active, .btn-outline-dodgerblue.dropdown-toggle.show {
color: #000;
background-color: #1E90FF;
border-color: #1E90FF;
}
.btn-check:checked + .btn-outline-dodgerblue:focus,
.btn-check:active + .btn-outline-dodgerblue:focus, .btn-outline-dodgerblue:active:focus, .btn-outline-dodgerblue.active:focus, .btn-outline-dodgerblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.5);
}
.btn-outline-dodgerblue:disabled, .btn-outline-dodgerblue.disabled {
color: #1E90FF;
background-color: transparent;
}
.btn-outline-firebrick {
color: #B22222;
border-color: #B22222;
}
.btn-outline-firebrick:hover {
color: #fff;
background-color: #B22222;
border-color: #B22222;
}
.btn-check:focus + .btn-outline-firebrick, .btn-outline-firebrick:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(178, 34, 34, 0.5);
box-shadow: 0 0 0 0.25rem rgba(178, 34, 34, 0.5);
}
.btn-check:checked + .btn-outline-firebrick,
.btn-check:active + .btn-outline-firebrick, .btn-outline-firebrick:active, .btn-outline-firebrick.active, .btn-outline-firebrick.dropdown-toggle.show {
color: #fff;
background-color: #B22222;
border-color: #B22222;
}
.btn-check:checked + .btn-outline-firebrick:focus,
.btn-check:active + .btn-outline-firebrick:focus, .btn-outline-firebrick:active:focus, .btn-outline-firebrick.active:focus, .btn-outline-firebrick.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(178, 34, 34, 0.5);
box-shadow: 0 0 0 0.25rem rgba(178, 34, 34, 0.5);
}
.btn-outline-firebrick:disabled, .btn-outline-firebrick.disabled {
color: #B22222;
background-color: transparent;
}
.btn-outline-floralwhite {
color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-outline-floralwhite:hover {
color: #000;
background-color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-check:focus + .btn-outline-floralwhite, .btn-outline-floralwhite:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 240, 0.5);
}
.btn-check:checked + .btn-outline-floralwhite,
.btn-check:active + .btn-outline-floralwhite, .btn-outline-floralwhite:active, .btn-outline-floralwhite.active, .btn-outline-floralwhite.dropdown-toggle.show {
color: #000;
background-color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-check:checked + .btn-outline-floralwhite:focus,
.btn-check:active + .btn-outline-floralwhite:focus, .btn-outline-floralwhite:active:focus, .btn-outline-floralwhite.active:focus, .btn-outline-floralwhite.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 240, 0.5);
}
.btn-outline-floralwhite:disabled, .btn-outline-floralwhite.disabled {
color: #FFFAF0;
background-color: transparent;
}
.btn-outline-forestgreen {
color: #228B22;
border-color: #228B22;
}
.btn-outline-forestgreen:hover {
color: #000;
background-color: #228B22;
border-color: #228B22;
}
.btn-check:focus + .btn-outline-forestgreen, .btn-outline-forestgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.5);
box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.5);
}
.btn-check:checked + .btn-outline-forestgreen,
.btn-check:active + .btn-outline-forestgreen, .btn-outline-forestgreen:active, .btn-outline-forestgreen.active, .btn-outline-forestgreen.dropdown-toggle.show {
color: #000;
background-color: #228B22;
border-color: #228B22;
}
.btn-check:checked + .btn-outline-forestgreen:focus,
.btn-check:active + .btn-outline-forestgreen:focus, .btn-outline-forestgreen:active:focus, .btn-outline-forestgreen.active:focus, .btn-outline-forestgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.5);
box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.5);
}
.btn-outline-forestgreen:disabled, .btn-outline-forestgreen.disabled {
color: #228B22;
background-color: transparent;
}
.btn-outline-fuchsia {
color: #FF00FF;
border-color: #FF00FF;
}
.btn-outline-fuchsia:hover {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-check:focus + .btn-outline-fuchsia, .btn-outline-fuchsia:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
}
.btn-check:checked + .btn-outline-fuchsia,
.btn-check:active + .btn-outline-fuchsia, .btn-outline-fuchsia:active, .btn-outline-fuchsia.active, .btn-outline-fuchsia.dropdown-toggle.show {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-check:checked + .btn-outline-fuchsia:focus,
.btn-check:active + .btn-outline-fuchsia:focus, .btn-outline-fuchsia:active:focus, .btn-outline-fuchsia.active:focus, .btn-outline-fuchsia.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
}
.btn-outline-fuchsia:disabled, .btn-outline-fuchsia.disabled {
color: #FF00FF;
background-color: transparent;
}
.btn-outline-gainsboro {
color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-outline-gainsboro:hover {
color: #000;
background-color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-check:focus + .btn-outline-gainsboro, .btn-outline-gainsboro:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 220, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(220, 220, 220, 0.5);
}
.btn-check:checked + .btn-outline-gainsboro,
.btn-check:active + .btn-outline-gainsboro, .btn-outline-gainsboro:active, .btn-outline-gainsboro.active, .btn-outline-gainsboro.dropdown-toggle.show {
color: #000;
background-color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-check:checked + .btn-outline-gainsboro:focus,
.btn-check:active + .btn-outline-gainsboro:focus, .btn-outline-gainsboro:active:focus, .btn-outline-gainsboro.active:focus, .btn-outline-gainsboro.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 220, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(220, 220, 220, 0.5);
}
.btn-outline-gainsboro:disabled, .btn-outline-gainsboro.disabled {
color: #DCDCDC;
background-color: transparent;
}
.btn-outline-ghostwhite {
color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-outline-ghostwhite:hover {
color: #000;
background-color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-check:focus + .btn-outline-ghostwhite, .btn-outline-ghostwhite:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 248, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(248, 248, 255, 0.5);
}
.btn-check:checked + .btn-outline-ghostwhite,
.btn-check:active + .btn-outline-ghostwhite, .btn-outline-ghostwhite:active, .btn-outline-ghostwhite.active, .btn-outline-ghostwhite.dropdown-toggle.show {
color: #000;
background-color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-check:checked + .btn-outline-ghostwhite:focus,
.btn-check:active + .btn-outline-ghostwhite:focus, .btn-outline-ghostwhite:active:focus, .btn-outline-ghostwhite.active:focus, .btn-outline-ghostwhite.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 248, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(248, 248, 255, 0.5);
}
.btn-outline-ghostwhite:disabled, .btn-outline-ghostwhite.disabled {
color: #F8F8FF;
background-color: transparent;
}
.btn-outline-gold {
color: #FFD700;
border-color: #FFD700;
}
.btn-outline-gold:hover {
color: #000;
background-color: #FFD700;
border-color: #FFD700;
}
.btn-check:focus + .btn-outline-gold, .btn-outline-gold:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
}
.btn-check:checked + .btn-outline-gold,
.btn-check:active + .btn-outline-gold, .btn-outline-gold:active, .btn-outline-gold.active, .btn-outline-gold.dropdown-toggle.show {
color: #000;
background-color: #FFD700;
border-color: #FFD700;
}
.btn-check:checked + .btn-outline-gold:focus,
.btn-check:active + .btn-outline-gold:focus, .btn-outline-gold:active:focus, .btn-outline-gold.active:focus, .btn-outline-gold.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
}
.btn-outline-gold:disabled, .btn-outline-gold.disabled {
color: #FFD700;
background-color: transparent;
}
.btn-outline-goldenrod {
color: #DAA520;
border-color: #DAA520;
}
.btn-outline-goldenrod:hover {
color: #000;
background-color: #DAA520;
border-color: #DAA520;
}
.btn-check:focus + .btn-outline-goldenrod, .btn-outline-goldenrod:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.5);
}
.btn-check:checked + .btn-outline-goldenrod,
.btn-check:active + .btn-outline-goldenrod, .btn-outline-goldenrod:active, .btn-outline-goldenrod.active, .btn-outline-goldenrod.dropdown-toggle.show {
color: #000;
background-color: #DAA520;
border-color: #DAA520;
}
.btn-check:checked + .btn-outline-goldenrod:focus,
.btn-check:active + .btn-outline-goldenrod:focus, .btn-outline-goldenrod:active:focus, .btn-outline-goldenrod.active:focus, .btn-outline-goldenrod.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.5);
}
.btn-outline-goldenrod:disabled, .btn-outline-goldenrod.disabled {
color: #DAA520;
background-color: transparent;
}
.btn-outline-greenyellow {
color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-outline-greenyellow:hover {
color: #000;
background-color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-check:focus + .btn-outline-greenyellow, .btn-outline-greenyellow:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(173, 255, 47, 0.5);
box-shadow: 0 0 0 0.25rem rgba(173, 255, 47, 0.5);
}
.btn-check:checked + .btn-outline-greenyellow,
.btn-check:active + .btn-outline-greenyellow, .btn-outline-greenyellow:active, .btn-outline-greenyellow.active, .btn-outline-greenyellow.dropdown-toggle.show {
color: #000;
background-color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-check:checked + .btn-outline-greenyellow:focus,
.btn-check:active + .btn-outline-greenyellow:focus, .btn-outline-greenyellow:active:focus, .btn-outline-greenyellow.active:focus, .btn-outline-greenyellow.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(173, 255, 47, 0.5);
box-shadow: 0 0 0 0.25rem rgba(173, 255, 47, 0.5);
}
.btn-outline-greenyellow:disabled, .btn-outline-greenyellow.disabled {
color: #ADFF2F;
background-color: transparent;
}
.btn-outline-grey {
color: #808080;
border-color: #808080;
}
.btn-outline-grey:hover {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-check:focus + .btn-outline-grey, .btn-outline-grey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-check:checked + .btn-outline-grey,
.btn-check:active + .btn-outline-grey, .btn-outline-grey:active, .btn-outline-grey.active, .btn-outline-grey.dropdown-toggle.show {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-check:checked + .btn-outline-grey:focus,
.btn-check:active + .btn-outline-grey:focus, .btn-outline-grey:active:focus, .btn-outline-grey.active:focus, .btn-outline-grey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-outline-grey:disabled, .btn-outline-grey.disabled {
color: #808080;
background-color: transparent;
}
.btn-outline-honeydew {
color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-outline-honeydew:hover {
color: #000;
background-color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-check:focus + .btn-outline-honeydew, .btn-outline-honeydew:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 255, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 255, 240, 0.5);
}
.btn-check:checked + .btn-outline-honeydew,
.btn-check:active + .btn-outline-honeydew, .btn-outline-honeydew:active, .btn-outline-honeydew.active, .btn-outline-honeydew.dropdown-toggle.show {
color: #000;
background-color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-check:checked + .btn-outline-honeydew:focus,
.btn-check:active + .btn-outline-honeydew:focus, .btn-outline-honeydew:active:focus, .btn-outline-honeydew.active:focus, .btn-outline-honeydew.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 255, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 255, 240, 0.5);
}
.btn-outline-honeydew:disabled, .btn-outline-honeydew.disabled {
color: #F0FFF0;
background-color: transparent;
}
.btn-outline-hotpink {
color: #FF69B4;
border-color: #FF69B4;
}
.btn-outline-hotpink:hover {
color: #000;
background-color: #FF69B4;
border-color: #FF69B4;
}
.btn-check:focus + .btn-outline-hotpink, .btn-outline-hotpink:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.5);
}
.btn-check:checked + .btn-outline-hotpink,
.btn-check:active + .btn-outline-hotpink, .btn-outline-hotpink:active, .btn-outline-hotpink.active, .btn-outline-hotpink.dropdown-toggle.show {
color: #000;
background-color: #FF69B4;
border-color: #FF69B4;
}
.btn-check:checked + .btn-outline-hotpink:focus,
.btn-check:active + .btn-outline-hotpink:focus, .btn-outline-hotpink:active:focus, .btn-outline-hotpink.active:focus, .btn-outline-hotpink.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.5);
}
.btn-outline-hotpink:disabled, .btn-outline-hotpink.disabled {
color: #FF69B4;
background-color: transparent;
}
.btn-outline-indianred {
color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-outline-indianred:hover {
color: #000;
background-color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-check:focus + .btn-outline-indianred, .btn-outline-indianred:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(205, 92, 92, 0.5);
box-shadow: 0 0 0 0.25rem rgba(205, 92, 92, 0.5);
}
.btn-check:checked + .btn-outline-indianred,
.btn-check:active + .btn-outline-indianred, .btn-outline-indianred:active, .btn-outline-indianred.active, .btn-outline-indianred.dropdown-toggle.show {
color: #000;
background-color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-check:checked + .btn-outline-indianred:focus,
.btn-check:active + .btn-outline-indianred:focus, .btn-outline-indianred:active:focus, .btn-outline-indianred.active:focus, .btn-outline-indianred.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(205, 92, 92, 0.5);
box-shadow: 0 0 0 0.25rem rgba(205, 92, 92, 0.5);
}
.btn-outline-indianred:disabled, .btn-outline-indianred.disabled {
color: #CD5C5C;
background-color: transparent;
}
.btn-outline-ivory {
color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-outline-ivory:hover {
color: #000;
background-color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-check:focus + .btn-outline-ivory, .btn-outline-ivory:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 255, 240, 0.5);
}
.btn-check:checked + .btn-outline-ivory,
.btn-check:active + .btn-outline-ivory, .btn-outline-ivory:active, .btn-outline-ivory.active, .btn-outline-ivory.dropdown-toggle.show {
color: #000;
background-color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-check:checked + .btn-outline-ivory:focus,
.btn-check:active + .btn-outline-ivory:focus, .btn-outline-ivory:active:focus, .btn-outline-ivory.active:focus, .btn-outline-ivory.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 255, 240, 0.5);
}
.btn-outline-ivory:disabled, .btn-outline-ivory.disabled {
color: #FFFFF0;
background-color: transparent;
}
.btn-outline-khaki {
color: #F0E68C;
border-color: #F0E68C;
}
.btn-outline-khaki:hover {
color: #000;
background-color: #F0E68C;
border-color: #F0E68C;
}
.btn-check:focus + .btn-outline-khaki, .btn-outline-khaki:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 230, 140, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 230, 140, 0.5);
}
.btn-check:checked + .btn-outline-khaki,
.btn-check:active + .btn-outline-khaki, .btn-outline-khaki:active, .btn-outline-khaki.active, .btn-outline-khaki.dropdown-toggle.show {
color: #000;
background-color: #F0E68C;
border-color: #F0E68C;
}
.btn-check:checked + .btn-outline-khaki:focus,
.btn-check:active + .btn-outline-khaki:focus, .btn-outline-khaki:active:focus, .btn-outline-khaki.active:focus, .btn-outline-khaki.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 230, 140, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 230, 140, 0.5);
}
.btn-outline-khaki:disabled, .btn-outline-khaki.disabled {
color: #F0E68C;
background-color: transparent;
}
.btn-outline-lavender {
color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-outline-lavender:hover {
color: #000;
background-color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-check:focus + .btn-outline-lavender, .btn-outline-lavender:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(230, 230, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(230, 230, 250, 0.5);
}
.btn-check:checked + .btn-outline-lavender,
.btn-check:active + .btn-outline-lavender, .btn-outline-lavender:active, .btn-outline-lavender.active, .btn-outline-lavender.dropdown-toggle.show {
color: #000;
background-color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-check:checked + .btn-outline-lavender:focus,
.btn-check:active + .btn-outline-lavender:focus, .btn-outline-lavender:active:focus, .btn-outline-lavender.active:focus, .btn-outline-lavender.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(230, 230, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(230, 230, 250, 0.5);
}
.btn-outline-lavender:disabled, .btn-outline-lavender.disabled {
color: #E6E6FA;
background-color: transparent;
}
.btn-outline-lavenderblush {
color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-outline-lavenderblush:hover {
color: #000;
background-color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-check:focus + .btn-outline-lavenderblush, .btn-outline-lavenderblush:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 240, 245, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 240, 245, 0.5);
}
.btn-check:checked + .btn-outline-lavenderblush,
.btn-check:active + .btn-outline-lavenderblush, .btn-outline-lavenderblush:active, .btn-outline-lavenderblush.active, .btn-outline-lavenderblush.dropdown-toggle.show {
color: #000;
background-color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-check:checked + .btn-outline-lavenderblush:focus,
.btn-check:active + .btn-outline-lavenderblush:focus, .btn-outline-lavenderblush:active:focus, .btn-outline-lavenderblush.active:focus, .btn-outline-lavenderblush.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 240, 245, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 240, 245, 0.5);
}
.btn-outline-lavenderblush:disabled, .btn-outline-lavenderblush.disabled {
color: #FFF0F5;
background-color: transparent;
}
.btn-outline-lawngreen {
color: #7CFC00;
border-color: #7CFC00;
}
.btn-outline-lawngreen:hover {
color: #000;
background-color: #7CFC00;
border-color: #7CFC00;
}
.btn-check:focus + .btn-outline-lawngreen, .btn-outline-lawngreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(124, 252, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(124, 252, 0, 0.5);
}
.btn-check:checked + .btn-outline-lawngreen,
.btn-check:active + .btn-outline-lawngreen, .btn-outline-lawngreen:active, .btn-outline-lawngreen.active, .btn-outline-lawngreen.dropdown-toggle.show {
color: #000;
background-color: #7CFC00;
border-color: #7CFC00;
}
.btn-check:checked + .btn-outline-lawngreen:focus,
.btn-check:active + .btn-outline-lawngreen:focus, .btn-outline-lawngreen:active:focus, .btn-outline-lawngreen.active:focus, .btn-outline-lawngreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(124, 252, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(124, 252, 0, 0.5);
}
.btn-outline-lawngreen:disabled, .btn-outline-lawngreen.disabled {
color: #7CFC00;
background-color: transparent;
}
.btn-outline-lemonchiffon {
color: #FFFACD;
border-color: #FFFACD;
}
.btn-outline-lemonchiffon:hover {
color: #000;
background-color: #FFFACD;
border-color: #FFFACD;
}
.btn-check:focus + .btn-outline-lemonchiffon, .btn-outline-lemonchiffon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 205, 0.5);
}
.btn-check:checked + .btn-outline-lemonchiffon,
.btn-check:active + .btn-outline-lemonchiffon, .btn-outline-lemonchiffon:active, .btn-outline-lemonchiffon.active, .btn-outline-lemonchiffon.dropdown-toggle.show {
color: #000;
background-color: #FFFACD;
border-color: #FFFACD;
}
.btn-check:checked + .btn-outline-lemonchiffon:focus,
.btn-check:active + .btn-outline-lemonchiffon:focus, .btn-outline-lemonchiffon:active:focus, .btn-outline-lemonchiffon.active:focus, .btn-outline-lemonchiffon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 205, 0.5);
}
.btn-outline-lemonchiffon:disabled, .btn-outline-lemonchiffon.disabled {
color: #FFFACD;
background-color: transparent;
}
.btn-outline-lightblue {
color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-outline-lightblue:hover {
color: #000;
background-color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-check:focus + .btn-outline-lightblue, .btn-outline-lightblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.5);
}
.btn-check:checked + .btn-outline-lightblue,
.btn-check:active + .btn-outline-lightblue, .btn-outline-lightblue:active, .btn-outline-lightblue.active, .btn-outline-lightblue.dropdown-toggle.show {
color: #000;
background-color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-check:checked + .btn-outline-lightblue:focus,
.btn-check:active + .btn-outline-lightblue:focus, .btn-outline-lightblue:active:focus, .btn-outline-lightblue.active:focus, .btn-outline-lightblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.5);
}
.btn-outline-lightblue:disabled, .btn-outline-lightblue.disabled {
color: #ADD8E6;
background-color: transparent;
}
.btn-outline-lightcoral {
color: #F08080;
border-color: #F08080;
}
.btn-outline-lightcoral:hover {
color: #000;
background-color: #F08080;
border-color: #F08080;
}
.btn-check:focus + .btn-outline-lightcoral, .btn-outline-lightcoral:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 128, 128, 0.5);
}
.btn-check:checked + .btn-outline-lightcoral,
.btn-check:active + .btn-outline-lightcoral, .btn-outline-lightcoral:active, .btn-outline-lightcoral.active, .btn-outline-lightcoral.dropdown-toggle.show {
color: #000;
background-color: #F08080;
border-color: #F08080;
}
.btn-check:checked + .btn-outline-lightcoral:focus,
.btn-check:active + .btn-outline-lightcoral:focus, .btn-outline-lightcoral:active:focus, .btn-outline-lightcoral.active:focus, .btn-outline-lightcoral.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 128, 128, 0.5);
}
.btn-outline-lightcoral:disabled, .btn-outline-lightcoral.disabled {
color: #F08080;
background-color: transparent;
}
.btn-outline-lightcyan {
color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-outline-lightcyan:hover {
color: #000;
background-color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-check:focus + .btn-outline-lightcyan, .btn-outline-lightcyan:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(224, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(224, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-lightcyan,
.btn-check:active + .btn-outline-lightcyan, .btn-outline-lightcyan:active, .btn-outline-lightcyan.active, .btn-outline-lightcyan.dropdown-toggle.show {
color: #000;
background-color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-check:checked + .btn-outline-lightcyan:focus,
.btn-check:active + .btn-outline-lightcyan:focus, .btn-outline-lightcyan:active:focus, .btn-outline-lightcyan.active:focus, .btn-outline-lightcyan.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(224, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(224, 255, 255, 0.5);
}
.btn-outline-lightcyan:disabled, .btn-outline-lightcyan.disabled {
color: #E0FFFF;
background-color: transparent;
}
.btn-outline-lightgoldenrodyellow {
color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-outline-lightgoldenrodyellow:hover {
color: #000;
background-color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-check:focus + .btn-outline-lightgoldenrodyellow, .btn-outline-lightgoldenrodyellow:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 250, 210, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 250, 210, 0.5);
}
.btn-check:checked + .btn-outline-lightgoldenrodyellow,
.btn-check:active + .btn-outline-lightgoldenrodyellow, .btn-outline-lightgoldenrodyellow:active, .btn-outline-lightgoldenrodyellow.active, .btn-outline-lightgoldenrodyellow.dropdown-toggle.show {
color: #000;
background-color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-check:checked + .btn-outline-lightgoldenrodyellow:focus,
.btn-check:active + .btn-outline-lightgoldenrodyellow:focus, .btn-outline-lightgoldenrodyellow:active:focus, .btn-outline-lightgoldenrodyellow.active:focus, .btn-outline-lightgoldenrodyellow.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 250, 210, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 250, 210, 0.5);
}
.btn-outline-lightgoldenrodyellow:disabled, .btn-outline-lightgoldenrodyellow.disabled {
color: #FAFAD2;
background-color: transparent;
}
.btn-outline-lightgray {
color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-outline-lightgray:hover {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-check:focus + .btn-outline-lightgray, .btn-outline-lightgray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-check:checked + .btn-outline-lightgray,
.btn-check:active + .btn-outline-lightgray, .btn-outline-lightgray:active, .btn-outline-lightgray.active, .btn-outline-lightgray.dropdown-toggle.show {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-check:checked + .btn-outline-lightgray:focus,
.btn-check:active + .btn-outline-lightgray:focus, .btn-outline-lightgray:active:focus, .btn-outline-lightgray.active:focus, .btn-outline-lightgray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-outline-lightgray:disabled, .btn-outline-lightgray.disabled {
color: #D3D3D3;
background-color: transparent;
}
.btn-outline-lightgreen {
color: #90EE90;
border-color: #90EE90;
}
.btn-outline-lightgreen:hover {
color: #000;
background-color: #90EE90;
border-color: #90EE90;
}
.btn-check:focus + .btn-outline-lightgreen, .btn-outline-lightgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5);
}
.btn-check:checked + .btn-outline-lightgreen,
.btn-check:active + .btn-outline-lightgreen, .btn-outline-lightgreen:active, .btn-outline-lightgreen.active, .btn-outline-lightgreen.dropdown-toggle.show {
color: #000;
background-color: #90EE90;
border-color: #90EE90;
}
.btn-check:checked + .btn-outline-lightgreen:focus,
.btn-check:active + .btn-outline-lightgreen:focus, .btn-outline-lightgreen:active:focus, .btn-outline-lightgreen.active:focus, .btn-outline-lightgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5);
}
.btn-outline-lightgreen:disabled, .btn-outline-lightgreen.disabled {
color: #90EE90;
background-color: transparent;
}
.btn-outline-lightgrey {
color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-outline-lightgrey:hover {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-check:focus + .btn-outline-lightgrey, .btn-outline-lightgrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-check:checked + .btn-outline-lightgrey,
.btn-check:active + .btn-outline-lightgrey, .btn-outline-lightgrey:active, .btn-outline-lightgrey.active, .btn-outline-lightgrey.dropdown-toggle.show {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-check:checked + .btn-outline-lightgrey:focus,
.btn-check:active + .btn-outline-lightgrey:focus, .btn-outline-lightgrey:active:focus, .btn-outline-lightgrey.active:focus, .btn-outline-lightgrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-outline-lightgrey:disabled, .btn-outline-lightgrey.disabled {
color: #D3D3D3;
background-color: transparent;
}
.btn-outline-lightpink {
color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-outline-lightpink:hover {
color: #000;
background-color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-check:focus + .btn-outline-lightpink, .btn-outline-lightpink:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 182, 193, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 182, 193, 0.5);
}
.btn-check:checked + .btn-outline-lightpink,
.btn-check:active + .btn-outline-lightpink, .btn-outline-lightpink:active, .btn-outline-lightpink.active, .btn-outline-lightpink.dropdown-toggle.show {
color: #000;
background-color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-check:checked + .btn-outline-lightpink:focus,
.btn-check:active + .btn-outline-lightpink:focus, .btn-outline-lightpink:active:focus, .btn-outline-lightpink.active:focus, .btn-outline-lightpink.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 182, 193, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 182, 193, 0.5);
}
.btn-outline-lightpink:disabled, .btn-outline-lightpink.disabled {
color: #FFB6C1;
background-color: transparent;
}
.btn-outline-lightsalmon {
color: #FFA07A;
border-color: #FFA07A;
}
.btn-outline-lightsalmon:hover {
color: #000;
background-color: #FFA07A;
border-color: #FFA07A;
}
.btn-check:focus + .btn-outline-lightsalmon, .btn-outline-lightsalmon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 160, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 160, 122, 0.5);
}
.btn-check:checked + .btn-outline-lightsalmon,
.btn-check:active + .btn-outline-lightsalmon, .btn-outline-lightsalmon:active, .btn-outline-lightsalmon.active, .btn-outline-lightsalmon.dropdown-toggle.show {
color: #000;
background-color: #FFA07A;
border-color: #FFA07A;
}
.btn-check:checked + .btn-outline-lightsalmon:focus,
.btn-check:active + .btn-outline-lightsalmon:focus, .btn-outline-lightsalmon:active:focus, .btn-outline-lightsalmon.active:focus, .btn-outline-lightsalmon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 160, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 160, 122, 0.5);
}
.btn-outline-lightsalmon:disabled, .btn-outline-lightsalmon.disabled {
color: #FFA07A;
background-color: transparent;
}
.btn-outline-lightseagreen {
color: #20B2AA;
border-color: #20B2AA;
}
.btn-outline-lightseagreen:hover {
color: #000;
background-color: #20B2AA;
border-color: #20B2AA;
}
.btn-check:focus + .btn-outline-lightseagreen, .btn-outline-lightseagreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(32, 178, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(32, 178, 170, 0.5);
}
.btn-check:checked + .btn-outline-lightseagreen,
.btn-check:active + .btn-outline-lightseagreen, .btn-outline-lightseagreen:active, .btn-outline-lightseagreen.active, .btn-outline-lightseagreen.dropdown-toggle.show {
color: #000;
background-color: #20B2AA;
border-color: #20B2AA;
}
.btn-check:checked + .btn-outline-lightseagreen:focus,
.btn-check:active + .btn-outline-lightseagreen:focus, .btn-outline-lightseagreen:active:focus, .btn-outline-lightseagreen.active:focus, .btn-outline-lightseagreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(32, 178, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(32, 178, 170, 0.5);
}
.btn-outline-lightseagreen:disabled, .btn-outline-lightseagreen.disabled {
color: #20B2AA;
background-color: transparent;
}
.btn-outline-lightskyblue {
color: #87CEFA;
border-color: #87CEFA;
}
.btn-outline-lightskyblue:hover {
color: #000;
background-color: #87CEFA;
border-color: #87CEFA;
}
.btn-check:focus + .btn-outline-lightskyblue, .btn-outline-lightskyblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(135, 206, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(135, 206, 250, 0.5);
}
.btn-check:checked + .btn-outline-lightskyblue,
.btn-check:active + .btn-outline-lightskyblue, .btn-outline-lightskyblue:active, .btn-outline-lightskyblue.active, .btn-outline-lightskyblue.dropdown-toggle.show {
color: #000;
background-color: #87CEFA;
border-color: #87CEFA;
}
.btn-check:checked + .btn-outline-lightskyblue:focus,
.btn-check:active + .btn-outline-lightskyblue:focus, .btn-outline-lightskyblue:active:focus, .btn-outline-lightskyblue.active:focus, .btn-outline-lightskyblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(135, 206, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(135, 206, 250, 0.5);
}
.btn-outline-lightskyblue:disabled, .btn-outline-lightskyblue.disabled {
color: #87CEFA;
background-color: transparent;
}
.btn-outline-lightslategray {
color: #778899;
border-color: #778899;
}
.btn-outline-lightslategray:hover {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-check:focus + .btn-outline-lightslategray, .btn-outline-lightslategray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
}
.btn-check:checked + .btn-outline-lightslategray,
.btn-check:active + .btn-outline-lightslategray, .btn-outline-lightslategray:active, .btn-outline-lightslategray.active, .btn-outline-lightslategray.dropdown-toggle.show {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-check:checked + .btn-outline-lightslategray:focus,
.btn-check:active + .btn-outline-lightslategray:focus, .btn-outline-lightslategray:active:focus, .btn-outline-lightslategray.active:focus, .btn-outline-lightslategray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
}
.btn-outline-lightslategray:disabled, .btn-outline-lightslategray.disabled {
color: #778899;
background-color: transparent;
}
.btn-outline-lightslategrey {
color: #778899;
border-color: #778899;
}
.btn-outline-lightslategrey:hover {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-check:focus + .btn-outline-lightslategrey, .btn-outline-lightslategrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
}
.btn-check:checked + .btn-outline-lightslategrey,
.btn-check:active + .btn-outline-lightslategrey, .btn-outline-lightslategrey:active, .btn-outline-lightslategrey.active, .btn-outline-lightslategrey.dropdown-toggle.show {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-check:checked + .btn-outline-lightslategrey:focus,
.btn-check:active + .btn-outline-lightslategrey:focus, .btn-outline-lightslategrey:active:focus, .btn-outline-lightslategrey.active:focus, .btn-outline-lightslategrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
}
.btn-outline-lightslategrey:disabled, .btn-outline-lightslategrey.disabled {
color: #778899;
background-color: transparent;
}
.btn-outline-lightsteelblue {
color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-outline-lightsteelblue:hover {
color: #000;
background-color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-check:focus + .btn-outline-lightsteelblue, .btn-outline-lightsteelblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(176, 196, 222, 0.5);
box-shadow: 0 0 0 0.25rem rgba(176, 196, 222, 0.5);
}
.btn-check:checked + .btn-outline-lightsteelblue,
.btn-check:active + .btn-outline-lightsteelblue, .btn-outline-lightsteelblue:active, .btn-outline-lightsteelblue.active, .btn-outline-lightsteelblue.dropdown-toggle.show {
color: #000;
background-color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-check:checked + .btn-outline-lightsteelblue:focus,
.btn-check:active + .btn-outline-lightsteelblue:focus, .btn-outline-lightsteelblue:active:focus, .btn-outline-lightsteelblue.active:focus, .btn-outline-lightsteelblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(176, 196, 222, 0.5);
box-shadow: 0 0 0 0.25rem rgba(176, 196, 222, 0.5);
}
.btn-outline-lightsteelblue:disabled, .btn-outline-lightsteelblue.disabled {
color: #B0C4DE;
background-color: transparent;
}
.btn-outline-lightyellow {
color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-outline-lightyellow:hover {
color: #000;
background-color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-check:focus + .btn-outline-lightyellow, .btn-outline-lightyellow:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 224, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 255, 224, 0.5);
}
.btn-check:checked + .btn-outline-lightyellow,
.btn-check:active + .btn-outline-lightyellow, .btn-outline-lightyellow:active, .btn-outline-lightyellow.active, .btn-outline-lightyellow.dropdown-toggle.show {
color: #000;
background-color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-check:checked + .btn-outline-lightyellow:focus,
.btn-check:active + .btn-outline-lightyellow:focus, .btn-outline-lightyellow:active:focus, .btn-outline-lightyellow.active:focus, .btn-outline-lightyellow.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 224, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 255, 224, 0.5);
}
.btn-outline-lightyellow:disabled, .btn-outline-lightyellow.disabled {
color: #FFFFE0;
background-color: transparent;
}
.btn-outline-lime {
color: #00FF00;
border-color: #00FF00;
}
.btn-outline-lime:hover {
color: #000;
background-color: #00FF00;
border-color: #00FF00;
}
.btn-check:focus + .btn-outline-lime, .btn-outline-lime:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.5);
}
.btn-check:checked + .btn-outline-lime,
.btn-check:active + .btn-outline-lime, .btn-outline-lime:active, .btn-outline-lime.active, .btn-outline-lime.dropdown-toggle.show {
color: #000;
background-color: #00FF00;
border-color: #00FF00;
}
.btn-check:checked + .btn-outline-lime:focus,
.btn-check:active + .btn-outline-lime:focus, .btn-outline-lime:active:focus, .btn-outline-lime.active:focus, .btn-outline-lime.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.5);
}
.btn-outline-lime:disabled, .btn-outline-lime.disabled {
color: #00FF00;
background-color: transparent;
}
.btn-outline-limegreen {
color: #32CD32;
border-color: #32CD32;
}
.btn-outline-limegreen:hover {
color: #000;
background-color: #32CD32;
border-color: #32CD32;
}
.btn-check:focus + .btn-outline-limegreen, .btn-outline-limegreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.5);
box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.5);
}
.btn-check:checked + .btn-outline-limegreen,
.btn-check:active + .btn-outline-limegreen, .btn-outline-limegreen:active, .btn-outline-limegreen.active, .btn-outline-limegreen.dropdown-toggle.show {
color: #000;
background-color: #32CD32;
border-color: #32CD32;
}
.btn-check:checked + .btn-outline-limegreen:focus,
.btn-check:active + .btn-outline-limegreen:focus, .btn-outline-limegreen:active:focus, .btn-outline-limegreen.active:focus, .btn-outline-limegreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.5);
box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.5);
}
.btn-outline-limegreen:disabled, .btn-outline-limegreen.disabled {
color: #32CD32;
background-color: transparent;
}
.btn-outline-linen {
color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-outline-linen:hover {
color: #000;
background-color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-check:focus + .btn-outline-linen, .btn-outline-linen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 240, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 240, 230, 0.5);
}
.btn-check:checked + .btn-outline-linen,
.btn-check:active + .btn-outline-linen, .btn-outline-linen:active, .btn-outline-linen.active, .btn-outline-linen.dropdown-toggle.show {
color: #000;
background-color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-check:checked + .btn-outline-linen:focus,
.btn-check:active + .btn-outline-linen:focus, .btn-outline-linen:active:focus, .btn-outline-linen.active:focus, .btn-outline-linen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 240, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 240, 230, 0.5);
}
.btn-outline-linen:disabled, .btn-outline-linen.disabled {
color: #FAF0E6;
background-color: transparent;
}
.btn-outline-magenta {
color: #FF00FF;
border-color: #FF00FF;
}
.btn-outline-magenta:hover {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-check:focus + .btn-outline-magenta, .btn-outline-magenta:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
}
.btn-check:checked + .btn-outline-magenta,
.btn-check:active + .btn-outline-magenta, .btn-outline-magenta:active, .btn-outline-magenta.active, .btn-outline-magenta.dropdown-toggle.show {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-check:checked + .btn-outline-magenta:focus,
.btn-check:active + .btn-outline-magenta:focus, .btn-outline-magenta:active:focus, .btn-outline-magenta.active:focus, .btn-outline-magenta.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
}
.btn-outline-magenta:disabled, .btn-outline-magenta.disabled {
color: #FF00FF;
background-color: transparent;
}
.btn-outline-maroon {
color: #800000;
border-color: #800000;
}
.btn-outline-maroon:hover {
color: #fff;
background-color: #800000;
border-color: #800000;
}
.btn-check:focus + .btn-outline-maroon, .btn-outline-maroon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.5);
}
.btn-check:checked + .btn-outline-maroon,
.btn-check:active + .btn-outline-maroon, .btn-outline-maroon:active, .btn-outline-maroon.active, .btn-outline-maroon.dropdown-toggle.show {
color: #fff;
background-color: #800000;
border-color: #800000;
}
.btn-check:checked + .btn-outline-maroon:focus,
.btn-check:active + .btn-outline-maroon:focus, .btn-outline-maroon:active:focus, .btn-outline-maroon.active:focus, .btn-outline-maroon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.5);
}
.btn-outline-maroon:disabled, .btn-outline-maroon.disabled {
color: #800000;
background-color: transparent;
}
.btn-outline-mediumaquamarine {
color: #66CDAA;
border-color: #66CDAA;
}
.btn-outline-mediumaquamarine:hover {
color: #000;
background-color: #66CDAA;
border-color: #66CDAA;
}
.btn-check:focus + .btn-outline-mediumaquamarine, .btn-outline-mediumaquamarine:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(102, 205, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(102, 205, 170, 0.5);
}
.btn-check:checked + .btn-outline-mediumaquamarine,
.btn-check:active + .btn-outline-mediumaquamarine, .btn-outline-mediumaquamarine:active, .btn-outline-mediumaquamarine.active, .btn-outline-mediumaquamarine.dropdown-toggle.show {
color: #000;
background-color: #66CDAA;
border-color: #66CDAA;
}
.btn-check:checked + .btn-outline-mediumaquamarine:focus,
.btn-check:active + .btn-outline-mediumaquamarine:focus, .btn-outline-mediumaquamarine:active:focus, .btn-outline-mediumaquamarine.active:focus, .btn-outline-mediumaquamarine.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(102, 205, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(102, 205, 170, 0.5);
}
.btn-outline-mediumaquamarine:disabled, .btn-outline-mediumaquamarine.disabled {
color: #66CDAA;
background-color: transparent;
}
.btn-outline-mediumblue {
color: #0000CD;
border-color: #0000CD;
}
.btn-outline-mediumblue:hover {
color: #fff;
background-color: #0000CD;
border-color: #0000CD;
}
.btn-check:focus + .btn-outline-mediumblue, .btn-outline-mediumblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 205, 0.5);
}
.btn-check:checked + .btn-outline-mediumblue,
.btn-check:active + .btn-outline-mediumblue, .btn-outline-mediumblue:active, .btn-outline-mediumblue.active, .btn-outline-mediumblue.dropdown-toggle.show {
color: #fff;
background-color: #0000CD;
border-color: #0000CD;
}
.btn-check:checked + .btn-outline-mediumblue:focus,
.btn-check:active + .btn-outline-mediumblue:focus, .btn-outline-mediumblue:active:focus, .btn-outline-mediumblue.active:focus, .btn-outline-mediumblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 205, 0.5);
}
.btn-outline-mediumblue:disabled, .btn-outline-mediumblue.disabled {
color: #0000CD;
background-color: transparent;
}
.btn-outline-mediumorchid {
color: #BA55D3;
border-color: #BA55D3;
}
.btn-outline-mediumorchid:hover {
color: #000;
background-color: #BA55D3;
border-color: #BA55D3;
}
.btn-check:focus + .btn-outline-mediumorchid, .btn-outline-mediumorchid:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(186, 85, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(186, 85, 211, 0.5);
}
.btn-check:checked + .btn-outline-mediumorchid,
.btn-check:active + .btn-outline-mediumorchid, .btn-outline-mediumorchid:active, .btn-outline-mediumorchid.active, .btn-outline-mediumorchid.dropdown-toggle.show {
color: #000;
background-color: #BA55D3;
border-color: #BA55D3;
}
.btn-check:checked + .btn-outline-mediumorchid:focus,
.btn-check:active + .btn-outline-mediumorchid:focus, .btn-outline-mediumorchid:active:focus, .btn-outline-mediumorchid.active:focus, .btn-outline-mediumorchid.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(186, 85, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(186, 85, 211, 0.5);
}
.btn-outline-mediumorchid:disabled, .btn-outline-mediumorchid.disabled {
color: #BA55D3;
background-color: transparent;
}
.btn-outline-mediumpurple {
color: #9370DB;
border-color: #9370DB;
}
.btn-outline-mediumpurple:hover {
color: #000;
background-color: #9370DB;
border-color: #9370DB;
}
.btn-check:focus + .btn-outline-mediumpurple, .btn-outline-mediumpurple:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 112, 219, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 112, 219, 0.5);
}
.btn-check:checked + .btn-outline-mediumpurple,
.btn-check:active + .btn-outline-mediumpurple, .btn-outline-mediumpurple:active, .btn-outline-mediumpurple.active, .btn-outline-mediumpurple.dropdown-toggle.show {
color: #000;
background-color: #9370DB;
border-color: #9370DB;
}
.btn-check:checked + .btn-outline-mediumpurple:focus,
.btn-check:active + .btn-outline-mediumpurple:focus, .btn-outline-mediumpurple:active:focus, .btn-outline-mediumpurple.active:focus, .btn-outline-mediumpurple.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 112, 219, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 112, 219, 0.5);
}
.btn-outline-mediumpurple:disabled, .btn-outline-mediumpurple.disabled {
color: #9370DB;
background-color: transparent;
}
.btn-outline-mediumseagreen {
color: #3CB371;
border-color: #3CB371;
}
.btn-outline-mediumseagreen:hover {
color: #000;
background-color: #3CB371;
border-color: #3CB371;
}
.btn-check:focus + .btn-outline-mediumseagreen, .btn-outline-mediumseagreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 179, 113, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 179, 113, 0.5);
}
.btn-check:checked + .btn-outline-mediumseagreen,
.btn-check:active + .btn-outline-mediumseagreen, .btn-outline-mediumseagreen:active, .btn-outline-mediumseagreen.active, .btn-outline-mediumseagreen.dropdown-toggle.show {
color: #000;
background-color: #3CB371;
border-color: #3CB371;
}
.btn-check:checked + .btn-outline-mediumseagreen:focus,
.btn-check:active + .btn-outline-mediumseagreen:focus, .btn-outline-mediumseagreen:active:focus, .btn-outline-mediumseagreen.active:focus, .btn-outline-mediumseagreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 179, 113, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 179, 113, 0.5);
}
.btn-outline-mediumseagreen:disabled, .btn-outline-mediumseagreen.disabled {
color: #3CB371;
background-color: transparent;
}
.btn-outline-mediumslateblue {
color: #7B68EE;
border-color: #7B68EE;
}
.btn-outline-mediumslateblue:hover {
color: #000;
background-color: #7B68EE;
border-color: #7B68EE;
}
.btn-check:focus + .btn-outline-mediumslateblue, .btn-outline-mediumslateblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.5);
}
.btn-check:checked + .btn-outline-mediumslateblue,
.btn-check:active + .btn-outline-mediumslateblue, .btn-outline-mediumslateblue:active, .btn-outline-mediumslateblue.active, .btn-outline-mediumslateblue.dropdown-toggle.show {
color: #000;
background-color: #7B68EE;
border-color: #7B68EE;
}
.btn-check:checked + .btn-outline-mediumslateblue:focus,
.btn-check:active + .btn-outline-mediumslateblue:focus, .btn-outline-mediumslateblue:active:focus, .btn-outline-mediumslateblue.active:focus, .btn-outline-mediumslateblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.5);
}
.btn-outline-mediumslateblue:disabled, .btn-outline-mediumslateblue.disabled {
color: #7B68EE;
background-color: transparent;
}
.btn-outline-mediumspringgreen {
color: #00FA9A;
border-color: #00FA9A;
}
.btn-outline-mediumspringgreen:hover {
color: #000;
background-color: #00FA9A;
border-color: #00FA9A;
}
.btn-check:focus + .btn-outline-mediumspringgreen, .btn-outline-mediumspringgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 250, 154, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 250, 154, 0.5);
}
.btn-check:checked + .btn-outline-mediumspringgreen,
.btn-check:active + .btn-outline-mediumspringgreen, .btn-outline-mediumspringgreen:active, .btn-outline-mediumspringgreen.active, .btn-outline-mediumspringgreen.dropdown-toggle.show {
color: #000;
background-color: #00FA9A;
border-color: #00FA9A;
}
.btn-check:checked + .btn-outline-mediumspringgreen:focus,
.btn-check:active + .btn-outline-mediumspringgreen:focus, .btn-outline-mediumspringgreen:active:focus, .btn-outline-mediumspringgreen.active:focus, .btn-outline-mediumspringgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 250, 154, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 250, 154, 0.5);
}
.btn-outline-mediumspringgreen:disabled, .btn-outline-mediumspringgreen.disabled {
color: #00FA9A;
background-color: transparent;
}
.btn-outline-mediumturquoise {
color: #48D1CC;
border-color: #48D1CC;
}
.btn-outline-mediumturquoise:hover {
color: #000;
background-color: #48D1CC;
border-color: #48D1CC;
}
.btn-check:focus + .btn-outline-mediumturquoise, .btn-outline-mediumturquoise:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(72, 209, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(72, 209, 204, 0.5);
}
.btn-check:checked + .btn-outline-mediumturquoise,
.btn-check:active + .btn-outline-mediumturquoise, .btn-outline-mediumturquoise:active, .btn-outline-mediumturquoise.active, .btn-outline-mediumturquoise.dropdown-toggle.show {
color: #000;
background-color: #48D1CC;
border-color: #48D1CC;
}
.btn-check:checked + .btn-outline-mediumturquoise:focus,
.btn-check:active + .btn-outline-mediumturquoise:focus, .btn-outline-mediumturquoise:active:focus, .btn-outline-mediumturquoise.active:focus, .btn-outline-mediumturquoise.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(72, 209, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(72, 209, 204, 0.5);
}
.btn-outline-mediumturquoise:disabled, .btn-outline-mediumturquoise.disabled {
color: #48D1CC;
background-color: transparent;
}
.btn-outline-mediumvioletred {
color: #C71585;
border-color: #C71585;
}
.btn-outline-mediumvioletred:hover {
color: #fff;
background-color: #C71585;
border-color: #C71585;
}
.btn-check:focus + .btn-outline-mediumvioletred, .btn-outline-mediumvioletred:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(199, 21, 133, 0.5);
box-shadow: 0 0 0 0.25rem rgba(199, 21, 133, 0.5);
}
.btn-check:checked + .btn-outline-mediumvioletred,
.btn-check:active + .btn-outline-mediumvioletred, .btn-outline-mediumvioletred:active, .btn-outline-mediumvioletred.active, .btn-outline-mediumvioletred.dropdown-toggle.show {
color: #fff;
background-color: #C71585;
border-color: #C71585;
}
.btn-check:checked + .btn-outline-mediumvioletred:focus,
.btn-check:active + .btn-outline-mediumvioletred:focus, .btn-outline-mediumvioletred:active:focus, .btn-outline-mediumvioletred.active:focus, .btn-outline-mediumvioletred.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(199, 21, 133, 0.5);
box-shadow: 0 0 0 0.25rem rgba(199, 21, 133, 0.5);
}
.btn-outline-mediumvioletred:disabled, .btn-outline-mediumvioletred.disabled {
color: #C71585;
background-color: transparent;
}
.btn-outline-midnightblue {
color: #191970;
border-color: #191970;
}
.btn-outline-midnightblue:hover {
color: #fff;
background-color: #191970;
border-color: #191970;
}
.btn-check:focus + .btn-outline-midnightblue, .btn-outline-midnightblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.5);
box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.5);
}
.btn-check:checked + .btn-outline-midnightblue,
.btn-check:active + .btn-outline-midnightblue, .btn-outline-midnightblue:active, .btn-outline-midnightblue.active, .btn-outline-midnightblue.dropdown-toggle.show {
color: #fff;
background-color: #191970;
border-color: #191970;
}
.btn-check:checked + .btn-outline-midnightblue:focus,
.btn-check:active + .btn-outline-midnightblue:focus, .btn-outline-midnightblue:active:focus, .btn-outline-midnightblue.active:focus, .btn-outline-midnightblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.5);
box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.5);
}
.btn-outline-midnightblue:disabled, .btn-outline-midnightblue.disabled {
color: #191970;
background-color: transparent;
}
.btn-outline-mintcream {
color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-outline-mintcream:hover {
color: #000;
background-color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-check:focus + .btn-outline-mintcream, .btn-outline-mintcream:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 255, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 255, 250, 0.5);
}
.btn-check:checked + .btn-outline-mintcream,
.btn-check:active + .btn-outline-mintcream, .btn-outline-mintcream:active, .btn-outline-mintcream.active, .btn-outline-mintcream.dropdown-toggle.show {
color: #000;
background-color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-check:checked + .btn-outline-mintcream:focus,
.btn-check:active + .btn-outline-mintcream:focus, .btn-outline-mintcream:active:focus, .btn-outline-mintcream.active:focus, .btn-outline-mintcream.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 255, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 255, 250, 0.5);
}
.btn-outline-mintcream:disabled, .btn-outline-mintcream.disabled {
color: #F5FFFA;
background-color: transparent;
}
.btn-outline-mistyrose {
color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-outline-mistyrose:hover {
color: #000;
background-color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-check:focus + .btn-outline-mistyrose, .btn-outline-mistyrose:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 225, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 225, 0.5);
}
.btn-check:checked + .btn-outline-mistyrose,
.btn-check:active + .btn-outline-mistyrose, .btn-outline-mistyrose:active, .btn-outline-mistyrose.active, .btn-outline-mistyrose.dropdown-toggle.show {
color: #000;
background-color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-check:checked + .btn-outline-mistyrose:focus,
.btn-check:active + .btn-outline-mistyrose:focus, .btn-outline-mistyrose:active:focus, .btn-outline-mistyrose.active:focus, .btn-outline-mistyrose.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 225, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 225, 0.5);
}
.btn-outline-mistyrose:disabled, .btn-outline-mistyrose.disabled {
color: #FFE4E1;
background-color: transparent;
}
.btn-outline-moccasin {
color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-outline-moccasin:hover {
color: #000;
background-color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-check:focus + .btn-outline-moccasin, .btn-outline-moccasin:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 181, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 181, 0.5);
}
.btn-check:checked + .btn-outline-moccasin,
.btn-check:active + .btn-outline-moccasin, .btn-outline-moccasin:active, .btn-outline-moccasin.active, .btn-outline-moccasin.dropdown-toggle.show {
color: #000;
background-color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-check:checked + .btn-outline-moccasin:focus,
.btn-check:active + .btn-outline-moccasin:focus, .btn-outline-moccasin:active:focus, .btn-outline-moccasin.active:focus, .btn-outline-moccasin.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 181, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 181, 0.5);
}
.btn-outline-moccasin:disabled, .btn-outline-moccasin.disabled {
color: #FFE4B5;
background-color: transparent;
}
.btn-outline-navajowhite {
color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-outline-navajowhite:hover {
color: #000;
background-color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-check:focus + .btn-outline-navajowhite, .btn-outline-navajowhite:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 222, 173, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 222, 173, 0.5);
}
.btn-check:checked + .btn-outline-navajowhite,
.btn-check:active + .btn-outline-navajowhite, .btn-outline-navajowhite:active, .btn-outline-navajowhite.active, .btn-outline-navajowhite.dropdown-toggle.show {
color: #000;
background-color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-check:checked + .btn-outline-navajowhite:focus,
.btn-check:active + .btn-outline-navajowhite:focus, .btn-outline-navajowhite:active:focus, .btn-outline-navajowhite.active:focus, .btn-outline-navajowhite.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 222, 173, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 222, 173, 0.5);
}
.btn-outline-navajowhite:disabled, .btn-outline-navajowhite.disabled {
color: #FFDEAD;
background-color: transparent;
}
.btn-outline-navy {
color: #000080;
border-color: #000080;
}
.btn-outline-navy:hover {
color: #fff;
background-color: #000080;
border-color: #000080;
}
.btn-check:focus + .btn-outline-navy, .btn-outline-navy:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, 0.5);
}
.btn-check:checked + .btn-outline-navy,
.btn-check:active + .btn-outline-navy, .btn-outline-navy:active, .btn-outline-navy.active, .btn-outline-navy.dropdown-toggle.show {
color: #fff;
background-color: #000080;
border-color: #000080;
}
.btn-check:checked + .btn-outline-navy:focus,
.btn-check:active + .btn-outline-navy:focus, .btn-outline-navy:active:focus, .btn-outline-navy.active:focus, .btn-outline-navy.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, 0.5);
}
.btn-outline-navy:disabled, .btn-outline-navy.disabled {
color: #000080;
background-color: transparent;
}
.btn-outline-oldlace {
color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-outline-oldlace:hover {
color: #000;
background-color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-check:focus + .btn-outline-oldlace, .btn-outline-oldlace:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(253, 245, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(253, 245, 230, 0.5);
}
.btn-check:checked + .btn-outline-oldlace,
.btn-check:active + .btn-outline-oldlace, .btn-outline-oldlace:active, .btn-outline-oldlace.active, .btn-outline-oldlace.dropdown-toggle.show {
color: #000;
background-color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-check:checked + .btn-outline-oldlace:focus,
.btn-check:active + .btn-outline-oldlace:focus, .btn-outline-oldlace:active:focus, .btn-outline-oldlace.active:focus, .btn-outline-oldlace.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(253, 245, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(253, 245, 230, 0.5);
}
.btn-outline-oldlace:disabled, .btn-outline-oldlace.disabled {
color: #FDF5E6;
background-color: transparent;
}
.btn-outline-olive {
color: #808000;
border-color: #808000;
}
.btn-outline-olive:hover {
color: #000;
background-color: #808000;
border-color: #808000;
}
.btn-check:focus + .btn-outline-olive, .btn-outline-olive:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 0, 0.5);
}
.btn-check:checked + .btn-outline-olive,
.btn-check:active + .btn-outline-olive, .btn-outline-olive:active, .btn-outline-olive.active, .btn-outline-olive.dropdown-toggle.show {
color: #000;
background-color: #808000;
border-color: #808000;
}
.btn-check:checked + .btn-outline-olive:focus,
.btn-check:active + .btn-outline-olive:focus, .btn-outline-olive:active:focus, .btn-outline-olive.active:focus, .btn-outline-olive.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 0, 0.5);
}
.btn-outline-olive:disabled, .btn-outline-olive.disabled {
color: #808000;
background-color: transparent;
}
.btn-outline-olivedrab {
color: #6B8E23;
border-color: #6B8E23;
}
.btn-outline-olivedrab:hover {
color: #000;
background-color: #6B8E23;
border-color: #6B8E23;
}
.btn-check:focus + .btn-outline-olivedrab, .btn-outline-olivedrab:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.5);
box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.5);
}
.btn-check:checked + .btn-outline-olivedrab,
.btn-check:active + .btn-outline-olivedrab, .btn-outline-olivedrab:active, .btn-outline-olivedrab.active, .btn-outline-olivedrab.dropdown-toggle.show {
color: #000;
background-color: #6B8E23;
border-color: #6B8E23;
}
.btn-check:checked + .btn-outline-olivedrab:focus,
.btn-check:active + .btn-outline-olivedrab:focus, .btn-outline-olivedrab:active:focus, .btn-outline-olivedrab.active:focus, .btn-outline-olivedrab.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.5);
box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.5);
}
.btn-outline-olivedrab:disabled, .btn-outline-olivedrab.disabled {
color: #6B8E23;
background-color: transparent;
}
.btn-outline-orangered {
color: #FF4500;
border-color: #FF4500;
}
.btn-outline-orangered:hover {
color: #000;
background-color: #FF4500;
border-color: #FF4500;
}
.btn-check:focus + .btn-outline-orangered, .btn-outline-orangered:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.5);
}
.btn-check:checked + .btn-outline-orangered,
.btn-check:active + .btn-outline-orangered, .btn-outline-orangered:active, .btn-outline-orangered.active, .btn-outline-orangered.dropdown-toggle.show {
color: #000;
background-color: #FF4500;
border-color: #FF4500;
}
.btn-check:checked + .btn-outline-orangered:focus,
.btn-check:active + .btn-outline-orangered:focus, .btn-outline-orangered:active:focus, .btn-outline-orangered.active:focus, .btn-outline-orangered.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.5);
}
.btn-outline-orangered:disabled, .btn-outline-orangered.disabled {
color: #FF4500;
background-color: transparent;
}
.btn-outline-orchid {
color: #DA70D6;
border-color: #DA70D6;
}
.btn-outline-orchid:hover {
color: #000;
background-color: #DA70D6;
border-color: #DA70D6;
}
.btn-check:focus + .btn-outline-orchid, .btn-outline-orchid:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 112, 214, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 112, 214, 0.5);
}
.btn-check:checked + .btn-outline-orchid,
.btn-check:active + .btn-outline-orchid, .btn-outline-orchid:active, .btn-outline-orchid.active, .btn-outline-orchid.dropdown-toggle.show {
color: #000;
background-color: #DA70D6;
border-color: #DA70D6;
}
.btn-check:checked + .btn-outline-orchid:focus,
.btn-check:active + .btn-outline-orchid:focus, .btn-outline-orchid:active:focus, .btn-outline-orchid.active:focus, .btn-outline-orchid.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 112, 214, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 112, 214, 0.5);
}
.btn-outline-orchid:disabled, .btn-outline-orchid.disabled {
color: #DA70D6;
background-color: transparent;
}
.btn-outline-palegoldenrod {
color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-outline-palegoldenrod:hover {
color: #000;
background-color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-check:focus + .btn-outline-palegoldenrod, .btn-outline-palegoldenrod:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(238, 232, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(238, 232, 170, 0.5);
}
.btn-check:checked + .btn-outline-palegoldenrod,
.btn-check:active + .btn-outline-palegoldenrod, .btn-outline-palegoldenrod:active, .btn-outline-palegoldenrod.active, .btn-outline-palegoldenrod.dropdown-toggle.show {
color: #000;
background-color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-check:checked + .btn-outline-palegoldenrod:focus,
.btn-check:active + .btn-outline-palegoldenrod:focus, .btn-outline-palegoldenrod:active:focus, .btn-outline-palegoldenrod.active:focus, .btn-outline-palegoldenrod.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(238, 232, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(238, 232, 170, 0.5);
}
.btn-outline-palegoldenrod:disabled, .btn-outline-palegoldenrod.disabled {
color: #EEE8AA;
background-color: transparent;
}
.btn-outline-palegreen {
color: #98FB98;
border-color: #98FB98;
}
.btn-outline-palegreen:hover {
color: #000;
background-color: #98FB98;
border-color: #98FB98;
}
.btn-check:focus + .btn-outline-palegreen, .btn-outline-palegreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.5);
box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.5);
}
.btn-check:checked + .btn-outline-palegreen,
.btn-check:active + .btn-outline-palegreen, .btn-outline-palegreen:active, .btn-outline-palegreen.active, .btn-outline-palegreen.dropdown-toggle.show {
color: #000;
background-color: #98FB98;
border-color: #98FB98;
}
.btn-check:checked + .btn-outline-palegreen:focus,
.btn-check:active + .btn-outline-palegreen:focus, .btn-outline-palegreen:active:focus, .btn-outline-palegreen.active:focus, .btn-outline-palegreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.5);
box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.5);
}
.btn-outline-palegreen:disabled, .btn-outline-palegreen.disabled {
color: #98FB98;
background-color: transparent;
}
.btn-outline-paleturquoise {
color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-outline-paleturquoise:hover {
color: #000;
background-color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-check:focus + .btn-outline-paleturquoise, .btn-outline-paleturquoise:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(175, 238, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(175, 238, 238, 0.5);
}
.btn-check:checked + .btn-outline-paleturquoise,
.btn-check:active + .btn-outline-paleturquoise, .btn-outline-paleturquoise:active, .btn-outline-paleturquoise.active, .btn-outline-paleturquoise.dropdown-toggle.show {
color: #000;
background-color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-check:checked + .btn-outline-paleturquoise:focus,
.btn-check:active + .btn-outline-paleturquoise:focus, .btn-outline-paleturquoise:active:focus, .btn-outline-paleturquoise.active:focus, .btn-outline-paleturquoise.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(175, 238, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(175, 238, 238, 0.5);
}
.btn-outline-paleturquoise:disabled, .btn-outline-paleturquoise.disabled {
color: #AFEEEE;
background-color: transparent;
}
.btn-outline-palevioletred {
color: #DB7093;
border-color: #DB7093;
}
.btn-outline-palevioletred:hover {
color: #000;
background-color: #DB7093;
border-color: #DB7093;
}
.btn-check:focus + .btn-outline-palevioletred, .btn-outline-palevioletred:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.5);
}
.btn-check:checked + .btn-outline-palevioletred,
.btn-check:active + .btn-outline-palevioletred, .btn-outline-palevioletred:active, .btn-outline-palevioletred.active, .btn-outline-palevioletred.dropdown-toggle.show {
color: #000;
background-color: #DB7093;
border-color: #DB7093;
}
.btn-check:checked + .btn-outline-palevioletred:focus,
.btn-check:active + .btn-outline-palevioletred:focus, .btn-outline-palevioletred:active:focus, .btn-outline-palevioletred.active:focus, .btn-outline-palevioletred.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.5);
}
.btn-outline-palevioletred:disabled, .btn-outline-palevioletred.disabled {
color: #DB7093;
background-color: transparent;
}
.btn-outline-papayawhip {
color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-outline-papayawhip:hover {
color: #000;
background-color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-check:focus + .btn-outline-papayawhip, .btn-outline-papayawhip:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 239, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 239, 213, 0.5);
}
.btn-check:checked + .btn-outline-papayawhip,
.btn-check:active + .btn-outline-papayawhip, .btn-outline-papayawhip:active, .btn-outline-papayawhip.active, .btn-outline-papayawhip.dropdown-toggle.show {
color: #000;
background-color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-check:checked + .btn-outline-papayawhip:focus,
.btn-check:active + .btn-outline-papayawhip:focus, .btn-outline-papayawhip:active:focus, .btn-outline-papayawhip.active:focus, .btn-outline-papayawhip.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 239, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 239, 213, 0.5);
}
.btn-outline-papayawhip:disabled, .btn-outline-papayawhip.disabled {
color: #FFEFD5;
background-color: transparent;
}
.btn-outline-peachpuff {
color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-outline-peachpuff:hover {
color: #000;
background-color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-check:focus + .btn-outline-peachpuff, .btn-outline-peachpuff:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 218, 185, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 218, 185, 0.5);
}
.btn-check:checked + .btn-outline-peachpuff,
.btn-check:active + .btn-outline-peachpuff, .btn-outline-peachpuff:active, .btn-outline-peachpuff.active, .btn-outline-peachpuff.dropdown-toggle.show {
color: #000;
background-color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-check:checked + .btn-outline-peachpuff:focus,
.btn-check:active + .btn-outline-peachpuff:focus, .btn-outline-peachpuff:active:focus, .btn-outline-peachpuff.active:focus, .btn-outline-peachpuff.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 218, 185, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 218, 185, 0.5);
}
.btn-outline-peachpuff:disabled, .btn-outline-peachpuff.disabled {
color: #FFDAB9;
background-color: transparent;
}
.btn-outline-peru {
color: #CD853F;
border-color: #CD853F;
}
.btn-outline-peru:hover {
color: #000;
background-color: #CD853F;
border-color: #CD853F;
}
.btn-check:focus + .btn-outline-peru, .btn-outline-peru:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(205, 133, 63, 0.5);
box-shadow: 0 0 0 0.25rem rgba(205, 133, 63, 0.5);
}
.btn-check:checked + .btn-outline-peru,
.btn-check:active + .btn-outline-peru, .btn-outline-peru:active, .btn-outline-peru.active, .btn-outline-peru.dropdown-toggle.show {
color: #000;
background-color: #CD853F;
border-color: #CD853F;
}
.btn-check:checked + .btn-outline-peru:focus,
.btn-check:active + .btn-outline-peru:focus, .btn-outline-peru:active:focus, .btn-outline-peru.active:focus, .btn-outline-peru.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(205, 133, 63, 0.5);
box-shadow: 0 0 0 0.25rem rgba(205, 133, 63, 0.5);
}
.btn-outline-peru:disabled, .btn-outline-peru.disabled {
color: #CD853F;
background-color: transparent;
}
.btn-outline-plum {
color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-outline-plum:hover {
color: #000;
background-color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-check:focus + .btn-outline-plum, .btn-outline-plum:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(221, 160, 221, 0.5);
box-shadow: 0 0 0 0.25rem rgba(221, 160, 221, 0.5);
}
.btn-check:checked + .btn-outline-plum,
.btn-check:active + .btn-outline-plum, .btn-outline-plum:active, .btn-outline-plum.active, .btn-outline-plum.dropdown-toggle.show {
color: #000;
background-color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-check:checked + .btn-outline-plum:focus,
.btn-check:active + .btn-outline-plum:focus, .btn-outline-plum:active:focus, .btn-outline-plum.active:focus, .btn-outline-plum.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(221, 160, 221, 0.5);
box-shadow: 0 0 0 0.25rem rgba(221, 160, 221, 0.5);
}
.btn-outline-plum:disabled, .btn-outline-plum.disabled {
color: #DDA0DD;
background-color: transparent;
}
.btn-outline-powderblue {
color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-outline-powderblue:hover {
color: #000;
background-color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-check:focus + .btn-outline-powderblue, .btn-outline-powderblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(176, 224, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(176, 224, 230, 0.5);
}
.btn-check:checked + .btn-outline-powderblue,
.btn-check:active + .btn-outline-powderblue, .btn-outline-powderblue:active, .btn-outline-powderblue.active, .btn-outline-powderblue.dropdown-toggle.show {
color: #000;
background-color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-check:checked + .btn-outline-powderblue:focus,
.btn-check:active + .btn-outline-powderblue:focus, .btn-outline-powderblue:active:focus, .btn-outline-powderblue.active:focus, .btn-outline-powderblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(176, 224, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(176, 224, 230, 0.5);
}
.btn-outline-powderblue:disabled, .btn-outline-powderblue.disabled {
color: #B0E0E6;
background-color: transparent;
}
.btn-outline-rebeccapurple {
color: #663399;
border-color: #663399;
}
.btn-outline-rebeccapurple:hover {
color: #fff;
background-color: #663399;
border-color: #663399;
}
.btn-check:focus + .btn-outline-rebeccapurple, .btn-outline-rebeccapurple:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(102, 51, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(102, 51, 153, 0.5);
}
.btn-check:checked + .btn-outline-rebeccapurple,
.btn-check:active + .btn-outline-rebeccapurple, .btn-outline-rebeccapurple:active, .btn-outline-rebeccapurple.active, .btn-outline-rebeccapurple.dropdown-toggle.show {
color: #fff;
background-color: #663399;
border-color: #663399;
}
.btn-check:checked + .btn-outline-rebeccapurple:focus,
.btn-check:active + .btn-outline-rebeccapurple:focus, .btn-outline-rebeccapurple:active:focus, .btn-outline-rebeccapurple.active:focus, .btn-outline-rebeccapurple.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(102, 51, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(102, 51, 153, 0.5);
}
.btn-outline-rebeccapurple:disabled, .btn-outline-rebeccapurple.disabled {
color: #663399;
background-color: transparent;
}
.btn-outline-rosybrown {
color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-outline-rosybrown:hover {
color: #000;
background-color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-check:focus + .btn-outline-rosybrown, .btn-outline-rosybrown:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(188, 143, 143, 0.5);
box-shadow: 0 0 0 0.25rem rgba(188, 143, 143, 0.5);
}
.btn-check:checked + .btn-outline-rosybrown,
.btn-check:active + .btn-outline-rosybrown, .btn-outline-rosybrown:active, .btn-outline-rosybrown.active, .btn-outline-rosybrown.dropdown-toggle.show {
color: #000;
background-color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-check:checked + .btn-outline-rosybrown:focus,
.btn-check:active + .btn-outline-rosybrown:focus, .btn-outline-rosybrown:active:focus, .btn-outline-rosybrown.active:focus, .btn-outline-rosybrown.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(188, 143, 143, 0.5);
box-shadow: 0 0 0 0.25rem rgba(188, 143, 143, 0.5);
}
.btn-outline-rosybrown:disabled, .btn-outline-rosybrown.disabled {
color: #BC8F8F;
background-color: transparent;
}
.btn-outline-royalblue {
color: #4169E1;
border-color: #4169E1;
}
.btn-outline-royalblue:hover {
color: #fff;
background-color: #4169E1;
border-color: #4169E1;
}
.btn-check:focus + .btn-outline-royalblue, .btn-outline-royalblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.5);
box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.5);
}
.btn-check:checked + .btn-outline-royalblue,
.btn-check:active + .btn-outline-royalblue, .btn-outline-royalblue:active, .btn-outline-royalblue.active, .btn-outline-royalblue.dropdown-toggle.show {
color: #fff;
background-color: #4169E1;
border-color: #4169E1;
}
.btn-check:checked + .btn-outline-royalblue:focus,
.btn-check:active + .btn-outline-royalblue:focus, .btn-outline-royalblue:active:focus, .btn-outline-royalblue.active:focus, .btn-outline-royalblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.5);
box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.5);
}
.btn-outline-royalblue:disabled, .btn-outline-royalblue.disabled {
color: #4169E1;
background-color: transparent;
}
.btn-outline-saddlebrown {
color: #8B4513;
border-color: #8B4513;
}
.btn-outline-saddlebrown:hover {
color: #fff;
background-color: #8B4513;
border-color: #8B4513;
}
.btn-check:focus + .btn-outline-saddlebrown, .btn-outline-saddlebrown:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5);
}
.btn-check:checked + .btn-outline-saddlebrown,
.btn-check:active + .btn-outline-saddlebrown, .btn-outline-saddlebrown:active, .btn-outline-saddlebrown.active, .btn-outline-saddlebrown.dropdown-toggle.show {
color: #fff;
background-color: #8B4513;
border-color: #8B4513;
}
.btn-check:checked + .btn-outline-saddlebrown:focus,
.btn-check:active + .btn-outline-saddlebrown:focus, .btn-outline-saddlebrown:active:focus, .btn-outline-saddlebrown.active:focus, .btn-outline-saddlebrown.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5);
}
.btn-outline-saddlebrown:disabled, .btn-outline-saddlebrown.disabled {
color: #8B4513;
background-color: transparent;
}
.btn-outline-salmon {
color: #FA8072;
border-color: #FA8072;
}
.btn-outline-salmon:hover {
color: #000;
background-color: #FA8072;
border-color: #FA8072;
}
.btn-check:focus + .btn-outline-salmon, .btn-outline-salmon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 128, 114, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 128, 114, 0.5);
}
.btn-check:checked + .btn-outline-salmon,
.btn-check:active + .btn-outline-salmon, .btn-outline-salmon:active, .btn-outline-salmon.active, .btn-outline-salmon.dropdown-toggle.show {
color: #000;
background-color: #FA8072;
border-color: #FA8072;
}
.btn-check:checked + .btn-outline-salmon:focus,
.btn-check:active + .btn-outline-salmon:focus, .btn-outline-salmon:active:focus, .btn-outline-salmon.active:focus, .btn-outline-salmon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 128, 114, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 128, 114, 0.5);
}
.btn-outline-salmon:disabled, .btn-outline-salmon.disabled {
color: #FA8072;
background-color: transparent;
}
.btn-outline-sandybrown {
color: #F4A460;
border-color: #F4A460;
}
.btn-outline-sandybrown:hover {
color: #000;
background-color: #F4A460;
border-color: #F4A460;
}
.btn-check:focus + .btn-outline-sandybrown, .btn-outline-sandybrown:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.5);
box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.5);
}
.btn-check:checked + .btn-outline-sandybrown,
.btn-check:active + .btn-outline-sandybrown, .btn-outline-sandybrown:active, .btn-outline-sandybrown.active, .btn-outline-sandybrown.dropdown-toggle.show {
color: #000;
background-color: #F4A460;
border-color: #F4A460;
}
.btn-check:checked + .btn-outline-sandybrown:focus,
.btn-check:active + .btn-outline-sandybrown:focus, .btn-outline-sandybrown:active:focus, .btn-outline-sandybrown.active:focus, .btn-outline-sandybrown.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.5);
box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.5);
}
.btn-outline-sandybrown:disabled, .btn-outline-sandybrown.disabled {
color: #F4A460;
background-color: transparent;
}
.btn-outline-seagreen {
color: #2E8B57;
border-color: #2E8B57;
}
.btn-outline-seagreen:hover {
color: #000;
background-color: #2E8B57;
border-color: #2E8B57;
}
.btn-check:focus + .btn-outline-seagreen, .btn-outline-seagreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.5);
box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.5);
}
.btn-check:checked + .btn-outline-seagreen,
.btn-check:active + .btn-outline-seagreen, .btn-outline-seagreen:active, .btn-outline-seagreen.active, .btn-outline-seagreen.dropdown-toggle.show {
color: #000;
background-color: #2E8B57;
border-color: #2E8B57;
}
.btn-check:checked + .btn-outline-seagreen:focus,
.btn-check:active + .btn-outline-seagreen:focus, .btn-outline-seagreen:active:focus, .btn-outline-seagreen.active:focus, .btn-outline-seagreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.5);
box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.5);
}
.btn-outline-seagreen:disabled, .btn-outline-seagreen.disabled {
color: #2E8B57;
background-color: transparent;
}
.btn-outline-seashell {
color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-outline-seashell:hover {
color: #000;
background-color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-check:focus + .btn-outline-seashell, .btn-outline-seashell:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 245, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 245, 238, 0.5);
}
.btn-check:checked + .btn-outline-seashell,
.btn-check:active + .btn-outline-seashell, .btn-outline-seashell:active, .btn-outline-seashell.active, .btn-outline-seashell.dropdown-toggle.show {
color: #000;
background-color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-check:checked + .btn-outline-seashell:focus,
.btn-check:active + .btn-outline-seashell:focus, .btn-outline-seashell:active:focus, .btn-outline-seashell.active:focus, .btn-outline-seashell.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 245, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 245, 238, 0.5);
}
.btn-outline-seashell:disabled, .btn-outline-seashell.disabled {
color: #FFF5EE;
background-color: transparent;
}
.btn-outline-sienna {
color: #A0522D;
border-color: #A0522D;
}
.btn-outline-sienna:hover {
color: #fff;
background-color: #A0522D;
border-color: #A0522D;
}
.btn-check:focus + .btn-outline-sienna, .btn-outline-sienna:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(160, 82, 45, 0.5);
box-shadow: 0 0 0 0.25rem rgba(160, 82, 45, 0.5);
}
.btn-check:checked + .btn-outline-sienna,
.btn-check:active + .btn-outline-sienna, .btn-outline-sienna:active, .btn-outline-sienna.active, .btn-outline-sienna.dropdown-toggle.show {
color: #fff;
background-color: #A0522D;
border-color: #A0522D;
}
.btn-check:checked + .btn-outline-sienna:focus,
.btn-check:active + .btn-outline-sienna:focus, .btn-outline-sienna:active:focus, .btn-outline-sienna.active:focus, .btn-outline-sienna.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(160, 82, 45, 0.5);
box-shadow: 0 0 0 0.25rem rgba(160, 82, 45, 0.5);
}
.btn-outline-sienna:disabled, .btn-outline-sienna.disabled {
color: #A0522D;
background-color: transparent;
}
.btn-outline-silver {
color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-outline-silver:hover {
color: #000;
background-color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-check:focus + .btn-outline-silver, .btn-outline-silver:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(192, 192, 192, 0.5);
box-shadow: 0 0 0 0.25rem rgba(192, 192, 192, 0.5);
}
.btn-check:checked + .btn-outline-silver,
.btn-check:active + .btn-outline-silver, .btn-outline-silver:active, .btn-outline-silver.active, .btn-outline-silver.dropdown-toggle.show {
color: #000;
background-color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-check:checked + .btn-outline-silver:focus,
.btn-check:active + .btn-outline-silver:focus, .btn-outline-silver:active:focus, .btn-outline-silver.active:focus, .btn-outline-silver.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(192, 192, 192, 0.5);
box-shadow: 0 0 0 0.25rem rgba(192, 192, 192, 0.5);
}
.btn-outline-silver:disabled, .btn-outline-silver.disabled {
color: #C0C0C0;
background-color: transparent;
}
.btn-outline-skyblue {
color: #87CEEB;
border-color: #87CEEB;
}
.btn-outline-skyblue:hover {
color: #000;
background-color: #87CEEB;
border-color: #87CEEB;
}
.btn-check:focus + .btn-outline-skyblue, .btn-outline-skyblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.5);
box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.5);
}
.btn-check:checked + .btn-outline-skyblue,
.btn-check:active + .btn-outline-skyblue, .btn-outline-skyblue:active, .btn-outline-skyblue.active, .btn-outline-skyblue.dropdown-toggle.show {
color: #000;
background-color: #87CEEB;
border-color: #87CEEB;
}
.btn-check:checked + .btn-outline-skyblue:focus,
.btn-check:active + .btn-outline-skyblue:focus, .btn-outline-skyblue:active:focus, .btn-outline-skyblue.active:focus, .btn-outline-skyblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.5);
box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.5);
}
.btn-outline-skyblue:disabled, .btn-outline-skyblue.disabled {
color: #87CEEB;
background-color: transparent;
}
.btn-outline-slateblue {
color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-outline-slateblue:hover {
color: #fff;
background-color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-check:focus + .btn-outline-slateblue, .btn-outline-slateblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.5);
}
.btn-check:checked + .btn-outline-slateblue,
.btn-check:active + .btn-outline-slateblue, .btn-outline-slateblue:active, .btn-outline-slateblue.active, .btn-outline-slateblue.dropdown-toggle.show {
color: #fff;
background-color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-check:checked + .btn-outline-slateblue:focus,
.btn-check:active + .btn-outline-slateblue:focus, .btn-outline-slateblue:active:focus, .btn-outline-slateblue.active:focus, .btn-outline-slateblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.5);
}
.btn-outline-slateblue:disabled, .btn-outline-slateblue.disabled {
color: #6A5ACD;
background-color: transparent;
}
.btn-outline-slategray {
color: #708090;
border-color: #708090;
}
.btn-outline-slategray:hover {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-check:focus + .btn-outline-slategray, .btn-outline-slategray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
}
.btn-check:checked + .btn-outline-slategray,
.btn-check:active + .btn-outline-slategray, .btn-outline-slategray:active, .btn-outline-slategray.active, .btn-outline-slategray.dropdown-toggle.show {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-check:checked + .btn-outline-slategray:focus,
.btn-check:active + .btn-outline-slategray:focus, .btn-outline-slategray:active:focus, .btn-outline-slategray.active:focus, .btn-outline-slategray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
}
.btn-outline-slategray:disabled, .btn-outline-slategray.disabled {
color: #708090;
background-color: transparent;
}
.btn-outline-slategrey {
color: #708090;
border-color: #708090;
}
.btn-outline-slategrey:hover {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-check:focus + .btn-outline-slategrey, .btn-outline-slategrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
}
.btn-check:checked + .btn-outline-slategrey,
.btn-check:active + .btn-outline-slategrey, .btn-outline-slategrey:active, .btn-outline-slategrey.active, .btn-outline-slategrey.dropdown-toggle.show {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-check:checked + .btn-outline-slategrey:focus,
.btn-check:active + .btn-outline-slategrey:focus, .btn-outline-slategrey:active:focus, .btn-outline-slategrey.active:focus, .btn-outline-slategrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
}
.btn-outline-slategrey:disabled, .btn-outline-slategrey.disabled {
color: #708090;
background-color: transparent;
}
.btn-outline-snow {
color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-outline-snow:hover {
color: #000;
background-color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-check:focus + .btn-outline-snow, .btn-outline-snow:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 250, 0.5);
}
.btn-check:checked + .btn-outline-snow,
.btn-check:active + .btn-outline-snow, .btn-outline-snow:active, .btn-outline-snow.active, .btn-outline-snow.dropdown-toggle.show {
color: #000;
background-color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-check:checked + .btn-outline-snow:focus,
.btn-check:active + .btn-outline-snow:focus, .btn-outline-snow:active:focus, .btn-outline-snow.active:focus, .btn-outline-snow.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 250, 0.5);
}
.btn-outline-snow:disabled, .btn-outline-snow.disabled {
color: #FFFAFA;
background-color: transparent;
}
.btn-outline-springgreen {
color: #00FF7F;
border-color: #00FF7F;
}
.btn-outline-springgreen:hover {
color: #000;
background-color: #00FF7F;
border-color: #00FF7F;
}
.btn-check:focus + .btn-outline-springgreen, .btn-outline-springgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.5);
}
.btn-check:checked + .btn-outline-springgreen,
.btn-check:active + .btn-outline-springgreen, .btn-outline-springgreen:active, .btn-outline-springgreen.active, .btn-outline-springgreen.dropdown-toggle.show {
color: #000;
background-color: #00FF7F;
border-color: #00FF7F;
}
.btn-check:checked + .btn-outline-springgreen:focus,
.btn-check:active + .btn-outline-springgreen:focus, .btn-outline-springgreen:active:focus, .btn-outline-springgreen.active:focus, .btn-outline-springgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.5);
}
.btn-outline-springgreen:disabled, .btn-outline-springgreen.disabled {
color: #00FF7F;
background-color: transparent;
}
.btn-outline-steelblue {
color: #4682B4;
border-color: #4682B4;
}
.btn-outline-steelblue:hover {
color: #000;
background-color: #4682B4;
border-color: #4682B4;
}
.btn-check:focus + .btn-outline-steelblue, .btn-outline-steelblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(70, 130, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(70, 130, 180, 0.5);
}
.btn-check:checked + .btn-outline-steelblue,
.btn-check:active + .btn-outline-steelblue, .btn-outline-steelblue:active, .btn-outline-steelblue.active, .btn-outline-steelblue.dropdown-toggle.show {
color: #000;
background-color: #4682B4;
border-color: #4682B4;
}
.btn-check:checked + .btn-outline-steelblue:focus,
.btn-check:active + .btn-outline-steelblue:focus, .btn-outline-steelblue:active:focus, .btn-outline-steelblue.active:focus, .btn-outline-steelblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(70, 130, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(70, 130, 180, 0.5);
}
.btn-outline-steelblue:disabled, .btn-outline-steelblue.disabled {
color: #4682B4;
background-color: transparent;
}
.btn-outline-tan {
color: #D2B48C;
border-color: #D2B48C;
}
.btn-outline-tan:hover {
color: #000;
background-color: #D2B48C;
border-color: #D2B48C;
}
.btn-check:focus + .btn-outline-tan, .btn-outline-tan:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.5);
box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.5);
}
.btn-check:checked + .btn-outline-tan,
.btn-check:active + .btn-outline-tan, .btn-outline-tan:active, .btn-outline-tan.active, .btn-outline-tan.dropdown-toggle.show {
color: #000;
background-color: #D2B48C;
border-color: #D2B48C;
}
.btn-check:checked + .btn-outline-tan:focus,
.btn-check:active + .btn-outline-tan:focus, .btn-outline-tan:active:focus, .btn-outline-tan.active:focus, .btn-outline-tan.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.5);
box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.5);
}
.btn-outline-tan:disabled, .btn-outline-tan.disabled {
color: #D2B48C;
background-color: transparent;
}
.btn-outline-thistle {
color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-outline-thistle:hover {
color: #000;
background-color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-check:focus + .btn-outline-thistle, .btn-outline-thistle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(216, 191, 216, 0.5);
box-shadow: 0 0 0 0.25rem rgba(216, 191, 216, 0.5);
}
.btn-check:checked + .btn-outline-thistle,
.btn-check:active + .btn-outline-thistle, .btn-outline-thistle:active, .btn-outline-thistle.active, .btn-outline-thistle.dropdown-toggle.show {
color: #000;
background-color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-check:checked + .btn-outline-thistle:focus,
.btn-check:active + .btn-outline-thistle:focus, .btn-outline-thistle:active:focus, .btn-outline-thistle.active:focus, .btn-outline-thistle.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(216, 191, 216, 0.5);
box-shadow: 0 0 0 0.25rem rgba(216, 191, 216, 0.5);
}
.btn-outline-thistle:disabled, .btn-outline-thistle.disabled {
color: #D8BFD8;
background-color: transparent;
}
.btn-outline-tomato {
color: #FF6347;
border-color: #FF6347;
}
.btn-outline-tomato:hover {
color: #000;
background-color: #FF6347;
border-color: #FF6347;
}
.btn-check:focus + .btn-outline-tomato, .btn-outline-tomato:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.5);
}
.btn-check:checked + .btn-outline-tomato,
.btn-check:active + .btn-outline-tomato, .btn-outline-tomato:active, .btn-outline-tomato.active, .btn-outline-tomato.dropdown-toggle.show {
color: #000;
background-color: #FF6347;
border-color: #FF6347;
}
.btn-check:checked + .btn-outline-tomato:focus,
.btn-check:active + .btn-outline-tomato:focus, .btn-outline-tomato:active:focus, .btn-outline-tomato.active:focus, .btn-outline-tomato.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.5);
}
.btn-outline-tomato:disabled, .btn-outline-tomato.disabled {
color: #FF6347;
background-color: transparent;
}
.btn-outline-turquoise {
color: #40E0D0;
border-color: #40E0D0;
}
.btn-outline-turquoise:hover {
color: #000;
background-color: #40E0D0;
border-color: #40E0D0;
}
.btn-check:focus + .btn-outline-turquoise, .btn-outline-turquoise:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.5);
}
.btn-check:checked + .btn-outline-turquoise,
.btn-check:active + .btn-outline-turquoise, .btn-outline-turquoise:active, .btn-outline-turquoise.active, .btn-outline-turquoise.dropdown-toggle.show {
color: #000;
background-color: #40E0D0;
border-color: #40E0D0;
}
.btn-check:checked + .btn-outline-turquoise:focus,
.btn-check:active + .btn-outline-turquoise:focus, .btn-outline-turquoise:active:focus, .btn-outline-turquoise.active:focus, .btn-outline-turquoise.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.5);
}
.btn-outline-turquoise:disabled, .btn-outline-turquoise.disabled {
color: #40E0D0;
background-color: transparent;
}
.btn-outline-violet {
color: #EE82EE;
border-color: #EE82EE;
}
.btn-outline-violet:hover {
color: #000;
background-color: #EE82EE;
border-color: #EE82EE;
}
.btn-check:focus + .btn-outline-violet, .btn-outline-violet:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(238, 130, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(238, 130, 238, 0.5);
}
.btn-check:checked + .btn-outline-violet,
.btn-check:active + .btn-outline-violet, .btn-outline-violet:active, .btn-outline-violet.active, .btn-outline-violet.dropdown-toggle.show {
color: #000;
background-color: #EE82EE;
border-color: #EE82EE;
}
.btn-check:checked + .btn-outline-violet:focus,
.btn-check:active + .btn-outline-violet:focus, .btn-outline-violet:active:focus, .btn-outline-violet.active:focus, .btn-outline-violet.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(238, 130, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(238, 130, 238, 0.5);
}
.btn-outline-violet:disabled, .btn-outline-violet.disabled {
color: #EE82EE;
background-color: transparent;
}
.btn-outline-wheat {
color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-outline-wheat:hover {
color: #000;
background-color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-check:focus + .btn-outline-wheat, .btn-outline-wheat:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 222, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 222, 179, 0.5);
}
.btn-check:checked + .btn-outline-wheat,
.btn-check:active + .btn-outline-wheat, .btn-outline-wheat:active, .btn-outline-wheat.active, .btn-outline-wheat.dropdown-toggle.show {
color: #000;
background-color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-check:checked + .btn-outline-wheat:focus,
.btn-check:active + .btn-outline-wheat:focus, .btn-outline-wheat:active:focus, .btn-outline-wheat.active:focus, .btn-outline-wheat.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 222, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 222, 179, 0.5);
}
.btn-outline-wheat:disabled, .btn-outline-wheat.disabled {
color: #F5DEB3;
background-color: transparent;
}
.btn-outline-whitesmoke {
color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-outline-whitesmoke:hover {
color: #000;
background-color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-check:focus + .btn-outline-whitesmoke, .btn-outline-whitesmoke:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
}
.btn-check:checked + .btn-outline-whitesmoke,
.btn-check:active + .btn-outline-whitesmoke, .btn-outline-whitesmoke:active, .btn-outline-whitesmoke.active, .btn-outline-whitesmoke.dropdown-toggle.show {
color: #000;
background-color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-check:checked + .btn-outline-whitesmoke:focus,
.btn-check:active + .btn-outline-whitesmoke:focus, .btn-outline-whitesmoke:active:focus, .btn-outline-whitesmoke.active:focus, .btn-outline-whitesmoke.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
}
.btn-outline-whitesmoke:disabled, .btn-outline-whitesmoke.disabled {
color: #F5F5F5;
background-color: transparent;
}
.btn-outline-yellowgreen {
color: #9ACD32;
border-color: #9ACD32;
}
.btn-outline-yellowgreen:hover {
color: #000;
background-color: #9ACD32;
border-color: #9ACD32;
}
.btn-check:focus + .btn-outline-yellowgreen, .btn-outline-yellowgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(154, 205, 50, 0.5);
box-shadow: 0 0 0 0.25rem rgba(154, 205, 50, 0.5);
}
.btn-check:checked + .btn-outline-yellowgreen,
.btn-check:active + .btn-outline-yellowgreen, .btn-outline-yellowgreen:active, .btn-outline-yellowgreen.active, .btn-outline-yellowgreen.dropdown-toggle.show {
color: #000;
background-color: #9ACD32;
border-color: #9ACD32;
}
.btn-check:checked + .btn-outline-yellowgreen:focus,
.btn-check:active + .btn-outline-yellowgreen:focus, .btn-outline-yellowgreen:active:focus, .btn-outline-yellowgreen.active:focus, .btn-outline-yellowgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(154, 205, 50, 0.5);
box-shadow: 0 0 0 0.25rem rgba(154, 205, 50, 0.5);
}
.btn-outline-yellowgreen:disabled, .btn-outline-yellowgreen.disabled {
color: #9ACD32;
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 {
-webkit-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
.fade {
-webkit-transition: none;
transition: none;
}
}
.fade:not(.show) {
opacity: 0;
}
.collapse:not(.show) {
display: none;
}
.collapsing {
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing {
-webkit-transition: none;
transition: none;
}
}
.collapsing.collapse-horizontal {
width: 0;
height: auto;
-webkit-transition: width 0.35s ease;
transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing.collapse-horizontal {
-webkit-transition: none;
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;
z-index: 1000;
display: none;
min-width: 10rem;
padding: 0.5rem 0;
margin: 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[data-bs-popper] {
top: 100%;
left: 0;
margin-top: 0.125rem;
}
.dropdown-menu-start {
--bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-end {
--bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
right: 0;
left: auto;
}
@media (min-width: 576px) {
.dropdown-menu-sm-start {
--bs-position: start;
}
.dropdown-menu-sm-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-sm-end {
--bs-position: end;
}
.dropdown-menu-sm-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 768px) {
.dropdown-menu-md-start {
--bs-position: start;
}
.dropdown-menu-md-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-md-end {
--bs-position: end;
}
.dropdown-menu-md-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 992px) {
.dropdown-menu-lg-start {
--bs-position: start;
}
.dropdown-menu-lg-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-lg-end {
--bs-position: end;
}
.dropdown-menu-lg-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 1200px) {
.dropdown-menu-xl-start {
--bs-position: start;
}
.dropdown-menu-xl-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-xl-end {
--bs-position: end;
}
.dropdown-menu-xl-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 1400px) {
.dropdown-menu-xxl-start {
--bs-position: start;
}
.dropdown-menu-xxl-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-xxl-end {
--bs-position: end;
}
.dropdown-menu-xxl-end[data-bs-popper] {
right: 0;
left: auto;
}
}
.dropup .dropdown-menu[data-bs-popper] {
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[data-bs-popper] {
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[data-bs-popper] {
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: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
color: #adb5bd;
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: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
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 {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
color: #0d6efd;
text-decoration: none;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 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;
}
@media (prefers-reduced-motion: reduce) {
.nav-link {
-webkit-transition: none;
transition: none;
}
}
.nav-link:hover, .nav-link:focus {
color: #0a58ca;
}
.nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}
.nav-tabs {
border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
margin-bottom: -1px;
background: none;
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;
isolation: isolate;
}
.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 {
background: none;
border: 0;
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 {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
width: 100%;
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.navbar {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: inherit;
flex-wrap: inherit;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.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;
-webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
transition: -webkit-box-shadow 0.15s ease-in-out;
transition: box-shadow 0.15s ease-in-out;
transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.navbar-toggler {
-webkit-transition: none;
transition: none;
}
}
.navbar-toggler:hover {
text-decoration: none;
}
.navbar-toggler:focus {
text-decoration: none;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem;
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%;
}
.navbar-nav-scroll {
max-height: var(--bs-scroll-height, 75vh);
overflow-y: auto;
}
@media (min-width: 576px) {
.navbar-expand-sm {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-sm .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-sm .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-sm .navbar-toggler {
display: none;
}
.navbar-expand-sm .offcanvas-header {
display: none;
}
.navbar-expand-sm .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-sm .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 768px) {
.navbar-expand-md {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-md .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-md .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-md .navbar-toggler {
display: none;
}
.navbar-expand-md .offcanvas-header {
display: none;
}
.navbar-expand-md .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-md .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 992px) {
.navbar-expand-lg {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-lg .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-lg .navbar-toggler {
display: none;
}
.navbar-expand-lg .offcanvas-header {
display: none;
}
.navbar-expand-lg .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-lg .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 1200px) {
.navbar-expand-xl {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xl .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-xl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xl .navbar-toggler {
display: none;
}
.navbar-expand-xl .offcanvas-header {
display: none;
}
.navbar-expand-xl .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-xl .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 1400px) {
.navbar-expand-xxl {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xxl .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-xxl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xxl .navbar-toggler {
display: none;
}
.navbar-expand-xxl .offcanvas-header {
display: none;
}
.navbar-expand-xxl .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-xxl .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
.navbar-expand {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand .navbar-toggler {
display: none;
}
.navbar-expand .offcanvas-header {
display: none;
}
.navbar-expand .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
.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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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 {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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 + .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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
}
.card-group > .card {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
padding: 1rem 1.25rem;
font-size: 1rem;
color: #212529;
text-align: left;
background-color: #fff;
border: 0;
border-radius: 0;
overflow-anchor: none;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-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, border-radius 0.15s ease, -webkit-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, border-radius 0.15s ease;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button {
-webkit-transition: none;
transition: none;
}
}
.accordion-button:not(.collapsed) {
color: #0c63e4;
background-color: #e7f1ff;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.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");
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
.accordion-button::after {
-ms-flex-negative: 0;
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;
-webkit-transition: -webkit-transform 0.2s ease-in-out;
transition: -webkit-transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button::after {
-webkit-transition: none;
transition: none;
}
}
.accordion-button:hover {
z-index: 2;
}
.accordion-button:focus {
z-index: 3;
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
margin-bottom: 0;
}
.accordion-item {
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
border-top: 0;
}
.accordion-item:last-of-type {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-body {
padding: 1rem 1.25rem;
}
.accordion-flush .accordion-collapse {
border-width: 0;
}
.accordion-flush .accordion-item {
border-right: 0;
border-left: 0;
border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
border-top: 0;
}
.accordion-flush .accordion-item:last-child {
border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
border-radius: 0;
}
.breadcrumb {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
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, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
color: #6c757d;
}
.pagination {
display: -webkit-box;
display: -ms-flexbox;
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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.page-link {
-webkit-transition: none;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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-rc-red {
color: #831911;
background-color: #f8d4d2;
border-color: #f4bfbb;
}
.alert-rc-red .alert-link {
color: #69140e;
}
.alert-rc-wine {
color: #63001f;
background-color: #edccd6;
border-color: #e4b3c2;
}
.alert-rc-wine .alert-link {
color: #4f0019;
}
.alert-rc-blue {
color: #001632;
background-color: #ccd3dd;
border-color: #b3becc;
}
.alert-rc-blue .alert-link {
color: #001228;
}
.alert-rc-gold {
color: #664700;
background-color: #fff0cc;
border-color: #ffe8b3;
}
.alert-rc-gold .alert-link {
color: #523900;
}
.alert-rc-silver {
color: #4d4d4d;
background-color: #e6e6e6;
border-color: #d9d9d9;
}
.alert-rc-silver .alert-link {
color: #3e3e3e;
}
.alert-rc-skyblue {
color: #006a90;
background-color: #cceffc;
border-color: #b3e7fb;
}
.alert-rc-skyblue .alert-link {
color: #005573;
}
.alert-aliceblue {
color: #606366;
background-color: #fcfeff;
border-color: #fbfdff;
}
.alert-aliceblue .alert-link {
color: #4d4f52;
}
.alert-antiquewhite {
color: #645e56;
background-color: #fefbf7;
border-color: #fef9f3;
}
.alert-antiquewhite .alert-link {
color: #504b45;
}
.alert-aqua {
color: #006666;
background-color: #ccffff;
border-color: #b3ffff;
}
.alert-aqua .alert-link {
color: #005252;
}
.alert-aquamarine {
color: #336655;
background-color: #e5fff6;
border-color: #d9fff2;
}
.alert-aquamarine .alert-link {
color: #295244;
}
.alert-azure {
color: #606666;
background-color: #fcffff;
border-color: #fbffff;
}
.alert-azure .alert-link {
color: #4d5252;
}
.alert-beige {
color: #626258;
background-color: #fdfdf8;
border-color: #fcfcf5;
}
.alert-beige .alert-link {
color: #4e4e46;
}
.alert-bisque {
color: #665b4e;
background-color: #fffaf3;
border-color: #fff7ed;
}
.alert-bisque .alert-link {
color: #52493e;
}
.alert-blanchedalmond {
color: #665e52;
background-color: #fffbf5;
border-color: #fff9f0;
}
.alert-blanchedalmond .alert-link {
color: #524b42;
}
.alert-blueviolet {
color: #531a88;
background-color: #e8d5f9;
border-color: #dcbff6;
}
.alert-blueviolet .alert-link {
color: #42156d;
}
.alert-brown {
color: #631919;
background-color: #edd4d4;
border-color: #e4bfbf;
}
.alert-brown .alert-link {
color: #4f1414;
}
.alert-burlywood {
color: #594a36;
background-color: #f8f1e7;
border-color: #f5eadb;
}
.alert-burlywood .alert-link {
color: #473b2b;
}
.alert-cadetblue {
color: #395f60;
background-color: #dfecec;
border-color: #cfe2e3;
}
.alert-cadetblue .alert-link {
color: #2e4c4d;
}
.alert-chartreuse {
color: #336600;
background-color: #e5ffcc;
border-color: #d9ffb3;
}
.alert-chartreuse .alert-link {
color: #295200;
}
.alert-chocolate {
color: #7e3f12;
background-color: #f6e1d2;
border-color: #f2d2bc;
}
.alert-chocolate .alert-link {
color: #65320e;
}
.alert-coral {
color: #994c30;
background-color: #ffe5dc;
border-color: #ffd9cb;
}
.alert-coral .alert-link {
color: #7a3d26;
}
.alert-cornflowerblue {
color: #3c598e;
background-color: #e0eafb;
border-color: #d1dffa;
}
.alert-cornflowerblue .alert-link {
color: #304772;
}
.alert-cornsilk {
color: #666358;
background-color: #fffef8;
border-color: #fffdf5;
}
.alert-cornsilk .alert-link {
color: #524f46;
}
.alert-crimson {
color: #840c24;
background-color: #f8d0d8;
border-color: #f5b9c5;
}
.alert-crimson .alert-link {
color: #6a0a1d;
}
.alert-darkblue {
color: #000053;
background-color: #cccce8;
border-color: #b3b3dc;
}
.alert-darkblue .alert-link {
color: #000042;
}
.alert-darkcyan {
color: #005353;
background-color: #cce8e8;
border-color: #b3dcdc;
}
.alert-darkcyan .alert-link {
color: #004242;
}
.alert-darkgoldenrod {
color: #6e5007;
background-color: #f1e7ce;
border-color: #eadbb6;
}
.alert-darkgoldenrod .alert-link {
color: #584006;
}
.alert-darkgray {
color: #656565;
background-color: #eeeeee;
border-color: #e5e5e5;
}
.alert-darkgray .alert-link {
color: #515151;
}
.alert-darkgreen {
color: #003c00;
background-color: #cce0cc;
border-color: #b3d1b3;
}
.alert-darkgreen .alert-link {
color: #003000;
}
.alert-darkgrey {
color: #656565;
background-color: #eeeeee;
border-color: #e5e5e5;
}
.alert-darkgrey .alert-link {
color: #515151;
}
.alert-darkkhaki {
color: #716e40;
background-color: #f2f1e1;
border-color: #ebe9d3;
}
.alert-darkkhaki .alert-link {
color: #5a5833;
}
.alert-darkmagenta {
color: #530053;
background-color: #e8cce8;
border-color: #dcb3dc;
}
.alert-darkmagenta .alert-link {
color: #420042;
}
.alert-darkolivegreen {
color: #33401c;
background-color: #dde1d5;
border-color: #ccd3c1;
}
.alert-darkolivegreen .alert-link {
color: #293316;
}
.alert-darkorange {
color: #995400;
background-color: #ffe8cc;
border-color: #ffddb3;
}
.alert-darkorange .alert-link {
color: #7a4300;
}
.alert-darkorchid {
color: #5c1e7a;
background-color: #ebd6f5;
border-color: #e0c2f0;
}
.alert-darkorchid .alert-link {
color: #4a1862;
}
.alert-darkred {
color: #530000;
background-color: #e8cccc;
border-color: #dcb3b3;
}
.alert-darkred .alert-link {
color: #420000;
}
.alert-darksalmon {
color: #8c5a49;
background-color: #fbeae4;
border-color: #f8e0d7;
}
.alert-darksalmon .alert-link {
color: #70483a;
}
.alert-darkseagreen {
color: #567156;
background-color: #e9f2e9;
border-color: #ddebdd;
}
.alert-darkseagreen .alert-link {
color: #455a45;
}
.alert-darkslateblue {
color: #2b2553;
background-color: #dad8e8;
border-color: #c8c5dc;
}
.alert-darkslateblue .alert-link {
color: #221e42;
}
.alert-darkslategray {
color: #1c2f2f;
background-color: #d5dcdc;
border-color: #c1caca;
}
.alert-darkslategray .alert-link {
color: #162626;
}
.alert-darkslategrey {
color: #1c2f2f;
background-color: #d5dcdc;
border-color: #c1caca;
}
.alert-darkslategrey .alert-link {
color: #162626;
}
.alert-darkturquoise {
color: #005254;
background-color: #ccf5f6;
border-color: #b3f0f1;
}
.alert-darkturquoise .alert-link {
color: #004243;
}
.alert-darkviolet {
color: #59007f;
background-color: #eaccf6;
border-color: #dfb3f2;
}
.alert-darkviolet .alert-link {
color: #470066;
}
.alert-deeppink {
color: #990c58;
background-color: #ffd0e9;
border-color: #ffb9df;
}
.alert-deeppink .alert-link {
color: #7a0a46;
}
.alert-deepskyblue {
color: #007399;
background-color: #ccf2ff;
border-color: #b3ecff;
}
.alert-deepskyblue .alert-link {
color: #005c7a;
}
.alert-dimgray {
color: #3f3f3f;
background-color: #e1e1e1;
border-color: #d2d2d2;
}
.alert-dimgray .alert-link {
color: #323232;
}
.alert-dimgrey {
color: #3f3f3f;
background-color: #e1e1e1;
border-color: #d2d2d2;
}
.alert-dimgrey .alert-link {
color: #323232;
}
.alert-dodgerblue {
color: #125699;
background-color: #d2e9ff;
border-color: #bcdeff;
}
.alert-dodgerblue .alert-link {
color: #0e457a;
}
.alert-firebrick {
color: #6b1414;
background-color: #f0d3d3;
border-color: #e8bdbd;
}
.alert-firebrick .alert-link {
color: #561010;
}
.alert-floralwhite {
color: #666460;
background-color: #fffefc;
border-color: #fffefb;
}
.alert-floralwhite .alert-link {
color: #52504d;
}
.alert-forestgreen {
color: #145314;
background-color: #d3e8d3;
border-color: #bddcbd;
}
.alert-forestgreen .alert-link {
color: #104210;
}
.alert-fuchsia {
color: #990099;
background-color: #ffccff;
border-color: #ffb3ff;
}
.alert-fuchsia .alert-link {
color: #7a007a;
}
.alert-gainsboro {
color: #585858;
background-color: #f8f8f8;
border-color: whitesmoke;
}
.alert-gainsboro .alert-link {
color: #464646;
}
.alert-ghostwhite {
color: #636366;
background-color: #fefeff;
border-color: #fdfdff;
}
.alert-ghostwhite .alert-link {
color: #4f4f52;
}
.alert-gold {
color: #665600;
background-color: #fff7cc;
border-color: #fff3b3;
}
.alert-gold .alert-link {
color: #524500;
}
.alert-goldenrod {
color: #836313;
background-color: #f8edd2;
border-color: #f4e4bc;
}
.alert-goldenrod .alert-link {
color: #694f0f;
}
.alert-greenyellow {
color: #456613;
background-color: #efffd5;
border-color: #e6ffc1;
}
.alert-greenyellow .alert-link {
color: #37520f;
}
.alert-grey {
color: #4d4d4d;
background-color: #e6e6e6;
border-color: #d9d9d9;
}
.alert-grey .alert-link {
color: #3e3e3e;
}
.alert-honeydew {
color: #606660;
background-color: #fcfffc;
border-color: #fbfffb;
}
.alert-honeydew .alert-link {
color: #4d524d;
}
.alert-hotpink {
color: #993f6c;
background-color: #ffe1f0;
border-color: #ffd2e9;
}
.alert-hotpink .alert-link {
color: #7a3256;
}
.alert-indianred {
color: #7b3737;
background-color: #f5dede;
border-color: #f0cece;
}
.alert-indianred .alert-link {
color: #622c2c;
}
.alert-ivory {
color: #666660;
background-color: #fffffc;
border-color: #fffffb;
}
.alert-ivory .alert-link {
color: #52524d;
}
.alert-khaki {
color: #605c38;
background-color: #fcfae8;
border-color: #fbf8dd;
}
.alert-khaki .alert-link {
color: #4d4a2d;
}
.alert-lavender {
color: #5c5c64;
background-color: #fafafe;
border-color: #f8f8fe;
}
.alert-lavender .alert-link {
color: #4a4a50;
}
.alert-lavenderblush {
color: #666062;
background-color: #fffcfd;
border-color: #fffbfc;
}
.alert-lavenderblush .alert-link {
color: #524d4e;
}
.alert-lawngreen {
color: #326500;
background-color: #e5fecc;
border-color: #d8feb3;
}
.alert-lawngreen .alert-link {
color: #285100;
}
.alert-lemonchiffon {
color: #666452;
background-color: #fffef5;
border-color: #fffef0;
}
.alert-lemonchiffon .alert-link {
color: #525042;
}
.alert-lightblue {
color: #45565c;
background-color: #eff7fa;
border-color: #e6f3f8;
}
.alert-lightblue .alert-link {
color: #37454a;
}
.alert-lightcoral {
color: #904d4d;
background-color: #fce6e6;
border-color: #fbd9d9;
}
.alert-lightcoral .alert-link {
color: #733e3e;
}
.alert-lightcyan {
color: #5a6666;
background-color: #f9ffff;
border-color: #f6ffff;
}
.alert-lightcyan .alert-link {
color: #485252;
}
.alert-lightgoldenrodyellow {
color: #646454;
background-color: #fefef6;
border-color: #fefef2;
}
.alert-lightgoldenrodyellow .alert-link {
color: #505043;
}
.alert-lightgray {
color: #545454;
background-color: #f6f6f6;
border-color: #f2f2f2;
}
.alert-lightgray .alert-link {
color: #434343;
}
.alert-lightgreen {
color: #3a5f3a;
background-color: #e9fce9;
border-color: #defade;
}
.alert-lightgreen .alert-link {
color: #2e4c2e;
}
.alert-lightgrey {
color: #545454;
background-color: #f6f6f6;
border-color: #f2f2f2;
}
.alert-lightgrey .alert-link {
color: #434343;
}
.alert-lightpink {
color: #66494d;
background-color: #fff0f3;
border-color: #ffe9ec;
}
.alert-lightpink .alert-link {
color: #523a3e;
}
.alert-lightsalmon {
color: #664031;
background-color: #ffece4;
border-color: #ffe3d7;
}
.alert-lightsalmon .alert-link {
color: #523327;
}
.alert-lightseagreen {
color: #136b66;
background-color: #d2f0ee;
border-color: #bce8e6;
}
.alert-lightseagreen .alert-link {
color: #0f5652;
}
.alert-lightskyblue {
color: #365264;
background-color: #e7f5fe;
border-color: #dbf0fe;
}
.alert-lightskyblue .alert-link {
color: #2b4250;
}
.alert-lightslategray {
color: #47525c;
background-color: #e4e7eb;
border-color: #d6dbe0;
}
.alert-lightslategray .alert-link {
color: #39424a;
}
.alert-lightslategrey {
color: #47525c;
background-color: #e4e7eb;
border-color: #d6dbe0;
}
.alert-lightslategrey .alert-link {
color: #39424a;
}
.alert-lightsteelblue {
color: #464e59;
background-color: #eff3f8;
border-color: #e7edf5;
}
.alert-lightsteelblue .alert-link {
color: #383e47;
}
.alert-lightyellow {
color: #66665a;
background-color: #fffff9;
border-color: #fffff6;
}
.alert-lightyellow .alert-link {
color: #525248;
}
.alert-lime {
color: #006600;
background-color: #ccffcc;
border-color: #b3ffb3;
}
.alert-lime .alert-link {
color: #005200;
}
.alert-limegreen {
color: #1e7b1e;
background-color: #d6f5d6;
border-color: #c2f0c2;
}
.alert-limegreen .alert-link {
color: #186218;
}
.alert-linen {
color: #64605c;
background-color: #fefcfa;
border-color: #fefbf8;
}
.alert-linen .alert-link {
color: #504d4a;
}
.alert-magenta {
color: #990099;
background-color: #ffccff;
border-color: #ffb3ff;
}
.alert-magenta .alert-link {
color: #7a007a;
}
.alert-maroon {
color: #4d0000;
background-color: #e6cccc;
border-color: #d9b3b3;
}
.alert-maroon .alert-link {
color: #3e0000;
}
.alert-mediumaquamarine {
color: #295244;
background-color: #e0f5ee;
border-color: #d1f0e6;
}
.alert-mediumaquamarine .alert-link {
color: #214236;
}
.alert-mediumblue {
color: #00007b;
background-color: #ccccf5;
border-color: #b3b3f0;
}
.alert-mediumblue .alert-link {
color: #000062;
}
.alert-mediumorchid {
color: #70337f;
background-color: #f1ddf6;
border-color: #eaccf2;
}
.alert-mediumorchid .alert-link {
color: #5a2966;
}
.alert-mediumpurple {
color: #584383;
background-color: #e9e2f8;
border-color: #dfd4f4;
}
.alert-mediumpurple .alert-link {
color: #463669;
}
.alert-mediumseagreen {
color: #246b44;
background-color: #d8f0e3;
border-color: #c5e8d4;
}
.alert-mediumseagreen .alert-link {
color: #1d5636;
}
.alert-mediumslateblue {
color: #4a3e8f;
background-color: #e5e1fc;
border-color: #d7d2fa;
}
.alert-mediumslateblue .alert-link {
color: #3b3272;
}
.alert-mediumspringgreen {
color: #00643e;
background-color: #ccfeeb;
border-color: #b3fee1;
}
.alert-mediumspringgreen .alert-link {
color: #005032;
}
.alert-mediumturquoise {
color: #1d5452;
background-color: #daf6f5;
border-color: #c8f1f0;
}
.alert-mediumturquoise .alert-link {
color: #174342;
}
.alert-mediumvioletred {
color: #770d50;
background-color: #f4d0e7;
border-color: #eeb9da;
}
.alert-mediumvioletred .alert-link {
color: #5f0a40;
}
.alert-midnightblue {
color: #0f0f43;
background-color: #d1d1e2;
border-color: #babad4;
}
.alert-midnightblue .alert-link {
color: #0c0c36;
}
.alert-mintcream {
color: #626664;
background-color: #fdfffe;
border-color: #fcfffe;
}
.alert-mintcream .alert-link {
color: #4e5250;
}
.alert-mistyrose {
color: #665b5a;
background-color: #fffaf9;
border-color: #fff7f6;
}
.alert-mistyrose .alert-link {
color: #524948;
}
.alert-moccasin {
color: #665b48;
background-color: floralwhite;
border-color: #fff7e9;
}
.alert-moccasin .alert-link {
color: #52493a;
}
.alert-navajowhite {
color: #665945;
background-color: #fff8ef;
border-color: #fff5e6;
}
.alert-navajowhite .alert-link {
color: #524737;
}
.alert-navy {
color: #00004d;
background-color: #cccce6;
border-color: #b3b3d9;
}
.alert-navy .alert-link {
color: #00003e;
}
.alert-oldlace {
color: #65625c;
background-color: #fffdfa;
border-color: #fefcf8;
}
.alert-oldlace .alert-link {
color: #514e4a;
}
.alert-olive {
color: #4d4d00;
background-color: #e6e6cc;
border-color: #d9d9b3;
}
.alert-olive .alert-link {
color: #3e3e00;
}
.alert-olivedrab {
color: #405515;
background-color: #e1e8d3;
border-color: #d3ddbd;
}
.alert-olivedrab .alert-link {
color: #334411;
}
.alert-orangered {
color: #992900;
background-color: #ffdacc;
border-color: #ffc7b3;
}
.alert-orangered .alert-link {
color: #7a2100;
}
.alert-orchid {
color: #834380;
background-color: #f8e2f7;
border-color: #f4d4f3;
}
.alert-orchid .alert-link {
color: #693666;
}
.alert-palegoldenrod {
color: #5f5d44;
background-color: #fcfaee;
border-color: #faf8e6;
}
.alert-palegoldenrod .alert-link {
color: #4c4a36;
}
.alert-palegreen {
color: #3d643d;
background-color: #eafeea;
border-color: #e0fee0;
}
.alert-palegreen .alert-link {
color: #315031;
}
.alert-paleturquoise {
color: #465f5f;
background-color: #effcfc;
border-color: #e7fafa;
}
.alert-paleturquoise .alert-link {
color: #384c4c;
}
.alert-palevioletred {
color: #834358;
background-color: #f8e2e9;
border-color: #f4d4df;
}
.alert-palevioletred .alert-link {
color: #693646;
}
.alert-papayawhip {
color: #666055;
background-color: #fffcf7;
border-color: #fffaf2;
}
.alert-papayawhip .alert-link {
color: #524d44;
}
.alert-peachpuff {
color: #66574a;
background-color: #fff8f1;
border-color: #fff4ea;
}
.alert-peachpuff .alert-link {
color: #52463b;
}
.alert-peru {
color: #7b5026;
background-color: #f5e7d9;
border-color: #f0dac5;
}
.alert-peru .alert-link {
color: #62401e;
}
.alert-plum {
color: #856085;
background-color: #f8ecf8;
border-color: #f5e3f5;
}
.alert-plum .alert-link {
color: #6a4d6a;
}
.alert-powderblue {
color: #465a5c;
background-color: #eff9fa;
border-color: #e7f6f8;
}
.alert-powderblue .alert-link {
color: #38484a;
}
.alert-rebeccapurple {
color: #3d1f5c;
background-color: #e0d6eb;
border-color: #d1c2e0;
}
.alert-rebeccapurple .alert-link {
color: #31194a;
}
.alert-rosybrown {
color: #715656;
background-color: #f2e9e9;
border-color: #ebdddd;
}
.alert-rosybrown .alert-link {
color: #5a4545;
}
.alert-royalblue {
color: #273f87;
background-color: #d9e1f9;
border-color: #c6d2f6;
}
.alert-royalblue .alert-link {
color: #1f326c;
}
.alert-saddlebrown {
color: #53290b;
background-color: #e8dad0;
border-color: #dcc7b8;
}
.alert-saddlebrown .alert-link {
color: #422109;
}
.alert-salmon {
color: #964d44;
background-color: #fee6e3;
border-color: #fed9d5;
}
.alert-salmon .alert-link {
color: #783e36;
}
.alert-sandybrown {
color: #92623a;
background-color: #fdeddf;
border-color: #fce4cf;
}
.alert-sandybrown .alert-link {
color: #754e2e;
}
.alert-seagreen {
color: #1c5334;
background-color: #d5e8dd;
border-color: #c0dccd;
}
.alert-seagreen .alert-link {
color: #16422a;
}
.alert-seashell {
color: #66625f;
background-color: #fffdfc;
border-color: #fffcfa;
}
.alert-seashell .alert-link {
color: #524e4c;
}
.alert-sienna {
color: #60311b;
background-color: #ecdcd5;
border-color: #e3cbc0;
}
.alert-sienna .alert-link {
color: #4d2716;
}
.alert-silver {
color: #4d4d4d;
background-color: #f2f2f2;
border-color: #ececec;
}
.alert-silver .alert-link {
color: #3e3e3e;
}
.alert-skyblue {
color: #36525e;
background-color: #e7f5fb;
border-color: #dbf0f9;
}
.alert-skyblue .alert-link {
color: #2b424b;
}
.alert-slateblue {
color: #40367b;
background-color: #e1def5;
border-color: #d2cef0;
}
.alert-slateblue .alert-link {
color: #332b62;
}
.alert-slategray {
color: #434d56;
background-color: #e2e6e9;
border-color: #d4d9de;
}
.alert-slategray .alert-link {
color: #363e45;
}
.alert-slategrey {
color: #434d56;
background-color: #e2e6e9;
border-color: #d4d9de;
}
.alert-slategrey .alert-link {
color: #363e45;
}
.alert-snow {
color: #666464;
background-color: #fffefe;
border-color: #fffefe;
}
.alert-snow .alert-link {
color: #525050;
}
.alert-springgreen {
color: #006633;
background-color: #ccffe5;
border-color: #b3ffd9;
}
.alert-springgreen .alert-link {
color: #005229;
}
.alert-steelblue {
color: #2a4e6c;
background-color: #dae6f0;
border-color: #c8dae9;
}
.alert-steelblue .alert-link {
color: #223e56;
}
.alert-tan {
color: #544838;
background-color: #f6f0e8;
border-color: #f2e9dd;
}
.alert-tan .alert-link {
color: #433a2d;
}
.alert-thistle {
color: #564c56;
background-color: #f7f2f7;
border-color: #f3ecf3;
}
.alert-thistle .alert-link {
color: #453d45;
}
.alert-tomato {
color: #993b2b;
background-color: #ffe0da;
border-color: #ffd0c8;
}
.alert-tomato .alert-link {
color: #7a2f22;
}
.alert-turquoise {
color: #1a5a53;
background-color: #d9f9f6;
border-color: #c6f6f1;
}
.alert-turquoise .alert-link {
color: #154842;
}
.alert-violet {
color: #8f4e8f;
background-color: #fce6fc;
border-color: #fadafa;
}
.alert-violet .alert-link {
color: #723e72;
}
.alert-wheat {
color: #625948;
background-color: #fdf8f0;
border-color: #fcf5e8;
}
.alert-wheat .alert-link {
color: #4e473a;
}
.alert-whitesmoke {
color: #626262;
background-color: #fdfdfd;
border-color: #fcfcfc;
}
.alert-whitesmoke .alert-link {
color: #4e4e4e;
}
.alert-yellowgreen {
color: #3e5214;
background-color: #ebf5d6;
border-color: #e1f0c2;
}
.alert-yellowgreen .alert-link {
color: #324210;
}
@keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
.progress {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #e9ecef;
border-radius: 0.25rem;
}
.progress-bar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
overflow: hidden;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #0d6efd;
-webkit-transition: width 0.6s ease;
transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar {
-webkit-transition: none;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
border-radius: 0.25rem;
}
.list-group-numbered {
list-style-type: none;
counter-reset: section;
}
.list-group-numbered > li::before {
content: counters(section, ".") ". ";
counter-increment: section;
}
.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;
color: #212529;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-rc-red {
color: #831911;
background-color: #f8d4d2;
}
.list-group-item-rc-red.list-group-item-action:hover, .list-group-item-rc-red.list-group-item-action:focus {
color: #831911;
background-color: #dfbfbd;
}
.list-group-item-rc-red.list-group-item-action.active {
color: #fff;
background-color: #831911;
border-color: #831911;
}
.list-group-item-rc-wine {
color: #63001f;
background-color: #edccd6;
}
.list-group-item-rc-wine.list-group-item-action:hover, .list-group-item-rc-wine.list-group-item-action:focus {
color: #63001f;
background-color: #d5b8c1;
}
.list-group-item-rc-wine.list-group-item-action.active {
color: #fff;
background-color: #63001f;
border-color: #63001f;
}
.list-group-item-rc-blue {
color: #001632;
background-color: #ccd3dd;
}
.list-group-item-rc-blue.list-group-item-action:hover, .list-group-item-rc-blue.list-group-item-action:focus {
color: #001632;
background-color: #b8bec7;
}
.list-group-item-rc-blue.list-group-item-action.active {
color: #fff;
background-color: #001632;
border-color: #001632;
}
.list-group-item-rc-gold {
color: #664700;
background-color: #fff0cc;
}
.list-group-item-rc-gold.list-group-item-action:hover, .list-group-item-rc-gold.list-group-item-action:focus {
color: #664700;
background-color: #e6d8b8;
}
.list-group-item-rc-gold.list-group-item-action.active {
color: #fff;
background-color: #664700;
border-color: #664700;
}
.list-group-item-rc-silver {
color: #4d4d4d;
background-color: #e6e6e6;
}
.list-group-item-rc-silver.list-group-item-action:hover, .list-group-item-rc-silver.list-group-item-action:focus {
color: #4d4d4d;
background-color: #cfcfcf;
}
.list-group-item-rc-silver.list-group-item-action.active {
color: #fff;
background-color: #4d4d4d;
border-color: #4d4d4d;
}
.list-group-item-rc-skyblue {
color: #006a90;
background-color: #cceffc;
}
.list-group-item-rc-skyblue.list-group-item-action:hover, .list-group-item-rc-skyblue.list-group-item-action:focus {
color: #006a90;
background-color: #b8d7e3;
}
.list-group-item-rc-skyblue.list-group-item-action.active {
color: #fff;
background-color: #006a90;
border-color: #006a90;
}
.list-group-item-aliceblue {
color: #606366;
background-color: #fcfeff;
}
.list-group-item-aliceblue.list-group-item-action:hover, .list-group-item-aliceblue.list-group-item-action:focus {
color: #606366;
background-color: #e3e5e6;
}
.list-group-item-aliceblue.list-group-item-action.active {
color: #fff;
background-color: #606366;
border-color: #606366;
}
.list-group-item-antiquewhite {
color: #645e56;
background-color: #fefbf7;
}
.list-group-item-antiquewhite.list-group-item-action:hover, .list-group-item-antiquewhite.list-group-item-action:focus {
color: #645e56;
background-color: #e5e2de;
}
.list-group-item-antiquewhite.list-group-item-action.active {
color: #fff;
background-color: #645e56;
border-color: #645e56;
}
.list-group-item-aqua {
color: #006666;
background-color: #ccffff;
}
.list-group-item-aqua.list-group-item-action:hover, .list-group-item-aqua.list-group-item-action:focus {
color: #006666;
background-color: #b8e6e6;
}
.list-group-item-aqua.list-group-item-action.active {
color: #fff;
background-color: #006666;
border-color: #006666;
}
.list-group-item-aquamarine {
color: #336655;
background-color: #e5fff6;
}
.list-group-item-aquamarine.list-group-item-action:hover, .list-group-item-aquamarine.list-group-item-action:focus {
color: #336655;
background-color: #cee6dd;
}
.list-group-item-aquamarine.list-group-item-action.active {
color: #fff;
background-color: #336655;
border-color: #336655;
}
.list-group-item-azure {
color: #606666;
background-color: #fcffff;
}
.list-group-item-azure.list-group-item-action:hover, .list-group-item-azure.list-group-item-action:focus {
color: #606666;
background-color: #e3e6e6;
}
.list-group-item-azure.list-group-item-action.active {
color: #fff;
background-color: #606666;
border-color: #606666;
}
.list-group-item-beige {
color: #626258;
background-color: #fdfdf8;
}
.list-group-item-beige.list-group-item-action:hover, .list-group-item-beige.list-group-item-action:focus {
color: #626258;
background-color: #e4e4df;
}
.list-group-item-beige.list-group-item-action.active {
color: #fff;
background-color: #626258;
border-color: #626258;
}
.list-group-item-bisque {
color: #665b4e;
background-color: #fffaf3;
}
.list-group-item-bisque.list-group-item-action:hover, .list-group-item-bisque.list-group-item-action:focus {
color: #665b4e;
background-color: #e6e1db;
}
.list-group-item-bisque.list-group-item-action.active {
color: #fff;
background-color: #665b4e;
border-color: #665b4e;
}
.list-group-item-blanchedalmond {
color: #665e52;
background-color: #fffbf5;
}
.list-group-item-blanchedalmond.list-group-item-action:hover, .list-group-item-blanchedalmond.list-group-item-action:focus {
color: #665e52;
background-color: #e6e2dd;
}
.list-group-item-blanchedalmond.list-group-item-action.active {
color: #fff;
background-color: #665e52;
border-color: #665e52;
}
.list-group-item-blueviolet {
color: #531a88;
background-color: #e8d5f9;
}
.list-group-item-blueviolet.list-group-item-action:hover, .list-group-item-blueviolet.list-group-item-action:focus {
color: #531a88;
background-color: #d1c0e0;
}
.list-group-item-blueviolet.list-group-item-action.active {
color: #fff;
background-color: #531a88;
border-color: #531a88;
}
.list-group-item-brown {
color: #631919;
background-color: #edd4d4;
}
.list-group-item-brown.list-group-item-action:hover, .list-group-item-brown.list-group-item-action:focus {
color: #631919;
background-color: #d5bfbf;
}
.list-group-item-brown.list-group-item-action.active {
color: #fff;
background-color: #631919;
border-color: #631919;
}
.list-group-item-burlywood {
color: #594a36;
background-color: #f8f1e7;
}
.list-group-item-burlywood.list-group-item-action:hover, .list-group-item-burlywood.list-group-item-action:focus {
color: #594a36;
background-color: #dfd9d0;
}
.list-group-item-burlywood.list-group-item-action.active {
color: #fff;
background-color: #594a36;
border-color: #594a36;
}
.list-group-item-cadetblue {
color: #395f60;
background-color: #dfecec;
}
.list-group-item-cadetblue.list-group-item-action:hover, .list-group-item-cadetblue.list-group-item-action:focus {
color: #395f60;
background-color: #c9d4d4;
}
.list-group-item-cadetblue.list-group-item-action.active {
color: #fff;
background-color: #395f60;
border-color: #395f60;
}
.list-group-item-chartreuse {
color: #336600;
background-color: #e5ffcc;
}
.list-group-item-chartreuse.list-group-item-action:hover, .list-group-item-chartreuse.list-group-item-action:focus {
color: #336600;
background-color: #cee6b8;
}
.list-group-item-chartreuse.list-group-item-action.active {
color: #fff;
background-color: #336600;
border-color: #336600;
}
.list-group-item-chocolate {
color: #7e3f12;
background-color: #f6e1d2;
}
.list-group-item-chocolate.list-group-item-action:hover, .list-group-item-chocolate.list-group-item-action:focus {
color: #7e3f12;
background-color: #ddcbbd;
}
.list-group-item-chocolate.list-group-item-action.active {
color: #fff;
background-color: #7e3f12;
border-color: #7e3f12;
}
.list-group-item-coral {
color: #994c30;
background-color: #ffe5dc;
}
.list-group-item-coral.list-group-item-action:hover, .list-group-item-coral.list-group-item-action:focus {
color: #994c30;
background-color: #e6cec6;
}
.list-group-item-coral.list-group-item-action.active {
color: #fff;
background-color: #994c30;
border-color: #994c30;
}
.list-group-item-cornflowerblue {
color: #3c598e;
background-color: #e0eafb;
}
.list-group-item-cornflowerblue.list-group-item-action:hover, .list-group-item-cornflowerblue.list-group-item-action:focus {
color: #3c598e;
background-color: #cad3e2;
}
.list-group-item-cornflowerblue.list-group-item-action.active {
color: #fff;
background-color: #3c598e;
border-color: #3c598e;
}
.list-group-item-cornsilk {
color: #666358;
background-color: #fffef8;
}
.list-group-item-cornsilk.list-group-item-action:hover, .list-group-item-cornsilk.list-group-item-action:focus {
color: #666358;
background-color: #e6e5df;
}
.list-group-item-cornsilk.list-group-item-action.active {
color: #fff;
background-color: #666358;
border-color: #666358;
}
.list-group-item-crimson {
color: #840c24;
background-color: #f8d0d8;
}
.list-group-item-crimson.list-group-item-action:hover, .list-group-item-crimson.list-group-item-action:focus {
color: #840c24;
background-color: #dfbbc2;
}
.list-group-item-crimson.list-group-item-action.active {
color: #fff;
background-color: #840c24;
border-color: #840c24;
}
.list-group-item-darkblue {
color: #000053;
background-color: #cccce8;
}
.list-group-item-darkblue.list-group-item-action:hover, .list-group-item-darkblue.list-group-item-action:focus {
color: #000053;
background-color: #b8b8d1;
}
.list-group-item-darkblue.list-group-item-action.active {
color: #fff;
background-color: #000053;
border-color: #000053;
}
.list-group-item-darkcyan {
color: #005353;
background-color: #cce8e8;
}
.list-group-item-darkcyan.list-group-item-action:hover, .list-group-item-darkcyan.list-group-item-action:focus {
color: #005353;
background-color: #b8d1d1;
}
.list-group-item-darkcyan.list-group-item-action.active {
color: #fff;
background-color: #005353;
border-color: #005353;
}
.list-group-item-darkgoldenrod {
color: #6e5007;
background-color: #f1e7ce;
}
.list-group-item-darkgoldenrod.list-group-item-action:hover, .list-group-item-darkgoldenrod.list-group-item-action:focus {
color: #6e5007;
background-color: #d9d0b9;
}
.list-group-item-darkgoldenrod.list-group-item-action.active {
color: #fff;
background-color: #6e5007;
border-color: #6e5007;
}
.list-group-item-darkgray {
color: #656565;
background-color: #eeeeee;
}
.list-group-item-darkgray.list-group-item-action:hover, .list-group-item-darkgray.list-group-item-action:focus {
color: #656565;
background-color: #d6d6d6;
}
.list-group-item-darkgray.list-group-item-action.active {
color: #fff;
background-color: #656565;
border-color: #656565;
}
.list-group-item-darkgreen {
color: #003c00;
background-color: #cce0cc;
}
.list-group-item-darkgreen.list-group-item-action:hover, .list-group-item-darkgreen.list-group-item-action:focus {
color: #003c00;
background-color: #b8cab8;
}
.list-group-item-darkgreen.list-group-item-action.active {
color: #fff;
background-color: #003c00;
border-color: #003c00;
}
.list-group-item-darkgrey {
color: #656565;
background-color: #eeeeee;
}
.list-group-item-darkgrey.list-group-item-action:hover, .list-group-item-darkgrey.list-group-item-action:focus {
color: #656565;
background-color: #d6d6d6;
}
.list-group-item-darkgrey.list-group-item-action.active {
color: #fff;
background-color: #656565;
border-color: #656565;
}
.list-group-item-darkkhaki {
color: #716e40;
background-color: #f2f1e1;
}
.list-group-item-darkkhaki.list-group-item-action:hover, .list-group-item-darkkhaki.list-group-item-action:focus {
color: #716e40;
background-color: #dad9cb;
}
.list-group-item-darkkhaki.list-group-item-action.active {
color: #fff;
background-color: #716e40;
border-color: #716e40;
}
.list-group-item-darkmagenta {
color: #530053;
background-color: #e8cce8;
}
.list-group-item-darkmagenta.list-group-item-action:hover, .list-group-item-darkmagenta.list-group-item-action:focus {
color: #530053;
background-color: #d1b8d1;
}
.list-group-item-darkmagenta.list-group-item-action.active {
color: #fff;
background-color: #530053;
border-color: #530053;
}
.list-group-item-darkolivegreen {
color: #33401c;
background-color: #dde1d5;
}
.list-group-item-darkolivegreen.list-group-item-action:hover, .list-group-item-darkolivegreen.list-group-item-action:focus {
color: #33401c;
background-color: #c7cbc0;
}
.list-group-item-darkolivegreen.list-group-item-action.active {
color: #fff;
background-color: #33401c;
border-color: #33401c;
}
.list-group-item-darkorange {
color: #995400;
background-color: #ffe8cc;
}
.list-group-item-darkorange.list-group-item-action:hover, .list-group-item-darkorange.list-group-item-action:focus {
color: #995400;
background-color: #e6d1b8;
}
.list-group-item-darkorange.list-group-item-action.active {
color: #fff;
background-color: #995400;
border-color: #995400;
}
.list-group-item-darkorchid {
color: #5c1e7a;
background-color: #ebd6f5;
}
.list-group-item-darkorchid.list-group-item-action:hover, .list-group-item-darkorchid.list-group-item-action:focus {
color: #5c1e7a;
background-color: #d4c1dd;
}
.list-group-item-darkorchid.list-group-item-action.active {
color: #fff;
background-color: #5c1e7a;
border-color: #5c1e7a;
}
.list-group-item-darkred {
color: #530000;
background-color: #e8cccc;
}
.list-group-item-darkred.list-group-item-action:hover, .list-group-item-darkred.list-group-item-action:focus {
color: #530000;
background-color: #d1b8b8;
}
.list-group-item-darkred.list-group-item-action.active {
color: #fff;
background-color: #530000;
border-color: #530000;
}
.list-group-item-darksalmon {
color: #8c5a49;
background-color: #fbeae4;
}
.list-group-item-darksalmon.list-group-item-action:hover, .list-group-item-darksalmon.list-group-item-action:focus {
color: #8c5a49;
background-color: #e2d3cd;
}
.list-group-item-darksalmon.list-group-item-action.active {
color: #fff;
background-color: #8c5a49;
border-color: #8c5a49;
}
.list-group-item-darkseagreen {
color: #567156;
background-color: #e9f2e9;
}
.list-group-item-darkseagreen.list-group-item-action:hover, .list-group-item-darkseagreen.list-group-item-action:focus {
color: #567156;
background-color: #d2dad2;
}
.list-group-item-darkseagreen.list-group-item-action.active {
color: #fff;
background-color: #567156;
border-color: #567156;
}
.list-group-item-darkslateblue {
color: #2b2553;
background-color: #dad8e8;
}
.list-group-item-darkslateblue.list-group-item-action:hover, .list-group-item-darkslateblue.list-group-item-action:focus {
color: #2b2553;
background-color: #c4c2d1;
}
.list-group-item-darkslateblue.list-group-item-action.active {
color: #fff;
background-color: #2b2553;
border-color: #2b2553;
}
.list-group-item-darkslategray {
color: #1c2f2f;
background-color: #d5dcdc;
}
.list-group-item-darkslategray.list-group-item-action:hover, .list-group-item-darkslategray.list-group-item-action:focus {
color: #1c2f2f;
background-color: #c0c6c6;
}
.list-group-item-darkslategray.list-group-item-action.active {
color: #fff;
background-color: #1c2f2f;
border-color: #1c2f2f;
}
.list-group-item-darkslategrey {
color: #1c2f2f;
background-color: #d5dcdc;
}
.list-group-item-darkslategrey.list-group-item-action:hover, .list-group-item-darkslategrey.list-group-item-action:focus {
color: #1c2f2f;
background-color: #c0c6c6;
}
.list-group-item-darkslategrey.list-group-item-action.active {
color: #fff;
background-color: #1c2f2f;
border-color: #1c2f2f;
}
.list-group-item-darkturquoise {
color: #005254;
background-color: #ccf5f6;
}
.list-group-item-darkturquoise.list-group-item-action:hover, .list-group-item-darkturquoise.list-group-item-action:focus {
color: #005254;
background-color: #b8dddd;
}
.list-group-item-darkturquoise.list-group-item-action.active {
color: #fff;
background-color: #005254;
border-color: #005254;
}
.list-group-item-darkviolet {
color: #59007f;
background-color: #eaccf6;
}
.list-group-item-darkviolet.list-group-item-action:hover, .list-group-item-darkviolet.list-group-item-action:focus {
color: #59007f;
background-color: #d3b8dd;
}
.list-group-item-darkviolet.list-group-item-action.active {
color: #fff;
background-color: #59007f;
border-color: #59007f;
}
.list-group-item-deeppink {
color: #990c58;
background-color: #ffd0e9;
}
.list-group-item-deeppink.list-group-item-action:hover, .list-group-item-deeppink.list-group-item-action:focus {
color: #990c58;
background-color: #e6bbd2;
}
.list-group-item-deeppink.list-group-item-action.active {
color: #fff;
background-color: #990c58;
border-color: #990c58;
}
.list-group-item-deepskyblue {
color: #007399;
background-color: #ccf2ff;
}
.list-group-item-deepskyblue.list-group-item-action:hover, .list-group-item-deepskyblue.list-group-item-action:focus {
color: #007399;
background-color: #b8dae6;
}
.list-group-item-deepskyblue.list-group-item-action.active {
color: #fff;
background-color: #007399;
border-color: #007399;
}
.list-group-item-dimgray {
color: #3f3f3f;
background-color: #e1e1e1;
}
.list-group-item-dimgray.list-group-item-action:hover, .list-group-item-dimgray.list-group-item-action:focus {
color: #3f3f3f;
background-color: #cbcbcb;
}
.list-group-item-dimgray.list-group-item-action.active {
color: #fff;
background-color: #3f3f3f;
border-color: #3f3f3f;
}
.list-group-item-dimgrey {
color: #3f3f3f;
background-color: #e1e1e1;
}
.list-group-item-dimgrey.list-group-item-action:hover, .list-group-item-dimgrey.list-group-item-action:focus {
color: #3f3f3f;
background-color: #cbcbcb;
}
.list-group-item-dimgrey.list-group-item-action.active {
color: #fff;
background-color: #3f3f3f;
border-color: #3f3f3f;
}
.list-group-item-dodgerblue {
color: #125699;
background-color: #d2e9ff;
}
.list-group-item-dodgerblue.list-group-item-action:hover, .list-group-item-dodgerblue.list-group-item-action:focus {
color: #125699;
background-color: #bdd2e6;
}
.list-group-item-dodgerblue.list-group-item-action.active {
color: #fff;
background-color: #125699;
border-color: #125699;
}
.list-group-item-firebrick {
color: #6b1414;
background-color: #f0d3d3;
}
.list-group-item-firebrick.list-group-item-action:hover, .list-group-item-firebrick.list-group-item-action:focus {
color: #6b1414;
background-color: #d8bebe;
}
.list-group-item-firebrick.list-group-item-action.active {
color: #fff;
background-color: #6b1414;
border-color: #6b1414;
}
.list-group-item-floralwhite {
color: #666460;
background-color: #fffefc;
}
.list-group-item-floralwhite.list-group-item-action:hover, .list-group-item-floralwhite.list-group-item-action:focus {
color: #666460;
background-color: #e6e5e3;
}
.list-group-item-floralwhite.list-group-item-action.active {
color: #fff;
background-color: #666460;
border-color: #666460;
}
.list-group-item-forestgreen {
color: #145314;
background-color: #d3e8d3;
}
.list-group-item-forestgreen.list-group-item-action:hover, .list-group-item-forestgreen.list-group-item-action:focus {
color: #145314;
background-color: #bed1be;
}
.list-group-item-forestgreen.list-group-item-action.active {
color: #fff;
background-color: #145314;
border-color: #145314;
}
.list-group-item-fuchsia {
color: #990099;
background-color: #ffccff;
}
.list-group-item-fuchsia.list-group-item-action:hover, .list-group-item-fuchsia.list-group-item-action:focus {
color: #990099;
background-color: #e6b8e6;
}
.list-group-item-fuchsia.list-group-item-action.active {
color: #fff;
background-color: #990099;
border-color: #990099;
}
.list-group-item-gainsboro {
color: #585858;
background-color: #f8f8f8;
}
.list-group-item-gainsboro.list-group-item-action:hover, .list-group-item-gainsboro.list-group-item-action:focus {
color: #585858;
background-color: #dfdfdf;
}
.list-group-item-gainsboro.list-group-item-action.active {
color: #fff;
background-color: #585858;
border-color: #585858;
}
.list-group-item-ghostwhite {
color: #636366;
background-color: #fefeff;
}
.list-group-item-ghostwhite.list-group-item-action:hover, .list-group-item-ghostwhite.list-group-item-action:focus {
color: #636366;
background-color: #e5e5e6;
}
.list-group-item-ghostwhite.list-group-item-action.active {
color: #fff;
background-color: #636366;
border-color: #636366;
}
.list-group-item-gold {
color: #665600;
background-color: #fff7cc;
}
.list-group-item-gold.list-group-item-action:hover, .list-group-item-gold.list-group-item-action:focus {
color: #665600;
background-color: #e6deb8;
}
.list-group-item-gold.list-group-item-action.active {
color: #fff;
background-color: #665600;
border-color: #665600;
}
.list-group-item-goldenrod {
color: #836313;
background-color: #f8edd2;
}
.list-group-item-goldenrod.list-group-item-action:hover, .list-group-item-goldenrod.list-group-item-action:focus {
color: #836313;
background-color: #dfd5bd;
}
.list-group-item-goldenrod.list-group-item-action.active {
color: #fff;
background-color: #836313;
border-color: #836313;
}
.list-group-item-greenyellow {
color: #456613;
background-color: #efffd5;
}
.list-group-item-greenyellow.list-group-item-action:hover, .list-group-item-greenyellow.list-group-item-action:focus {
color: #456613;
background-color: #d7e6c0;
}
.list-group-item-greenyellow.list-group-item-action.active {
color: #fff;
background-color: #456613;
border-color: #456613;
}
.list-group-item-grey {
color: #4d4d4d;
background-color: #e6e6e6;
}
.list-group-item-grey.list-group-item-action:hover, .list-group-item-grey.list-group-item-action:focus {
color: #4d4d4d;
background-color: #cfcfcf;
}
.list-group-item-grey.list-group-item-action.active {
color: #fff;
background-color: #4d4d4d;
border-color: #4d4d4d;
}
.list-group-item-honeydew {
color: #606660;
background-color: #fcfffc;
}
.list-group-item-honeydew.list-group-item-action:hover, .list-group-item-honeydew.list-group-item-action:focus {
color: #606660;
background-color: #e3e6e3;
}
.list-group-item-honeydew.list-group-item-action.active {
color: #fff;
background-color: #606660;
border-color: #606660;
}
.list-group-item-hotpink {
color: #993f6c;
background-color: #ffe1f0;
}
.list-group-item-hotpink.list-group-item-action:hover, .list-group-item-hotpink.list-group-item-action:focus {
color: #993f6c;
background-color: #e6cbd8;
}
.list-group-item-hotpink.list-group-item-action.active {
color: #fff;
background-color: #993f6c;
border-color: #993f6c;
}
.list-group-item-indianred {
color: #7b3737;
background-color: #f5dede;
}
.list-group-item-indianred.list-group-item-action:hover, .list-group-item-indianred.list-group-item-action:focus {
color: #7b3737;
background-color: #ddc8c8;
}
.list-group-item-indianred.list-group-item-action.active {
color: #fff;
background-color: #7b3737;
border-color: #7b3737;
}
.list-group-item-ivory {
color: #666660;
background-color: #fffffc;
}
.list-group-item-ivory.list-group-item-action:hover, .list-group-item-ivory.list-group-item-action:focus {
color: #666660;
background-color: #e6e6e3;
}
.list-group-item-ivory.list-group-item-action.active {
color: #fff;
background-color: #666660;
border-color: #666660;
}
.list-group-item-khaki {
color: #605c38;
background-color: #fcfae8;
}
.list-group-item-khaki.list-group-item-action:hover, .list-group-item-khaki.list-group-item-action:focus {
color: #605c38;
background-color: #e3e1d1;
}
.list-group-item-khaki.list-group-item-action.active {
color: #fff;
background-color: #605c38;
border-color: #605c38;
}
.list-group-item-lavender {
color: #5c5c64;
background-color: #fafafe;
}
.list-group-item-lavender.list-group-item-action:hover, .list-group-item-lavender.list-group-item-action:focus {
color: #5c5c64;
background-color: #e1e1e5;
}
.list-group-item-lavender.list-group-item-action.active {
color: #fff;
background-color: #5c5c64;
border-color: #5c5c64;
}
.list-group-item-lavenderblush {
color: #666062;
background-color: #fffcfd;
}
.list-group-item-lavenderblush.list-group-item-action:hover, .list-group-item-lavenderblush.list-group-item-action:focus {
color: #666062;
background-color: #e6e3e4;
}
.list-group-item-lavenderblush.list-group-item-action.active {
color: #fff;
background-color: #666062;
border-color: #666062;
}
.list-group-item-lawngreen {
color: #326500;
background-color: #e5fecc;
}
.list-group-item-lawngreen.list-group-item-action:hover, .list-group-item-lawngreen.list-group-item-action:focus {
color: #326500;
background-color: #cee5b8;
}
.list-group-item-lawngreen.list-group-item-action.active {
color: #fff;
background-color: #326500;
border-color: #326500;
}
.list-group-item-lemonchiffon {
color: #666452;
background-color: #fffef5;
}
.list-group-item-lemonchiffon.list-group-item-action:hover, .list-group-item-lemonchiffon.list-group-item-action:focus {
color: #666452;
background-color: #e6e5dd;
}
.list-group-item-lemonchiffon.list-group-item-action.active {
color: #fff;
background-color: #666452;
border-color: #666452;
}
.list-group-item-lightblue {
color: #45565c;
background-color: #eff7fa;
}
.list-group-item-lightblue.list-group-item-action:hover, .list-group-item-lightblue.list-group-item-action:focus {
color: #45565c;
background-color: #d7dee1;
}
.list-group-item-lightblue.list-group-item-action.active {
color: #fff;
background-color: #45565c;
border-color: #45565c;
}
.list-group-item-lightcoral {
color: #904d4d;
background-color: #fce6e6;
}
.list-group-item-lightcoral.list-group-item-action:hover, .list-group-item-lightcoral.list-group-item-action:focus {
color: #904d4d;
background-color: #e3cfcf;
}
.list-group-item-lightcoral.list-group-item-action.active {
color: #fff;
background-color: #904d4d;
border-color: #904d4d;
}
.list-group-item-lightcyan {
color: #5a6666;
background-color: #f9ffff;
}
.list-group-item-lightcyan.list-group-item-action:hover, .list-group-item-lightcyan.list-group-item-action:focus {
color: #5a6666;
background-color: #e0e6e6;
}
.list-group-item-lightcyan.list-group-item-action.active {
color: #fff;
background-color: #5a6666;
border-color: #5a6666;
}
.list-group-item-lightgoldenrodyellow {
color: #646454;
background-color: #fefef6;
}
.list-group-item-lightgoldenrodyellow.list-group-item-action:hover, .list-group-item-lightgoldenrodyellow.list-group-item-action:focus {
color: #646454;
background-color: #e5e5dd;
}
.list-group-item-lightgoldenrodyellow.list-group-item-action.active {
color: #fff;
background-color: #646454;
border-color: #646454;
}
.list-group-item-lightgray {
color: #545454;
background-color: #f6f6f6;
}
.list-group-item-lightgray.list-group-item-action:hover, .list-group-item-lightgray.list-group-item-action:focus {
color: #545454;
background-color: #dddddd;
}
.list-group-item-lightgray.list-group-item-action.active {
color: #fff;
background-color: #545454;
border-color: #545454;
}
.list-group-item-lightgreen {
color: #3a5f3a;
background-color: #e9fce9;
}
.list-group-item-lightgreen.list-group-item-action:hover, .list-group-item-lightgreen.list-group-item-action:focus {
color: #3a5f3a;
background-color: #d2e3d2;
}
.list-group-item-lightgreen.list-group-item-action.active {
color: #fff;
background-color: #3a5f3a;
border-color: #3a5f3a;
}
.list-group-item-lightgrey {
color: #545454;
background-color: #f6f6f6;
}
.list-group-item-lightgrey.list-group-item-action:hover, .list-group-item-lightgrey.list-group-item-action:focus {
color: #545454;
background-color: #dddddd;
}
.list-group-item-lightgrey.list-group-item-action.active {
color: #fff;
background-color: #545454;
border-color: #545454;
}
.list-group-item-lightpink {
color: #66494d;
background-color: #fff0f3;
}
.list-group-item-lightpink.list-group-item-action:hover, .list-group-item-lightpink.list-group-item-action:focus {
color: #66494d;
background-color: #e6d8db;
}
.list-group-item-lightpink.list-group-item-action.active {
color: #fff;
background-color: #66494d;
border-color: #66494d;
}
.list-group-item-lightsalmon {
color: #664031;
background-color: #ffece4;
}
.list-group-item-lightsalmon.list-group-item-action:hover, .list-group-item-lightsalmon.list-group-item-action:focus {
color: #664031;
background-color: #e6d4cd;
}
.list-group-item-lightsalmon.list-group-item-action.active {
color: #fff;
background-color: #664031;
border-color: #664031;
}
.list-group-item-lightseagreen {
color: #136b66;
background-color: #d2f0ee;
}
.list-group-item-lightseagreen.list-group-item-action:hover, .list-group-item-lightseagreen.list-group-item-action:focus {
color: #136b66;
background-color: #bdd8d6;
}
.list-group-item-lightseagreen.list-group-item-action.active {
color: #fff;
background-color: #136b66;
border-color: #136b66;
}
.list-group-item-lightskyblue {
color: #365264;
background-color: #e7f5fe;
}
.list-group-item-lightskyblue.list-group-item-action:hover, .list-group-item-lightskyblue.list-group-item-action:focus {
color: #365264;
background-color: #d0dde5;
}
.list-group-item-lightskyblue.list-group-item-action.active {
color: #fff;
background-color: #365264;
border-color: #365264;
}
.list-group-item-lightslategray {
color: #47525c;
background-color: #e4e7eb;
}
.list-group-item-lightslategray.list-group-item-action:hover, .list-group-item-lightslategray.list-group-item-action:focus {
color: #47525c;
background-color: #cdd0d4;
}
.list-group-item-lightslategray.list-group-item-action.active {
color: #fff;
background-color: #47525c;
border-color: #47525c;
}
.list-group-item-lightslategrey {
color: #47525c;
background-color: #e4e7eb;
}
.list-group-item-lightslategrey.list-group-item-action:hover, .list-group-item-lightslategrey.list-group-item-action:focus {
color: #47525c;
background-color: #cdd0d4;
}
.list-group-item-lightslategrey.list-group-item-action.active {
color: #fff;
background-color: #47525c;
border-color: #47525c;
}
.list-group-item-lightsteelblue {
color: #464e59;
background-color: #eff3f8;
}
.list-group-item-lightsteelblue.list-group-item-action:hover, .list-group-item-lightsteelblue.list-group-item-action:focus {
color: #464e59;
background-color: #d7dbdf;
}
.list-group-item-lightsteelblue.list-group-item-action.active {
color: #fff;
background-color: #464e59;
border-color: #464e59;
}
.list-group-item-lightyellow {
color: #66665a;
background-color: #fffff9;
}
.list-group-item-lightyellow.list-group-item-action:hover, .list-group-item-lightyellow.list-group-item-action:focus {
color: #66665a;
background-color: #e6e6e0;
}
.list-group-item-lightyellow.list-group-item-action.active {
color: #fff;
background-color: #66665a;
border-color: #66665a;
}
.list-group-item-lime {
color: #006600;
background-color: #ccffcc;
}
.list-group-item-lime.list-group-item-action:hover, .list-group-item-lime.list-group-item-action:focus {
color: #006600;
background-color: #b8e6b8;
}
.list-group-item-lime.list-group-item-action.active {
color: #fff;
background-color: #006600;
border-color: #006600;
}
.list-group-item-limegreen {
color: #1e7b1e;
background-color: #d6f5d6;
}
.list-group-item-limegreen.list-group-item-action:hover, .list-group-item-limegreen.list-group-item-action:focus {
color: #1e7b1e;
background-color: #c1ddc1;
}
.list-group-item-limegreen.list-group-item-action.active {
color: #fff;
background-color: #1e7b1e;
border-color: #1e7b1e;
}
.list-group-item-linen {
color: #64605c;
background-color: #fefcfa;
}
.list-group-item-linen.list-group-item-action:hover, .list-group-item-linen.list-group-item-action:focus {
color: #64605c;
background-color: #e5e3e1;
}
.list-group-item-linen.list-group-item-action.active {
color: #fff;
background-color: #64605c;
border-color: #64605c;
}
.list-group-item-magenta {
color: #990099;
background-color: #ffccff;
}
.list-group-item-magenta.list-group-item-action:hover, .list-group-item-magenta.list-group-item-action:focus {
color: #990099;
background-color: #e6b8e6;
}
.list-group-item-magenta.list-group-item-action.active {
color: #fff;
background-color: #990099;
border-color: #990099;
}
.list-group-item-maroon {
color: #4d0000;
background-color: #e6cccc;
}
.list-group-item-maroon.list-group-item-action:hover, .list-group-item-maroon.list-group-item-action:focus {
color: #4d0000;
background-color: #cfb8b8;
}
.list-group-item-maroon.list-group-item-action.active {
color: #fff;
background-color: #4d0000;
border-color: #4d0000;
}
.list-group-item-mediumaquamarine {
color: #295244;
background-color: #e0f5ee;
}
.list-group-item-mediumaquamarine.list-group-item-action:hover, .list-group-item-mediumaquamarine.list-group-item-action:focus {
color: #295244;
background-color: #caddd6;
}
.list-group-item-mediumaquamarine.list-group-item-action.active {
color: #fff;
background-color: #295244;
border-color: #295244;
}
.list-group-item-mediumblue {
color: #00007b;
background-color: #ccccf5;
}
.list-group-item-mediumblue.list-group-item-action:hover, .list-group-item-mediumblue.list-group-item-action:focus {
color: #00007b;
background-color: #b8b8dd;
}
.list-group-item-mediumblue.list-group-item-action.active {
color: #fff;
background-color: #00007b;
border-color: #00007b;
}
.list-group-item-mediumorchid {
color: #70337f;
background-color: #f1ddf6;
}
.list-group-item-mediumorchid.list-group-item-action:hover, .list-group-item-mediumorchid.list-group-item-action:focus {
color: #70337f;
background-color: #d9c7dd;
}
.list-group-item-mediumorchid.list-group-item-action.active {
color: #fff;
background-color: #70337f;
border-color: #70337f;
}
.list-group-item-mediumpurple {
color: #584383;
background-color: #e9e2f8;
}
.list-group-item-mediumpurple.list-group-item-action:hover, .list-group-item-mediumpurple.list-group-item-action:focus {
color: #584383;
background-color: #d2cbdf;
}
.list-group-item-mediumpurple.list-group-item-action.active {
color: #fff;
background-color: #584383;
border-color: #584383;
}
.list-group-item-mediumseagreen {
color: #246b44;
background-color: #d8f0e3;
}
.list-group-item-mediumseagreen.list-group-item-action:hover, .list-group-item-mediumseagreen.list-group-item-action:focus {
color: #246b44;
background-color: #c2d8cc;
}
.list-group-item-mediumseagreen.list-group-item-action.active {
color: #fff;
background-color: #246b44;
border-color: #246b44;
}
.list-group-item-mediumslateblue {
color: #4a3e8f;
background-color: #e5e1fc;
}
.list-group-item-mediumslateblue.list-group-item-action:hover, .list-group-item-mediumslateblue.list-group-item-action:focus {
color: #4a3e8f;
background-color: #cecbe3;
}
.list-group-item-mediumslateblue.list-group-item-action.active {
color: #fff;
background-color: #4a3e8f;
border-color: #4a3e8f;
}
.list-group-item-mediumspringgreen {
color: #00643e;
background-color: #ccfeeb;
}
.list-group-item-mediumspringgreen.list-group-item-action:hover, .list-group-item-mediumspringgreen.list-group-item-action:focus {
color: #00643e;
background-color: #b8e5d4;
}
.list-group-item-mediumspringgreen.list-group-item-action.active {
color: #fff;
background-color: #00643e;
border-color: #00643e;
}
.list-group-item-mediumturquoise {
color: #1d5452;
background-color: #daf6f5;
}
.list-group-item-mediumturquoise.list-group-item-action:hover, .list-group-item-mediumturquoise.list-group-item-action:focus {
color: #1d5452;
background-color: #c4dddd;
}
.list-group-item-mediumturquoise.list-group-item-action.active {
color: #fff;
background-color: #1d5452;
border-color: #1d5452;
}
.list-group-item-mediumvioletred {
color: #770d50;
background-color: #f4d0e7;
}
.list-group-item-mediumvioletred.list-group-item-action:hover, .list-group-item-mediumvioletred.list-group-item-action:focus {
color: #770d50;
background-color: #dcbbd0;
}
.list-group-item-mediumvioletred.list-group-item-action.active {
color: #fff;
background-color: #770d50;
border-color: #770d50;
}
.list-group-item-midnightblue {
color: #0f0f43;
background-color: #d1d1e2;
}
.list-group-item-midnightblue.list-group-item-action:hover, .list-group-item-midnightblue.list-group-item-action:focus {
color: #0f0f43;
background-color: #bcbccb;
}
.list-group-item-midnightblue.list-group-item-action.active {
color: #fff;
background-color: #0f0f43;
border-color: #0f0f43;
}
.list-group-item-mintcream {
color: #626664;
background-color: #fdfffe;
}
.list-group-item-mintcream.list-group-item-action:hover, .list-group-item-mintcream.list-group-item-action:focus {
color: #626664;
background-color: #e4e6e5;
}
.list-group-item-mintcream.list-group-item-action.active {
color: #fff;
background-color: #626664;
border-color: #626664;
}
.list-group-item-mistyrose {
color: #665b5a;
background-color: #fffaf9;
}
.list-group-item-mistyrose.list-group-item-action:hover, .list-group-item-mistyrose.list-group-item-action:focus {
color: #665b5a;
background-color: #e6e1e0;
}
.list-group-item-mistyrose.list-group-item-action.active {
color: #fff;
background-color: #665b5a;
border-color: #665b5a;
}
.list-group-item-moccasin {
color: #665b48;
background-color: floralwhite;
}
.list-group-item-moccasin.list-group-item-action:hover, .list-group-item-moccasin.list-group-item-action:focus {
color: #665b48;
background-color: #e6e1d8;
}
.list-group-item-moccasin.list-group-item-action.active {
color: #fff;
background-color: #665b48;
border-color: #665b48;
}
.list-group-item-navajowhite {
color: #665945;
background-color: #fff8ef;
}
.list-group-item-navajowhite.list-group-item-action:hover, .list-group-item-navajowhite.list-group-item-action:focus {
color: #665945;
background-color: #e6dfd7;
}
.list-group-item-navajowhite.list-group-item-action.active {
color: #fff;
background-color: #665945;
border-color: #665945;
}
.list-group-item-navy {
color: #00004d;
background-color: #cccce6;
}
.list-group-item-navy.list-group-item-action:hover, .list-group-item-navy.list-group-item-action:focus {
color: #00004d;
background-color: #b8b8cf;
}
.list-group-item-navy.list-group-item-action.active {
color: #fff;
background-color: #00004d;
border-color: #00004d;
}
.list-group-item-oldlace {
color: #65625c;
background-color: #fffdfa;
}
.list-group-item-oldlace.list-group-item-action:hover, .list-group-item-oldlace.list-group-item-action:focus {
color: #65625c;
background-color: #e6e4e1;
}
.list-group-item-oldlace.list-group-item-action.active {
color: #fff;
background-color: #65625c;
border-color: #65625c;
}
.list-group-item-olive {
color: #4d4d00;
background-color: #e6e6cc;
}
.list-group-item-olive.list-group-item-action:hover, .list-group-item-olive.list-group-item-action:focus {
color: #4d4d00;
background-color: #cfcfb8;
}
.list-group-item-olive.list-group-item-action.active {
color: #fff;
background-color: #4d4d00;
border-color: #4d4d00;
}
.list-group-item-olivedrab {
color: #405515;
background-color: #e1e8d3;
}
.list-group-item-olivedrab.list-group-item-action:hover, .list-group-item-olivedrab.list-group-item-action:focus {
color: #405515;
background-color: #cbd1be;
}
.list-group-item-olivedrab.list-group-item-action.active {
color: #fff;
background-color: #405515;
border-color: #405515;
}
.list-group-item-orangered {
color: #992900;
background-color: #ffdacc;
}
.list-group-item-orangered.list-group-item-action:hover, .list-group-item-orangered.list-group-item-action:focus {
color: #992900;
background-color: #e6c4b8;
}
.list-group-item-orangered.list-group-item-action.active {
color: #fff;
background-color: #992900;
border-color: #992900;
}
.list-group-item-orchid {
color: #834380;
background-color: #f8e2f7;
}
.list-group-item-orchid.list-group-item-action:hover, .list-group-item-orchid.list-group-item-action:focus {
color: #834380;
background-color: #dfcbde;
}
.list-group-item-orchid.list-group-item-action.active {
color: #fff;
background-color: #834380;
border-color: #834380;
}
.list-group-item-palegoldenrod {
color: #5f5d44;
background-color: #fcfaee;
}
.list-group-item-palegoldenrod.list-group-item-action:hover, .list-group-item-palegoldenrod.list-group-item-action:focus {
color: #5f5d44;
background-color: #e3e1d6;
}
.list-group-item-palegoldenrod.list-group-item-action.active {
color: #fff;
background-color: #5f5d44;
border-color: #5f5d44;
}
.list-group-item-palegreen {
color: #3d643d;
background-color: #eafeea;
}
.list-group-item-palegreen.list-group-item-action:hover, .list-group-item-palegreen.list-group-item-action:focus {
color: #3d643d;
background-color: #d3e5d3;
}
.list-group-item-palegreen.list-group-item-action.active {
color: #fff;
background-color: #3d643d;
border-color: #3d643d;
}
.list-group-item-paleturquoise {
color: #465f5f;
background-color: #effcfc;
}
.list-group-item-paleturquoise.list-group-item-action:hover, .list-group-item-paleturquoise.list-group-item-action:focus {
color: #465f5f;
background-color: #d7e3e3;
}
.list-group-item-paleturquoise.list-group-item-action.active {
color: #fff;
background-color: #465f5f;
border-color: #465f5f;
}
.list-group-item-palevioletred {
color: #834358;
background-color: #f8e2e9;
}
.list-group-item-palevioletred.list-group-item-action:hover, .list-group-item-palevioletred.list-group-item-action:focus {
color: #834358;
background-color: #dfcbd2;
}
.list-group-item-palevioletred.list-group-item-action.active {
color: #fff;
background-color: #834358;
border-color: #834358;
}
.list-group-item-papayawhip {
color: #666055;
background-color: #fffcf7;
}
.list-group-item-papayawhip.list-group-item-action:hover, .list-group-item-papayawhip.list-group-item-action:focus {
color: #666055;
background-color: #e6e3de;
}
.list-group-item-papayawhip.list-group-item-action.active {
color: #fff;
background-color: #666055;
border-color: #666055;
}
.list-group-item-peachpuff {
color: #66574a;
background-color: #fff8f1;
}
.list-group-item-peachpuff.list-group-item-action:hover, .list-group-item-peachpuff.list-group-item-action:focus {
color: #66574a;
background-color: #e6dfd9;
}
.list-group-item-peachpuff.list-group-item-action.active {
color: #fff;
background-color: #66574a;
border-color: #66574a;
}
.list-group-item-peru {
color: #7b5026;
background-color: #f5e7d9;
}
.list-group-item-peru.list-group-item-action:hover, .list-group-item-peru.list-group-item-action:focus {
color: #7b5026;
background-color: #ddd0c3;
}
.list-group-item-peru.list-group-item-action.active {
color: #fff;
background-color: #7b5026;
border-color: #7b5026;
}
.list-group-item-plum {
color: #856085;
background-color: #f8ecf8;
}
.list-group-item-plum.list-group-item-action:hover, .list-group-item-plum.list-group-item-action:focus {
color: #856085;
background-color: #dfd4df;
}
.list-group-item-plum.list-group-item-action.active {
color: #fff;
background-color: #856085;
border-color: #856085;
}
.list-group-item-powderblue {
color: #465a5c;
background-color: #eff9fa;
}
.list-group-item-powderblue.list-group-item-action:hover, .list-group-item-powderblue.list-group-item-action:focus {
color: #465a5c;
background-color: #d7e0e1;
}
.list-group-item-powderblue.list-group-item-action.active {
color: #fff;
background-color: #465a5c;
border-color: #465a5c;
}
.list-group-item-rebeccapurple {
color: #3d1f5c;
background-color: #e0d6eb;
}
.list-group-item-rebeccapurple.list-group-item-action:hover, .list-group-item-rebeccapurple.list-group-item-action:focus {
color: #3d1f5c;
background-color: #cac1d4;
}
.list-group-item-rebeccapurple.list-group-item-action.active {
color: #fff;
background-color: #3d1f5c;
border-color: #3d1f5c;
}
.list-group-item-rosybrown {
color: #715656;
background-color: #f2e9e9;
}
.list-group-item-rosybrown.list-group-item-action:hover, .list-group-item-rosybrown.list-group-item-action:focus {
color: #715656;
background-color: #dad2d2;
}
.list-group-item-rosybrown.list-group-item-action.active {
color: #fff;
background-color: #715656;
border-color: #715656;
}
.list-group-item-royalblue {
color: #273f87;
background-color: #d9e1f9;
}
.list-group-item-royalblue.list-group-item-action:hover, .list-group-item-royalblue.list-group-item-action:focus {
color: #273f87;
background-color: #c3cbe0;
}
.list-group-item-royalblue.list-group-item-action.active {
color: #fff;
background-color: #273f87;
border-color: #273f87;
}
.list-group-item-saddlebrown {
color: #53290b;
background-color: #e8dad0;
}
.list-group-item-saddlebrown.list-group-item-action:hover, .list-group-item-saddlebrown.list-group-item-action:focus {
color: #53290b;
background-color: #d1c4bb;
}
.list-group-item-saddlebrown.list-group-item-action.active {
color: #fff;
background-color: #53290b;
border-color: #53290b;
}
.list-group-item-salmon {
color: #964d44;
background-color: #fee6e3;
}
.list-group-item-salmon.list-group-item-action:hover, .list-group-item-salmon.list-group-item-action:focus {
color: #964d44;
background-color: #e5cfcc;
}
.list-group-item-salmon.list-group-item-action.active {
color: #fff;
background-color: #964d44;
border-color: #964d44;
}
.list-group-item-sandybrown {
color: #92623a;
background-color: #fdeddf;
}
.list-group-item-sandybrown.list-group-item-action:hover, .list-group-item-sandybrown.list-group-item-action:focus {
color: #92623a;
background-color: #e4d5c9;
}
.list-group-item-sandybrown.list-group-item-action.active {
color: #fff;
background-color: #92623a;
border-color: #92623a;
}
.list-group-item-seagreen {
color: #1c5334;
background-color: #d5e8dd;
}
.list-group-item-seagreen.list-group-item-action:hover, .list-group-item-seagreen.list-group-item-action:focus {
color: #1c5334;
background-color: #c0d1c7;
}
.list-group-item-seagreen.list-group-item-action.active {
color: #fff;
background-color: #1c5334;
border-color: #1c5334;
}
.list-group-item-seashell {
color: #66625f;
background-color: #fffdfc;
}
.list-group-item-seashell.list-group-item-action:hover, .list-group-item-seashell.list-group-item-action:focus {
color: #66625f;
background-color: #e6e4e3;
}
.list-group-item-seashell.list-group-item-action.active {
color: #fff;
background-color: #66625f;
border-color: #66625f;
}
.list-group-item-sienna {
color: #60311b;
background-color: #ecdcd5;
}
.list-group-item-sienna.list-group-item-action:hover, .list-group-item-sienna.list-group-item-action:focus {
color: #60311b;
background-color: #d4c6c0;
}
.list-group-item-sienna.list-group-item-action.active {
color: #fff;
background-color: #60311b;
border-color: #60311b;
}
.list-group-item-silver {
color: #4d4d4d;
background-color: #f2f2f2;
}
.list-group-item-silver.list-group-item-action:hover, .list-group-item-silver.list-group-item-action:focus {
color: #4d4d4d;
background-color: #dadada;
}
.list-group-item-silver.list-group-item-action.active {
color: #fff;
background-color: #4d4d4d;
border-color: #4d4d4d;
}
.list-group-item-skyblue {
color: #36525e;
background-color: #e7f5fb;
}
.list-group-item-skyblue.list-group-item-action:hover, .list-group-item-skyblue.list-group-item-action:focus {
color: #36525e;
background-color: #d0dde2;
}
.list-group-item-skyblue.list-group-item-action.active {
color: #fff;
background-color: #36525e;
border-color: #36525e;
}
.list-group-item-slateblue {
color: #40367b;
background-color: #e1def5;
}
.list-group-item-slateblue.list-group-item-action:hover, .list-group-item-slateblue.list-group-item-action:focus {
color: #40367b;
background-color: #cbc8dd;
}
.list-group-item-slateblue.list-group-item-action.active {
color: #fff;
background-color: #40367b;
border-color: #40367b;
}
.list-group-item-slategray {
color: #434d56;
background-color: #e2e6e9;
}
.list-group-item-slategray.list-group-item-action:hover, .list-group-item-slategray.list-group-item-action:focus {
color: #434d56;
background-color: #cbcfd2;
}
.list-group-item-slategray.list-group-item-action.active {
color: #fff;
background-color: #434d56;
border-color: #434d56;
}
.list-group-item-slategrey {
color: #434d56;
background-color: #e2e6e9;
}
.list-group-item-slategrey.list-group-item-action:hover, .list-group-item-slategrey.list-group-item-action:focus {
color: #434d56;
background-color: #cbcfd2;
}
.list-group-item-slategrey.list-group-item-action.active {
color: #fff;
background-color: #434d56;
border-color: #434d56;
}
.list-group-item-snow {
color: #666464;
background-color: #fffefe;
}
.list-group-item-snow.list-group-item-action:hover, .list-group-item-snow.list-group-item-action:focus {
color: #666464;
background-color: #e6e5e5;
}
.list-group-item-snow.list-group-item-action.active {
color: #fff;
background-color: #666464;
border-color: #666464;
}
.list-group-item-springgreen {
color: #006633;
background-color: #ccffe5;
}
.list-group-item-springgreen.list-group-item-action:hover, .list-group-item-springgreen.list-group-item-action:focus {
color: #006633;
background-color: #b8e6ce;
}
.list-group-item-springgreen.list-group-item-action.active {
color: #fff;
background-color: #006633;
border-color: #006633;
}
.list-group-item-steelblue {
color: #2a4e6c;
background-color: #dae6f0;
}
.list-group-item-steelblue.list-group-item-action:hover, .list-group-item-steelblue.list-group-item-action:focus {
color: #2a4e6c;
background-color: #c4cfd8;
}
.list-group-item-steelblue.list-group-item-action.active {
color: #fff;
background-color: #2a4e6c;
border-color: #2a4e6c;
}
.list-group-item-tan {
color: #544838;
background-color: #f6f0e8;
}
.list-group-item-tan.list-group-item-action:hover, .list-group-item-tan.list-group-item-action:focus {
color: #544838;
background-color: #ddd8d1;
}
.list-group-item-tan.list-group-item-action.active {
color: #fff;
background-color: #544838;
border-color: #544838;
}
.list-group-item-thistle {
color: #564c56;
background-color: #f7f2f7;
}
.list-group-item-thistle.list-group-item-action:hover, .list-group-item-thistle.list-group-item-action:focus {
color: #564c56;
background-color: #dedade;
}
.list-group-item-thistle.list-group-item-action.active {
color: #fff;
background-color: #564c56;
border-color: #564c56;
}
.list-group-item-tomato {
color: #993b2b;
background-color: #ffe0da;
}
.list-group-item-tomato.list-group-item-action:hover, .list-group-item-tomato.list-group-item-action:focus {
color: #993b2b;
background-color: #e6cac4;
}
.list-group-item-tomato.list-group-item-action.active {
color: #fff;
background-color: #993b2b;
border-color: #993b2b;
}
.list-group-item-turquoise {
color: #1a5a53;
background-color: #d9f9f6;
}
.list-group-item-turquoise.list-group-item-action:hover, .list-group-item-turquoise.list-group-item-action:focus {
color: #1a5a53;
background-color: #c3e0dd;
}
.list-group-item-turquoise.list-group-item-action.active {
color: #fff;
background-color: #1a5a53;
border-color: #1a5a53;
}
.list-group-item-violet {
color: #8f4e8f;
background-color: #fce6fc;
}
.list-group-item-violet.list-group-item-action:hover, .list-group-item-violet.list-group-item-action:focus {
color: #8f4e8f;
background-color: #e3cfe3;
}
.list-group-item-violet.list-group-item-action.active {
color: #fff;
background-color: #8f4e8f;
border-color: #8f4e8f;
}
.list-group-item-wheat {
color: #625948;
background-color: #fdf8f0;
}
.list-group-item-wheat.list-group-item-action:hover, .list-group-item-wheat.list-group-item-action:focus {
color: #625948;
background-color: #e4dfd8;
}
.list-group-item-wheat.list-group-item-action.active {
color: #fff;
background-color: #625948;
border-color: #625948;
}
.list-group-item-whitesmoke {
color: #626262;
background-color: #fdfdfd;
}
.list-group-item-whitesmoke.list-group-item-action:hover, .list-group-item-whitesmoke.list-group-item-action:focus {
color: #626262;
background-color: #e4e4e4;
}
.list-group-item-whitesmoke.list-group-item-action.active {
color: #fff;
background-color: #626262;
border-color: #626262;
}
.list-group-item-yellowgreen {
color: #3e5214;
background-color: #ebf5d6;
}
.list-group-item-yellowgreen.list-group-item-action:hover, .list-group-item-yellowgreen.list-group-item-action:focus {
color: #3e5214;
background-color: #d4ddc1;
}
.list-group-item-yellowgreen.list-group-item-action.active {
color: #fff;
background-color: #3e5214;
border-color: #3e5214;
}
.btn-close {
-webkit-box-sizing: content-box;
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: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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 {
-webkit-filter: invert(1) grayscale(100%) brightness(200%);
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);
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
}
.toast.showing {
opacity: 0;
}
.toast:not(.show) {
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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;
word-wrap: break-word;
}
.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1055;
display: none;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
-webkit-transition: -webkit-transform 0.3s ease-out;
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
-webkit-transform: translate(0, -50px);
transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
-webkit-transition: none;
transition: none;
}
}
.modal.show .modal-dialog {
-webkit-transform: none;
transform: none;
}
.modal.modal-static .modal-dialog {
-webkit-transform: scale(1.02);
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - 1rem);
}
.modal-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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: 1050;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.5;
}
.modal-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-negative: 0;
flex-shrink: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1rem;
}
.modal-footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-negative: 0;
flex-shrink: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
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;
}
@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: 1080;
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 /* rtl:ignore */;
z-index: 1070;
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;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
position: absolute;
display: block;
content: "";
border-color: transparent;
border-style: solid;
}
.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 > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
left: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
}
.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 > .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 > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
right: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
}
.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 rgba(0, 0, 0, 0.2);
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 {
-ms-touch-action: pan-y;
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;
-webkit-transition: -webkit-transform 0.6s ease-in-out;
transition: -webkit-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.carousel-item {
-webkit-transition: none;
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 {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
/* rtl:end:ignore */
.carousel-fade .carousel-item {
opacity: 0;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transform: none;
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;
-webkit-transition: opacity 0s 0.6s;
transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
-webkit-transition: none;
transition: none;
}
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 15%;
padding: 0;
color: #fff;
text-align: center;
background: none;
border: 0;
opacity: 0.5;
-webkit-transition: opacity 0.15s ease;
transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
-webkit-transition: none;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0;
margin-right: 15%;
margin-bottom: 1rem;
margin-left: 15%;
list-style: none;
}
.carousel-indicators [data-bs-target] {
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
width: 30px;
height: 3px;
padding: 0;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #fff;
background-clip: padding-box;
border: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: 0.5;
-webkit-transition: opacity 0.6s ease;
transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-indicators [data-bs-target] {
-webkit-transition: none;
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 {
-webkit-filter: invert(1) grayscale(100);
filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
background-color: #000;
}
.carousel-dark .carousel-caption {
color: #000;
}
@keyframes spinner-border {
to {
-webkit-transform: rotate(360deg) /* rtl:ignore */;
transform: rotate(360deg) /* rtl:ignore */;
}
}
.spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: -0.125em;
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;
}
@keyframes spinner-grow {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: -0.125em;
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;
}
}
.offcanvas {
position: fixed;
bottom: 0;
z-index: 1045;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
max-width: 100%;
visibility: hidden;
background-color: #fff;
background-clip: padding-box;
outline: 0;
-webkit-transition: -webkit-transform 0.3s ease-in-out;
transition: -webkit-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.offcanvas {
-webkit-transition: none;
transition: none;
}
}
.offcanvas-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.offcanvas-backdrop.fade {
opacity: 0;
}
.offcanvas-backdrop.show {
opacity: 0.5;
}
.offcanvas-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
padding: 0.5rem 0.5rem;
margin-top: -0.5rem;
margin-right: -0.5rem;
margin-bottom: -0.5rem;
}
.offcanvas-title {
margin-bottom: 0;
line-height: 1.5;
}
.offcanvas-body {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 1rem 1rem;
overflow-y: auto;
}
.offcanvas-start {
top: 0;
left: 0;
width: 400px;
border-right: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
.offcanvas-end {
top: 0;
right: 0;
width: 400px;
border-left: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.offcanvas-top {
top: 0;
right: 0;
left: 0;
height: 30vh;
max-height: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.offcanvas-bottom {
right: 0;
left: 0;
height: 30vh;
max-height: 100%;
border-top: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
.offcanvas.show {
-webkit-transform: none;
transform: none;
}
.placeholder {
display: inline-block;
min-height: 1em;
vertical-align: middle;
cursor: wait;
background-color: currentColor;
opacity: 0.5;
}
.placeholder.btn::before {
display: inline-block;
content: "";
}
.placeholder-xs {
min-height: .6em;
}
.placeholder-sm {
min-height: .8em;
}
.placeholder-lg {
min-height: 1.2em;
}
.placeholder-glow .placeholder {
-webkit-animation: placeholder-glow 2s ease-in-out infinite;
animation: placeholder-glow 2s ease-in-out infinite;
}
@keyframes placeholder-glow {
50% {
opacity: 0.2;
}
}
.placeholder-wave {
-webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
-webkit-mask-size: 200% 100%;
mask-size: 200% 100%;
-webkit-animation: placeholder-wave 2s linear infinite;
animation: placeholder-wave 2s linear infinite;
}
@keyframes placeholder-wave {
100% {
-webkit-mask-position: -200% 0%;
mask-position: -200% 0%;
}
}
.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-rc-red {
color: #DA291C;
}
.link-rc-red:hover, .link-rc-red:focus {
color: #ae2116;
}
.link-rc-wine {
color: #A50034;
}
.link-rc-wine:hover, .link-rc-wine:focus {
color: #84002a;
}
.link-rc-blue {
color: #002554;
}
.link-rc-blue:hover, .link-rc-blue:focus {
color: #001e43;
}
.link-rc-gold {
color: #FFB200;
}
.link-rc-gold:hover, .link-rc-gold:focus {
color: #ffc133;
}
.link-rc-silver {
color: #808080;
}
.link-rc-silver:hover, .link-rc-silver:focus {
color: #999999;
}
.link-rc-skyblue {
color: #00B0F0;
}
.link-rc-skyblue:hover, .link-rc-skyblue:focus {
color: #33c0f3;
}
.link-aliceblue {
color: #F0F8FF;
}
.link-aliceblue:hover, .link-aliceblue:focus {
color: #f3f9ff;
}
.link-antiquewhite {
color: #FAEBD7;
}
.link-antiquewhite:hover, .link-antiquewhite:focus {
color: #fbefdf;
}
.link-aqua {
color: #00FFFF;
}
.link-aqua:hover, .link-aqua:focus {
color: #33ffff;
}
.link-aquamarine {
color: #7FFFD4;
}
.link-aquamarine:hover, .link-aquamarine:focus {
color: #99ffdd;
}
.link-azure {
color: #F0FFFF;
}
.link-azure:hover, .link-azure:focus {
color: #f3ffff;
}
.link-beige {
color: #F5F5DC;
}
.link-beige:hover, .link-beige:focus {
color: #f7f7e3;
}
.link-bisque {
color: #FFE4C4;
}
.link-bisque:hover, .link-bisque:focus {
color: #ffe9d0;
}
.link-blanchedalmond {
color: #FFEBCD;
}
.link-blanchedalmond:hover, .link-blanchedalmond:focus {
color: #ffefd7;
}
.link-blueviolet {
color: #8A2BE2;
}
.link-blueviolet:hover, .link-blueviolet:focus {
color: #6e22b5;
}
.link-brown {
color: #A52A2A;
}
.link-brown:hover, .link-brown:focus {
color: #842222;
}
.link-burlywood {
color: #DEB887;
}
.link-burlywood:hover, .link-burlywood:focus {
color: #e5c69f;
}
.link-cadetblue {
color: #5F9EA0;
}
.link-cadetblue:hover, .link-cadetblue:focus {
color: #7fb1b3;
}
.link-chartreuse {
color: #7FFF00;
}
.link-chartreuse:hover, .link-chartreuse:focus {
color: #99ff33;
}
.link-chocolate {
color: #D2691E;
}
.link-chocolate:hover, .link-chocolate:focus {
color: #db874b;
}
.link-coral {
color: #FF7F50;
}
.link-coral:hover, .link-coral:focus {
color: #ff9973;
}
.link-cornflowerblue {
color: #6495ED;
}
.link-cornflowerblue:hover, .link-cornflowerblue:focus {
color: #83aaf1;
}
.link-cornsilk {
color: #FFF8DC;
}
.link-cornsilk:hover, .link-cornsilk:focus {
color: #fff9e3;
}
.link-crimson {
color: #DC143C;
}
.link-crimson:hover, .link-crimson:focus {
color: #b01030;
}
.link-darkblue {
color: #00008B;
}
.link-darkblue:hover, .link-darkblue:focus {
color: #00006f;
}
.link-darkcyan {
color: #008B8B;
}
.link-darkcyan:hover, .link-darkcyan:focus {
color: #33a2a2;
}
.link-darkgoldenrod {
color: #B8860B;
}
.link-darkgoldenrod:hover, .link-darkgoldenrod:focus {
color: #c69e3c;
}
.link-darkgray {
color: #A9A9A9;
}
.link-darkgray:hover, .link-darkgray:focus {
color: #bababa;
}
.link-darkgreen {
color: #006400;
}
.link-darkgreen:hover, .link-darkgreen:focus {
color: #005000;
}
.link-darkgrey {
color: #A9A9A9;
}
.link-darkgrey:hover, .link-darkgrey:focus {
color: #bababa;
}
.link-darkkhaki {
color: #BDB76B;
}
.link-darkkhaki:hover, .link-darkkhaki:focus {
color: #cac589;
}
.link-darkmagenta {
color: #8B008B;
}
.link-darkmagenta:hover, .link-darkmagenta:focus {
color: #6f006f;
}
.link-darkolivegreen {
color: #556B2F;
}
.link-darkolivegreen:hover, .link-darkolivegreen:focus {
color: #445626;
}
.link-darkorange {
color: #FF8C00;
}
.link-darkorange:hover, .link-darkorange:focus {
color: #ffa333;
}
.link-darkorchid {
color: #9932CC;
}
.link-darkorchid:hover, .link-darkorchid:focus {
color: #7a28a3;
}
.link-darkred {
color: #8B0000;
}
.link-darkred:hover, .link-darkred:focus {
color: #6f0000;
}
.link-darksalmon {
color: #E9967A;
}
.link-darksalmon:hover, .link-darksalmon:focus {
color: #edab95;
}
.link-darkseagreen {
color: #8FBC8F;
}
.link-darkseagreen:hover, .link-darkseagreen:focus {
color: #a5c9a5;
}
.link-darkslateblue {
color: #483D8B;
}
.link-darkslateblue:hover, .link-darkslateblue:focus {
color: #3a316f;
}
.link-darkslategray {
color: #2F4F4F;
}
.link-darkslategray:hover, .link-darkslategray:focus {
color: #263f3f;
}
.link-darkslategrey {
color: #2F4F4F;
}
.link-darkslategrey:hover, .link-darkslategrey:focus {
color: #263f3f;
}
.link-darkturquoise {
color: #00CED1;
}
.link-darkturquoise:hover, .link-darkturquoise:focus {
color: #33d8da;
}
.link-darkviolet {
color: #9400D3;
}
.link-darkviolet:hover, .link-darkviolet:focus {
color: #7600a9;
}
.link-deeppink {
color: #FF1493;
}
.link-deeppink:hover, .link-deeppink:focus {
color: #ff43a9;
}
.link-deepskyblue {
color: #00BFFF;
}
.link-deepskyblue:hover, .link-deepskyblue:focus {
color: #33ccff;
}
.link-dimgray {
color: #696969;
}
.link-dimgray:hover, .link-dimgray:focus {
color: #545454;
}
.link-dimgrey {
color: #696969;
}
.link-dimgrey:hover, .link-dimgrey:focus {
color: #545454;
}
.link-dodgerblue {
color: #1E90FF;
}
.link-dodgerblue:hover, .link-dodgerblue:focus {
color: #4ba6ff;
}
.link-firebrick {
color: #B22222;
}
.link-firebrick:hover, .link-firebrick:focus {
color: #8e1b1b;
}
.link-floralwhite {
color: #FFFAF0;
}
.link-floralwhite:hover, .link-floralwhite:focus {
color: #fffbf3;
}
.link-forestgreen {
color: #228B22;
}
.link-forestgreen:hover, .link-forestgreen:focus {
color: #4ea24e;
}
.link-fuchsia {
color: #FF00FF;
}
.link-fuchsia:hover, .link-fuchsia:focus {
color: #ff33ff;
}
.link-gainsboro {
color: #DCDCDC;
}
.link-gainsboro:hover, .link-gainsboro:focus {
color: #e3e3e3;
}
.link-ghostwhite {
color: #F8F8FF;
}
.link-ghostwhite:hover, .link-ghostwhite:focus {
color: #f9f9ff;
}
.link-gold {
color: #FFD700;
}
.link-gold:hover, .link-gold:focus {
color: #ffdf33;
}
.link-goldenrod {
color: #DAA520;
}
.link-goldenrod:hover, .link-goldenrod:focus {
color: #e1b74d;
}
.link-greenyellow {
color: #ADFF2F;
}
.link-greenyellow:hover, .link-greenyellow:focus {
color: #bdff59;
}
.link-grey {
color: #808080;
}
.link-grey:hover, .link-grey:focus {
color: #999999;
}
.link-honeydew {
color: #F0FFF0;
}
.link-honeydew:hover, .link-honeydew:focus {
color: #f3fff3;
}
.link-hotpink {
color: #FF69B4;
}
.link-hotpink:hover, .link-hotpink:focus {
color: #ff87c3;
}
.link-indianred {
color: #CD5C5C;
}
.link-indianred:hover, .link-indianred:focus {
color: #d77d7d;
}
.link-ivory {
color: #FFFFF0;
}
.link-ivory:hover, .link-ivory:focus {
color: #fffff3;
}
.link-khaki {
color: #F0E68C;
}
.link-khaki:hover, .link-khaki:focus {
color: #f3eba3;
}
.link-lavender {
color: #E6E6FA;
}
.link-lavender:hover, .link-lavender:focus {
color: #ebebfb;
}
.link-lavenderblush {
color: #FFF0F5;
}
.link-lavenderblush:hover, .link-lavenderblush:focus {
color: #fff3f7;
}
.link-lawngreen {
color: #7CFC00;
}
.link-lawngreen:hover, .link-lawngreen:focus {
color: #96fd33;
}
.link-lemonchiffon {
color: #FFFACD;
}
.link-lemonchiffon:hover, .link-lemonchiffon:focus {
color: #fffbd7;
}
.link-lightblue {
color: #ADD8E6;
}
.link-lightblue:hover, .link-lightblue:focus {
color: #bde0eb;
}
.link-lightcoral {
color: #F08080;
}
.link-lightcoral:hover, .link-lightcoral:focus {
color: #f39999;
}
.link-lightcyan {
color: #E0FFFF;
}
.link-lightcyan:hover, .link-lightcyan:focus {
color: #e6ffff;
}
.link-lightgoldenrodyellow {
color: #FAFAD2;
}
.link-lightgoldenrodyellow:hover, .link-lightgoldenrodyellow:focus {
color: #fbfbdb;
}
.link-lightgray {
color: #D3D3D3;
}
.link-lightgray:hover, .link-lightgray:focus {
color: gainsboro;
}
.link-lightgreen {
color: #90EE90;
}
.link-lightgreen:hover, .link-lightgreen:focus {
color: #a6f1a6;
}
.link-lightgrey {
color: #D3D3D3;
}
.link-lightgrey:hover, .link-lightgrey:focus {
color: gainsboro;
}
.link-lightpink {
color: #FFB6C1;
}
.link-lightpink:hover, .link-lightpink:focus {
color: #ffc5cd;
}
.link-lightsalmon {
color: #FFA07A;
}
.link-lightsalmon:hover, .link-lightsalmon:focus {
color: #ffb395;
}
.link-lightseagreen {
color: #20B2AA;
}
.link-lightseagreen:hover, .link-lightseagreen:focus {
color: #4dc1bb;
}
.link-lightskyblue {
color: #87CEFA;
}
.link-lightskyblue:hover, .link-lightskyblue:focus {
color: #9fd8fb;
}
.link-lightslategray {
color: #778899;
}
.link-lightslategray:hover, .link-lightslategray:focus {
color: #92a0ad;
}
.link-lightslategrey {
color: #778899;
}
.link-lightslategrey:hover, .link-lightslategrey:focus {
color: #92a0ad;
}
.link-lightsteelblue {
color: #B0C4DE;
}
.link-lightsteelblue:hover, .link-lightsteelblue:focus {
color: #c0d0e5;
}
.link-lightyellow {
color: #FFFFE0;
}
.link-lightyellow:hover, .link-lightyellow:focus {
color: #ffffe6;
}
.link-lime {
color: #00FF00;
}
.link-lime:hover, .link-lime:focus {
color: #33ff33;
}
.link-limegreen {
color: #32CD32;
}
.link-limegreen:hover, .link-limegreen:focus {
color: #5bd75b;
}
.link-linen {
color: #FAF0E6;
}
.link-linen:hover, .link-linen:focus {
color: #fbf3eb;
}
.link-magenta {
color: #FF00FF;
}
.link-magenta:hover, .link-magenta:focus {
color: #ff33ff;
}
.link-maroon {
color: #800000;
}
.link-maroon:hover, .link-maroon:focus {
color: #660000;
}
.link-mediumaquamarine {
color: #66CDAA;
}
.link-mediumaquamarine:hover, .link-mediumaquamarine:focus {
color: #85d7bb;
}
.link-mediumblue {
color: #0000CD;
}
.link-mediumblue:hover, .link-mediumblue:focus {
color: #0000a4;
}
.link-mediumorchid {
color: #BA55D3;
}
.link-mediumorchid:hover, .link-mediumorchid:focus {
color: #c877dc;
}
.link-mediumpurple {
color: #9370DB;
}
.link-mediumpurple:hover, .link-mediumpurple:focus {
color: #a98de2;
}
.link-mediumseagreen {
color: #3CB371;
}
.link-mediumseagreen:hover, .link-mediumseagreen:focus {
color: #63c28d;
}
.link-mediumslateblue {
color: #7B68EE;
}
.link-mediumslateblue:hover, .link-mediumslateblue:focus {
color: #9586f1;
}
.link-mediumspringgreen {
color: #00FA9A;
}
.link-mediumspringgreen:hover, .link-mediumspringgreen:focus {
color: #33fbae;
}
.link-mediumturquoise {
color: #48D1CC;
}
.link-mediumturquoise:hover, .link-mediumturquoise:focus {
color: #6ddad6;
}
.link-mediumvioletred {
color: #C71585;
}
.link-mediumvioletred:hover, .link-mediumvioletred:focus {
color: #9f116a;
}
.link-midnightblue {
color: #191970;
}
.link-midnightblue:hover, .link-midnightblue:focus {
color: #14145a;
}
.link-mintcream {
color: #F5FFFA;
}
.link-mintcream:hover, .link-mintcream:focus {
color: #f7fffb;
}
.link-mistyrose {
color: #FFE4E1;
}
.link-mistyrose:hover, .link-mistyrose:focus {
color: #ffe9e7;
}
.link-moccasin {
color: #FFE4B5;
}
.link-moccasin:hover, .link-moccasin:focus {
color: #ffe9c4;
}
.link-navajowhite {
color: #FFDEAD;
}
.link-navajowhite:hover, .link-navajowhite:focus {
color: #ffe5bd;
}
.link-navy {
color: #000080;
}
.link-navy:hover, .link-navy:focus {
color: #000066;
}
.link-oldlace {
color: #FDF5E6;
}
.link-oldlace:hover, .link-oldlace:focus {
color: #fdf7eb;
}
.link-olive {
color: #808000;
}
.link-olive:hover, .link-olive:focus {
color: #999933;
}
.link-olivedrab {
color: #6B8E23;
}
.link-olivedrab:hover, .link-olivedrab:focus {
color: #89a54f;
}
.link-orangered {
color: #FF4500;
}
.link-orangered:hover, .link-orangered:focus {
color: #ff6a33;
}
.link-orchid {
color: #DA70D6;
}
.link-orchid:hover, .link-orchid:focus {
color: #e18dde;
}
.link-palegoldenrod {
color: #EEE8AA;
}
.link-palegoldenrod:hover, .link-palegoldenrod:focus {
color: #f1edbb;
}
.link-palegreen {
color: #98FB98;
}
.link-palegreen:hover, .link-palegreen:focus {
color: #adfcad;
}
.link-paleturquoise {
color: #AFEEEE;
}
.link-paleturquoise:hover, .link-paleturquoise:focus {
color: #bff1f1;
}
.link-palevioletred {
color: #DB7093;
}
.link-palevioletred:hover, .link-palevioletred:focus {
color: #e28da9;
}
.link-papayawhip {
color: #FFEFD5;
}
.link-papayawhip:hover, .link-papayawhip:focus {
color: #fff2dd;
}
.link-peachpuff {
color: #FFDAB9;
}
.link-peachpuff:hover, .link-peachpuff:focus {
color: #ffe1c7;
}
.link-peru {
color: #CD853F;
}
.link-peru:hover, .link-peru:focus {
color: #d79d65;
}
.link-plum {
color: #DDA0DD;
}
.link-plum:hover, .link-plum:focus {
color: #e4b3e4;
}
.link-powderblue {
color: #B0E0E6;
}
.link-powderblue:hover, .link-powderblue:focus {
color: #c0e6eb;
}
.link-rebeccapurple {
color: #663399;
}
.link-rebeccapurple:hover, .link-rebeccapurple:focus {
color: #52297a;
}
.link-rosybrown {
color: #BC8F8F;
}
.link-rosybrown:hover, .link-rosybrown:focus {
color: #c9a5a5;
}
.link-royalblue {
color: #4169E1;
}
.link-royalblue:hover, .link-royalblue:focus {
color: #3454b4;
}
.link-saddlebrown {
color: #8B4513;
}
.link-saddlebrown:hover, .link-saddlebrown:focus {
color: #6f370f;
}
.link-salmon {
color: #FA8072;
}
.link-salmon:hover, .link-salmon:focus {
color: #fb998e;
}
.link-sandybrown {
color: #F4A460;
}
.link-sandybrown:hover, .link-sandybrown:focus {
color: #f6b680;
}
.link-seagreen {
color: #2E8B57;
}
.link-seagreen:hover, .link-seagreen:focus {
color: #58a279;
}
.link-seashell {
color: #FFF5EE;
}
.link-seashell:hover, .link-seashell:focus {
color: #fff7f1;
}
.link-sienna {
color: #A0522D;
}
.link-sienna:hover, .link-sienna:focus {
color: #804224;
}
.link-silver {
color: #C0C0C0;
}
.link-silver:hover, .link-silver:focus {
color: #cdcdcd;
}
.link-skyblue {
color: #87CEEB;
}
.link-skyblue:hover, .link-skyblue:focus {
color: #9fd8ef;
}
.link-slateblue {
color: #6A5ACD;
}
.link-slateblue:hover, .link-slateblue:focus {
color: #5548a4;
}
.link-slategray {
color: #708090;
}
.link-slategray:hover, .link-slategray:focus {
color: #8d99a6;
}
.link-slategrey {
color: #708090;
}
.link-slategrey:hover, .link-slategrey:focus {
color: #8d99a6;
}
.link-snow {
color: #FFFAFA;
}
.link-snow:hover, .link-snow:focus {
color: #fffbfb;
}
.link-springgreen {
color: #00FF7F;
}
.link-springgreen:hover, .link-springgreen:focus {
color: #33ff99;
}
.link-steelblue {
color: #4682B4;
}
.link-steelblue:hover, .link-steelblue:focus {
color: #6b9bc3;
}
.link-tan {
color: #D2B48C;
}
.link-tan:hover, .link-tan:focus {
color: #dbc3a3;
}
.link-thistle {
color: #D8BFD8;
}
.link-thistle:hover, .link-thistle:focus {
color: #e0cce0;
}
.link-tomato {
color: #FF6347;
}
.link-tomato:hover, .link-tomato:focus {
color: #ff826c;
}
.link-turquoise {
color: #40E0D0;
}
.link-turquoise:hover, .link-turquoise:focus {
color: #66e6d9;
}
.link-violet {
color: #EE82EE;
}
.link-violet:hover, .link-violet:focus {
color: #f19bf1;
}
.link-wheat {
color: #F5DEB3;
}
.link-wheat:hover, .link-wheat:focus {
color: #f7e5c2;
}
.link-whitesmoke {
color: #F5F5F5;
}
.link-whitesmoke:hover, .link-whitesmoke:focus {
color: #f7f7f7;
}
.link-yellowgreen {
color: #9ACD32;
}
.link-yellowgreen:hover, .link-yellowgreen:focus {
color: #aed75b;
}
.ratio {
position: relative;
width: 100%;
}
.ratio::before {
display: block;
padding-top: var(--bs-aspect-ratio);
content: "";
}
.ratio > * {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ratio-1x1 {
--bs-aspect-ratio: 100%;
}
.ratio-4x3 {
--bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
--bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
--bs-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;
}
}
.hstack {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.vstack {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
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;
}
.vr {
display: inline-block;
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
width: 1px;
min-height: 1em;
background-color: currentColor;
opacity: 0.25;
}
.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;
}
.opacity-0 {
opacity: 0 !important;
}
.opacity-25 {
opacity: 0.25 !important;
}
.opacity-50 {
opacity: 0.5 !important;
}
.opacity-75 {
opacity: 0.75 !important;
}
.opacity-100 {
opacity: 1 !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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.shadow {
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
-webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
-webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
-webkit-box-shadow: none !important;
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 {
-webkit-transform: translate(-50%, -50%) !important;
transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
-webkit-transform: translateX(-50%) !important;
transform: translateX(-50%) !important;
}
.translate-middle-y {
-webkit-transform: translateY(-50%) !important;
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-white {
border-color: #fff !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 {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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;
}
.font-monospace {
font-family: var(--bs-font-monospace) !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;
}
.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;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-decoration-none {
text-decoration: none !important;
}
.text-decoration-underline {
text-decoration: underline !important;
}
.text-decoration-line-through {
text-decoration: line-through !important;
}
.text-lowercase {
text-transform: lowercase !important;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: capitalize !important;
}
.text-wrap {
white-space: normal !important;
}
.text-nowrap {
white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
word-wrap: break-word !important;
word-break: break-word !important;
}
/* rtl:end:remove */
.text-primary {
--bs-text-opacity: 1;
color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
--bs-text-opacity: 1;
color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
--bs-text-opacity: 1;
color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
--bs-text-opacity: 1;
color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
--bs-text-opacity: 1;
color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
--bs-text-opacity: 1;
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
--bs-text-opacity: 1;
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
--bs-text-opacity: 1;
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
--bs-text-opacity: 1;
color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
--bs-text-opacity: 1;
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
--bs-text-opacity: 1;
color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
--bs-text-opacity: 1;
color: #6c757d !important;
}
.text-black-50 {
--bs-text-opacity: 1;
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
--bs-text-opacity: 1;
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
--bs-text-opacity: 1;
color: inherit !important;
}
.text-opacity-25 {
--bs-text-opacity: 0.25;
}
.text-opacity-50 {
--bs-text-opacity: 0.5;
}
.text-opacity-75 {
--bs-text-opacity: 0.75;
}
.text-opacity-100 {
--bs-text-opacity: 1;
}
.bg-primary {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
--bs-bg-opacity: 1;
background-color: transparent !important;
}
.bg-opacity-10 {
--bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
--bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
--bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
--bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
--bs-bg-opacity: 1;
}
.bg-gradient {
background-image: var(--bs-gradient) !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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-sm-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-sm-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-sm-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-sm-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-sm-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-sm-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-sm-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-sm-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-sm-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-sm-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-sm-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-sm-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-sm-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-sm-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-sm-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-sm-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-sm-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-sm-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-sm-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-sm-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-sm-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-sm-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-sm-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-sm-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-sm-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-sm-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-sm-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-sm-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-sm-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-sm-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-sm-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-sm-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-sm-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-sm-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-sm-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-md-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-md-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-md-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-md-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-md-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-md-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-md-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-md-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-md-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-md-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-md-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-md-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-md-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-md-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-md-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-md-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-md-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-md-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-md-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-md-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-md-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-md-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-md-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-md-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-md-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-md-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-md-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-md-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-md-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-md-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-md-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-md-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-md-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-md-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-md-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-md-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-md-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-lg-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-lg-none {
display: none !important;
}
.flex-lg-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-lg-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-lg-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-lg-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-lg-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-lg-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-lg-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-lg-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-lg-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-lg-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-lg-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-lg-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-lg-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-lg-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-lg-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-lg-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-lg-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-lg-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-lg-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-lg-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-lg-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-lg-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-lg-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-lg-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-lg-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-lg-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-lg-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-lg-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-lg-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-lg-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-lg-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-lg-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-lg-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-lg-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-lg-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-lg-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-xl-none {
display: none !important;
}
.flex-xl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-xl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-xl-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-xl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-xl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-xl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-xl-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-xl-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-xl-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-xl-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-xl-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-xl-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-xl-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-xl-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xxl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-xxl-none {
display: none !important;
}
.flex-xxl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xxl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xxl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xxl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xxl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-xxl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xxl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xxl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xxl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xxl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-xxl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xxl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xxl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xxl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xxl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xxl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xxl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xxl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xxl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xxl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xxl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xxl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-xxl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xxl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xxl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-xxl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xxl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-xxl-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-xxl-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-xxl-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-xxl-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-xxl-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-xxl-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-xxl-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-xxl-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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;
}
}
@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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-print-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-print-none {
display: none !important;
}
}
/*# sourceMappingURL=styles.css.map */ | public/assets/css/styles.css | :root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-gray-100: #f8f9fa;
--bs-gray-200: #e9ecef;
--bs-gray-300: #dee2e6;
--bs-gray-400: #ced4da;
--bs-gray-500: #adb5bd;
--bs-gray-600: #6c757d;
--bs-gray-700: #495057;
--bs-gray-800: #343a40;
--bs-gray-900: #212529;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-primary-rgb: 13, 110, 253;
--bs-secondary-rgb: 108, 117, 125;
--bs-success-rgb: 25, 135, 84;
--bs-info-rgb: 13, 202, 240;
--bs-warning-rgb: 255, 193, 7;
--bs-danger-rgb: 220, 53, 69;
--bs-light-rgb: 248, 249, 250;
--bs-dark-rgb: 33, 37, 41;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--bs-body-color-rgb: 33, 37, 41;
--bs-body-bg-rgb: 255, 255, 255;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
--bs-body-font-family: var(--bs-font-sans-serif);
--bs-body-font-size: 1rem;
--bs-body-font-weight: 400;
--bs-body-line-height: 1.5;
--bs-body-color: #212529;
--bs-body-bg: #fff;
}
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: var(--bs-body-font-family);
font-size: var(--bs-body-font-size);
font-weight: var(--bs-body-font-weight);
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
text-align: var(--bs-body-text-align);
background-color: var(--bs-body-bg);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
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] {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul {
padding-left: 2rem;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small, .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: -.25em;
}
sup {
top: -.5em;
}
a {
color: #0d6efd;
text-decoration: underline;
}
a:hover {
color: #0a58ca;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
pre,
code,
kbd,
samp {
font-family: var(--bs-font-monospace);
font-size: 1em;
direction: ltr /* rtl:ignore */;
unicode-bidi: bidi-override;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
font-size: 0.875em;
color: #d63384;
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 0.875em;
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
font-size: 1em;
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
img,
svg {
vertical-align: middle;
}
table {
caption-side: bottom;
border-collapse: collapse;
}
caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: left;
}
th {
text-align: inherit;
text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
select {
text-transform: none;
}
[role="button"] {
cursor: pointer;
}
select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
display: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
float: left;
width: 100%;
padding: 0;
margin-bottom: 0.5rem;
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
}
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
}
legend + * {
clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
*/
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
padding: 0;
}
::file-selector-button {
font: inherit;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
iframe {
border: 0;
}
summary {
display: list-item;
cursor: pointer;
}
progress {
vertical-align: baseline;
}
[hidden] {
display: none !important;
}
.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\00A0";
}
.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-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
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, .container-sm {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container, .container-sm, .container-md {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container, .container-sm, .container-md, .container-lg {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container, .container-sm, .container-md, .container-lg, .container-xl {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
max-width: 1320px;
}
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: calc(-1 * var(--bs-gutter-y));
margin-right: calc(-.5 * var(--bs-gutter-x));
margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > * {
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
.col {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.33333%;
}
.offset-2 {
margin-left: 16.66667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.33333%;
}
.offset-5 {
margin-left: 41.66667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.33333%;
}
.offset-8 {
margin-left: 66.66667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.33333%;
}
.offset-11 {
margin-left: 91.66667%;
}
.g-0,
.gx-0 {
--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
.col-sm {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-sm-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.33333%;
}
.offset-sm-2 {
margin-left: 16.66667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.33333%;
}
.offset-sm-5 {
margin-left: 41.66667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.33333%;
}
.offset-sm-8 {
margin-left: 66.66667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.33333%;
}
.offset-sm-11 {
margin-left: 91.66667%;
}
.g-sm-0,
.gx-sm-0 {
--bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
--bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
--bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
--bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
--bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
--bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
--bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
--bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
--bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
--bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
--bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 768px) {
.col-md {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-md-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-md-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-md-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-md-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-md-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-md-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-md-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-md-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.33333%;
}
.offset-md-2 {
margin-left: 16.66667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.33333%;
}
.offset-md-5 {
margin-left: 41.66667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.33333%;
}
.offset-md-8 {
margin-left: 66.66667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.33333%;
}
.offset-md-11 {
margin-left: 91.66667%;
}
.g-md-0,
.gx-md-0 {
--bs-gutter-x: 0;
}
.g-md-0,
.gy-md-0 {
--bs-gutter-y: 0;
}
.g-md-1,
.gx-md-1 {
--bs-gutter-x: 0.25rem;
}
.g-md-1,
.gy-md-1 {
--bs-gutter-y: 0.25rem;
}
.g-md-2,
.gx-md-2 {
--bs-gutter-x: 0.5rem;
}
.g-md-2,
.gy-md-2 {
--bs-gutter-y: 0.5rem;
}
.g-md-3,
.gx-md-3 {
--bs-gutter-x: 1rem;
}
.g-md-3,
.gy-md-3 {
--bs-gutter-y: 1rem;
}
.g-md-4,
.gx-md-4 {
--bs-gutter-x: 1.5rem;
}
.g-md-4,
.gy-md-4 {
--bs-gutter-y: 1.5rem;
}
.g-md-5,
.gx-md-5 {
--bs-gutter-x: 3rem;
}
.g-md-5,
.gy-md-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 992px) {
.col-lg {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-lg-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-lg-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-lg-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-lg-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-lg-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-lg-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-lg-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-lg-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.33333%;
}
.offset-lg-2 {
margin-left: 16.66667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.33333%;
}
.offset-lg-5 {
margin-left: 41.66667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.33333%;
}
.offset-lg-8 {
margin-left: 66.66667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.33333%;
}
.offset-lg-11 {
margin-left: 91.66667%;
}
.g-lg-0,
.gx-lg-0 {
--bs-gutter-x: 0;
}
.g-lg-0,
.gy-lg-0 {
--bs-gutter-y: 0;
}
.g-lg-1,
.gx-lg-1 {
--bs-gutter-x: 0.25rem;
}
.g-lg-1,
.gy-lg-1 {
--bs-gutter-y: 0.25rem;
}
.g-lg-2,
.gx-lg-2 {
--bs-gutter-x: 0.5rem;
}
.g-lg-2,
.gy-lg-2 {
--bs-gutter-y: 0.5rem;
}
.g-lg-3,
.gx-lg-3 {
--bs-gutter-x: 1rem;
}
.g-lg-3,
.gy-lg-3 {
--bs-gutter-y: 1rem;
}
.g-lg-4,
.gx-lg-4 {
--bs-gutter-x: 1.5rem;
}
.g-lg-4,
.gy-lg-4 {
--bs-gutter-y: 1.5rem;
}
.g-lg-5,
.gx-lg-5 {
--bs-gutter-x: 3rem;
}
.g-lg-5,
.gy-lg-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1200px) {
.col-xl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.33333%;
}
.offset-xl-2 {
margin-left: 16.66667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.33333%;
}
.offset-xl-5 {
margin-left: 41.66667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.33333%;
}
.offset-xl-8 {
margin-left: 66.66667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.33333%;
}
.offset-xl-11 {
margin-left: 91.66667%;
}
.g-xl-0,
.gx-xl-0 {
--bs-gutter-x: 0;
}
.g-xl-0,
.gy-xl-0 {
--bs-gutter-y: 0;
}
.g-xl-1,
.gx-xl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xl-1,
.gy-xl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xl-2,
.gx-xl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xl-2,
.gy-xl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xl-3,
.gx-xl-3 {
--bs-gutter-x: 1rem;
}
.g-xl-3,
.gy-xl-3 {
--bs-gutter-y: 1rem;
}
.g-xl-4,
.gx-xl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xl-4,
.gy-xl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xl-5,
.gx-xl-5 {
--bs-gutter-x: 3rem;
}
.g-xl-5,
.gy-xl-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1400px) {
.col-xxl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xxl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xxl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xxl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xxl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xxl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xxl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xxl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xxl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.33333%;
}
.offset-xxl-2 {
margin-left: 16.66667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.33333%;
}
.offset-xxl-5 {
margin-left: 41.66667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.33333%;
}
.offset-xxl-8 {
margin-left: 66.66667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.33333%;
}
.offset-xxl-11 {
margin-left: 91.66667%;
}
.g-xxl-0,
.gx-xxl-0 {
--bs-gutter-x: 0;
}
.g-xxl-0,
.gy-xxl-0 {
--bs-gutter-y: 0;
}
.g-xxl-1,
.gx-xxl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xxl-1,
.gy-xxl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xxl-2,
.gx-xxl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xxl-2,
.gy-xxl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xxl-3,
.gx-xxl-3 {
--bs-gutter-x: 1rem;
}
.g-xxl-3,
.gy-xxl-3 {
--bs-gutter-y: 1rem;
}
.g-xxl-4,
.gx-xxl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xxl-4,
.gy-xxl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xxl-5,
.gx-xxl-5 {
--bs-gutter-x: 3rem;
}
.g-xxl-5,
.gy-xxl-5 {
--bs-gutter-y: 3rem;
}
}
.table {
--bs-table-bg: transparent;
--bs-table-accent-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);
border-bottom-width: 1px;
-webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
vertical-align: inherit;
}
.table > thead {
vertical-align: bottom;
}
.table > :not(:first-child) {
border-top: 2px solid 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-borderless > :not(:first-child) {
border-top-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;
-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control {
-webkit-transition: none;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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::-webkit-input-placeholder {
color: #6c757d;
opacity: 1;
}
.form-control:-ms-input-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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control::file-selector-button {
-webkit-transition: none;
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, -webkit-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, -webkit-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;
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, -webkit-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 {
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 2.25rem 0.375rem 0.75rem;
-moz-padding-start: calc(0.75rem - 3px);
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
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-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-select {
-webkit-transition: none;
transition: none;
}
}
.form-select:focus {
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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 {
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;
border-radius: 0.2rem;
}
.form-select-lg {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.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;
color-adjust: exact;
}
.form-check-input[type="checkbox"] {
border-radius: 0.25em;
}
.form-check-input[type="radio"] {
border-radius: 50%;
}
.form-check-input:active {
-webkit-filter: brightness(90%);
filter: brightness(90%);
}
.form-check-input:focus {
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
-webkit-filter: 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;
-webkit-transition: background-position 0.15s ease-in-out;
transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-switch .form-check-input {
-webkit-transition: none;
transition: none;
}
}
.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;
-webkit-filter: 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: 0;
}
.form-range:focus::-webkit-slider-thumb {
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-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;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-range::-moz-range-thumb {
-webkit-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);
line-height: 1.25;
}
.form-floating > label {
position: absolute;
top: 0;
left: 0;
height: 100%;
padding: 1rem 0.75rem;
pointer-events: none;
border: 1px solid transparent;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-floating > label {
-webkit-transition: none;
transition: none;
}
}
.form-floating > .form-control {
padding: 1rem 0.75rem;
}
.form-floating > .form-control::-webkit-input-placeholder {
color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::placeholder {
color: transparent;
}
.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:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
opacity: 0.65;
-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
opacity: 0.65;
-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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: 3rem;
}
.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: .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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
padding-right: 4.125rem;
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 2.25rem;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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: .5em;
}
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
.input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
z-index: 3;
}
.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: .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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
padding-right: 4.125rem;
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 2.25rem;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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: .5em;
}
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
.input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
z-index: 3;
}
.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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
-webkit-transition: none;
transition: none;
}
}
.btn:hover {
color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
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-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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
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-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 {
-webkit-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
.fade {
-webkit-transition: none;
transition: none;
}
}
.fade:not(.show) {
opacity: 0;
}
.collapse:not(.show) {
display: none;
}
.collapsing {
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing {
-webkit-transition: none;
transition: none;
}
}
.collapsing.collapse-horizontal {
width: 0;
height: auto;
-webkit-transition: width 0.35s ease;
transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing.collapse-horizontal {
-webkit-transition: none;
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;
z-index: 1000;
display: none;
min-width: 10rem;
padding: 0.5rem 0;
margin: 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[data-bs-popper] {
top: 100%;
left: 0;
margin-top: 0.125rem;
}
.dropdown-menu-start {
--bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-end {
--bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
right: 0;
left: auto;
}
@media (min-width: 576px) {
.dropdown-menu-sm-start {
--bs-position: start;
}
.dropdown-menu-sm-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-sm-end {
--bs-position: end;
}
.dropdown-menu-sm-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 768px) {
.dropdown-menu-md-start {
--bs-position: start;
}
.dropdown-menu-md-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-md-end {
--bs-position: end;
}
.dropdown-menu-md-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 992px) {
.dropdown-menu-lg-start {
--bs-position: start;
}
.dropdown-menu-lg-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-lg-end {
--bs-position: end;
}
.dropdown-menu-lg-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 1200px) {
.dropdown-menu-xl-start {
--bs-position: start;
}
.dropdown-menu-xl-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-xl-end {
--bs-position: end;
}
.dropdown-menu-xl-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 1400px) {
.dropdown-menu-xxl-start {
--bs-position: start;
}
.dropdown-menu-xxl-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-xxl-end {
--bs-position: end;
}
.dropdown-menu-xxl-end[data-bs-popper] {
right: 0;
left: auto;
}
}
.dropup .dropdown-menu[data-bs-popper] {
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[data-bs-popper] {
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[data-bs-popper] {
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: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
color: #adb5bd;
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: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
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 {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
color: #0d6efd;
text-decoration: none;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 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;
}
@media (prefers-reduced-motion: reduce) {
.nav-link {
-webkit-transition: none;
transition: none;
}
}
.nav-link:hover, .nav-link:focus {
color: #0a58ca;
}
.nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}
.nav-tabs {
border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
margin-bottom: -1px;
background: none;
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;
isolation: isolate;
}
.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 {
background: none;
border: 0;
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 {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
width: 100%;
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.navbar {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: inherit;
flex-wrap: inherit;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.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;
-webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
transition: -webkit-box-shadow 0.15s ease-in-out;
transition: box-shadow 0.15s ease-in-out;
transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.navbar-toggler {
-webkit-transition: none;
transition: none;
}
}
.navbar-toggler:hover {
text-decoration: none;
}
.navbar-toggler:focus {
text-decoration: none;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem;
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%;
}
.navbar-nav-scroll {
max-height: var(--bs-scroll-height, 75vh);
overflow-y: auto;
}
@media (min-width: 576px) {
.navbar-expand-sm {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-sm .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-sm .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-sm .navbar-toggler {
display: none;
}
.navbar-expand-sm .offcanvas-header {
display: none;
}
.navbar-expand-sm .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-sm .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 768px) {
.navbar-expand-md {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-md .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-md .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-md .navbar-toggler {
display: none;
}
.navbar-expand-md .offcanvas-header {
display: none;
}
.navbar-expand-md .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-md .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 992px) {
.navbar-expand-lg {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-lg .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-lg .navbar-toggler {
display: none;
}
.navbar-expand-lg .offcanvas-header {
display: none;
}
.navbar-expand-lg .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-lg .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 1200px) {
.navbar-expand-xl {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xl .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-xl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xl .navbar-toggler {
display: none;
}
.navbar-expand-xl .offcanvas-header {
display: none;
}
.navbar-expand-xl .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-xl .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 1400px) {
.navbar-expand-xxl {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xxl .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-xxl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xxl .navbar-toggler {
display: none;
}
.navbar-expand-xxl .offcanvas-header {
display: none;
}
.navbar-expand-xxl .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-xxl .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
.navbar-expand {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand .navbar-toggler {
display: none;
}
.navbar-expand .offcanvas-header {
display: none;
}
.navbar-expand .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
.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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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 {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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 + .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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
}
.card-group > .card {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
padding: 1rem 1.25rem;
font-size: 1rem;
color: #212529;
text-align: left;
background-color: #fff;
border: 0;
border-radius: 0;
overflow-anchor: none;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-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, border-radius 0.15s ease, -webkit-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, border-radius 0.15s ease;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button {
-webkit-transition: none;
transition: none;
}
}
.accordion-button:not(.collapsed) {
color: #0c63e4;
background-color: #e7f1ff;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.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");
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
.accordion-button::after {
-ms-flex-negative: 0;
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;
-webkit-transition: -webkit-transform 0.2s ease-in-out;
transition: -webkit-transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button::after {
-webkit-transition: none;
transition: none;
}
}
.accordion-button:hover {
z-index: 2;
}
.accordion-button:focus {
z-index: 3;
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
margin-bottom: 0;
}
.accordion-item {
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
border-top: 0;
}
.accordion-item:last-of-type {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-body {
padding: 1rem 1.25rem;
}
.accordion-flush .accordion-collapse {
border-width: 0;
}
.accordion-flush .accordion-item {
border-right: 0;
border-left: 0;
border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
border-top: 0;
}
.accordion-flush .accordion-item:last-child {
border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
border-radius: 0;
}
.breadcrumb {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
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, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
color: #6c757d;
}
.pagination {
display: -webkit-box;
display: -ms-flexbox;
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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.page-link {
-webkit-transition: none;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
}
@-webkit-keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
@keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
.progress {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #e9ecef;
border-radius: 0.25rem;
}
.progress-bar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
overflow: hidden;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #0d6efd;
-webkit-transition: width 0.6s ease;
transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar {
-webkit-transition: none;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
border-radius: 0.25rem;
}
.list-group-numbered {
list-style-type: none;
counter-reset: section;
}
.list-group-numbered > li::before {
content: counters(section, ".") ". ";
counter-increment: section;
}
.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;
color: #212529;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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;
}
.btn-close {
-webkit-box-sizing: content-box;
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: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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 {
-webkit-filter: invert(1) grayscale(100%) brightness(200%);
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);
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
}
.toast.showing {
opacity: 0;
}
.toast:not(.show) {
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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;
word-wrap: break-word;
}
.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1055;
display: none;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
-webkit-transition: -webkit-transform 0.3s ease-out;
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
-webkit-transform: translate(0, -50px);
transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
-webkit-transition: none;
transition: none;
}
}
.modal.show .modal-dialog {
-webkit-transform: none;
transform: none;
}
.modal.modal-static .modal-dialog {
-webkit-transform: scale(1.02);
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - 1rem);
}
.modal-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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: 1050;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.5;
}
.modal-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-negative: 0;
flex-shrink: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1rem;
}
.modal-footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-negative: 0;
flex-shrink: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
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;
}
@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: 1080;
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 /* rtl:ignore */;
z-index: 1070;
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;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
position: absolute;
display: block;
content: "";
border-color: transparent;
border-style: solid;
}
.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 > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
left: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
}
.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 > .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 > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
right: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
}
.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 rgba(0, 0, 0, 0.2);
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 {
-ms-touch-action: pan-y;
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;
-webkit-transition: -webkit-transform 0.6s ease-in-out;
transition: -webkit-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.carousel-item {
-webkit-transition: none;
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 {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
/* rtl:end:ignore */
.carousel-fade .carousel-item {
opacity: 0;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transform: none;
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;
-webkit-transition: opacity 0s 0.6s;
transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
-webkit-transition: none;
transition: none;
}
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 15%;
padding: 0;
color: #fff;
text-align: center;
background: none;
border: 0;
opacity: 0.5;
-webkit-transition: opacity 0.15s ease;
transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
-webkit-transition: none;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0;
margin-right: 15%;
margin-bottom: 1rem;
margin-left: 15%;
list-style: none;
}
.carousel-indicators [data-bs-target] {
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
width: 30px;
height: 3px;
padding: 0;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #fff;
background-clip: padding-box;
border: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: 0.5;
-webkit-transition: opacity 0.6s ease;
transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-indicators [data-bs-target] {
-webkit-transition: none;
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 {
-webkit-filter: invert(1) grayscale(100);
filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
background-color: #000;
}
.carousel-dark .carousel-caption {
color: #000;
}
@-webkit-keyframes spinner-border {
to {
-webkit-transform: rotate(360deg) /* rtl:ignore */;
transform: rotate(360deg) /* rtl:ignore */;
}
}
@keyframes spinner-border {
to {
-webkit-transform: rotate(360deg) /* rtl:ignore */;
transform: rotate(360deg) /* rtl:ignore */;
}
}
.spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: -0.125em;
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% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes spinner-grow {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: -0.125em;
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;
}
}
.offcanvas {
position: fixed;
bottom: 0;
z-index: 1045;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
max-width: 100%;
visibility: hidden;
background-color: #fff;
background-clip: padding-box;
outline: 0;
-webkit-transition: -webkit-transform 0.3s ease-in-out;
transition: -webkit-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.offcanvas {
-webkit-transition: none;
transition: none;
}
}
.offcanvas-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.offcanvas-backdrop.fade {
opacity: 0;
}
.offcanvas-backdrop.show {
opacity: 0.5;
}
.offcanvas-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
padding: 0.5rem 0.5rem;
margin-top: -0.5rem;
margin-right: -0.5rem;
margin-bottom: -0.5rem;
}
.offcanvas-title {
margin-bottom: 0;
line-height: 1.5;
}
.offcanvas-body {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 1rem 1rem;
overflow-y: auto;
}
.offcanvas-start {
top: 0;
left: 0;
width: 400px;
border-right: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
.offcanvas-end {
top: 0;
right: 0;
width: 400px;
border-left: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.offcanvas-top {
top: 0;
right: 0;
left: 0;
height: 30vh;
max-height: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.offcanvas-bottom {
right: 0;
left: 0;
height: 30vh;
max-height: 100%;
border-top: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
.offcanvas.show {
-webkit-transform: none;
transform: none;
}
.placeholder {
display: inline-block;
min-height: 1em;
vertical-align: middle;
cursor: wait;
background-color: currentColor;
opacity: 0.5;
}
.placeholder.btn::before {
display: inline-block;
content: "";
}
.placeholder-xs {
min-height: .6em;
}
.placeholder-sm {
min-height: .8em;
}
.placeholder-lg {
min-height: 1.2em;
}
.placeholder-glow .placeholder {
-webkit-animation: placeholder-glow 2s ease-in-out infinite;
animation: placeholder-glow 2s ease-in-out infinite;
}
@-webkit-keyframes placeholder-glow {
50% {
opacity: 0.2;
}
}
@keyframes placeholder-glow {
50% {
opacity: 0.2;
}
}
.placeholder-wave {
-webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
-webkit-mask-size: 200% 100%;
mask-size: 200% 100%;
-webkit-animation: placeholder-wave 2s linear infinite;
animation: placeholder-wave 2s linear infinite;
}
@-webkit-keyframes placeholder-wave {
100% {
-webkit-mask-position: -200% 0%;
mask-position: -200% 0%;
}
}
@keyframes placeholder-wave {
100% {
-webkit-mask-position: -200% 0%;
mask-position: -200% 0%;
}
}
.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;
}
.ratio {
position: relative;
width: 100%;
}
.ratio::before {
display: block;
padding-top: var(--bs-aspect-ratio);
content: "";
}
.ratio > * {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ratio-1x1 {
--bs-aspect-ratio: 100%;
}
.ratio-4x3 {
--bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
--bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
--bs-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;
}
}
.hstack {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.vstack {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
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;
}
.vr {
display: inline-block;
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
width: 1px;
min-height: 1em;
background-color: currentColor;
opacity: 0.25;
}
.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;
}
.opacity-0 {
opacity: 0 !important;
}
.opacity-25 {
opacity: 0.25 !important;
}
.opacity-50 {
opacity: 0.5 !important;
}
.opacity-75 {
opacity: 0.75 !important;
}
.opacity-100 {
opacity: 1 !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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.shadow {
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
-webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
-webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
-webkit-box-shadow: none !important;
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 {
-webkit-transform: translate(-50%, -50%) !important;
transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
-webkit-transform: translateX(-50%) !important;
transform: translateX(-50%) !important;
}
.translate-middle-y {
-webkit-transform: translateY(-50%) !important;
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-white {
border-color: #fff !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 {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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;
}
.font-monospace {
font-family: var(--bs-font-monospace) !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;
}
.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;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-decoration-none {
text-decoration: none !important;
}
.text-decoration-underline {
text-decoration: underline !important;
}
.text-decoration-line-through {
text-decoration: line-through !important;
}
.text-lowercase {
text-transform: lowercase !important;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: capitalize !important;
}
.text-wrap {
white-space: normal !important;
}
.text-nowrap {
white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
word-wrap: break-word !important;
word-break: break-word !important;
}
/* rtl:end:remove */
.text-primary {
--bs-text-opacity: 1;
color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
--bs-text-opacity: 1;
color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
--bs-text-opacity: 1;
color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
--bs-text-opacity: 1;
color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
--bs-text-opacity: 1;
color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
--bs-text-opacity: 1;
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
--bs-text-opacity: 1;
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
--bs-text-opacity: 1;
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
--bs-text-opacity: 1;
color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
--bs-text-opacity: 1;
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
--bs-text-opacity: 1;
color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
--bs-text-opacity: 1;
color: #6c757d !important;
}
.text-black-50 {
--bs-text-opacity: 1;
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
--bs-text-opacity: 1;
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
--bs-text-opacity: 1;
color: inherit !important;
}
.text-opacity-25 {
--bs-text-opacity: 0.25;
}
.text-opacity-50 {
--bs-text-opacity: 0.5;
}
.text-opacity-75 {
--bs-text-opacity: 0.75;
}
.text-opacity-100 {
--bs-text-opacity: 1;
}
.bg-primary {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
--bs-bg-opacity: 1;
background-color: transparent !important;
}
.bg-opacity-10 {
--bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
--bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
--bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
--bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
--bs-bg-opacity: 1;
}
.bg-gradient {
background-image: var(--bs-gradient) !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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-sm-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-sm-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-sm-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-sm-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-sm-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-sm-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-sm-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-sm-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-sm-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-sm-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-sm-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-sm-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-sm-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-sm-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-sm-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-sm-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-sm-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-sm-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-sm-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-sm-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-sm-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-sm-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-sm-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-sm-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-sm-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-sm-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-sm-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-sm-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-sm-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-sm-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-sm-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-sm-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-sm-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-sm-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-sm-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-md-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-md-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-md-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-md-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-md-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-md-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-md-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-md-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-md-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-md-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-md-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-md-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-md-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-md-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-md-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-md-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-md-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-md-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-md-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-md-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-md-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-md-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-md-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-md-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-md-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-md-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-md-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-md-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-md-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-md-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-md-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-md-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-md-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-md-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-md-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-md-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-md-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-lg-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-lg-none {
display: none !important;
}
.flex-lg-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-lg-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-lg-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-lg-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-lg-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-lg-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-lg-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-lg-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-lg-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-lg-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-lg-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-lg-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-lg-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-lg-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-lg-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-lg-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-lg-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-lg-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-lg-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-lg-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-lg-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-lg-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-lg-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-lg-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-lg-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-lg-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-lg-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-lg-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-lg-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-lg-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-lg-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-lg-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-lg-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-lg-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-lg-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-lg-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-xl-none {
display: none !important;
}
.flex-xl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-xl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-xl-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-xl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-xl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-xl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-xl-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-xl-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-xl-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-xl-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-xl-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-xl-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-xl-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-xl-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xxl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-xxl-none {
display: none !important;
}
.flex-xxl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xxl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xxl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xxl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xxl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-xxl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xxl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xxl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xxl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xxl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-xxl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xxl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xxl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xxl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xxl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xxl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xxl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xxl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xxl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xxl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xxl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xxl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-xxl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xxl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xxl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-xxl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xxl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-xxl-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-xxl-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-xxl-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-xxl-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-xxl-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-xxl-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-xxl-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-xxl-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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;
}
}
@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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-print-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-print-none {
display: none !important;
}
}
.bg-rc-red {
background-color: #DA291C !important;
}
.text-rc-red {
color: #DA291C !important;
}
.bg-rc-wine {
background-color: #A50034 !important;
}
.text-rc-wine {
color: #A50034 !important;
}
.bg-rc-blue {
background-color: #002554 !important;
}
.text-rc-blue {
color: #002554 !important;
}
.bg-rc-gold {
background-color: #FFB200 !important;
}
.text-rc-gold {
color: #FFB200 !important;
}
.bg-rc-silver {
background-color: #808080 !important;
}
.text-rc-silver {
color: #808080 !important;
}
.bg-rc-skyblue {
background-color: #00B0F0 !important;
}
.text-rc-skyblue {
color: #00B0F0 !important;
}
.bg-aliceblue {
background-color: #F0F8FF !important;
}
.text-aliceblue {
color: #F0F8FF !important;
}
.bg-antiquewhite {
background-color: #FAEBD7 !important;
}
.text-antiquewhite {
color: #FAEBD7 !important;
}
.bg-aqua {
background-color: #00FFFF !important;
}
.text-aqua {
color: #00FFFF !important;
}
.bg-aquamarine {
background-color: #7FFFD4 !important;
}
.text-aquamarine {
color: #7FFFD4 !important;
}
.bg-azure {
background-color: #F0FFFF !important;
}
.text-azure {
color: #F0FFFF !important;
}
.bg-beige {
background-color: #F5F5DC !important;
}
.text-beige {
color: #F5F5DC !important;
}
.bg-bisque {
background-color: #FFE4C4 !important;
}
.text-bisque {
color: #FFE4C4 !important;
}
.bg-blanchedalmond {
background-color: #FFEBCD !important;
}
.text-blanchedalmond {
color: #FFEBCD !important;
}
.bg-blueviolet {
background-color: #8A2BE2 !important;
}
.text-blueviolet {
color: #8A2BE2 !important;
}
.bg-brown {
background-color: #A52A2A !important;
}
.text-brown {
color: #A52A2A !important;
}
.bg-burlywood {
background-color: #DEB887 !important;
}
.text-burlywood {
color: #DEB887 !important;
}
.bg-cadetblue {
background-color: #5F9EA0 !important;
}
.text-cadetblue {
color: #5F9EA0 !important;
}
.bg-chartreuse {
background-color: #7FFF00 !important;
}
.text-chartreuse {
color: #7FFF00 !important;
}
.bg-chocolate {
background-color: #D2691E !important;
}
.text-chocolate {
color: #D2691E !important;
}
.bg-coral {
background-color: #FF7F50 !important;
}
.text-coral {
color: #FF7F50 !important;
}
.bg-cornflowerblue {
background-color: #6495ED !important;
}
.text-cornflowerblue {
color: #6495ED !important;
}
.bg-cornsilk {
background-color: #FFF8DC !important;
}
.text-cornsilk {
color: #FFF8DC !important;
}
.bg-crimson {
background-color: #DC143C !important;
}
.text-crimson {
color: #DC143C !important;
}
.bg-darkblue {
background-color: #00008B !important;
}
.text-darkblue {
color: #00008B !important;
}
.bg-darkcyan {
background-color: #008B8B !important;
}
.text-darkcyan {
color: #008B8B !important;
}
.bg-darkgoldenrod {
background-color: #B8860B !important;
}
.text-darkgoldenrod {
color: #B8860B !important;
}
.bg-darkgray {
background-color: #A9A9A9 !important;
}
.text-darkgray {
color: #A9A9A9 !important;
}
.bg-darkgreen {
background-color: #006400 !important;
}
.text-darkgreen {
color: #006400 !important;
}
.bg-darkgrey {
background-color: #A9A9A9 !important;
}
.text-darkgrey {
color: #A9A9A9 !important;
}
.bg-darkkhaki {
background-color: #BDB76B !important;
}
.text-darkkhaki {
color: #BDB76B !important;
}
.bg-darkmagenta {
background-color: #8B008B !important;
}
.text-darkmagenta {
color: #8B008B !important;
}
.bg-darkolivegreen {
background-color: #556B2F !important;
}
.text-darkolivegreen {
color: #556B2F !important;
}
.bg-darkorange {
background-color: #FF8C00 !important;
}
.text-darkorange {
color: #FF8C00 !important;
}
.bg-darkorchid {
background-color: #9932CC !important;
}
.text-darkorchid {
color: #9932CC !important;
}
.bg-darkred {
background-color: #8B0000 !important;
}
.text-darkred {
color: #8B0000 !important;
}
.bg-darksalmon {
background-color: #E9967A !important;
}
.text-darksalmon {
color: #E9967A !important;
}
.bg-darkseagreen {
background-color: #8FBC8F !important;
}
.text-darkseagreen {
color: #8FBC8F !important;
}
.bg-darkslateblue {
background-color: #483D8B !important;
}
.text-darkslateblue {
color: #483D8B !important;
}
.bg-darkslategray {
background-color: #2F4F4F !important;
}
.text-darkslategray {
color: #2F4F4F !important;
}
.bg-darkslategrey {
background-color: #2F4F4F !important;
}
.text-darkslategrey {
color: #2F4F4F !important;
}
.bg-darkturquoise {
background-color: #00CED1 !important;
}
.text-darkturquoise {
color: #00CED1 !important;
}
.bg-darkviolet {
background-color: #9400D3 !important;
}
.text-darkviolet {
color: #9400D3 !important;
}
.bg-deeppink {
background-color: #FF1493 !important;
}
.text-deeppink {
color: #FF1493 !important;
}
.bg-deepskyblue {
background-color: #00BFFF !important;
}
.text-deepskyblue {
color: #00BFFF !important;
}
.bg-dimgray {
background-color: #696969 !important;
}
.text-dimgray {
color: #696969 !important;
}
.bg-dimgrey {
background-color: #696969 !important;
}
.text-dimgrey {
color: #696969 !important;
}
.bg-dodgerblue {
background-color: #1E90FF !important;
}
.text-dodgerblue {
color: #1E90FF !important;
}
.bg-firebrick {
background-color: #B22222 !important;
}
.text-firebrick {
color: #B22222 !important;
}
.bg-floralwhite {
background-color: #FFFAF0 !important;
}
.text-floralwhite {
color: #FFFAF0 !important;
}
.bg-forestgreen {
background-color: #228B22 !important;
}
.text-forestgreen {
color: #228B22 !important;
}
.bg-fuchsia {
background-color: #FF00FF !important;
}
.text-fuchsia {
color: #FF00FF !important;
}
.bg-gainsboro {
background-color: #DCDCDC !important;
}
.text-gainsboro {
color: #DCDCDC !important;
}
.bg-ghostwhite {
background-color: #F8F8FF !important;
}
.text-ghostwhite {
color: #F8F8FF !important;
}
.bg-gold {
background-color: #FFD700 !important;
}
.text-gold {
color: #FFD700 !important;
}
.bg-goldenrod {
background-color: #DAA520 !important;
}
.text-goldenrod {
color: #DAA520 !important;
}
.bg-greenyellow {
background-color: #ADFF2F !important;
}
.text-greenyellow {
color: #ADFF2F !important;
}
.bg-grey {
background-color: #808080 !important;
}
.text-grey {
color: #808080 !important;
}
.bg-honeydew {
background-color: #F0FFF0 !important;
}
.text-honeydew {
color: #F0FFF0 !important;
}
.bg-hotpink {
background-color: #FF69B4 !important;
}
.text-hotpink {
color: #FF69B4 !important;
}
.bg-indianred {
background-color: #CD5C5C !important;
}
.text-indianred {
color: #CD5C5C !important;
}
.bg-ivory {
background-color: #FFFFF0 !important;
}
.text-ivory {
color: #FFFFF0 !important;
}
.bg-khaki {
background-color: #F0E68C !important;
}
.text-khaki {
color: #F0E68C !important;
}
.bg-lavender {
background-color: #E6E6FA !important;
}
.text-lavender {
color: #E6E6FA !important;
}
.bg-lavenderblush {
background-color: #FFF0F5 !important;
}
.text-lavenderblush {
color: #FFF0F5 !important;
}
.bg-lawngreen {
background-color: #7CFC00 !important;
}
.text-lawngreen {
color: #7CFC00 !important;
}
.bg-lemonchiffon {
background-color: #FFFACD !important;
}
.text-lemonchiffon {
color: #FFFACD !important;
}
.bg-lightblue {
background-color: #ADD8E6 !important;
}
.text-lightblue {
color: #ADD8E6 !important;
}
.bg-lightcoral {
background-color: #F08080 !important;
}
.text-lightcoral {
color: #F08080 !important;
}
.bg-lightcyan {
background-color: #E0FFFF !important;
}
.text-lightcyan {
color: #E0FFFF !important;
}
.bg-lightgoldenrodyellow {
background-color: #FAFAD2 !important;
}
.text-lightgoldenrodyellow {
color: #FAFAD2 !important;
}
.bg-lightgray {
background-color: #D3D3D3 !important;
}
.text-lightgray {
color: #D3D3D3 !important;
}
.bg-lightgreen {
background-color: #90EE90 !important;
}
.text-lightgreen {
color: #90EE90 !important;
}
.bg-lightgrey {
background-color: #D3D3D3 !important;
}
.text-lightgrey {
color: #D3D3D3 !important;
}
.bg-lightpink {
background-color: #FFB6C1 !important;
}
.text-lightpink {
color: #FFB6C1 !important;
}
.bg-lightsalmon {
background-color: #FFA07A !important;
}
.text-lightsalmon {
color: #FFA07A !important;
}
.bg-lightseagreen {
background-color: #20B2AA !important;
}
.text-lightseagreen {
color: #20B2AA !important;
}
.bg-lightskyblue {
background-color: #87CEFA !important;
}
.text-lightskyblue {
color: #87CEFA !important;
}
.bg-lightslategray {
background-color: #778899 !important;
}
.text-lightslategray {
color: #778899 !important;
}
.bg-lightslategrey {
background-color: #778899 !important;
}
.text-lightslategrey {
color: #778899 !important;
}
.bg-lightsteelblue {
background-color: #B0C4DE !important;
}
.text-lightsteelblue {
color: #B0C4DE !important;
}
.bg-lightyellow {
background-color: #FFFFE0 !important;
}
.text-lightyellow {
color: #FFFFE0 !important;
}
.bg-lime {
background-color: #00FF00 !important;
}
.text-lime {
color: #00FF00 !important;
}
.bg-limegreen {
background-color: #32CD32 !important;
}
.text-limegreen {
color: #32CD32 !important;
}
.bg-linen {
background-color: #FAF0E6 !important;
}
.text-linen {
color: #FAF0E6 !important;
}
.bg-magenta {
background-color: #FF00FF !important;
}
.text-magenta {
color: #FF00FF !important;
}
.bg-maroon {
background-color: #800000 !important;
}
.text-maroon {
color: #800000 !important;
}
.bg-mediumaquamarine {
background-color: #66CDAA !important;
}
.text-mediumaquamarine {
color: #66CDAA !important;
}
.bg-mediumblue {
background-color: #0000CD !important;
}
.text-mediumblue {
color: #0000CD !important;
}
.bg-mediumorchid {
background-color: #BA55D3 !important;
}
.text-mediumorchid {
color: #BA55D3 !important;
}
.bg-mediumpurple {
background-color: #9370DB !important;
}
.text-mediumpurple {
color: #9370DB !important;
}
.bg-mediumseagreen {
background-color: #3CB371 !important;
}
.text-mediumseagreen {
color: #3CB371 !important;
}
.bg-mediumslateblue {
background-color: #7B68EE !important;
}
.text-mediumslateblue {
color: #7B68EE !important;
}
.bg-mediumspringgreen {
background-color: #00FA9A !important;
}
.text-mediumspringgreen {
color: #00FA9A !important;
}
.bg-mediumturquoise {
background-color: #48D1CC !important;
}
.text-mediumturquoise {
color: #48D1CC !important;
}
.bg-mediumvioletred {
background-color: #C71585 !important;
}
.text-mediumvioletred {
color: #C71585 !important;
}
.bg-midnightblue {
background-color: #191970 !important;
}
.text-midnightblue {
color: #191970 !important;
}
.bg-mintcream {
background-color: #F5FFFA !important;
}
.text-mintcream {
color: #F5FFFA !important;
}
.bg-mistyrose {
background-color: #FFE4E1 !important;
}
.text-mistyrose {
color: #FFE4E1 !important;
}
.bg-moccasin {
background-color: #FFE4B5 !important;
}
.text-moccasin {
color: #FFE4B5 !important;
}
.bg-navajowhite {
background-color: #FFDEAD !important;
}
.text-navajowhite {
color: #FFDEAD !important;
}
.bg-navy {
background-color: #000080 !important;
}
.text-navy {
color: #000080 !important;
}
.bg-oldlace {
background-color: #FDF5E6 !important;
}
.text-oldlace {
color: #FDF5E6 !important;
}
.bg-olive {
background-color: #808000 !important;
}
.text-olive {
color: #808000 !important;
}
.bg-olivedrab {
background-color: #6B8E23 !important;
}
.text-olivedrab {
color: #6B8E23 !important;
}
.bg-orangered {
background-color: #FF4500 !important;
}
.text-orangered {
color: #FF4500 !important;
}
.bg-orchid {
background-color: #DA70D6 !important;
}
.text-orchid {
color: #DA70D6 !important;
}
.bg-palegoldenrod {
background-color: #EEE8AA !important;
}
.text-palegoldenrod {
color: #EEE8AA !important;
}
.bg-palegreen {
background-color: #98FB98 !important;
}
.text-palegreen {
color: #98FB98 !important;
}
.bg-paleturquoise {
background-color: #AFEEEE !important;
}
.text-paleturquoise {
color: #AFEEEE !important;
}
.bg-palevioletred {
background-color: #DB7093 !important;
}
.text-palevioletred {
color: #DB7093 !important;
}
.bg-papayawhip {
background-color: #FFEFD5 !important;
}
.text-papayawhip {
color: #FFEFD5 !important;
}
.bg-peachpuff {
background-color: #FFDAB9 !important;
}
.text-peachpuff {
color: #FFDAB9 !important;
}
.bg-peru {
background-color: #CD853F !important;
}
.text-peru {
color: #CD853F !important;
}
.bg-plum {
background-color: #DDA0DD !important;
}
.text-plum {
color: #DDA0DD !important;
}
.bg-powderblue {
background-color: #B0E0E6 !important;
}
.text-powderblue {
color: #B0E0E6 !important;
}
.bg-rebeccapurple {
background-color: #663399 !important;
}
.text-rebeccapurple {
color: #663399 !important;
}
.bg-rosybrown {
background-color: #BC8F8F !important;
}
.text-rosybrown {
color: #BC8F8F !important;
}
.bg-royalblue {
background-color: #4169E1 !important;
}
.text-royalblue {
color: #4169E1 !important;
}
.bg-saddlebrown {
background-color: #8B4513 !important;
}
.text-saddlebrown {
color: #8B4513 !important;
}
.bg-salmon {
background-color: #FA8072 !important;
}
.text-salmon {
color: #FA8072 !important;
}
.bg-sandybrown {
background-color: #F4A460 !important;
}
.text-sandybrown {
color: #F4A460 !important;
}
.bg-seagreen {
background-color: #2E8B57 !important;
}
.text-seagreen {
color: #2E8B57 !important;
}
.bg-seashell {
background-color: #FFF5EE !important;
}
.text-seashell {
color: #FFF5EE !important;
}
.bg-sienna {
background-color: #A0522D !important;
}
.text-sienna {
color: #A0522D !important;
}
.bg-silver {
background-color: #C0C0C0 !important;
}
.text-silver {
color: #C0C0C0 !important;
}
.bg-skyblue {
background-color: #87CEEB !important;
}
.text-skyblue {
color: #87CEEB !important;
}
.bg-slateblue {
background-color: #6A5ACD !important;
}
.text-slateblue {
color: #6A5ACD !important;
}
.bg-slategray {
background-color: #708090 !important;
}
.text-slategray {
color: #708090 !important;
}
.bg-slategrey {
background-color: #708090 !important;
}
.text-slategrey {
color: #708090 !important;
}
.bg-snow {
background-color: #FFFAFA !important;
}
.text-snow {
color: #FFFAFA !important;
}
.bg-springgreen {
background-color: #00FF7F !important;
}
.text-springgreen {
color: #00FF7F !important;
}
.bg-steelblue {
background-color: #4682B4 !important;
}
.text-steelblue {
color: #4682B4 !important;
}
.bg-tan {
background-color: #D2B48C !important;
}
.text-tan {
color: #D2B48C !important;
}
.bg-thistle {
background-color: #D8BFD8 !important;
}
.text-thistle {
color: #D8BFD8 !important;
}
.bg-tomato {
background-color: #FF6347 !important;
}
.text-tomato {
color: #FF6347 !important;
}
.bg-turquoise {
background-color: #40E0D0 !important;
}
.text-turquoise {
color: #40E0D0 !important;
}
.bg-violet {
background-color: #EE82EE !important;
}
.text-violet {
color: #EE82EE !important;
}
.bg-wheat {
background-color: #F5DEB3 !important;
}
.text-wheat {
color: #F5DEB3 !important;
}
.bg-whitesmoke {
background-color: #F5F5F5 !important;
}
.text-whitesmoke {
color: #F5F5F5 !important;
}
.bg-yellowgreen {
background-color: #9ACD32 !important;
}
.text-yellowgreen {
color: #9ACD32 !important;
}
/*!
* Bootstrap v5.1.3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 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-gray-100: #f8f9fa;
--bs-gray-200: #e9ecef;
--bs-gray-300: #dee2e6;
--bs-gray-400: #ced4da;
--bs-gray-500: #adb5bd;
--bs-gray-600: #6c757d;
--bs-gray-700: #495057;
--bs-gray-800: #343a40;
--bs-gray-900: #212529;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-rc-red: #DA291C;
--bs-rc-wine: #A50034;
--bs-rc-blue: #002554;
--bs-rc-gold: #FFB200;
--bs-rc-silver: #808080;
--bs-rc-skyblue: #00B0F0;
--bs-aliceblue: #F0F8FF;
--bs-antiquewhite: #FAEBD7;
--bs-aqua: #00FFFF;
--bs-aquamarine: #7FFFD4;
--bs-azure: #F0FFFF;
--bs-beige: #F5F5DC;
--bs-bisque: #FFE4C4;
--bs-blanchedalmond: #FFEBCD;
--bs-blueviolet: #8A2BE2;
--bs-brown: #A52A2A;
--bs-burlywood: #DEB887;
--bs-cadetblue: #5F9EA0;
--bs-chartreuse: #7FFF00;
--bs-chocolate: #D2691E;
--bs-coral: #FF7F50;
--bs-cornflowerblue: #6495ED;
--bs-cornsilk: #FFF8DC;
--bs-crimson: #DC143C;
--bs-darkblue: #00008B;
--bs-darkcyan: #008B8B;
--bs-darkgoldenrod: #B8860B;
--bs-darkgray: #A9A9A9;
--bs-darkgreen: #006400;
--bs-darkgrey: #A9A9A9;
--bs-darkkhaki: #BDB76B;
--bs-darkmagenta: #8B008B;
--bs-darkolivegreen: #556B2F;
--bs-darkorange: #FF8C00;
--bs-darkorchid: #9932CC;
--bs-darkred: #8B0000;
--bs-darksalmon: #E9967A;
--bs-darkseagreen: #8FBC8F;
--bs-darkslateblue: #483D8B;
--bs-darkslategray: #2F4F4F;
--bs-darkslategrey: #2F4F4F;
--bs-darkturquoise: #00CED1;
--bs-darkviolet: #9400D3;
--bs-deeppink: #FF1493;
--bs-deepskyblue: #00BFFF;
--bs-dimgray: #696969;
--bs-dimgrey: #696969;
--bs-dodgerblue: #1E90FF;
--bs-firebrick: #B22222;
--bs-floralwhite: #FFFAF0;
--bs-forestgreen: #228B22;
--bs-fuchsia: #FF00FF;
--bs-gainsboro: #DCDCDC;
--bs-ghostwhite: #F8F8FF;
--bs-gold: #FFD700;
--bs-goldenrod: #DAA520;
--bs-greenyellow: #ADFF2F;
--bs-grey: #808080;
--bs-honeydew: #F0FFF0;
--bs-hotpink: #FF69B4;
--bs-indianred: #CD5C5C;
--bs-ivory: #FFFFF0;
--bs-khaki: #F0E68C;
--bs-lavender: #E6E6FA;
--bs-lavenderblush: #FFF0F5;
--bs-lawngreen: #7CFC00;
--bs-lemonchiffon: #FFFACD;
--bs-lightblue: #ADD8E6;
--bs-lightcoral: #F08080;
--bs-lightcyan: #E0FFFF;
--bs-lightgoldenrodyellow: #FAFAD2;
--bs-lightgray: #D3D3D3;
--bs-lightgreen: #90EE90;
--bs-lightgrey: #D3D3D3;
--bs-lightpink: #FFB6C1;
--bs-lightsalmon: #FFA07A;
--bs-lightseagreen: #20B2AA;
--bs-lightskyblue: #87CEFA;
--bs-lightslategray: #778899;
--bs-lightslategrey: #778899;
--bs-lightsteelblue: #B0C4DE;
--bs-lightyellow: #FFFFE0;
--bs-lime: #00FF00;
--bs-limegreen: #32CD32;
--bs-linen: #FAF0E6;
--bs-magenta: #FF00FF;
--bs-maroon: #800000;
--bs-mediumaquamarine: #66CDAA;
--bs-mediumblue: #0000CD;
--bs-mediumorchid: #BA55D3;
--bs-mediumpurple: #9370DB;
--bs-mediumseagreen: #3CB371;
--bs-mediumslateblue: #7B68EE;
--bs-mediumspringgreen: #00FA9A;
--bs-mediumturquoise: #48D1CC;
--bs-mediumvioletred: #C71585;
--bs-midnightblue: #191970;
--bs-mintcream: #F5FFFA;
--bs-mistyrose: #FFE4E1;
--bs-moccasin: #FFE4B5;
--bs-navajowhite: #FFDEAD;
--bs-navy: #000080;
--bs-oldlace: #FDF5E6;
--bs-olive: #808000;
--bs-olivedrab: #6B8E23;
--bs-orangered: #FF4500;
--bs-orchid: #DA70D6;
--bs-palegoldenrod: #EEE8AA;
--bs-palegreen: #98FB98;
--bs-paleturquoise: #AFEEEE;
--bs-palevioletred: #DB7093;
--bs-papayawhip: #FFEFD5;
--bs-peachpuff: #FFDAB9;
--bs-peru: #CD853F;
--bs-plum: #DDA0DD;
--bs-powderblue: #B0E0E6;
--bs-rebeccapurple: #663399;
--bs-rosybrown: #BC8F8F;
--bs-royalblue: #4169E1;
--bs-saddlebrown: #8B4513;
--bs-salmon: #FA8072;
--bs-sandybrown: #F4A460;
--bs-seagreen: #2E8B57;
--bs-seashell: #FFF5EE;
--bs-sienna: #A0522D;
--bs-silver: #C0C0C0;
--bs-skyblue: #87CEEB;
--bs-slateblue: #6A5ACD;
--bs-slategray: #708090;
--bs-slategrey: #708090;
--bs-snow: #FFFAFA;
--bs-springgreen: #00FF7F;
--bs-steelblue: #4682B4;
--bs-tan: #D2B48C;
--bs-thistle: #D8BFD8;
--bs-tomato: #FF6347;
--bs-turquoise: #40E0D0;
--bs-violet: #EE82EE;
--bs-wheat: #F5DEB3;
--bs-whitesmoke: #F5F5F5;
--bs-yellowgreen: #9ACD32;
--bs-primary-rgb: 13, 110, 253;
--bs-secondary-rgb: 108, 117, 125;
--bs-success-rgb: 25, 135, 84;
--bs-info-rgb: 13, 202, 240;
--bs-warning-rgb: 255, 193, 7;
--bs-danger-rgb: 220, 53, 69;
--bs-light-rgb: 248, 249, 250;
--bs-dark-rgb: 33, 37, 41;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--bs-body-color-rgb: 33, 37, 41;
--bs-body-bg-rgb: 255, 255, 255;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
--bs-body-font-family: var(--bs-font-sans-serif);
--bs-body-font-size: 1rem;
--bs-body-font-weight: 400;
--bs-body-line-height: 1.5;
--bs-body-color: #212529;
--bs-body-bg: #fff;
}
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: var(--bs-body-font-family);
font-size: var(--bs-body-font-size);
font-weight: var(--bs-body-font-weight);
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
text-align: var(--bs-body-text-align);
background-color: var(--bs-body-bg);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
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] {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul {
padding-left: 2rem;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small, .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: -.25em;
}
sup {
top: -.5em;
}
a {
color: #0d6efd;
text-decoration: underline;
}
a:hover {
color: #0a58ca;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
pre,
code,
kbd,
samp {
font-family: var(--bs-font-monospace);
font-size: 1em;
direction: ltr /* rtl:ignore */;
unicode-bidi: bidi-override;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
font-size: 0.875em;
color: #d63384;
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 0.875em;
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
font-size: 1em;
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
img,
svg {
vertical-align: middle;
}
table {
caption-side: bottom;
border-collapse: collapse;
}
caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: left;
}
th {
text-align: inherit;
text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
select {
text-transform: none;
}
[role="button"] {
cursor: pointer;
}
select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
display: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
float: left;
width: 100%;
padding: 0;
margin-bottom: 0.5rem;
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
}
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
}
legend + * {
clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
*/
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
padding: 0;
}
::file-selector-button {
font: inherit;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
iframe {
border: 0;
}
summary {
display: list-item;
cursor: pointer;
}
progress {
vertical-align: baseline;
}
[hidden] {
display: none !important;
}
.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\00A0";
}
.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-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
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, .container-sm {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container, .container-sm, .container-md {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container, .container-sm, .container-md, .container-lg {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container, .container-sm, .container-md, .container-lg, .container-xl {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
max-width: 1320px;
}
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: calc(-1 * var(--bs-gutter-y));
margin-right: calc(-.5 * var(--bs-gutter-x));
margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > * {
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
.col {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.33333%;
}
.offset-2 {
margin-left: 16.66667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.33333%;
}
.offset-5 {
margin-left: 41.66667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.33333%;
}
.offset-8 {
margin-left: 66.66667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.33333%;
}
.offset-11 {
margin-left: 91.66667%;
}
.g-0,
.gx-0 {
--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
.col-sm {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-sm-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.33333%;
}
.offset-sm-2 {
margin-left: 16.66667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.33333%;
}
.offset-sm-5 {
margin-left: 41.66667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.33333%;
}
.offset-sm-8 {
margin-left: 66.66667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.33333%;
}
.offset-sm-11 {
margin-left: 91.66667%;
}
.g-sm-0,
.gx-sm-0 {
--bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
--bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
--bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
--bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
--bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
--bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
--bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
--bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
--bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
--bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
--bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 768px) {
.col-md {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-md-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-md-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-md-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-md-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-md-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-md-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-md-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-md-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-md-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.33333%;
}
.offset-md-2 {
margin-left: 16.66667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.33333%;
}
.offset-md-5 {
margin-left: 41.66667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.33333%;
}
.offset-md-8 {
margin-left: 66.66667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.33333%;
}
.offset-md-11 {
margin-left: 91.66667%;
}
.g-md-0,
.gx-md-0 {
--bs-gutter-x: 0;
}
.g-md-0,
.gy-md-0 {
--bs-gutter-y: 0;
}
.g-md-1,
.gx-md-1 {
--bs-gutter-x: 0.25rem;
}
.g-md-1,
.gy-md-1 {
--bs-gutter-y: 0.25rem;
}
.g-md-2,
.gx-md-2 {
--bs-gutter-x: 0.5rem;
}
.g-md-2,
.gy-md-2 {
--bs-gutter-y: 0.5rem;
}
.g-md-3,
.gx-md-3 {
--bs-gutter-x: 1rem;
}
.g-md-3,
.gy-md-3 {
--bs-gutter-y: 1rem;
}
.g-md-4,
.gx-md-4 {
--bs-gutter-x: 1.5rem;
}
.g-md-4,
.gy-md-4 {
--bs-gutter-y: 1.5rem;
}
.g-md-5,
.gx-md-5 {
--bs-gutter-x: 3rem;
}
.g-md-5,
.gy-md-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 992px) {
.col-lg {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-lg-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-lg-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-lg-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-lg-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-lg-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-lg-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-lg-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-lg-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-lg-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.33333%;
}
.offset-lg-2 {
margin-left: 16.66667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.33333%;
}
.offset-lg-5 {
margin-left: 41.66667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.33333%;
}
.offset-lg-8 {
margin-left: 66.66667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.33333%;
}
.offset-lg-11 {
margin-left: 91.66667%;
}
.g-lg-0,
.gx-lg-0 {
--bs-gutter-x: 0;
}
.g-lg-0,
.gy-lg-0 {
--bs-gutter-y: 0;
}
.g-lg-1,
.gx-lg-1 {
--bs-gutter-x: 0.25rem;
}
.g-lg-1,
.gy-lg-1 {
--bs-gutter-y: 0.25rem;
}
.g-lg-2,
.gx-lg-2 {
--bs-gutter-x: 0.5rem;
}
.g-lg-2,
.gy-lg-2 {
--bs-gutter-y: 0.5rem;
}
.g-lg-3,
.gx-lg-3 {
--bs-gutter-x: 1rem;
}
.g-lg-3,
.gy-lg-3 {
--bs-gutter-y: 1rem;
}
.g-lg-4,
.gx-lg-4 {
--bs-gutter-x: 1.5rem;
}
.g-lg-4,
.gy-lg-4 {
--bs-gutter-y: 1.5rem;
}
.g-lg-5,
.gx-lg-5 {
--bs-gutter-x: 3rem;
}
.g-lg-5,
.gy-lg-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1200px) {
.col-xl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.33333%;
}
.offset-xl-2 {
margin-left: 16.66667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.33333%;
}
.offset-xl-5 {
margin-left: 41.66667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.33333%;
}
.offset-xl-8 {
margin-left: 66.66667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.33333%;
}
.offset-xl-11 {
margin-left: 91.66667%;
}
.g-xl-0,
.gx-xl-0 {
--bs-gutter-x: 0;
}
.g-xl-0,
.gy-xl-0 {
--bs-gutter-y: 0;
}
.g-xl-1,
.gx-xl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xl-1,
.gy-xl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xl-2,
.gx-xl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xl-2,
.gy-xl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xl-3,
.gx-xl-3 {
--bs-gutter-x: 1rem;
}
.g-xl-3,
.gy-xl-3 {
--bs-gutter-y: 1rem;
}
.g-xl-4,
.gx-xl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xl-4,
.gy-xl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xl-5,
.gx-xl-5 {
--bs-gutter-x: 3rem;
}
.g-xl-5,
.gy-xl-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1400px) {
.col-xxl {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.row-cols-xxl-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 8.33333%;
}
.col-xxl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 16.66667%;
}
.col-xxl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 33.33333%;
}
.col-xxl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 41.66667%;
}
.col-xxl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 58.33333%;
}
.col-xxl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 66.66667%;
}
.col-xxl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 83.33333%;
}
.col-xxl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 91.66667%;
}
.col-xxl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.33333%;
}
.offset-xxl-2 {
margin-left: 16.66667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.33333%;
}
.offset-xxl-5 {
margin-left: 41.66667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.33333%;
}
.offset-xxl-8 {
margin-left: 66.66667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.33333%;
}
.offset-xxl-11 {
margin-left: 91.66667%;
}
.g-xxl-0,
.gx-xxl-0 {
--bs-gutter-x: 0;
}
.g-xxl-0,
.gy-xxl-0 {
--bs-gutter-y: 0;
}
.g-xxl-1,
.gx-xxl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xxl-1,
.gy-xxl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xxl-2,
.gx-xxl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xxl-2,
.gy-xxl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xxl-3,
.gx-xxl-3 {
--bs-gutter-x: 1rem;
}
.g-xxl-3,
.gy-xxl-3 {
--bs-gutter-y: 1rem;
}
.g-xxl-4,
.gx-xxl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xxl-4,
.gy-xxl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xxl-5,
.gx-xxl-5 {
--bs-gutter-x: 3rem;
}
.g-xxl-5,
.gy-xxl-5 {
--bs-gutter-y: 3rem;
}
}
.table {
--bs-table-bg: transparent;
--bs-table-accent-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);
border-bottom-width: 1px;
-webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
vertical-align: inherit;
}
.table > thead {
vertical-align: bottom;
}
.table > :not(:first-child) {
border-top: 2px solid 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-borderless > :not(:first-child) {
border-top-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;
-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control {
-webkit-transition: none;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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::-webkit-input-placeholder {
color: #6c757d;
opacity: 1;
}
.form-control:-ms-input-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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control::file-selector-button {
-webkit-transition: none;
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, -webkit-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, -webkit-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;
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, -webkit-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 {
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 2.25rem 0.375rem 0.75rem;
-moz-padding-start: calc(0.75rem - 3px);
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
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-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-select {
-webkit-transition: none;
transition: none;
}
}
.form-select:focus {
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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 {
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;
border-radius: 0.2rem;
}
.form-select-lg {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.25rem;
border-radius: 0.3rem;
}
.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;
color-adjust: exact;
}
.form-check-input[type="checkbox"] {
border-radius: 0.25em;
}
.form-check-input[type="radio"] {
border-radius: 50%;
}
.form-check-input:active {
-webkit-filter: brightness(90%);
filter: brightness(90%);
}
.form-check-input:focus {
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
-webkit-filter: 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;
-webkit-transition: background-position 0.15s ease-in-out;
transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-switch .form-check-input {
-webkit-transition: none;
transition: none;
}
}
.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;
-webkit-filter: 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: 0;
}
.form-range:focus::-webkit-slider-thumb {
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-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;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.form-range::-moz-range-thumb {
-webkit-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);
line-height: 1.25;
}
.form-floating > label {
position: absolute;
top: 0;
left: 0;
height: 100%;
padding: 1rem 0.75rem;
pointer-events: none;
border: 1px solid transparent;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-floating > label {
-webkit-transition: none;
transition: none;
}
}
.form-floating > .form-control {
padding: 1rem 0.75rem;
}
.form-floating > .form-control::-webkit-input-placeholder {
color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
color: transparent;
}
.form-floating > .form-control::placeholder {
color: transparent;
}
.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:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
opacity: 0.65;
-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
opacity: 0.65;
-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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: 3rem;
}
.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: .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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
padding-right: 4.125rem;
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 2.25rem;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
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: .5em;
}
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
.input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
z-index: 3;
}
.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: .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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
padding-right: 4.125rem;
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 2.25rem;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
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: .5em;
}
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
.input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
z-index: 3;
}
.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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
-webkit-transition: none;
transition: none;
}
}
.btn:hover {
color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
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-rc-red {
color: #fff;
background-color: #DA291C;
border-color: #DA291C;
}
.btn-rc-red:hover {
color: #fff;
background-color: #b92318;
border-color: #ae2116;
}
.btn-check:focus + .btn-rc-red, .btn-rc-red:focus {
color: #fff;
background-color: #b92318;
border-color: #ae2116;
-webkit-box-shadow: 0 0 0 0.25rem rgba(224, 73, 62, 0.5);
box-shadow: 0 0 0 0.25rem rgba(224, 73, 62, 0.5);
}
.btn-check:checked + .btn-rc-red,
.btn-check:active + .btn-rc-red, .btn-rc-red:active, .btn-rc-red.active,
.show > .btn-rc-red.dropdown-toggle {
color: #fff;
background-color: #ae2116;
border-color: #a41f15;
}
.btn-check:checked + .btn-rc-red:focus,
.btn-check:active + .btn-rc-red:focus, .btn-rc-red:active:focus, .btn-rc-red.active:focus,
.show > .btn-rc-red.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(224, 73, 62, 0.5);
box-shadow: 0 0 0 0.25rem rgba(224, 73, 62, 0.5);
}
.btn-rc-red:disabled, .btn-rc-red.disabled {
color: #fff;
background-color: #DA291C;
border-color: #DA291C;
}
.btn-rc-wine {
color: #fff;
background-color: #A50034;
border-color: #A50034;
}
.btn-rc-wine:hover {
color: #fff;
background-color: #8c002c;
border-color: #84002a;
}
.btn-check:focus + .btn-rc-wine, .btn-rc-wine:focus {
color: #fff;
background-color: #8c002c;
border-color: #84002a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 38, 82, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 38, 82, 0.5);
}
.btn-check:checked + .btn-rc-wine,
.btn-check:active + .btn-rc-wine, .btn-rc-wine:active, .btn-rc-wine.active,
.show > .btn-rc-wine.dropdown-toggle {
color: #fff;
background-color: #84002a;
border-color: #7c0027;
}
.btn-check:checked + .btn-rc-wine:focus,
.btn-check:active + .btn-rc-wine:focus, .btn-rc-wine:active:focus, .btn-rc-wine.active:focus,
.show > .btn-rc-wine.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 38, 82, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 38, 82, 0.5);
}
.btn-rc-wine:disabled, .btn-rc-wine.disabled {
color: #fff;
background-color: #A50034;
border-color: #A50034;
}
.btn-rc-blue {
color: #fff;
background-color: #002554;
border-color: #002554;
}
.btn-rc-blue:hover {
color: #fff;
background-color: #001f47;
border-color: #001e43;
}
.btn-check:focus + .btn-rc-blue, .btn-rc-blue:focus {
color: #fff;
background-color: #001f47;
border-color: #001e43;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 70, 110, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 70, 110, 0.5);
}
.btn-check:checked + .btn-rc-blue,
.btn-check:active + .btn-rc-blue, .btn-rc-blue:active, .btn-rc-blue.active,
.show > .btn-rc-blue.dropdown-toggle {
color: #fff;
background-color: #001e43;
border-color: #001c3f;
}
.btn-check:checked + .btn-rc-blue:focus,
.btn-check:active + .btn-rc-blue:focus, .btn-rc-blue:active:focus, .btn-rc-blue.active:focus,
.show > .btn-rc-blue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 70, 110, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 70, 110, 0.5);
}
.btn-rc-blue:disabled, .btn-rc-blue.disabled {
color: #fff;
background-color: #002554;
border-color: #002554;
}
.btn-rc-gold {
color: #000;
background-color: #FFB200;
border-color: #FFB200;
}
.btn-rc-gold:hover {
color: #000;
background-color: #ffbe26;
border-color: #ffba1a;
}
.btn-check:focus + .btn-rc-gold, .btn-rc-gold:focus {
color: #000;
background-color: #ffbe26;
border-color: #ffba1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 151, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 151, 0, 0.5);
}
.btn-check:checked + .btn-rc-gold,
.btn-check:active + .btn-rc-gold, .btn-rc-gold:active, .btn-rc-gold.active,
.show > .btn-rc-gold.dropdown-toggle {
color: #000;
background-color: #ffc133;
border-color: #ffba1a;
}
.btn-check:checked + .btn-rc-gold:focus,
.btn-check:active + .btn-rc-gold:focus, .btn-rc-gold:active:focus, .btn-rc-gold.active:focus,
.show > .btn-rc-gold.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 151, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 151, 0, 0.5);
}
.btn-rc-gold:disabled, .btn-rc-gold.disabled {
color: #000;
background-color: #FFB200;
border-color: #FFB200;
}
.btn-rc-silver {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-rc-silver:hover {
color: #000;
background-color: #939393;
border-color: #8d8d8d;
}
.btn-check:focus + .btn-rc-silver, .btn-rc-silver:focus {
color: #000;
background-color: #939393;
border-color: #8d8d8d;
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
}
.btn-check:checked + .btn-rc-silver,
.btn-check:active + .btn-rc-silver, .btn-rc-silver:active, .btn-rc-silver.active,
.show > .btn-rc-silver.dropdown-toggle {
color: #000;
background-color: #999999;
border-color: #8d8d8d;
}
.btn-check:checked + .btn-rc-silver:focus,
.btn-check:active + .btn-rc-silver:focus, .btn-rc-silver:active:focus, .btn-rc-silver.active:focus,
.show > .btn-rc-silver.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
}
.btn-rc-silver:disabled, .btn-rc-silver.disabled {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-rc-skyblue {
color: #000;
background-color: #00B0F0;
border-color: #00B0F0;
}
.btn-rc-skyblue:hover {
color: #000;
background-color: #26bcf2;
border-color: #1ab8f2;
}
.btn-check:focus + .btn-rc-skyblue, .btn-rc-skyblue:focus {
color: #000;
background-color: #26bcf2;
border-color: #1ab8f2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 150, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 150, 204, 0.5);
}
.btn-check:checked + .btn-rc-skyblue,
.btn-check:active + .btn-rc-skyblue, .btn-rc-skyblue:active, .btn-rc-skyblue.active,
.show > .btn-rc-skyblue.dropdown-toggle {
color: #000;
background-color: #33c0f3;
border-color: #1ab8f2;
}
.btn-check:checked + .btn-rc-skyblue:focus,
.btn-check:active + .btn-rc-skyblue:focus, .btn-rc-skyblue:active:focus, .btn-rc-skyblue.active:focus,
.show > .btn-rc-skyblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 150, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 150, 204, 0.5);
}
.btn-rc-skyblue:disabled, .btn-rc-skyblue.disabled {
color: #000;
background-color: #00B0F0;
border-color: #00B0F0;
}
.btn-aliceblue {
color: #000;
background-color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-aliceblue:hover {
color: #000;
background-color: #f2f9ff;
border-color: #f2f9ff;
}
.btn-check:focus + .btn-aliceblue, .btn-aliceblue:focus {
color: #000;
background-color: #f2f9ff;
border-color: #f2f9ff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 211, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 211, 217, 0.5);
}
.btn-check:checked + .btn-aliceblue,
.btn-check:active + .btn-aliceblue, .btn-aliceblue:active, .btn-aliceblue.active,
.show > .btn-aliceblue.dropdown-toggle {
color: #000;
background-color: #f3f9ff;
border-color: #f2f9ff;
}
.btn-check:checked + .btn-aliceblue:focus,
.btn-check:active + .btn-aliceblue:focus, .btn-aliceblue:active:focus, .btn-aliceblue.active:focus,
.show > .btn-aliceblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 211, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 211, 217, 0.5);
}
.btn-aliceblue:disabled, .btn-aliceblue.disabled {
color: #000;
background-color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-antiquewhite {
color: #000;
background-color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-antiquewhite:hover {
color: #000;
background-color: #fbeedd;
border-color: #fbeddb;
}
.btn-check:focus + .btn-antiquewhite, .btn-antiquewhite:focus {
color: #000;
background-color: #fbeedd;
border-color: #fbeddb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 200, 183, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 200, 183, 0.5);
}
.btn-check:checked + .btn-antiquewhite,
.btn-check:active + .btn-antiquewhite, .btn-antiquewhite:active, .btn-antiquewhite.active,
.show > .btn-antiquewhite.dropdown-toggle {
color: #000;
background-color: #fbefdf;
border-color: #fbeddb;
}
.btn-check:checked + .btn-antiquewhite:focus,
.btn-check:active + .btn-antiquewhite:focus, .btn-antiquewhite:active:focus, .btn-antiquewhite.active:focus,
.show > .btn-antiquewhite.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 200, 183, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 200, 183, 0.5);
}
.btn-antiquewhite:disabled, .btn-antiquewhite.disabled {
color: #000;
background-color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-aqua {
color: #000;
background-color: #00FFFF;
border-color: #00FFFF;
}
.btn-aqua:hover {
color: #000;
background-color: #26ffff;
border-color: #1affff;
}
.btn-check:focus + .btn-aqua, .btn-aqua:focus {
color: #000;
background-color: #26ffff;
border-color: #1affff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 217, 0.5);
}
.btn-check:checked + .btn-aqua,
.btn-check:active + .btn-aqua, .btn-aqua:active, .btn-aqua.active,
.show > .btn-aqua.dropdown-toggle {
color: #000;
background-color: #33ffff;
border-color: #1affff;
}
.btn-check:checked + .btn-aqua:focus,
.btn-check:active + .btn-aqua:focus, .btn-aqua:active:focus, .btn-aqua.active:focus,
.show > .btn-aqua.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 217, 0.5);
}
.btn-aqua:disabled, .btn-aqua.disabled {
color: #000;
background-color: #00FFFF;
border-color: #00FFFF;
}
.btn-aquamarine {
color: #000;
background-color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-aquamarine:hover {
color: #000;
background-color: #92ffda;
border-color: #8cffd8;
}
.btn-check:focus + .btn-aquamarine, .btn-aquamarine:focus {
color: #000;
background-color: #92ffda;
border-color: #8cffd8;
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 217, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(108, 217, 180, 0.5);
}
.btn-check:checked + .btn-aquamarine,
.btn-check:active + .btn-aquamarine, .btn-aquamarine:active, .btn-aquamarine.active,
.show > .btn-aquamarine.dropdown-toggle {
color: #000;
background-color: #99ffdd;
border-color: #8cffd8;
}
.btn-check:checked + .btn-aquamarine:focus,
.btn-check:active + .btn-aquamarine:focus, .btn-aquamarine:active:focus, .btn-aquamarine.active:focus,
.show > .btn-aquamarine.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 217, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(108, 217, 180, 0.5);
}
.btn-aquamarine:disabled, .btn-aquamarine.disabled {
color: #000;
background-color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-azure {
color: #000;
background-color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-azure:hover {
color: #000;
background-color: #f2ffff;
border-color: #f2ffff;
}
.btn-check:focus + .btn-azure, .btn-azure:focus {
color: #000;
background-color: #f2ffff;
border-color: #f2ffff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 217, 217, 0.5);
}
.btn-check:checked + .btn-azure,
.btn-check:active + .btn-azure, .btn-azure:active, .btn-azure.active,
.show > .btn-azure.dropdown-toggle {
color: #000;
background-color: #f3ffff;
border-color: #f2ffff;
}
.btn-check:checked + .btn-azure:focus,
.btn-check:active + .btn-azure:focus, .btn-azure:active:focus, .btn-azure.active:focus,
.show > .btn-azure.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 217, 217, 0.5);
}
.btn-azure:disabled, .btn-azure.disabled {
color: #000;
background-color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-beige {
color: #000;
background-color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-beige:hover {
color: #000;
background-color: #f7f7e1;
border-color: #f6f6e0;
}
.btn-check:focus + .btn-beige, .btn-beige:focus {
color: #000;
background-color: #f7f7e1;
border-color: #f6f6e0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 208, 187, 0.5);
}
.btn-check:checked + .btn-beige,
.btn-check:active + .btn-beige, .btn-beige:active, .btn-beige.active,
.show > .btn-beige.dropdown-toggle {
color: #000;
background-color: #f7f7e3;
border-color: #f6f6e0;
}
.btn-check:checked + .btn-beige:focus,
.btn-check:active + .btn-beige:focus, .btn-beige:active:focus, .btn-beige.active:focus,
.show > .btn-beige.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 208, 187, 0.5);
}
.btn-beige:disabled, .btn-beige.disabled {
color: #000;
background-color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-bisque {
color: #000;
background-color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-bisque:hover {
color: #000;
background-color: #ffe8cd;
border-color: #ffe7ca;
}
.btn-check:focus + .btn-bisque, .btn-bisque:focus {
color: #000;
background-color: #ffe8cd;
border-color: #ffe7ca;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 167, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 167, 0.5);
}
.btn-check:checked + .btn-bisque,
.btn-check:active + .btn-bisque, .btn-bisque:active, .btn-bisque.active,
.show > .btn-bisque.dropdown-toggle {
color: #000;
background-color: #ffe9d0;
border-color: #ffe7ca;
}
.btn-check:checked + .btn-bisque:focus,
.btn-check:active + .btn-bisque:focus, .btn-bisque:active:focus, .btn-bisque.active:focus,
.show > .btn-bisque.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 167, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 167, 0.5);
}
.btn-bisque:disabled, .btn-bisque.disabled {
color: #000;
background-color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-blanchedalmond {
color: #000;
background-color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-blanchedalmond:hover {
color: #000;
background-color: #ffeed5;
border-color: #ffedd2;
}
.btn-check:focus + .btn-blanchedalmond, .btn-blanchedalmond:focus {
color: #000;
background-color: #ffeed5;
border-color: #ffedd2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 200, 174, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 200, 174, 0.5);
}
.btn-check:checked + .btn-blanchedalmond,
.btn-check:active + .btn-blanchedalmond, .btn-blanchedalmond:active, .btn-blanchedalmond.active,
.show > .btn-blanchedalmond.dropdown-toggle {
color: #000;
background-color: #ffefd7;
border-color: #ffedd2;
}
.btn-check:checked + .btn-blanchedalmond:focus,
.btn-check:active + .btn-blanchedalmond:focus, .btn-blanchedalmond:active:focus, .btn-blanchedalmond.active:focus,
.show > .btn-blanchedalmond.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 200, 174, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 200, 174, 0.5);
}
.btn-blanchedalmond:disabled, .btn-blanchedalmond.disabled {
color: #000;
background-color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-blueviolet {
color: #fff;
background-color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-blueviolet:hover {
color: #fff;
background-color: #7525c0;
border-color: #6e22b5;
}
.btn-check:focus + .btn-blueviolet, .btn-blueviolet:focus {
color: #fff;
background-color: #7525c0;
border-color: #6e22b5;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 75, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 75, 230, 0.5);
}
.btn-check:checked + .btn-blueviolet,
.btn-check:active + .btn-blueviolet, .btn-blueviolet:active, .btn-blueviolet.active,
.show > .btn-blueviolet.dropdown-toggle {
color: #fff;
background-color: #6e22b5;
border-color: #6820aa;
}
.btn-check:checked + .btn-blueviolet:focus,
.btn-check:active + .btn-blueviolet:focus, .btn-blueviolet:active:focus, .btn-blueviolet.active:focus,
.show > .btn-blueviolet.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 75, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 75, 230, 0.5);
}
.btn-blueviolet:disabled, .btn-blueviolet.disabled {
color: #fff;
background-color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-brown {
color: #fff;
background-color: #A52A2A;
border-color: #A52A2A;
}
.btn-brown:hover {
color: #fff;
background-color: #8c2424;
border-color: #842222;
}
.btn-check:focus + .btn-brown, .btn-brown:focus {
color: #fff;
background-color: #8c2424;
border-color: #842222;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 74, 74, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 74, 74, 0.5);
}
.btn-check:checked + .btn-brown,
.btn-check:active + .btn-brown, .btn-brown:active, .btn-brown.active,
.show > .btn-brown.dropdown-toggle {
color: #fff;
background-color: #842222;
border-color: #7c2020;
}
.btn-check:checked + .btn-brown:focus,
.btn-check:active + .btn-brown:focus, .btn-brown:active:focus, .btn-brown.active:focus,
.show > .btn-brown.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 74, 74, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 74, 74, 0.5);
}
.btn-brown:disabled, .btn-brown.disabled {
color: #fff;
background-color: #A52A2A;
border-color: #A52A2A;
}
.btn-burlywood {
color: #000;
background-color: #DEB887;
border-color: #DEB887;
}
.btn-burlywood:hover {
color: #000;
background-color: #e3c399;
border-color: #e1bf93;
}
.btn-check:focus + .btn-burlywood, .btn-burlywood:focus {
color: #000;
background-color: #e3c399;
border-color: #e1bf93;
-webkit-box-shadow: 0 0 0 0.25rem rgba(189, 156, 115, 0.5);
box-shadow: 0 0 0 0.25rem rgba(189, 156, 115, 0.5);
}
.btn-check:checked + .btn-burlywood,
.btn-check:active + .btn-burlywood, .btn-burlywood:active, .btn-burlywood.active,
.show > .btn-burlywood.dropdown-toggle {
color: #000;
background-color: #e5c69f;
border-color: #e1bf93;
}
.btn-check:checked + .btn-burlywood:focus,
.btn-check:active + .btn-burlywood:focus, .btn-burlywood:active:focus, .btn-burlywood.active:focus,
.show > .btn-burlywood.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(189, 156, 115, 0.5);
box-shadow: 0 0 0 0.25rem rgba(189, 156, 115, 0.5);
}
.btn-burlywood:disabled, .btn-burlywood.disabled {
color: #000;
background-color: #DEB887;
border-color: #DEB887;
}
.btn-cadetblue {
color: #000;
background-color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-cadetblue:hover {
color: #000;
background-color: #77adae;
border-color: #6fa8aa;
}
.btn-check:focus + .btn-cadetblue, .btn-cadetblue:focus {
color: #000;
background-color: #77adae;
border-color: #6fa8aa;
-webkit-box-shadow: 0 0 0 0.25rem rgba(81, 134, 136, 0.5);
box-shadow: 0 0 0 0.25rem rgba(81, 134, 136, 0.5);
}
.btn-check:checked + .btn-cadetblue,
.btn-check:active + .btn-cadetblue, .btn-cadetblue:active, .btn-cadetblue.active,
.show > .btn-cadetblue.dropdown-toggle {
color: #000;
background-color: #7fb1b3;
border-color: #6fa8aa;
}
.btn-check:checked + .btn-cadetblue:focus,
.btn-check:active + .btn-cadetblue:focus, .btn-cadetblue:active:focus, .btn-cadetblue.active:focus,
.show > .btn-cadetblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(81, 134, 136, 0.5);
box-shadow: 0 0 0 0.25rem rgba(81, 134, 136, 0.5);
}
.btn-cadetblue:disabled, .btn-cadetblue.disabled {
color: #000;
background-color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-chartreuse {
color: #000;
background-color: #7FFF00;
border-color: #7FFF00;
}
.btn-chartreuse:hover {
color: #000;
background-color: #92ff26;
border-color: #8cff1a;
}
.btn-check:focus + .btn-chartreuse, .btn-chartreuse:focus {
color: #000;
background-color: #92ff26;
border-color: #8cff1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 217, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(108, 217, 0, 0.5);
}
.btn-check:checked + .btn-chartreuse,
.btn-check:active + .btn-chartreuse, .btn-chartreuse:active, .btn-chartreuse.active,
.show > .btn-chartreuse.dropdown-toggle {
color: #000;
background-color: #99ff33;
border-color: #8cff1a;
}
.btn-check:checked + .btn-chartreuse:focus,
.btn-check:active + .btn-chartreuse:focus, .btn-chartreuse:active:focus, .btn-chartreuse.active:focus,
.show > .btn-chartreuse.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 217, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(108, 217, 0, 0.5);
}
.btn-chartreuse:disabled, .btn-chartreuse.disabled {
color: #000;
background-color: #7FFF00;
border-color: #7FFF00;
}
.btn-chocolate {
color: #000;
background-color: #D2691E;
border-color: #D2691E;
}
.btn-chocolate:hover {
color: #000;
background-color: #d98040;
border-color: #d77835;
}
.btn-check:focus + .btn-chocolate, .btn-chocolate:focus {
color: #000;
background-color: #d98040;
border-color: #d77835;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 89, 26, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 89, 26, 0.5);
}
.btn-check:checked + .btn-chocolate,
.btn-check:active + .btn-chocolate, .btn-chocolate:active, .btn-chocolate.active,
.show > .btn-chocolate.dropdown-toggle {
color: #000;
background-color: #db874b;
border-color: #d77835;
}
.btn-check:checked + .btn-chocolate:focus,
.btn-check:active + .btn-chocolate:focus, .btn-chocolate:active:focus, .btn-chocolate.active:focus,
.show > .btn-chocolate.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 89, 26, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 89, 26, 0.5);
}
.btn-chocolate:disabled, .btn-chocolate.disabled {
color: #000;
background-color: #D2691E;
border-color: #D2691E;
}
.btn-coral {
color: #000;
background-color: #FF7F50;
border-color: #FF7F50;
}
.btn-coral:hover {
color: #000;
background-color: #ff926a;
border-color: #ff8c62;
}
.btn-check:focus + .btn-coral, .btn-coral:focus {
color: #000;
background-color: #ff926a;
border-color: #ff8c62;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 108, 68, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 108, 68, 0.5);
}
.btn-check:checked + .btn-coral,
.btn-check:active + .btn-coral, .btn-coral:active, .btn-coral.active,
.show > .btn-coral.dropdown-toggle {
color: #000;
background-color: #ff9973;
border-color: #ff8c62;
}
.btn-check:checked + .btn-coral:focus,
.btn-check:active + .btn-coral:focus, .btn-coral:active:focus, .btn-coral.active:focus,
.show > .btn-coral.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 108, 68, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 108, 68, 0.5);
}
.btn-coral:disabled, .btn-coral.disabled {
color: #000;
background-color: #FF7F50;
border-color: #FF7F50;
}
.btn-cornflowerblue {
color: #000;
background-color: #6495ED;
border-color: #6495ED;
}
.btn-cornflowerblue:hover {
color: #000;
background-color: #7ba5f0;
border-color: #74a0ef;
}
.btn-check:focus + .btn-cornflowerblue, .btn-cornflowerblue:focus {
color: #000;
background-color: #7ba5f0;
border-color: #74a0ef;
-webkit-box-shadow: 0 0 0 0.25rem rgba(85, 127, 201, 0.5);
box-shadow: 0 0 0 0.25rem rgba(85, 127, 201, 0.5);
}
.btn-check:checked + .btn-cornflowerblue,
.btn-check:active + .btn-cornflowerblue, .btn-cornflowerblue:active, .btn-cornflowerblue.active,
.show > .btn-cornflowerblue.dropdown-toggle {
color: #000;
background-color: #83aaf1;
border-color: #74a0ef;
}
.btn-check:checked + .btn-cornflowerblue:focus,
.btn-check:active + .btn-cornflowerblue:focus, .btn-cornflowerblue:active:focus, .btn-cornflowerblue.active:focus,
.show > .btn-cornflowerblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(85, 127, 201, 0.5);
box-shadow: 0 0 0 0.25rem rgba(85, 127, 201, 0.5);
}
.btn-cornflowerblue:disabled, .btn-cornflowerblue.disabled {
color: #000;
background-color: #6495ED;
border-color: #6495ED;
}
.btn-cornsilk {
color: #000;
background-color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-cornsilk:hover {
color: #000;
background-color: #fff9e1;
border-color: #fff9e0;
}
.btn-check:focus + .btn-cornsilk, .btn-cornsilk:focus {
color: #000;
background-color: #fff9e1;
border-color: #fff9e0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 211, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 211, 187, 0.5);
}
.btn-check:checked + .btn-cornsilk,
.btn-check:active + .btn-cornsilk, .btn-cornsilk:active, .btn-cornsilk.active,
.show > .btn-cornsilk.dropdown-toggle {
color: #000;
background-color: #fff9e3;
border-color: #fff9e0;
}
.btn-check:checked + .btn-cornsilk:focus,
.btn-check:active + .btn-cornsilk:focus, .btn-cornsilk:active:focus, .btn-cornsilk.active:focus,
.show > .btn-cornsilk.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 211, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 211, 187, 0.5);
}
.btn-cornsilk:disabled, .btn-cornsilk.disabled {
color: #000;
background-color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-crimson {
color: #fff;
background-color: #DC143C;
border-color: #DC143C;
}
.btn-crimson:hover {
color: #fff;
background-color: #bb1133;
border-color: #b01030;
}
.btn-check:focus + .btn-crimson, .btn-crimson:focus {
color: #fff;
background-color: #bb1133;
border-color: #b01030;
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 55, 89, 0.5);
box-shadow: 0 0 0 0.25rem rgba(225, 55, 89, 0.5);
}
.btn-check:checked + .btn-crimson,
.btn-check:active + .btn-crimson, .btn-crimson:active, .btn-crimson.active,
.show > .btn-crimson.dropdown-toggle {
color: #fff;
background-color: #b01030;
border-color: #a50f2d;
}
.btn-check:checked + .btn-crimson:focus,
.btn-check:active + .btn-crimson:focus, .btn-crimson:active:focus, .btn-crimson.active:focus,
.show > .btn-crimson.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(225, 55, 89, 0.5);
box-shadow: 0 0 0 0.25rem rgba(225, 55, 89, 0.5);
}
.btn-crimson:disabled, .btn-crimson.disabled {
color: #fff;
background-color: #DC143C;
border-color: #DC143C;
}
.btn-darkblue {
color: #fff;
background-color: #00008B;
border-color: #00008B;
}
.btn-darkblue:hover {
color: #fff;
background-color: #000076;
border-color: #00006f;
}
.btn-check:focus + .btn-darkblue, .btn-darkblue:focus {
color: #fff;
background-color: #000076;
border-color: #00006f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 156, 0.5);
}
.btn-check:checked + .btn-darkblue,
.btn-check:active + .btn-darkblue, .btn-darkblue:active, .btn-darkblue.active,
.show > .btn-darkblue.dropdown-toggle {
color: #fff;
background-color: #00006f;
border-color: #000068;
}
.btn-check:checked + .btn-darkblue:focus,
.btn-check:active + .btn-darkblue:focus, .btn-darkblue:active:focus, .btn-darkblue.active:focus,
.show > .btn-darkblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 156, 0.5);
}
.btn-darkblue:disabled, .btn-darkblue.disabled {
color: #fff;
background-color: #00008B;
border-color: #00008B;
}
.btn-darkcyan {
color: #000;
background-color: #008B8B;
border-color: #008B8B;
}
.btn-darkcyan:hover {
color: #000;
background-color: #269c9c;
border-color: #1a9797;
}
.btn-check:focus + .btn-darkcyan, .btn-darkcyan:focus {
color: #000;
background-color: #269c9c;
border-color: #1a9797;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 118, 118, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 118, 118, 0.5);
}
.btn-check:checked + .btn-darkcyan,
.btn-check:active + .btn-darkcyan, .btn-darkcyan:active, .btn-darkcyan.active,
.show > .btn-darkcyan.dropdown-toggle {
color: #000;
background-color: #33a2a2;
border-color: #1a9797;
}
.btn-check:checked + .btn-darkcyan:focus,
.btn-check:active + .btn-darkcyan:focus, .btn-darkcyan:active:focus, .btn-darkcyan.active:focus,
.show > .btn-darkcyan.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 118, 118, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 118, 118, 0.5);
}
.btn-darkcyan:disabled, .btn-darkcyan.disabled {
color: #000;
background-color: #008B8B;
border-color: #008B8B;
}
.btn-darkgoldenrod {
color: #000;
background-color: #B8860B;
border-color: #B8860B;
}
.btn-darkgoldenrod:hover {
color: #000;
background-color: #c39830;
border-color: #bf9223;
}
.btn-check:focus + .btn-darkgoldenrod, .btn-darkgoldenrod:focus {
color: #000;
background-color: #c39830;
border-color: #bf9223;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 114, 9, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 114, 9, 0.5);
}
.btn-check:checked + .btn-darkgoldenrod,
.btn-check:active + .btn-darkgoldenrod, .btn-darkgoldenrod:active, .btn-darkgoldenrod.active,
.show > .btn-darkgoldenrod.dropdown-toggle {
color: #000;
background-color: #c69e3c;
border-color: #bf9223;
}
.btn-check:checked + .btn-darkgoldenrod:focus,
.btn-check:active + .btn-darkgoldenrod:focus, .btn-darkgoldenrod:active:focus, .btn-darkgoldenrod.active:focus,
.show > .btn-darkgoldenrod.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 114, 9, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 114, 9, 0.5);
}
.btn-darkgoldenrod:disabled, .btn-darkgoldenrod.disabled {
color: #000;
background-color: #B8860B;
border-color: #B8860B;
}
.btn-darkgray {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-darkgray:hover {
color: #000;
background-color: #b6b6b6;
border-color: #b2b2b2;
}
.btn-check:focus + .btn-darkgray, .btn-darkgray:focus {
color: #000;
background-color: #b6b6b6;
border-color: #b2b2b2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
}
.btn-check:checked + .btn-darkgray,
.btn-check:active + .btn-darkgray, .btn-darkgray:active, .btn-darkgray.active,
.show > .btn-darkgray.dropdown-toggle {
color: #000;
background-color: #bababa;
border-color: #b2b2b2;
}
.btn-check:checked + .btn-darkgray:focus,
.btn-check:active + .btn-darkgray:focus, .btn-darkgray:active:focus, .btn-darkgray.active:focus,
.show > .btn-darkgray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
}
.btn-darkgray:disabled, .btn-darkgray.disabled {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-darkgreen {
color: #fff;
background-color: #006400;
border-color: #006400;
}
.btn-darkgreen:hover {
color: #fff;
background-color: #005500;
border-color: #005000;
}
.btn-check:focus + .btn-darkgreen, .btn-darkgreen:focus {
color: #fff;
background-color: #005500;
border-color: #005000;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 123, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 123, 38, 0.5);
}
.btn-check:checked + .btn-darkgreen,
.btn-check:active + .btn-darkgreen, .btn-darkgreen:active, .btn-darkgreen.active,
.show > .btn-darkgreen.dropdown-toggle {
color: #fff;
background-color: #005000;
border-color: #004b00;
}
.btn-check:checked + .btn-darkgreen:focus,
.btn-check:active + .btn-darkgreen:focus, .btn-darkgreen:active:focus, .btn-darkgreen.active:focus,
.show > .btn-darkgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 123, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 123, 38, 0.5);
}
.btn-darkgreen:disabled, .btn-darkgreen.disabled {
color: #fff;
background-color: #006400;
border-color: #006400;
}
.btn-darkgrey {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-darkgrey:hover {
color: #000;
background-color: #b6b6b6;
border-color: #b2b2b2;
}
.btn-check:focus + .btn-darkgrey, .btn-darkgrey:focus {
color: #000;
background-color: #b6b6b6;
border-color: #b2b2b2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
}
.btn-check:checked + .btn-darkgrey,
.btn-check:active + .btn-darkgrey, .btn-darkgrey:active, .btn-darkgrey.active,
.show > .btn-darkgrey.dropdown-toggle {
color: #000;
background-color: #bababa;
border-color: #b2b2b2;
}
.btn-check:checked + .btn-darkgrey:focus,
.btn-check:active + .btn-darkgrey:focus, .btn-darkgrey:active:focus, .btn-darkgrey.active:focus,
.show > .btn-darkgrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 144, 144, 0.5);
}
.btn-darkgrey:disabled, .btn-darkgrey.disabled {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-darkkhaki {
color: #000;
background-color: #BDB76B;
border-color: #BDB76B;
}
.btn-darkkhaki:hover {
color: #000;
background-color: #c7c281;
border-color: #c4be7a;
}
.btn-check:focus + .btn-darkkhaki, .btn-darkkhaki:focus {
color: #000;
background-color: #c7c281;
border-color: #c4be7a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(161, 156, 91, 0.5);
box-shadow: 0 0 0 0.25rem rgba(161, 156, 91, 0.5);
}
.btn-check:checked + .btn-darkkhaki,
.btn-check:active + .btn-darkkhaki, .btn-darkkhaki:active, .btn-darkkhaki.active,
.show > .btn-darkkhaki.dropdown-toggle {
color: #000;
background-color: #cac589;
border-color: #c4be7a;
}
.btn-check:checked + .btn-darkkhaki:focus,
.btn-check:active + .btn-darkkhaki:focus, .btn-darkkhaki:active:focus, .btn-darkkhaki.active:focus,
.show > .btn-darkkhaki.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(161, 156, 91, 0.5);
box-shadow: 0 0 0 0.25rem rgba(161, 156, 91, 0.5);
}
.btn-darkkhaki:disabled, .btn-darkkhaki.disabled {
color: #000;
background-color: #BDB76B;
border-color: #BDB76B;
}
.btn-darkmagenta {
color: #fff;
background-color: #8B008B;
border-color: #8B008B;
}
.btn-darkmagenta:hover {
color: #fff;
background-color: #760076;
border-color: #6f006f;
}
.btn-check:focus + .btn-darkmagenta, .btn-darkmagenta:focus {
color: #fff;
background-color: #760076;
border-color: #6f006f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 38, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 38, 156, 0.5);
}
.btn-check:checked + .btn-darkmagenta,
.btn-check:active + .btn-darkmagenta, .btn-darkmagenta:active, .btn-darkmagenta.active,
.show > .btn-darkmagenta.dropdown-toggle {
color: #fff;
background-color: #6f006f;
border-color: #680068;
}
.btn-check:checked + .btn-darkmagenta:focus,
.btn-check:active + .btn-darkmagenta:focus, .btn-darkmagenta:active:focus, .btn-darkmagenta.active:focus,
.show > .btn-darkmagenta.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 38, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 38, 156, 0.5);
}
.btn-darkmagenta:disabled, .btn-darkmagenta.disabled {
color: #fff;
background-color: #8B008B;
border-color: #8B008B;
}
.btn-darkolivegreen {
color: #fff;
background-color: #556B2F;
border-color: #556B2F;
}
.btn-darkolivegreen:hover {
color: #fff;
background-color: #485b28;
border-color: #445626;
}
.btn-check:focus + .btn-darkolivegreen, .btn-darkolivegreen:focus {
color: #fff;
background-color: #485b28;
border-color: #445626;
-webkit-box-shadow: 0 0 0 0.25rem rgba(111, 129, 78, 0.5);
box-shadow: 0 0 0 0.25rem rgba(111, 129, 78, 0.5);
}
.btn-check:checked + .btn-darkolivegreen,
.btn-check:active + .btn-darkolivegreen, .btn-darkolivegreen:active, .btn-darkolivegreen.active,
.show > .btn-darkolivegreen.dropdown-toggle {
color: #fff;
background-color: #445626;
border-color: #405023;
}
.btn-check:checked + .btn-darkolivegreen:focus,
.btn-check:active + .btn-darkolivegreen:focus, .btn-darkolivegreen:active:focus, .btn-darkolivegreen.active:focus,
.show > .btn-darkolivegreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(111, 129, 78, 0.5);
box-shadow: 0 0 0 0.25rem rgba(111, 129, 78, 0.5);
}
.btn-darkolivegreen:disabled, .btn-darkolivegreen.disabled {
color: #fff;
background-color: #556B2F;
border-color: #556B2F;
}
.btn-darkorange {
color: #000;
background-color: #FF8C00;
border-color: #FF8C00;
}
.btn-darkorange:hover {
color: #000;
background-color: #ff9d26;
border-color: #ff981a;
}
.btn-check:focus + .btn-darkorange, .btn-darkorange:focus {
color: #000;
background-color: #ff9d26;
border-color: #ff981a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 119, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 119, 0, 0.5);
}
.btn-check:checked + .btn-darkorange,
.btn-check:active + .btn-darkorange, .btn-darkorange:active, .btn-darkorange.active,
.show > .btn-darkorange.dropdown-toggle {
color: #000;
background-color: #ffa333;
border-color: #ff981a;
}
.btn-check:checked + .btn-darkorange:focus,
.btn-check:active + .btn-darkorange:focus, .btn-darkorange:active:focus, .btn-darkorange.active:focus,
.show > .btn-darkorange.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 119, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 119, 0, 0.5);
}
.btn-darkorange:disabled, .btn-darkorange.disabled {
color: #000;
background-color: #FF8C00;
border-color: #FF8C00;
}
.btn-darkorchid {
color: #fff;
background-color: #9932CC;
border-color: #9932CC;
}
.btn-darkorchid:hover {
color: #fff;
background-color: #822bad;
border-color: #7a28a3;
}
.btn-check:focus + .btn-darkorchid, .btn-darkorchid:focus {
color: #fff;
background-color: #822bad;
border-color: #7a28a3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(168, 81, 212, 0.5);
box-shadow: 0 0 0 0.25rem rgba(168, 81, 212, 0.5);
}
.btn-check:checked + .btn-darkorchid,
.btn-check:active + .btn-darkorchid, .btn-darkorchid:active, .btn-darkorchid.active,
.show > .btn-darkorchid.dropdown-toggle {
color: #fff;
background-color: #7a28a3;
border-color: #732699;
}
.btn-check:checked + .btn-darkorchid:focus,
.btn-check:active + .btn-darkorchid:focus, .btn-darkorchid:active:focus, .btn-darkorchid.active:focus,
.show > .btn-darkorchid.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(168, 81, 212, 0.5);
box-shadow: 0 0 0 0.25rem rgba(168, 81, 212, 0.5);
}
.btn-darkorchid:disabled, .btn-darkorchid.disabled {
color: #fff;
background-color: #9932CC;
border-color: #9932CC;
}
.btn-darkred {
color: #fff;
background-color: #8B0000;
border-color: #8B0000;
}
.btn-darkred:hover {
color: #fff;
background-color: #760000;
border-color: #6f0000;
}
.btn-check:focus + .btn-darkred, .btn-darkred:focus {
color: #fff;
background-color: #760000;
border-color: #6f0000;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 38, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 38, 38, 0.5);
}
.btn-check:checked + .btn-darkred,
.btn-check:active + .btn-darkred, .btn-darkred:active, .btn-darkred.active,
.show > .btn-darkred.dropdown-toggle {
color: #fff;
background-color: #6f0000;
border-color: #680000;
}
.btn-check:checked + .btn-darkred:focus,
.btn-check:active + .btn-darkred:focus, .btn-darkred:active:focus, .btn-darkred.active:focus,
.show > .btn-darkred.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 38, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 38, 38, 0.5);
}
.btn-darkred:disabled, .btn-darkred.disabled {
color: #fff;
background-color: #8B0000;
border-color: #8B0000;
}
.btn-darksalmon {
color: #000;
background-color: #E9967A;
border-color: #E9967A;
}
.btn-darksalmon:hover {
color: #000;
background-color: #eca68e;
border-color: #eba187;
}
.btn-check:focus + .btn-darksalmon, .btn-darksalmon:focus {
color: #000;
background-color: #eca68e;
border-color: #eba187;
-webkit-box-shadow: 0 0 0 0.25rem rgba(198, 128, 104, 0.5);
box-shadow: 0 0 0 0.25rem rgba(198, 128, 104, 0.5);
}
.btn-check:checked + .btn-darksalmon,
.btn-check:active + .btn-darksalmon, .btn-darksalmon:active, .btn-darksalmon.active,
.show > .btn-darksalmon.dropdown-toggle {
color: #000;
background-color: #edab95;
border-color: #eba187;
}
.btn-check:checked + .btn-darksalmon:focus,
.btn-check:active + .btn-darksalmon:focus, .btn-darksalmon:active:focus, .btn-darksalmon.active:focus,
.show > .btn-darksalmon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(198, 128, 104, 0.5);
box-shadow: 0 0 0 0.25rem rgba(198, 128, 104, 0.5);
}
.btn-darksalmon:disabled, .btn-darksalmon.disabled {
color: #000;
background-color: #E9967A;
border-color: #E9967A;
}
.btn-darkseagreen {
color: #000;
background-color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-darkseagreen:hover {
color: #000;
background-color: #a0c6a0;
border-color: #9ac39a;
}
.btn-check:focus + .btn-darkseagreen, .btn-darkseagreen:focus {
color: #000;
background-color: #a0c6a0;
border-color: #9ac39a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(122, 160, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(122, 160, 122, 0.5);
}
.btn-check:checked + .btn-darkseagreen,
.btn-check:active + .btn-darkseagreen, .btn-darkseagreen:active, .btn-darkseagreen.active,
.show > .btn-darkseagreen.dropdown-toggle {
color: #000;
background-color: #a5c9a5;
border-color: #9ac39a;
}
.btn-check:checked + .btn-darkseagreen:focus,
.btn-check:active + .btn-darkseagreen:focus, .btn-darkseagreen:active:focus, .btn-darkseagreen.active:focus,
.show > .btn-darkseagreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(122, 160, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(122, 160, 122, 0.5);
}
.btn-darkseagreen:disabled, .btn-darkseagreen.disabled {
color: #000;
background-color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-darkslateblue {
color: #fff;
background-color: #483D8B;
border-color: #483D8B;
}
.btn-darkslateblue:hover {
color: #fff;
background-color: #3d3476;
border-color: #3a316f;
}
.btn-check:focus + .btn-darkslateblue, .btn-darkslateblue:focus {
color: #fff;
background-color: #3d3476;
border-color: #3a316f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(99, 90, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(99, 90, 156, 0.5);
}
.btn-check:checked + .btn-darkslateblue,
.btn-check:active + .btn-darkslateblue, .btn-darkslateblue:active, .btn-darkslateblue.active,
.show > .btn-darkslateblue.dropdown-toggle {
color: #fff;
background-color: #3a316f;
border-color: #362e68;
}
.btn-check:checked + .btn-darkslateblue:focus,
.btn-check:active + .btn-darkslateblue:focus, .btn-darkslateblue:active:focus, .btn-darkslateblue.active:focus,
.show > .btn-darkslateblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(99, 90, 156, 0.5);
box-shadow: 0 0 0 0.25rem rgba(99, 90, 156, 0.5);
}
.btn-darkslateblue:disabled, .btn-darkslateblue.disabled {
color: #fff;
background-color: #483D8B;
border-color: #483D8B;
}
.btn-darkslategray {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-darkslategray:hover {
color: #fff;
background-color: #284343;
border-color: #263f3f;
}
.btn-check:focus + .btn-darkslategray, .btn-darkslategray:focus {
color: #fff;
background-color: #284343;
border-color: #263f3f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
}
.btn-check:checked + .btn-darkslategray,
.btn-check:active + .btn-darkslategray, .btn-darkslategray:active, .btn-darkslategray.active,
.show > .btn-darkslategray.dropdown-toggle {
color: #fff;
background-color: #263f3f;
border-color: #233b3b;
}
.btn-check:checked + .btn-darkslategray:focus,
.btn-check:active + .btn-darkslategray:focus, .btn-darkslategray:active:focus, .btn-darkslategray.active:focus,
.show > .btn-darkslategray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
}
.btn-darkslategray:disabled, .btn-darkslategray.disabled {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-darkslategrey {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-darkslategrey:hover {
color: #fff;
background-color: #284343;
border-color: #263f3f;
}
.btn-check:focus + .btn-darkslategrey, .btn-darkslategrey:focus {
color: #fff;
background-color: #284343;
border-color: #263f3f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
}
.btn-check:checked + .btn-darkslategrey,
.btn-check:active + .btn-darkslategrey, .btn-darkslategrey:active, .btn-darkslategrey.active,
.show > .btn-darkslategrey.dropdown-toggle {
color: #fff;
background-color: #263f3f;
border-color: #233b3b;
}
.btn-check:checked + .btn-darkslategrey:focus,
.btn-check:active + .btn-darkslategrey:focus, .btn-darkslategrey:active:focus, .btn-darkslategrey.active:focus,
.show > .btn-darkslategrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(78, 105, 105, 0.5);
}
.btn-darkslategrey:disabled, .btn-darkslategrey.disabled {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-darkturquoise {
color: #000;
background-color: #00CED1;
border-color: #00CED1;
}
.btn-darkturquoise:hover {
color: #000;
background-color: #26d5d8;
border-color: #1ad3d6;
}
.btn-check:focus + .btn-darkturquoise, .btn-darkturquoise:focus {
color: #000;
background-color: #26d5d8;
border-color: #1ad3d6;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 175, 178, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 175, 178, 0.5);
}
.btn-check:checked + .btn-darkturquoise,
.btn-check:active + .btn-darkturquoise, .btn-darkturquoise:active, .btn-darkturquoise.active,
.show > .btn-darkturquoise.dropdown-toggle {
color: #000;
background-color: #33d8da;
border-color: #1ad3d6;
}
.btn-check:checked + .btn-darkturquoise:focus,
.btn-check:active + .btn-darkturquoise:focus, .btn-darkturquoise:active:focus, .btn-darkturquoise.active:focus,
.show > .btn-darkturquoise.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 175, 178, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 175, 178, 0.5);
}
.btn-darkturquoise:disabled, .btn-darkturquoise.disabled {
color: #000;
background-color: #00CED1;
border-color: #00CED1;
}
.btn-darkviolet {
color: #fff;
background-color: #9400D3;
border-color: #9400D3;
}
.btn-darkviolet:hover {
color: #fff;
background-color: #7e00b3;
border-color: #7600a9;
}
.btn-check:focus + .btn-darkviolet, .btn-darkviolet:focus {
color: #fff;
background-color: #7e00b3;
border-color: #7600a9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(164, 38, 218, 0.5);
box-shadow: 0 0 0 0.25rem rgba(164, 38, 218, 0.5);
}
.btn-check:checked + .btn-darkviolet,
.btn-check:active + .btn-darkviolet, .btn-darkviolet:active, .btn-darkviolet.active,
.show > .btn-darkviolet.dropdown-toggle {
color: #fff;
background-color: #7600a9;
border-color: #6f009e;
}
.btn-check:checked + .btn-darkviolet:focus,
.btn-check:active + .btn-darkviolet:focus, .btn-darkviolet:active:focus, .btn-darkviolet.active:focus,
.show > .btn-darkviolet.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(164, 38, 218, 0.5);
box-shadow: 0 0 0 0.25rem rgba(164, 38, 218, 0.5);
}
.btn-darkviolet:disabled, .btn-darkviolet.disabled {
color: #fff;
background-color: #9400D3;
border-color: #9400D3;
}
.btn-deeppink {
color: #000;
background-color: #FF1493;
border-color: #FF1493;
}
.btn-deeppink:hover {
color: #000;
background-color: #ff37a3;
border-color: #ff2c9e;
}
.btn-check:focus + .btn-deeppink, .btn-deeppink:focus {
color: #000;
background-color: #ff37a3;
border-color: #ff2c9e;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 17, 125, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 17, 125, 0.5);
}
.btn-check:checked + .btn-deeppink,
.btn-check:active + .btn-deeppink, .btn-deeppink:active, .btn-deeppink.active,
.show > .btn-deeppink.dropdown-toggle {
color: #000;
background-color: #ff43a9;
border-color: #ff2c9e;
}
.btn-check:checked + .btn-deeppink:focus,
.btn-check:active + .btn-deeppink:focus, .btn-deeppink:active:focus, .btn-deeppink.active:focus,
.show > .btn-deeppink.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 17, 125, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 17, 125, 0.5);
}
.btn-deeppink:disabled, .btn-deeppink.disabled {
color: #000;
background-color: #FF1493;
border-color: #FF1493;
}
.btn-deepskyblue {
color: #000;
background-color: #00BFFF;
border-color: #00BFFF;
}
.btn-deepskyblue:hover {
color: #000;
background-color: #26c9ff;
border-color: #1ac5ff;
}
.btn-check:focus + .btn-deepskyblue, .btn-deepskyblue:focus {
color: #000;
background-color: #26c9ff;
border-color: #1ac5ff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 162, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 162, 217, 0.5);
}
.btn-check:checked + .btn-deepskyblue,
.btn-check:active + .btn-deepskyblue, .btn-deepskyblue:active, .btn-deepskyblue.active,
.show > .btn-deepskyblue.dropdown-toggle {
color: #000;
background-color: #33ccff;
border-color: #1ac5ff;
}
.btn-check:checked + .btn-deepskyblue:focus,
.btn-check:active + .btn-deepskyblue:focus, .btn-deepskyblue:active:focus, .btn-deepskyblue.active:focus,
.show > .btn-deepskyblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 162, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 162, 217, 0.5);
}
.btn-deepskyblue:disabled, .btn-deepskyblue.disabled {
color: #000;
background-color: #00BFFF;
border-color: #00BFFF;
}
.btn-dimgray {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-dimgray:hover {
color: #fff;
background-color: #595959;
border-color: #545454;
}
.btn-check:focus + .btn-dimgray, .btn-dimgray:focus {
color: #fff;
background-color: #595959;
border-color: #545454;
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-check:checked + .btn-dimgray,
.btn-check:active + .btn-dimgray, .btn-dimgray:active, .btn-dimgray.active,
.show > .btn-dimgray.dropdown-toggle {
color: #fff;
background-color: #545454;
border-color: #4f4f4f;
}
.btn-check:checked + .btn-dimgray:focus,
.btn-check:active + .btn-dimgray:focus, .btn-dimgray:active:focus, .btn-dimgray.active:focus,
.show > .btn-dimgray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-dimgray:disabled, .btn-dimgray.disabled {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-dimgrey {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-dimgrey:hover {
color: #fff;
background-color: #595959;
border-color: #545454;
}
.btn-check:focus + .btn-dimgrey, .btn-dimgrey:focus {
color: #fff;
background-color: #595959;
border-color: #545454;
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-check:checked + .btn-dimgrey,
.btn-check:active + .btn-dimgrey, .btn-dimgrey:active, .btn-dimgrey.active,
.show > .btn-dimgrey.dropdown-toggle {
color: #fff;
background-color: #545454;
border-color: #4f4f4f;
}
.btn-check:checked + .btn-dimgrey:focus,
.btn-check:active + .btn-dimgrey:focus, .btn-dimgrey:active:focus, .btn-dimgrey.active:focus,
.show > .btn-dimgrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-dimgrey:disabled, .btn-dimgrey.disabled {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-dodgerblue {
color: #000;
background-color: #1E90FF;
border-color: #1E90FF;
}
.btn-dodgerblue:hover {
color: #000;
background-color: #40a1ff;
border-color: #359bff;
}
.btn-check:focus + .btn-dodgerblue, .btn-dodgerblue:focus {
color: #000;
background-color: #40a1ff;
border-color: #359bff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(26, 122, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(26, 122, 217, 0.5);
}
.btn-check:checked + .btn-dodgerblue,
.btn-check:active + .btn-dodgerblue, .btn-dodgerblue:active, .btn-dodgerblue.active,
.show > .btn-dodgerblue.dropdown-toggle {
color: #000;
background-color: #4ba6ff;
border-color: #359bff;
}
.btn-check:checked + .btn-dodgerblue:focus,
.btn-check:active + .btn-dodgerblue:focus, .btn-dodgerblue:active:focus, .btn-dodgerblue.active:focus,
.show > .btn-dodgerblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(26, 122, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(26, 122, 217, 0.5);
}
.btn-dodgerblue:disabled, .btn-dodgerblue.disabled {
color: #000;
background-color: #1E90FF;
border-color: #1E90FF;
}
.btn-firebrick {
color: #fff;
background-color: #B22222;
border-color: #B22222;
}
.btn-firebrick:hover {
color: #fff;
background-color: #971d1d;
border-color: #8e1b1b;
}
.btn-check:focus + .btn-firebrick, .btn-firebrick:focus {
color: #fff;
background-color: #971d1d;
border-color: #8e1b1b;
-webkit-box-shadow: 0 0 0 0.25rem rgba(190, 67, 67, 0.5);
box-shadow: 0 0 0 0.25rem rgba(190, 67, 67, 0.5);
}
.btn-check:checked + .btn-firebrick,
.btn-check:active + .btn-firebrick, .btn-firebrick:active, .btn-firebrick.active,
.show > .btn-firebrick.dropdown-toggle {
color: #fff;
background-color: #8e1b1b;
border-color: #861a1a;
}
.btn-check:checked + .btn-firebrick:focus,
.btn-check:active + .btn-firebrick:focus, .btn-firebrick:active:focus, .btn-firebrick.active:focus,
.show > .btn-firebrick.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(190, 67, 67, 0.5);
box-shadow: 0 0 0 0.25rem rgba(190, 67, 67, 0.5);
}
.btn-firebrick:disabled, .btn-firebrick.disabled {
color: #fff;
background-color: #B22222;
border-color: #B22222;
}
.btn-floralwhite {
color: #000;
background-color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-floralwhite:hover {
color: #000;
background-color: #fffbf2;
border-color: #fffbf2;
}
.btn-check:focus + .btn-floralwhite, .btn-floralwhite:focus {
color: #000;
background-color: #fffbf2;
border-color: #fffbf2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 204, 0.5);
}
.btn-check:checked + .btn-floralwhite,
.btn-check:active + .btn-floralwhite, .btn-floralwhite:active, .btn-floralwhite.active,
.show > .btn-floralwhite.dropdown-toggle {
color: #000;
background-color: #fffbf3;
border-color: #fffbf2;
}
.btn-check:checked + .btn-floralwhite:focus,
.btn-check:active + .btn-floralwhite:focus, .btn-floralwhite:active:focus, .btn-floralwhite.active:focus,
.show > .btn-floralwhite.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 204, 0.5);
}
.btn-floralwhite:disabled, .btn-floralwhite.disabled {
color: #000;
background-color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-forestgreen {
color: #000;
background-color: #228B22;
border-color: #228B22;
}
.btn-forestgreen:hover {
color: #000;
background-color: #439c43;
border-color: #389738;
}
.btn-check:focus + .btn-forestgreen, .btn-forestgreen:focus {
color: #000;
background-color: #439c43;
border-color: #389738;
-webkit-box-shadow: 0 0 0 0.25rem rgba(29, 118, 29, 0.5);
box-shadow: 0 0 0 0.25rem rgba(29, 118, 29, 0.5);
}
.btn-check:checked + .btn-forestgreen,
.btn-check:active + .btn-forestgreen, .btn-forestgreen:active, .btn-forestgreen.active,
.show > .btn-forestgreen.dropdown-toggle {
color: #000;
background-color: #4ea24e;
border-color: #389738;
}
.btn-check:checked + .btn-forestgreen:focus,
.btn-check:active + .btn-forestgreen:focus, .btn-forestgreen:active:focus, .btn-forestgreen.active:focus,
.show > .btn-forestgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(29, 118, 29, 0.5);
box-shadow: 0 0 0 0.25rem rgba(29, 118, 29, 0.5);
}
.btn-forestgreen:disabled, .btn-forestgreen.disabled {
color: #000;
background-color: #228B22;
border-color: #228B22;
}
.btn-fuchsia {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-fuchsia:hover {
color: #000;
background-color: #ff26ff;
border-color: #ff1aff;
}
.btn-check:focus + .btn-fuchsia, .btn-fuchsia:focus {
color: #000;
background-color: #ff26ff;
border-color: #ff1aff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
}
.btn-check:checked + .btn-fuchsia,
.btn-check:active + .btn-fuchsia, .btn-fuchsia:active, .btn-fuchsia.active,
.show > .btn-fuchsia.dropdown-toggle {
color: #000;
background-color: #ff33ff;
border-color: #ff1aff;
}
.btn-check:checked + .btn-fuchsia:focus,
.btn-check:active + .btn-fuchsia:focus, .btn-fuchsia:active:focus, .btn-fuchsia.active:focus,
.show > .btn-fuchsia.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
}
.btn-fuchsia:disabled, .btn-fuchsia.disabled {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-gainsboro {
color: #000;
background-color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-gainsboro:hover {
color: #000;
background-color: #e1e1e1;
border-color: #e0e0e0;
}
.btn-check:focus + .btn-gainsboro, .btn-gainsboro:focus {
color: #000;
background-color: #e1e1e1;
border-color: #e0e0e0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(187, 187, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(187, 187, 187, 0.5);
}
.btn-check:checked + .btn-gainsboro,
.btn-check:active + .btn-gainsboro, .btn-gainsboro:active, .btn-gainsboro.active,
.show > .btn-gainsboro.dropdown-toggle {
color: #000;
background-color: #e3e3e3;
border-color: #e0e0e0;
}
.btn-check:checked + .btn-gainsboro:focus,
.btn-check:active + .btn-gainsboro:focus, .btn-gainsboro:active:focus, .btn-gainsboro.active:focus,
.show > .btn-gainsboro.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(187, 187, 187, 0.5);
box-shadow: 0 0 0 0.25rem rgba(187, 187, 187, 0.5);
}
.btn-gainsboro:disabled, .btn-gainsboro.disabled {
color: #000;
background-color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-ghostwhite {
color: #000;
background-color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-ghostwhite:hover {
color: #000;
background-color: #f9f9ff;
border-color: #f9f9ff;
}
.btn-check:focus + .btn-ghostwhite, .btn-ghostwhite:focus {
color: #000;
background-color: #f9f9ff;
border-color: #f9f9ff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 217, 0.5);
}
.btn-check:checked + .btn-ghostwhite,
.btn-check:active + .btn-ghostwhite, .btn-ghostwhite:active, .btn-ghostwhite.active,
.show > .btn-ghostwhite.dropdown-toggle {
color: #000;
background-color: #f9f9ff;
border-color: #f9f9ff;
}
.btn-check:checked + .btn-ghostwhite:focus,
.btn-check:active + .btn-ghostwhite:focus, .btn-ghostwhite:active:focus, .btn-ghostwhite.active:focus,
.show > .btn-ghostwhite.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 217, 0.5);
}
.btn-ghostwhite:disabled, .btn-ghostwhite.disabled {
color: #000;
background-color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-gold {
color: #000;
background-color: #FFD700;
border-color: #FFD700;
}
.btn-gold:hover {
color: #000;
background-color: #ffdd26;
border-color: #ffdb1a;
}
.btn-check:focus + .btn-gold, .btn-gold:focus {
color: #000;
background-color: #ffdd26;
border-color: #ffdb1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 183, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 183, 0, 0.5);
}
.btn-check:checked + .btn-gold,
.btn-check:active + .btn-gold, .btn-gold:active, .btn-gold.active,
.show > .btn-gold.dropdown-toggle {
color: #000;
background-color: #ffdf33;
border-color: #ffdb1a;
}
.btn-check:checked + .btn-gold:focus,
.btn-check:active + .btn-gold:focus, .btn-gold:active:focus, .btn-gold.active:focus,
.show > .btn-gold.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 183, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 183, 0, 0.5);
}
.btn-gold:disabled, .btn-gold.disabled {
color: #000;
background-color: #FFD700;
border-color: #FFD700;
}
.btn-goldenrod {
color: #000;
background-color: #DAA520;
border-color: #DAA520;
}
.btn-goldenrod:hover {
color: #000;
background-color: #e0b341;
border-color: #deae36;
}
.btn-check:focus + .btn-goldenrod, .btn-goldenrod:focus {
color: #000;
background-color: #e0b341;
border-color: #deae36;
-webkit-box-shadow: 0 0 0 0.25rem rgba(185, 140, 27, 0.5);
box-shadow: 0 0 0 0.25rem rgba(185, 140, 27, 0.5);
}
.btn-check:checked + .btn-goldenrod,
.btn-check:active + .btn-goldenrod, .btn-goldenrod:active, .btn-goldenrod.active,
.show > .btn-goldenrod.dropdown-toggle {
color: #000;
background-color: #e1b74d;
border-color: #deae36;
}
.btn-check:checked + .btn-goldenrod:focus,
.btn-check:active + .btn-goldenrod:focus, .btn-goldenrod:active:focus, .btn-goldenrod.active:focus,
.show > .btn-goldenrod.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(185, 140, 27, 0.5);
box-shadow: 0 0 0 0.25rem rgba(185, 140, 27, 0.5);
}
.btn-goldenrod:disabled, .btn-goldenrod.disabled {
color: #000;
background-color: #DAA520;
border-color: #DAA520;
}
.btn-greenyellow {
color: #000;
background-color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-greenyellow:hover {
color: #000;
background-color: #b9ff4e;
border-color: #b5ff44;
}
.btn-check:focus + .btn-greenyellow, .btn-greenyellow:focus {
color: #000;
background-color: #b9ff4e;
border-color: #b5ff44;
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 217, 40, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 217, 40, 0.5);
}
.btn-check:checked + .btn-greenyellow,
.btn-check:active + .btn-greenyellow, .btn-greenyellow:active, .btn-greenyellow.active,
.show > .btn-greenyellow.dropdown-toggle {
color: #000;
background-color: #bdff59;
border-color: #b5ff44;
}
.btn-check:checked + .btn-greenyellow:focus,
.btn-check:active + .btn-greenyellow:focus, .btn-greenyellow:active:focus, .btn-greenyellow.active:focus,
.show > .btn-greenyellow.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 217, 40, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 217, 40, 0.5);
}
.btn-greenyellow:disabled, .btn-greenyellow.disabled {
color: #000;
background-color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-grey {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-grey:hover {
color: #000;
background-color: #939393;
border-color: #8d8d8d;
}
.btn-check:focus + .btn-grey, .btn-grey:focus {
color: #000;
background-color: #939393;
border-color: #8d8d8d;
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
}
.btn-check:checked + .btn-grey,
.btn-check:active + .btn-grey, .btn-grey:active, .btn-grey.active,
.show > .btn-grey.dropdown-toggle {
color: #000;
background-color: #999999;
border-color: #8d8d8d;
}
.btn-check:checked + .btn-grey:focus,
.btn-check:active + .btn-grey:focus, .btn-grey:active:focus, .btn-grey.active:focus,
.show > .btn-grey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 109, 0.5);
}
.btn-grey:disabled, .btn-grey.disabled {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-honeydew {
color: #000;
background-color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-honeydew:hover {
color: #000;
background-color: #f2fff2;
border-color: #f2fff2;
}
.btn-check:focus + .btn-honeydew, .btn-honeydew:focus {
color: #000;
background-color: #f2fff2;
border-color: #f2fff2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 217, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 217, 204, 0.5);
}
.btn-check:checked + .btn-honeydew,
.btn-check:active + .btn-honeydew, .btn-honeydew:active, .btn-honeydew.active,
.show > .btn-honeydew.dropdown-toggle {
color: #000;
background-color: #f3fff3;
border-color: #f2fff2;
}
.btn-check:checked + .btn-honeydew:focus,
.btn-check:active + .btn-honeydew:focus, .btn-honeydew:active:focus, .btn-honeydew.active:focus,
.show > .btn-honeydew.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 217, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 217, 204, 0.5);
}
.btn-honeydew:disabled, .btn-honeydew.disabled {
color: #000;
background-color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-hotpink {
color: #000;
background-color: #FF69B4;
border-color: #FF69B4;
}
.btn-hotpink:hover {
color: #000;
background-color: #ff80bf;
border-color: #ff78bc;
}
.btn-check:focus + .btn-hotpink, .btn-hotpink:focus {
color: #000;
background-color: #ff80bf;
border-color: #ff78bc;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 89, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 89, 153, 0.5);
}
.btn-check:checked + .btn-hotpink,
.btn-check:active + .btn-hotpink, .btn-hotpink:active, .btn-hotpink.active,
.show > .btn-hotpink.dropdown-toggle {
color: #000;
background-color: #ff87c3;
border-color: #ff78bc;
}
.btn-check:checked + .btn-hotpink:focus,
.btn-check:active + .btn-hotpink:focus, .btn-hotpink:active:focus, .btn-hotpink.active:focus,
.show > .btn-hotpink.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 89, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 89, 153, 0.5);
}
.btn-hotpink:disabled, .btn-hotpink.disabled {
color: #000;
background-color: #FF69B4;
border-color: #FF69B4;
}
.btn-indianred {
color: #000;
background-color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-indianred:hover {
color: #000;
background-color: #d57474;
border-color: #d26c6c;
}
.btn-check:focus + .btn-indianred, .btn-indianred:focus {
color: #000;
background-color: #d57474;
border-color: #d26c6c;
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 78, 78, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 78, 78, 0.5);
}
.btn-check:checked + .btn-indianred,
.btn-check:active + .btn-indianred, .btn-indianred:active, .btn-indianred.active,
.show > .btn-indianred.dropdown-toggle {
color: #000;
background-color: #d77d7d;
border-color: #d26c6c;
}
.btn-check:checked + .btn-indianred:focus,
.btn-check:active + .btn-indianred:focus, .btn-indianred:active:focus, .btn-indianred.active:focus,
.show > .btn-indianred.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 78, 78, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 78, 78, 0.5);
}
.btn-indianred:disabled, .btn-indianred.disabled {
color: #000;
background-color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-ivory {
color: #000;
background-color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-ivory:hover {
color: #000;
background-color: #fffff2;
border-color: #fffff2;
}
.btn-check:focus + .btn-ivory, .btn-ivory:focus {
color: #000;
background-color: #fffff2;
border-color: #fffff2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 217, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 217, 204, 0.5);
}
.btn-check:checked + .btn-ivory,
.btn-check:active + .btn-ivory, .btn-ivory:active, .btn-ivory.active,
.show > .btn-ivory.dropdown-toggle {
color: #000;
background-color: #fffff3;
border-color: #fffff2;
}
.btn-check:checked + .btn-ivory:focus,
.btn-check:active + .btn-ivory:focus, .btn-ivory:active:focus, .btn-ivory.active:focus,
.show > .btn-ivory.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 217, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 217, 204, 0.5);
}
.btn-ivory:disabled, .btn-ivory.disabled {
color: #000;
background-color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-khaki {
color: #000;
background-color: #F0E68C;
border-color: #F0E68C;
}
.btn-khaki:hover {
color: #000;
background-color: #f2ea9d;
border-color: #f2e998;
}
.btn-check:focus + .btn-khaki, .btn-khaki:focus {
color: #000;
background-color: #f2ea9d;
border-color: #f2e998;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 196, 119, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 196, 119, 0.5);
}
.btn-check:checked + .btn-khaki,
.btn-check:active + .btn-khaki, .btn-khaki:active, .btn-khaki.active,
.show > .btn-khaki.dropdown-toggle {
color: #000;
background-color: #f3eba3;
border-color: #f2e998;
}
.btn-check:checked + .btn-khaki:focus,
.btn-check:active + .btn-khaki:focus, .btn-khaki:active:focus, .btn-khaki.active:focus,
.show > .btn-khaki.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 196, 119, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 196, 119, 0.5);
}
.btn-khaki:disabled, .btn-khaki.disabled {
color: #000;
background-color: #F0E68C;
border-color: #F0E68C;
}
.btn-lavender {
color: #000;
background-color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-lavender:hover {
color: #000;
background-color: #eaeafb;
border-color: #e9e9fb;
}
.btn-check:focus + .btn-lavender, .btn-lavender:focus {
color: #000;
background-color: #eaeafb;
border-color: #e9e9fb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(196, 196, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(196, 196, 213, 0.5);
}
.btn-check:checked + .btn-lavender,
.btn-check:active + .btn-lavender, .btn-lavender:active, .btn-lavender.active,
.show > .btn-lavender.dropdown-toggle {
color: #000;
background-color: #ebebfb;
border-color: #e9e9fb;
}
.btn-check:checked + .btn-lavender:focus,
.btn-check:active + .btn-lavender:focus, .btn-lavender:active:focus, .btn-lavender.active:focus,
.show > .btn-lavender.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(196, 196, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(196, 196, 213, 0.5);
}
.btn-lavender:disabled, .btn-lavender.disabled {
color: #000;
background-color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-lavenderblush {
color: #000;
background-color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-lavenderblush:hover {
color: #000;
background-color: #fff2f7;
border-color: #fff2f6;
}
.btn-check:focus + .btn-lavenderblush, .btn-lavenderblush:focus {
color: #000;
background-color: #fff2f7;
border-color: #fff2f6;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 204, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 204, 208, 0.5);
}
.btn-check:checked + .btn-lavenderblush,
.btn-check:active + .btn-lavenderblush, .btn-lavenderblush:active, .btn-lavenderblush.active,
.show > .btn-lavenderblush.dropdown-toggle {
color: #000;
background-color: #fff3f7;
border-color: #fff2f6;
}
.btn-check:checked + .btn-lavenderblush:focus,
.btn-check:active + .btn-lavenderblush:focus, .btn-lavenderblush:active:focus, .btn-lavenderblush.active:focus,
.show > .btn-lavenderblush.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 204, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 204, 208, 0.5);
}
.btn-lavenderblush:disabled, .btn-lavenderblush.disabled {
color: #000;
background-color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-lawngreen {
color: #000;
background-color: #7CFC00;
border-color: #7CFC00;
}
.btn-lawngreen:hover {
color: #000;
background-color: #90fc26;
border-color: #89fc1a;
}
.btn-check:focus + .btn-lawngreen, .btn-lawngreen:focus {
color: #000;
background-color: #90fc26;
border-color: #89fc1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 214, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 214, 0, 0.5);
}
.btn-check:checked + .btn-lawngreen,
.btn-check:active + .btn-lawngreen, .btn-lawngreen:active, .btn-lawngreen.active,
.show > .btn-lawngreen.dropdown-toggle {
color: #000;
background-color: #96fd33;
border-color: #89fc1a;
}
.btn-check:checked + .btn-lawngreen:focus,
.btn-check:active + .btn-lawngreen:focus, .btn-lawngreen:active:focus, .btn-lawngreen.active:focus,
.show > .btn-lawngreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 214, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 214, 0, 0.5);
}
.btn-lawngreen:disabled, .btn-lawngreen.disabled {
color: #000;
background-color: #7CFC00;
border-color: #7CFC00;
}
.btn-lemonchiffon {
color: #000;
background-color: #FFFACD;
border-color: #FFFACD;
}
.btn-lemonchiffon:hover {
color: #000;
background-color: #fffbd5;
border-color: #fffbd2;
}
.btn-check:focus + .btn-lemonchiffon, .btn-lemonchiffon:focus {
color: #000;
background-color: #fffbd5;
border-color: #fffbd2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 174, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 174, 0.5);
}
.btn-check:checked + .btn-lemonchiffon,
.btn-check:active + .btn-lemonchiffon, .btn-lemonchiffon:active, .btn-lemonchiffon.active,
.show > .btn-lemonchiffon.dropdown-toggle {
color: #000;
background-color: #fffbd7;
border-color: #fffbd2;
}
.btn-check:checked + .btn-lemonchiffon:focus,
.btn-check:active + .btn-lemonchiffon:focus, .btn-lemonchiffon:active:focus, .btn-lemonchiffon.active:focus,
.show > .btn-lemonchiffon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 174, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 174, 0.5);
}
.btn-lemonchiffon:disabled, .btn-lemonchiffon.disabled {
color: #000;
background-color: #FFFACD;
border-color: #FFFACD;
}
.btn-lightblue {
color: #000;
background-color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-lightblue:hover {
color: #000;
background-color: #b9deea;
border-color: #b5dce9;
}
.btn-check:focus + .btn-lightblue, .btn-lightblue:focus {
color: #000;
background-color: #b9deea;
border-color: #b5dce9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 184, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 184, 196, 0.5);
}
.btn-check:checked + .btn-lightblue,
.btn-check:active + .btn-lightblue, .btn-lightblue:active, .btn-lightblue.active,
.show > .btn-lightblue.dropdown-toggle {
color: #000;
background-color: #bde0eb;
border-color: #b5dce9;
}
.btn-check:checked + .btn-lightblue:focus,
.btn-check:active + .btn-lightblue:focus, .btn-lightblue:active:focus, .btn-lightblue.active:focus,
.show > .btn-lightblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 184, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 184, 196, 0.5);
}
.btn-lightblue:disabled, .btn-lightblue.disabled {
color: #000;
background-color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-lightcoral {
color: #000;
background-color: #F08080;
border-color: #F08080;
}
.btn-lightcoral:hover {
color: #000;
background-color: #f29393;
border-color: #f28d8d;
}
.btn-check:focus + .btn-lightcoral, .btn-lightcoral:focus {
color: #000;
background-color: #f29393;
border-color: #f28d8d;
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 109, 109, 0.5);
}
.btn-check:checked + .btn-lightcoral,
.btn-check:active + .btn-lightcoral, .btn-lightcoral:active, .btn-lightcoral.active,
.show > .btn-lightcoral.dropdown-toggle {
color: #000;
background-color: #f39999;
border-color: #f28d8d;
}
.btn-check:checked + .btn-lightcoral:focus,
.btn-check:active + .btn-lightcoral:focus, .btn-lightcoral:active:focus, .btn-lightcoral.active:focus,
.show > .btn-lightcoral.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(204, 109, 109, 0.5);
box-shadow: 0 0 0 0.25rem rgba(204, 109, 109, 0.5);
}
.btn-lightcoral:disabled, .btn-lightcoral.disabled {
color: #000;
background-color: #F08080;
border-color: #F08080;
}
.btn-lightcyan {
color: #000;
background-color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-lightcyan:hover {
color: #000;
background-color: #e5ffff;
border-color: #e3ffff;
}
.btn-check:focus + .btn-lightcyan, .btn-lightcyan:focus {
color: #000;
background-color: #e5ffff;
border-color: #e3ffff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(190, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(190, 217, 217, 0.5);
}
.btn-check:checked + .btn-lightcyan,
.btn-check:active + .btn-lightcyan, .btn-lightcyan:active, .btn-lightcyan.active,
.show > .btn-lightcyan.dropdown-toggle {
color: #000;
background-color: #e6ffff;
border-color: #e3ffff;
}
.btn-check:checked + .btn-lightcyan:focus,
.btn-check:active + .btn-lightcyan:focus, .btn-lightcyan:active:focus, .btn-lightcyan.active:focus,
.show > .btn-lightcyan.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(190, 217, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(190, 217, 217, 0.5);
}
.btn-lightcyan:disabled, .btn-lightcyan.disabled {
color: #000;
background-color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-lightgoldenrodyellow {
color: #000;
background-color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-lightgoldenrodyellow:hover {
color: #000;
background-color: #fbfbd9;
border-color: #fbfbd7;
}
.btn-check:focus + .btn-lightgoldenrodyellow, .btn-lightgoldenrodyellow:focus {
color: #000;
background-color: #fbfbd9;
border-color: #fbfbd7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 213, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 213, 179, 0.5);
}
.btn-check:checked + .btn-lightgoldenrodyellow,
.btn-check:active + .btn-lightgoldenrodyellow, .btn-lightgoldenrodyellow:active, .btn-lightgoldenrodyellow.active,
.show > .btn-lightgoldenrodyellow.dropdown-toggle {
color: #000;
background-color: #fbfbdb;
border-color: #fbfbd7;
}
.btn-check:checked + .btn-lightgoldenrodyellow:focus,
.btn-check:active + .btn-lightgoldenrodyellow:focus, .btn-lightgoldenrodyellow:active:focus, .btn-lightgoldenrodyellow.active:focus,
.show > .btn-lightgoldenrodyellow.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 213, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 213, 179, 0.5);
}
.btn-lightgoldenrodyellow:disabled, .btn-lightgoldenrodyellow.disabled {
color: #000;
background-color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-lightgray {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-lightgray:hover {
color: #000;
background-color: #dadada;
border-color: #d7d7d7;
}
.btn-check:focus + .btn-lightgray, .btn-lightgray:focus {
color: #000;
background-color: #dadada;
border-color: #d7d7d7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
}
.btn-check:checked + .btn-lightgray,
.btn-check:active + .btn-lightgray, .btn-lightgray:active, .btn-lightgray.active,
.show > .btn-lightgray.dropdown-toggle {
color: #000;
background-color: gainsboro;
border-color: #d7d7d7;
}
.btn-check:checked + .btn-lightgray:focus,
.btn-check:active + .btn-lightgray:focus, .btn-lightgray:active:focus, .btn-lightgray.active:focus,
.show > .btn-lightgray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
}
.btn-lightgray:disabled, .btn-lightgray.disabled {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-lightgreen {
color: #000;
background-color: #90EE90;
border-color: #90EE90;
}
.btn-lightgreen:hover {
color: #000;
background-color: #a1f1a1;
border-color: #9bf09b;
}
.btn-check:focus + .btn-lightgreen, .btn-lightgreen:focus {
color: #000;
background-color: #a1f1a1;
border-color: #9bf09b;
-webkit-box-shadow: 0 0 0 0.25rem rgba(122, 202, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(122, 202, 122, 0.5);
}
.btn-check:checked + .btn-lightgreen,
.btn-check:active + .btn-lightgreen, .btn-lightgreen:active, .btn-lightgreen.active,
.show > .btn-lightgreen.dropdown-toggle {
color: #000;
background-color: #a6f1a6;
border-color: #9bf09b;
}
.btn-check:checked + .btn-lightgreen:focus,
.btn-check:active + .btn-lightgreen:focus, .btn-lightgreen:active:focus, .btn-lightgreen.active:focus,
.show > .btn-lightgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(122, 202, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(122, 202, 122, 0.5);
}
.btn-lightgreen:disabled, .btn-lightgreen.disabled {
color: #000;
background-color: #90EE90;
border-color: #90EE90;
}
.btn-lightgrey {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-lightgrey:hover {
color: #000;
background-color: #dadada;
border-color: #d7d7d7;
}
.btn-check:focus + .btn-lightgrey, .btn-lightgrey:focus {
color: #000;
background-color: #dadada;
border-color: #d7d7d7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
}
.btn-check:checked + .btn-lightgrey,
.btn-check:active + .btn-lightgrey, .btn-lightgrey:active, .btn-lightgrey.active,
.show > .btn-lightgrey.dropdown-toggle {
color: #000;
background-color: gainsboro;
border-color: #d7d7d7;
}
.btn-check:checked + .btn-lightgrey:focus,
.btn-check:active + .btn-lightgrey:focus, .btn-lightgrey:active:focus, .btn-lightgrey.active:focus,
.show > .btn-lightgrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 179, 179, 0.5);
}
.btn-lightgrey:disabled, .btn-lightgrey.disabled {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-lightpink {
color: #000;
background-color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-lightpink:hover {
color: #000;
background-color: #ffc1ca;
border-color: #ffbdc7;
}
.btn-check:focus + .btn-lightpink, .btn-lightpink:focus {
color: #000;
background-color: #ffc1ca;
border-color: #ffbdc7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 155, 164, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 155, 164, 0.5);
}
.btn-check:checked + .btn-lightpink,
.btn-check:active + .btn-lightpink, .btn-lightpink:active, .btn-lightpink.active,
.show > .btn-lightpink.dropdown-toggle {
color: #000;
background-color: #ffc5cd;
border-color: #ffbdc7;
}
.btn-check:checked + .btn-lightpink:focus,
.btn-check:active + .btn-lightpink:focus, .btn-lightpink:active:focus, .btn-lightpink.active:focus,
.show > .btn-lightpink.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 155, 164, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 155, 164, 0.5);
}
.btn-lightpink:disabled, .btn-lightpink.disabled {
color: #000;
background-color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-lightsalmon {
color: #000;
background-color: #FFA07A;
border-color: #FFA07A;
}
.btn-lightsalmon:hover {
color: #000;
background-color: #ffae8e;
border-color: #ffaa87;
}
.btn-check:focus + .btn-lightsalmon, .btn-lightsalmon:focus {
color: #000;
background-color: #ffae8e;
border-color: #ffaa87;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 136, 104, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 136, 104, 0.5);
}
.btn-check:checked + .btn-lightsalmon,
.btn-check:active + .btn-lightsalmon, .btn-lightsalmon:active, .btn-lightsalmon.active,
.show > .btn-lightsalmon.dropdown-toggle {
color: #000;
background-color: #ffb395;
border-color: #ffaa87;
}
.btn-check:checked + .btn-lightsalmon:focus,
.btn-check:active + .btn-lightsalmon:focus, .btn-lightsalmon:active:focus, .btn-lightsalmon.active:focus,
.show > .btn-lightsalmon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 136, 104, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 136, 104, 0.5);
}
.btn-lightsalmon:disabled, .btn-lightsalmon.disabled {
color: #000;
background-color: #FFA07A;
border-color: #FFA07A;
}
.btn-lightseagreen {
color: #000;
background-color: #20B2AA;
border-color: #20B2AA;
}
.btn-lightseagreen:hover {
color: #000;
background-color: #41beb7;
border-color: #36bab3;
}
.btn-check:focus + .btn-lightseagreen, .btn-lightseagreen:focus {
color: #000;
background-color: #41beb7;
border-color: #36bab3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(27, 151, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(27, 151, 145, 0.5);
}
.btn-check:checked + .btn-lightseagreen,
.btn-check:active + .btn-lightseagreen, .btn-lightseagreen:active, .btn-lightseagreen.active,
.show > .btn-lightseagreen.dropdown-toggle {
color: #000;
background-color: #4dc1bb;
border-color: #36bab3;
}
.btn-check:checked + .btn-lightseagreen:focus,
.btn-check:active + .btn-lightseagreen:focus, .btn-lightseagreen:active:focus, .btn-lightseagreen.active:focus,
.show > .btn-lightseagreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(27, 151, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(27, 151, 145, 0.5);
}
.btn-lightseagreen:disabled, .btn-lightseagreen.disabled {
color: #000;
background-color: #20B2AA;
border-color: #20B2AA;
}
.btn-lightskyblue {
color: #000;
background-color: #87CEFA;
border-color: #87CEFA;
}
.btn-lightskyblue:hover {
color: #000;
background-color: #99d5fb;
border-color: #93d3fb;
}
.btn-check:focus + .btn-lightskyblue, .btn-lightskyblue:focus {
color: #000;
background-color: #99d5fb;
border-color: #93d3fb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(115, 175, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(115, 175, 213, 0.5);
}
.btn-check:checked + .btn-lightskyblue,
.btn-check:active + .btn-lightskyblue, .btn-lightskyblue:active, .btn-lightskyblue.active,
.show > .btn-lightskyblue.dropdown-toggle {
color: #000;
background-color: #9fd8fb;
border-color: #93d3fb;
}
.btn-check:checked + .btn-lightskyblue:focus,
.btn-check:active + .btn-lightskyblue:focus, .btn-lightskyblue:active:focus, .btn-lightskyblue.active:focus,
.show > .btn-lightskyblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(115, 175, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(115, 175, 213, 0.5);
}
.btn-lightskyblue:disabled, .btn-lightskyblue.disabled {
color: #000;
background-color: #87CEFA;
border-color: #87CEFA;
}
.btn-lightslategray {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-lightslategray:hover {
color: #000;
background-color: #8b9aa8;
border-color: #8594a3;
}
.btn-check:focus + .btn-lightslategray, .btn-lightslategray:focus {
color: #000;
background-color: #8b9aa8;
border-color: #8594a3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
}
.btn-check:checked + .btn-lightslategray,
.btn-check:active + .btn-lightslategray, .btn-lightslategray:active, .btn-lightslategray.active,
.show > .btn-lightslategray.dropdown-toggle {
color: #000;
background-color: #92a0ad;
border-color: #8594a3;
}
.btn-check:checked + .btn-lightslategray:focus,
.btn-check:active + .btn-lightslategray:focus, .btn-lightslategray:active:focus, .btn-lightslategray.active:focus,
.show > .btn-lightslategray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
}
.btn-lightslategray:disabled, .btn-lightslategray.disabled {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-lightslategrey {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-lightslategrey:hover {
color: #000;
background-color: #8b9aa8;
border-color: #8594a3;
}
.btn-check:focus + .btn-lightslategrey, .btn-lightslategrey:focus {
color: #000;
background-color: #8b9aa8;
border-color: #8594a3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
}
.btn-check:checked + .btn-lightslategrey,
.btn-check:active + .btn-lightslategrey, .btn-lightslategrey:active, .btn-lightslategrey.active,
.show > .btn-lightslategrey.dropdown-toggle {
color: #000;
background-color: #92a0ad;
border-color: #8594a3;
}
.btn-check:checked + .btn-lightslategrey:focus,
.btn-check:active + .btn-lightslategrey:focus, .btn-lightslategrey:active:focus, .btn-lightslategrey.active:focus,
.show > .btn-lightslategrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
box-shadow: 0 0 0 0.25rem rgba(101, 116, 130, 0.5);
}
.btn-lightslategrey:disabled, .btn-lightslategrey.disabled {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-lightsteelblue {
color: #000;
background-color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-lightsteelblue:hover {
color: #000;
background-color: #bccde3;
border-color: #b8cae1;
}
.btn-check:focus + .btn-lightsteelblue, .btn-lightsteelblue:focus {
color: #000;
background-color: #bccde3;
border-color: #b8cae1;
-webkit-box-shadow: 0 0 0 0.25rem rgba(150, 167, 189, 0.5);
box-shadow: 0 0 0 0.25rem rgba(150, 167, 189, 0.5);
}
.btn-check:checked + .btn-lightsteelblue,
.btn-check:active + .btn-lightsteelblue, .btn-lightsteelblue:active, .btn-lightsteelblue.active,
.show > .btn-lightsteelblue.dropdown-toggle {
color: #000;
background-color: #c0d0e5;
border-color: #b8cae1;
}
.btn-check:checked + .btn-lightsteelblue:focus,
.btn-check:active + .btn-lightsteelblue:focus, .btn-lightsteelblue:active:focus, .btn-lightsteelblue.active:focus,
.show > .btn-lightsteelblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(150, 167, 189, 0.5);
box-shadow: 0 0 0 0.25rem rgba(150, 167, 189, 0.5);
}
.btn-lightsteelblue:disabled, .btn-lightsteelblue.disabled {
color: #000;
background-color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-lightyellow {
color: #000;
background-color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-lightyellow:hover {
color: #000;
background-color: #ffffe5;
border-color: #ffffe3;
}
.btn-check:focus + .btn-lightyellow, .btn-lightyellow:focus {
color: #000;
background-color: #ffffe5;
border-color: #ffffe3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 217, 190, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 217, 190, 0.5);
}
.btn-check:checked + .btn-lightyellow,
.btn-check:active + .btn-lightyellow, .btn-lightyellow:active, .btn-lightyellow.active,
.show > .btn-lightyellow.dropdown-toggle {
color: #000;
background-color: #ffffe6;
border-color: #ffffe3;
}
.btn-check:checked + .btn-lightyellow:focus,
.btn-check:active + .btn-lightyellow:focus, .btn-lightyellow:active:focus, .btn-lightyellow.active:focus,
.show > .btn-lightyellow.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 217, 190, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 217, 190, 0.5);
}
.btn-lightyellow:disabled, .btn-lightyellow.disabled {
color: #000;
background-color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-lime {
color: #000;
background-color: #00FF00;
border-color: #00FF00;
}
.btn-lime:hover {
color: #000;
background-color: #26ff26;
border-color: #1aff1a;
}
.btn-check:focus + .btn-lime, .btn-lime:focus {
color: #000;
background-color: #26ff26;
border-color: #1aff1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 0, 0.5);
}
.btn-check:checked + .btn-lime,
.btn-check:active + .btn-lime, .btn-lime:active, .btn-lime.active,
.show > .btn-lime.dropdown-toggle {
color: #000;
background-color: #33ff33;
border-color: #1aff1a;
}
.btn-check:checked + .btn-lime:focus,
.btn-check:active + .btn-lime:focus, .btn-lime:active:focus, .btn-lime.active:focus,
.show > .btn-lime.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 0, 0.5);
}
.btn-lime:disabled, .btn-lime.disabled {
color: #000;
background-color: #00FF00;
border-color: #00FF00;
}
.btn-limegreen {
color: #000;
background-color: #32CD32;
border-color: #32CD32;
}
.btn-limegreen:hover {
color: #000;
background-color: #51d551;
border-color: #47d247;
}
.btn-check:focus + .btn-limegreen, .btn-limegreen:focus {
color: #000;
background-color: #51d551;
border-color: #47d247;
-webkit-box-shadow: 0 0 0 0.25rem rgba(43, 174, 43, 0.5);
box-shadow: 0 0 0 0.25rem rgba(43, 174, 43, 0.5);
}
.btn-check:checked + .btn-limegreen,
.btn-check:active + .btn-limegreen, .btn-limegreen:active, .btn-limegreen.active,
.show > .btn-limegreen.dropdown-toggle {
color: #000;
background-color: #5bd75b;
border-color: #47d247;
}
.btn-check:checked + .btn-limegreen:focus,
.btn-check:active + .btn-limegreen:focus, .btn-limegreen:active:focus, .btn-limegreen.active:focus,
.show > .btn-limegreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(43, 174, 43, 0.5);
box-shadow: 0 0 0 0.25rem rgba(43, 174, 43, 0.5);
}
.btn-limegreen:disabled, .btn-limegreen.disabled {
color: #000;
background-color: #32CD32;
border-color: #32CD32;
}
.btn-linen {
color: #000;
background-color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-linen:hover {
color: #000;
background-color: #fbf2ea;
border-color: #fbf2e9;
}
.btn-check:focus + .btn-linen, .btn-linen:focus {
color: #000;
background-color: #fbf2ea;
border-color: #fbf2e9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 204, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 204, 196, 0.5);
}
.btn-check:checked + .btn-linen,
.btn-check:active + .btn-linen, .btn-linen:active, .btn-linen.active,
.show > .btn-linen.dropdown-toggle {
color: #000;
background-color: #fbf3eb;
border-color: #fbf2e9;
}
.btn-check:checked + .btn-linen:focus,
.btn-check:active + .btn-linen:focus, .btn-linen:active:focus, .btn-linen.active:focus,
.show > .btn-linen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 204, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 204, 196, 0.5);
}
.btn-linen:disabled, .btn-linen.disabled {
color: #000;
background-color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-magenta {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-magenta:hover {
color: #000;
background-color: #ff26ff;
border-color: #ff1aff;
}
.btn-check:focus + .btn-magenta, .btn-magenta:focus {
color: #000;
background-color: #ff26ff;
border-color: #ff1aff;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
}
.btn-check:checked + .btn-magenta,
.btn-check:active + .btn-magenta, .btn-magenta:active, .btn-magenta.active,
.show > .btn-magenta.dropdown-toggle {
color: #000;
background-color: #ff33ff;
border-color: #ff1aff;
}
.btn-check:checked + .btn-magenta:focus,
.btn-check:active + .btn-magenta:focus, .btn-magenta:active:focus, .btn-magenta.active:focus,
.show > .btn-magenta.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 0, 217, 0.5);
}
.btn-magenta:disabled, .btn-magenta.disabled {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-maroon {
color: #fff;
background-color: #800000;
border-color: #800000;
}
.btn-maroon:hover {
color: #fff;
background-color: #6d0000;
border-color: #660000;
}
.btn-check:focus + .btn-maroon, .btn-maroon:focus {
color: #fff;
background-color: #6d0000;
border-color: #660000;
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 38, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 38, 38, 0.5);
}
.btn-check:checked + .btn-maroon,
.btn-check:active + .btn-maroon, .btn-maroon:active, .btn-maroon.active,
.show > .btn-maroon.dropdown-toggle {
color: #fff;
background-color: #660000;
border-color: #600000;
}
.btn-check:checked + .btn-maroon:focus,
.btn-check:active + .btn-maroon:focus, .btn-maroon:active:focus, .btn-maroon.active:focus,
.show > .btn-maroon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 38, 38, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 38, 38, 0.5);
}
.btn-maroon:disabled, .btn-maroon.disabled {
color: #fff;
background-color: #800000;
border-color: #800000;
}
.btn-mediumaquamarine {
color: #000;
background-color: #66CDAA;
border-color: #66CDAA;
}
.btn-mediumaquamarine:hover {
color: #000;
background-color: #7dd5b7;
border-color: #75d2b3;
}
.btn-check:focus + .btn-mediumaquamarine, .btn-mediumaquamarine:focus {
color: #000;
background-color: #7dd5b7;
border-color: #75d2b3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(87, 174, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(87, 174, 145, 0.5);
}
.btn-check:checked + .btn-mediumaquamarine,
.btn-check:active + .btn-mediumaquamarine, .btn-mediumaquamarine:active, .btn-mediumaquamarine.active,
.show > .btn-mediumaquamarine.dropdown-toggle {
color: #000;
background-color: #85d7bb;
border-color: #75d2b3;
}
.btn-check:checked + .btn-mediumaquamarine:focus,
.btn-check:active + .btn-mediumaquamarine:focus, .btn-mediumaquamarine:active:focus, .btn-mediumaquamarine.active:focus,
.show > .btn-mediumaquamarine.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(87, 174, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(87, 174, 145, 0.5);
}
.btn-mediumaquamarine:disabled, .btn-mediumaquamarine.disabled {
color: #000;
background-color: #66CDAA;
border-color: #66CDAA;
}
.btn-mediumblue {
color: #fff;
background-color: #0000CD;
border-color: #0000CD;
}
.btn-mediumblue:hover {
color: #fff;
background-color: #0000ae;
border-color: #0000a4;
}
.btn-check:focus + .btn-mediumblue, .btn-mediumblue:focus {
color: #fff;
background-color: #0000ae;
border-color: #0000a4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 213, 0.5);
}
.btn-check:checked + .btn-mediumblue,
.btn-check:active + .btn-mediumblue, .btn-mediumblue:active, .btn-mediumblue.active,
.show > .btn-mediumblue.dropdown-toggle {
color: #fff;
background-color: #0000a4;
border-color: #00009a;
}
.btn-check:checked + .btn-mediumblue:focus,
.btn-check:active + .btn-mediumblue:focus, .btn-mediumblue:active:focus, .btn-mediumblue.active:focus,
.show > .btn-mediumblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 213, 0.5);
}
.btn-mediumblue:disabled, .btn-mediumblue.disabled {
color: #fff;
background-color: #0000CD;
border-color: #0000CD;
}
.btn-mediumorchid {
color: #000;
background-color: #BA55D3;
border-color: #BA55D3;
}
.btn-mediumorchid:hover {
color: #000;
background-color: #c46fda;
border-color: #c166d7;
}
.btn-check:focus + .btn-mediumorchid, .btn-mediumorchid:focus {
color: #000;
background-color: #c46fda;
border-color: #c166d7;
-webkit-box-shadow: 0 0 0 0.25rem rgba(158, 72, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(158, 72, 179, 0.5);
}
.btn-check:checked + .btn-mediumorchid,
.btn-check:active + .btn-mediumorchid, .btn-mediumorchid:active, .btn-mediumorchid.active,
.show > .btn-mediumorchid.dropdown-toggle {
color: #000;
background-color: #c877dc;
border-color: #c166d7;
}
.btn-check:checked + .btn-mediumorchid:focus,
.btn-check:active + .btn-mediumorchid:focus, .btn-mediumorchid:active:focus, .btn-mediumorchid.active:focus,
.show > .btn-mediumorchid.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(158, 72, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(158, 72, 179, 0.5);
}
.btn-mediumorchid:disabled, .btn-mediumorchid.disabled {
color: #000;
background-color: #BA55D3;
border-color: #BA55D3;
}
.btn-mediumpurple {
color: #000;
background-color: #9370DB;
border-color: #9370DB;
}
.btn-mediumpurple:hover {
color: #000;
background-color: #a385e0;
border-color: #9e7edf;
}
.btn-check:focus + .btn-mediumpurple, .btn-mediumpurple:focus {
color: #000;
background-color: #a385e0;
border-color: #9e7edf;
-webkit-box-shadow: 0 0 0 0.25rem rgba(125, 95, 186, 0.5);
box-shadow: 0 0 0 0.25rem rgba(125, 95, 186, 0.5);
}
.btn-check:checked + .btn-mediumpurple,
.btn-check:active + .btn-mediumpurple, .btn-mediumpurple:active, .btn-mediumpurple.active,
.show > .btn-mediumpurple.dropdown-toggle {
color: #000;
background-color: #a98de2;
border-color: #9e7edf;
}
.btn-check:checked + .btn-mediumpurple:focus,
.btn-check:active + .btn-mediumpurple:focus, .btn-mediumpurple:active:focus, .btn-mediumpurple.active:focus,
.show > .btn-mediumpurple.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(125, 95, 186, 0.5);
box-shadow: 0 0 0 0.25rem rgba(125, 95, 186, 0.5);
}
.btn-mediumpurple:disabled, .btn-mediumpurple.disabled {
color: #000;
background-color: #9370DB;
border-color: #9370DB;
}
.btn-mediumseagreen {
color: #000;
background-color: #3CB371;
border-color: #3CB371;
}
.btn-mediumseagreen:hover {
color: #000;
background-color: #59be86;
border-color: #50bb7f;
}
.btn-check:focus + .btn-mediumseagreen, .btn-mediumseagreen:focus {
color: #000;
background-color: #59be86;
border-color: #50bb7f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(51, 152, 96, 0.5);
box-shadow: 0 0 0 0.25rem rgba(51, 152, 96, 0.5);
}
.btn-check:checked + .btn-mediumseagreen,
.btn-check:active + .btn-mediumseagreen, .btn-mediumseagreen:active, .btn-mediumseagreen.active,
.show > .btn-mediumseagreen.dropdown-toggle {
color: #000;
background-color: #63c28d;
border-color: #50bb7f;
}
.btn-check:checked + .btn-mediumseagreen:focus,
.btn-check:active + .btn-mediumseagreen:focus, .btn-mediumseagreen:active:focus, .btn-mediumseagreen.active:focus,
.show > .btn-mediumseagreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(51, 152, 96, 0.5);
box-shadow: 0 0 0 0.25rem rgba(51, 152, 96, 0.5);
}
.btn-mediumseagreen:disabled, .btn-mediumseagreen.disabled {
color: #000;
background-color: #3CB371;
border-color: #3CB371;
}
.btn-mediumslateblue {
color: #000;
background-color: #7B68EE;
border-color: #7B68EE;
}
.btn-mediumslateblue:hover {
color: #000;
background-color: #8f7ff1;
border-color: #8877f0;
}
.btn-check:focus + .btn-mediumslateblue, .btn-mediumslateblue:focus {
color: #000;
background-color: #8f7ff1;
border-color: #8877f0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 88, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 88, 202, 0.5);
}
.btn-check:checked + .btn-mediumslateblue,
.btn-check:active + .btn-mediumslateblue, .btn-mediumslateblue:active, .btn-mediumslateblue.active,
.show > .btn-mediumslateblue.dropdown-toggle {
color: #000;
background-color: #9586f1;
border-color: #8877f0;
}
.btn-check:checked + .btn-mediumslateblue:focus,
.btn-check:active + .btn-mediumslateblue:focus, .btn-mediumslateblue:active:focus, .btn-mediumslateblue.active:focus,
.show > .btn-mediumslateblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 88, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 88, 202, 0.5);
}
.btn-mediumslateblue:disabled, .btn-mediumslateblue.disabled {
color: #000;
background-color: #7B68EE;
border-color: #7B68EE;
}
.btn-mediumspringgreen {
color: #000;
background-color: #00FA9A;
border-color: #00FA9A;
}
.btn-mediumspringgreen:hover {
color: #000;
background-color: #26fba9;
border-color: #1afba4;
}
.btn-check:focus + .btn-mediumspringgreen, .btn-mediumspringgreen:focus {
color: #000;
background-color: #26fba9;
border-color: #1afba4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 213, 131, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 213, 131, 0.5);
}
.btn-check:checked + .btn-mediumspringgreen,
.btn-check:active + .btn-mediumspringgreen, .btn-mediumspringgreen:active, .btn-mediumspringgreen.active,
.show > .btn-mediumspringgreen.dropdown-toggle {
color: #000;
background-color: #33fbae;
border-color: #1afba4;
}
.btn-check:checked + .btn-mediumspringgreen:focus,
.btn-check:active + .btn-mediumspringgreen:focus, .btn-mediumspringgreen:active:focus, .btn-mediumspringgreen.active:focus,
.show > .btn-mediumspringgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 213, 131, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 213, 131, 0.5);
}
.btn-mediumspringgreen:disabled, .btn-mediumspringgreen.disabled {
color: #000;
background-color: #00FA9A;
border-color: #00FA9A;
}
.btn-mediumturquoise {
color: #000;
background-color: #48D1CC;
border-color: #48D1CC;
}
.btn-mediumturquoise:hover {
color: #000;
background-color: #63d8d4;
border-color: #5ad6d1;
}
.btn-check:focus + .btn-mediumturquoise, .btn-mediumturquoise:focus {
color: #000;
background-color: #63d8d4;
border-color: #5ad6d1;
-webkit-box-shadow: 0 0 0 0.25rem rgba(61, 178, 173, 0.5);
box-shadow: 0 0 0 0.25rem rgba(61, 178, 173, 0.5);
}
.btn-check:checked + .btn-mediumturquoise,
.btn-check:active + .btn-mediumturquoise, .btn-mediumturquoise:active, .btn-mediumturquoise.active,
.show > .btn-mediumturquoise.dropdown-toggle {
color: #000;
background-color: #6ddad6;
border-color: #5ad6d1;
}
.btn-check:checked + .btn-mediumturquoise:focus,
.btn-check:active + .btn-mediumturquoise:focus, .btn-mediumturquoise:active:focus, .btn-mediumturquoise.active:focus,
.show > .btn-mediumturquoise.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(61, 178, 173, 0.5);
box-shadow: 0 0 0 0.25rem rgba(61, 178, 173, 0.5);
}
.btn-mediumturquoise:disabled, .btn-mediumturquoise.disabled {
color: #000;
background-color: #48D1CC;
border-color: #48D1CC;
}
.btn-mediumvioletred {
color: #fff;
background-color: #C71585;
border-color: #C71585;
}
.btn-mediumvioletred:hover {
color: #fff;
background-color: #a91271;
border-color: #9f116a;
}
.btn-check:focus + .btn-mediumvioletred, .btn-mediumvioletred:focus {
color: #fff;
background-color: #a91271;
border-color: #9f116a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(207, 56, 151, 0.5);
box-shadow: 0 0 0 0.25rem rgba(207, 56, 151, 0.5);
}
.btn-check:checked + .btn-mediumvioletred,
.btn-check:active + .btn-mediumvioletred, .btn-mediumvioletred:active, .btn-mediumvioletred.active,
.show > .btn-mediumvioletred.dropdown-toggle {
color: #fff;
background-color: #9f116a;
border-color: #951064;
}
.btn-check:checked + .btn-mediumvioletred:focus,
.btn-check:active + .btn-mediumvioletred:focus, .btn-mediumvioletred:active:focus, .btn-mediumvioletred.active:focus,
.show > .btn-mediumvioletred.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(207, 56, 151, 0.5);
box-shadow: 0 0 0 0.25rem rgba(207, 56, 151, 0.5);
}
.btn-mediumvioletred:disabled, .btn-mediumvioletred.disabled {
color: #fff;
background-color: #C71585;
border-color: #C71585;
}
.btn-midnightblue {
color: #fff;
background-color: #191970;
border-color: #191970;
}
.btn-midnightblue:hover {
color: #fff;
background-color: #15155f;
border-color: #14145a;
}
.btn-check:focus + .btn-midnightblue, .btn-midnightblue:focus {
color: #fff;
background-color: #15155f;
border-color: #14145a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 60, 133, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 60, 133, 0.5);
}
.btn-check:checked + .btn-midnightblue,
.btn-check:active + .btn-midnightblue, .btn-midnightblue:active, .btn-midnightblue.active,
.show > .btn-midnightblue.dropdown-toggle {
color: #fff;
background-color: #14145a;
border-color: #131354;
}
.btn-check:checked + .btn-midnightblue:focus,
.btn-check:active + .btn-midnightblue:focus, .btn-midnightblue:active:focus, .btn-midnightblue.active:focus,
.show > .btn-midnightblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 60, 133, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 60, 133, 0.5);
}
.btn-midnightblue:disabled, .btn-midnightblue.disabled {
color: #fff;
background-color: #191970;
border-color: #191970;
}
.btn-mintcream {
color: #000;
background-color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-mintcream:hover {
color: #000;
background-color: #f7fffb;
border-color: #f6fffb;
}
.btn-check:focus + .btn-mintcream, .btn-mintcream:focus {
color: #000;
background-color: #f7fffb;
border-color: #f6fffb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 217, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 217, 213, 0.5);
}
.btn-check:checked + .btn-mintcream,
.btn-check:active + .btn-mintcream, .btn-mintcream:active, .btn-mintcream.active,
.show > .btn-mintcream.dropdown-toggle {
color: #000;
background-color: #f7fffb;
border-color: #f6fffb;
}
.btn-check:checked + .btn-mintcream:focus,
.btn-check:active + .btn-mintcream:focus, .btn-mintcream:active:focus, .btn-mintcream.active:focus,
.show > .btn-mintcream.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 217, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 217, 213, 0.5);
}
.btn-mintcream:disabled, .btn-mintcream.disabled {
color: #000;
background-color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-mistyrose {
color: #000;
background-color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-mistyrose:hover {
color: #000;
background-color: #ffe8e6;
border-color: #ffe7e4;
}
.btn-check:focus + .btn-mistyrose, .btn-mistyrose:focus {
color: #000;
background-color: #ffe8e6;
border-color: #ffe7e4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 191, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 191, 0.5);
}
.btn-check:checked + .btn-mistyrose,
.btn-check:active + .btn-mistyrose, .btn-mistyrose:active, .btn-mistyrose.active,
.show > .btn-mistyrose.dropdown-toggle {
color: #000;
background-color: #ffe9e7;
border-color: #ffe7e4;
}
.btn-check:checked + .btn-mistyrose:focus,
.btn-check:active + .btn-mistyrose:focus, .btn-mistyrose:active:focus, .btn-mistyrose.active:focus,
.show > .btn-mistyrose.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 191, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 191, 0.5);
}
.btn-mistyrose:disabled, .btn-mistyrose.disabled {
color: #000;
background-color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-moccasin {
color: #000;
background-color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-moccasin:hover {
color: #000;
background-color: #ffe8c0;
border-color: #ffe7bc;
}
.btn-check:focus + .btn-moccasin, .btn-moccasin:focus {
color: #000;
background-color: #ffe8c0;
border-color: #ffe7bc;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 154, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 154, 0.5);
}
.btn-check:checked + .btn-moccasin,
.btn-check:active + .btn-moccasin, .btn-moccasin:active, .btn-moccasin.active,
.show > .btn-moccasin.dropdown-toggle {
color: #000;
background-color: #ffe9c4;
border-color: #ffe7bc;
}
.btn-check:checked + .btn-moccasin:focus,
.btn-check:active + .btn-moccasin:focus, .btn-moccasin:active:focus, .btn-moccasin.active:focus,
.show > .btn-moccasin.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 194, 154, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 194, 154, 0.5);
}
.btn-moccasin:disabled, .btn-moccasin.disabled {
color: #000;
background-color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-navajowhite {
color: #000;
background-color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-navajowhite:hover {
color: #000;
background-color: #ffe3b9;
border-color: #ffe1b5;
}
.btn-check:focus + .btn-navajowhite, .btn-navajowhite:focus {
color: #000;
background-color: #ffe3b9;
border-color: #ffe1b5;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 189, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 189, 147, 0.5);
}
.btn-check:checked + .btn-navajowhite,
.btn-check:active + .btn-navajowhite, .btn-navajowhite:active, .btn-navajowhite.active,
.show > .btn-navajowhite.dropdown-toggle {
color: #000;
background-color: #ffe5bd;
border-color: #ffe1b5;
}
.btn-check:checked + .btn-navajowhite:focus,
.btn-check:active + .btn-navajowhite:focus, .btn-navajowhite:active:focus, .btn-navajowhite.active:focus,
.show > .btn-navajowhite.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 189, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 189, 147, 0.5);
}
.btn-navajowhite:disabled, .btn-navajowhite.disabled {
color: #000;
background-color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-navy {
color: #fff;
background-color: #000080;
border-color: #000080;
}
.btn-navy:hover {
color: #fff;
background-color: #00006d;
border-color: #000066;
}
.btn-check:focus + .btn-navy, .btn-navy:focus {
color: #fff;
background-color: #00006d;
border-color: #000066;
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 147, 0.5);
}
.btn-check:checked + .btn-navy,
.btn-check:active + .btn-navy, .btn-navy:active, .btn-navy.active,
.show > .btn-navy.dropdown-toggle {
color: #fff;
background-color: #000066;
border-color: #000060;
}
.btn-check:checked + .btn-navy:focus,
.btn-check:active + .btn-navy:focus, .btn-navy:active:focus, .btn-navy.active:focus,
.show > .btn-navy.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(38, 38, 147, 0.5);
}
.btn-navy:disabled, .btn-navy.disabled {
color: #fff;
background-color: #000080;
border-color: #000080;
}
.btn-oldlace {
color: #000;
background-color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-oldlace:hover {
color: #000;
background-color: #fdf7ea;
border-color: #fdf6e9;
}
.btn-check:focus + .btn-oldlace, .btn-oldlace:focus {
color: #000;
background-color: #fdf7ea;
border-color: #fdf6e9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(215, 208, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(215, 208, 196, 0.5);
}
.btn-check:checked + .btn-oldlace,
.btn-check:active + .btn-oldlace, .btn-oldlace:active, .btn-oldlace.active,
.show > .btn-oldlace.dropdown-toggle {
color: #000;
background-color: #fdf7eb;
border-color: #fdf6e9;
}
.btn-check:checked + .btn-oldlace:focus,
.btn-check:active + .btn-oldlace:focus, .btn-oldlace:active:focus, .btn-oldlace.active:focus,
.show > .btn-oldlace.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(215, 208, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(215, 208, 196, 0.5);
}
.btn-oldlace:disabled, .btn-oldlace.disabled {
color: #000;
background-color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-olive {
color: #000;
background-color: #808000;
border-color: #808000;
}
.btn-olive:hover {
color: #000;
background-color: #939326;
border-color: #8d8d1a;
}
.btn-check:focus + .btn-olive, .btn-olive:focus {
color: #000;
background-color: #939326;
border-color: #8d8d1a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 0, 0.5);
}
.btn-check:checked + .btn-olive,
.btn-check:active + .btn-olive, .btn-olive:active, .btn-olive.active,
.show > .btn-olive.dropdown-toggle {
color: #000;
background-color: #999933;
border-color: #8d8d1a;
}
.btn-check:checked + .btn-olive:focus,
.btn-check:active + .btn-olive:focus, .btn-olive:active:focus, .btn-olive.active:focus,
.show > .btn-olive.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(109, 109, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(109, 109, 0, 0.5);
}
.btn-olive:disabled, .btn-olive.disabled {
color: #000;
background-color: #808000;
border-color: #808000;
}
.btn-olivedrab {
color: #000;
background-color: #6B8E23;
border-color: #6B8E23;
}
.btn-olivedrab:hover {
color: #000;
background-color: #819f44;
border-color: #7a9939;
}
.btn-check:focus + .btn-olivedrab, .btn-olivedrab:focus {
color: #000;
background-color: #819f44;
border-color: #7a9939;
-webkit-box-shadow: 0 0 0 0.25rem rgba(91, 121, 30, 0.5);
box-shadow: 0 0 0 0.25rem rgba(91, 121, 30, 0.5);
}
.btn-check:checked + .btn-olivedrab,
.btn-check:active + .btn-olivedrab, .btn-olivedrab:active, .btn-olivedrab.active,
.show > .btn-olivedrab.dropdown-toggle {
color: #000;
background-color: #89a54f;
border-color: #7a9939;
}
.btn-check:checked + .btn-olivedrab:focus,
.btn-check:active + .btn-olivedrab:focus, .btn-olivedrab:active:focus, .btn-olivedrab.active:focus,
.show > .btn-olivedrab.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(91, 121, 30, 0.5);
box-shadow: 0 0 0 0.25rem rgba(91, 121, 30, 0.5);
}
.btn-olivedrab:disabled, .btn-olivedrab.disabled {
color: #000;
background-color: #6B8E23;
border-color: #6B8E23;
}
.btn-orangered {
color: #000;
background-color: #FF4500;
border-color: #FF4500;
}
.btn-orangered:hover {
color: #000;
background-color: #ff6126;
border-color: #ff581a;
}
.btn-check:focus + .btn-orangered, .btn-orangered:focus {
color: #000;
background-color: #ff6126;
border-color: #ff581a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 59, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 59, 0, 0.5);
}
.btn-check:checked + .btn-orangered,
.btn-check:active + .btn-orangered, .btn-orangered:active, .btn-orangered.active,
.show > .btn-orangered.dropdown-toggle {
color: #000;
background-color: #ff6a33;
border-color: #ff581a;
}
.btn-check:checked + .btn-orangered:focus,
.btn-check:active + .btn-orangered:focus, .btn-orangered:active:focus, .btn-orangered.active:focus,
.show > .btn-orangered.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 59, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 59, 0, 0.5);
}
.btn-orangered:disabled, .btn-orangered.disabled {
color: #000;
background-color: #FF4500;
border-color: #FF4500;
}
.btn-orchid {
color: #000;
background-color: #DA70D6;
border-color: #DA70D6;
}
.btn-orchid:hover {
color: #000;
background-color: #e085dc;
border-color: #de7eda;
}
.btn-check:focus + .btn-orchid, .btn-orchid:focus {
color: #000;
background-color: #e085dc;
border-color: #de7eda;
-webkit-box-shadow: 0 0 0 0.25rem rgba(185, 95, 182, 0.5);
box-shadow: 0 0 0 0.25rem rgba(185, 95, 182, 0.5);
}
.btn-check:checked + .btn-orchid,
.btn-check:active + .btn-orchid, .btn-orchid:active, .btn-orchid.active,
.show > .btn-orchid.dropdown-toggle {
color: #000;
background-color: #e18dde;
border-color: #de7eda;
}
.btn-check:checked + .btn-orchid:focus,
.btn-check:active + .btn-orchid:focus, .btn-orchid:active:focus, .btn-orchid.active:focus,
.show > .btn-orchid.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(185, 95, 182, 0.5);
box-shadow: 0 0 0 0.25rem rgba(185, 95, 182, 0.5);
}
.btn-orchid:disabled, .btn-orchid.disabled {
color: #000;
background-color: #DA70D6;
border-color: #DA70D6;
}
.btn-palegoldenrod {
color: #000;
background-color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-palegoldenrod:hover {
color: #000;
background-color: #f1ebb7;
border-color: #f0eab3;
}
.btn-check:focus + .btn-palegoldenrod, .btn-palegoldenrod:focus {
color: #000;
background-color: #f1ebb7;
border-color: #f0eab3;
-webkit-box-shadow: 0 0 0 0.25rem rgba(202, 197, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(202, 197, 145, 0.5);
}
.btn-check:checked + .btn-palegoldenrod,
.btn-check:active + .btn-palegoldenrod, .btn-palegoldenrod:active, .btn-palegoldenrod.active,
.show > .btn-palegoldenrod.dropdown-toggle {
color: #000;
background-color: #f1edbb;
border-color: #f0eab3;
}
.btn-check:checked + .btn-palegoldenrod:focus,
.btn-check:active + .btn-palegoldenrod:focus, .btn-palegoldenrod:active:focus, .btn-palegoldenrod.active:focus,
.show > .btn-palegoldenrod.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(202, 197, 145, 0.5);
box-shadow: 0 0 0 0.25rem rgba(202, 197, 145, 0.5);
}
.btn-palegoldenrod:disabled, .btn-palegoldenrod.disabled {
color: #000;
background-color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-palegreen {
color: #000;
background-color: #98FB98;
border-color: #98FB98;
}
.btn-palegreen:hover {
color: #000;
background-color: #a7fca7;
border-color: #a2fba2;
}
.btn-check:focus + .btn-palegreen, .btn-palegreen:focus {
color: #000;
background-color: #a7fca7;
border-color: #a2fba2;
-webkit-box-shadow: 0 0 0 0.25rem rgba(129, 213, 129, 0.5);
box-shadow: 0 0 0 0.25rem rgba(129, 213, 129, 0.5);
}
.btn-check:checked + .btn-palegreen,
.btn-check:active + .btn-palegreen, .btn-palegreen:active, .btn-palegreen.active,
.show > .btn-palegreen.dropdown-toggle {
color: #000;
background-color: #adfcad;
border-color: #a2fba2;
}
.btn-check:checked + .btn-palegreen:focus,
.btn-check:active + .btn-palegreen:focus, .btn-palegreen:active:focus, .btn-palegreen.active:focus,
.show > .btn-palegreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(129, 213, 129, 0.5);
box-shadow: 0 0 0 0.25rem rgba(129, 213, 129, 0.5);
}
.btn-palegreen:disabled, .btn-palegreen.disabled {
color: #000;
background-color: #98FB98;
border-color: #98FB98;
}
.btn-paleturquoise {
color: #000;
background-color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-paleturquoise:hover {
color: #000;
background-color: #bbf1f1;
border-color: #b7f0f0;
}
.btn-check:focus + .btn-paleturquoise, .btn-paleturquoise:focus {
color: #000;
background-color: #bbf1f1;
border-color: #b7f0f0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(149, 202, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(149, 202, 202, 0.5);
}
.btn-check:checked + .btn-paleturquoise,
.btn-check:active + .btn-paleturquoise, .btn-paleturquoise:active, .btn-paleturquoise.active,
.show > .btn-paleturquoise.dropdown-toggle {
color: #000;
background-color: #bff1f1;
border-color: #b7f0f0;
}
.btn-check:checked + .btn-paleturquoise:focus,
.btn-check:active + .btn-paleturquoise:focus, .btn-paleturquoise:active:focus, .btn-paleturquoise.active:focus,
.show > .btn-paleturquoise.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(149, 202, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(149, 202, 202, 0.5);
}
.btn-paleturquoise:disabled, .btn-paleturquoise.disabled {
color: #000;
background-color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-palevioletred {
color: #000;
background-color: #DB7093;
border-color: #DB7093;
}
.btn-palevioletred:hover {
color: #000;
background-color: #e085a3;
border-color: #df7e9e;
}
.btn-check:focus + .btn-palevioletred, .btn-palevioletred:focus {
color: #000;
background-color: #e085a3;
border-color: #df7e9e;
-webkit-box-shadow: 0 0 0 0.25rem rgba(186, 95, 125, 0.5);
box-shadow: 0 0 0 0.25rem rgba(186, 95, 125, 0.5);
}
.btn-check:checked + .btn-palevioletred,
.btn-check:active + .btn-palevioletred, .btn-palevioletred:active, .btn-palevioletred.active,
.show > .btn-palevioletred.dropdown-toggle {
color: #000;
background-color: #e28da9;
border-color: #df7e9e;
}
.btn-check:checked + .btn-palevioletred:focus,
.btn-check:active + .btn-palevioletred:focus, .btn-palevioletred:active:focus, .btn-palevioletred.active:focus,
.show > .btn-palevioletred.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(186, 95, 125, 0.5);
box-shadow: 0 0 0 0.25rem rgba(186, 95, 125, 0.5);
}
.btn-palevioletred:disabled, .btn-palevioletred.disabled {
color: #000;
background-color: #DB7093;
border-color: #DB7093;
}
.btn-papayawhip {
color: #000;
background-color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-papayawhip:hover {
color: #000;
background-color: #fff1db;
border-color: #fff1d9;
}
.btn-check:focus + .btn-papayawhip, .btn-papayawhip:focus {
color: #000;
background-color: #fff1db;
border-color: #fff1d9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 203, 181, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 203, 181, 0.5);
}
.btn-check:checked + .btn-papayawhip,
.btn-check:active + .btn-papayawhip, .btn-papayawhip:active, .btn-papayawhip.active,
.show > .btn-papayawhip.dropdown-toggle {
color: #000;
background-color: #fff2dd;
border-color: #fff1d9;
}
.btn-check:checked + .btn-papayawhip:focus,
.btn-check:active + .btn-papayawhip:focus, .btn-papayawhip:active:focus, .btn-papayawhip.active:focus,
.show > .btn-papayawhip.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 203, 181, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 203, 181, 0.5);
}
.btn-papayawhip:disabled, .btn-papayawhip.disabled {
color: #000;
background-color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-peachpuff {
color: #000;
background-color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-peachpuff:hover {
color: #000;
background-color: #ffe0c4;
border-color: #ffdec0;
}
.btn-check:focus + .btn-peachpuff, .btn-peachpuff:focus {
color: #000;
background-color: #ffe0c4;
border-color: #ffdec0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 185, 157, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 185, 157, 0.5);
}
.btn-check:checked + .btn-peachpuff,
.btn-check:active + .btn-peachpuff, .btn-peachpuff:active, .btn-peachpuff.active,
.show > .btn-peachpuff.dropdown-toggle {
color: #000;
background-color: #ffe1c7;
border-color: #ffdec0;
}
.btn-check:checked + .btn-peachpuff:focus,
.btn-check:active + .btn-peachpuff:focus, .btn-peachpuff:active:focus, .btn-peachpuff.active:focus,
.show > .btn-peachpuff.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 185, 157, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 185, 157, 0.5);
}
.btn-peachpuff:disabled, .btn-peachpuff.disabled {
color: #000;
background-color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-peru {
color: #000;
background-color: #CD853F;
border-color: #CD853F;
}
.btn-peru:hover {
color: #000;
background-color: #d5975c;
border-color: #d29152;
}
.btn-check:focus + .btn-peru, .btn-peru:focus {
color: #000;
background-color: #d5975c;
border-color: #d29152;
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 113, 54, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 113, 54, 0.5);
}
.btn-check:checked + .btn-peru,
.btn-check:active + .btn-peru, .btn-peru:active, .btn-peru.active,
.show > .btn-peru.dropdown-toggle {
color: #000;
background-color: #d79d65;
border-color: #d29152;
}
.btn-check:checked + .btn-peru:focus,
.btn-check:active + .btn-peru:focus, .btn-peru:active:focus, .btn-peru.active:focus,
.show > .btn-peru.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 113, 54, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 113, 54, 0.5);
}
.btn-peru:disabled, .btn-peru.disabled {
color: #000;
background-color: #CD853F;
border-color: #CD853F;
}
.btn-plum {
color: #000;
background-color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-plum:hover {
color: #000;
background-color: #e2aee2;
border-color: #e0aae0;
}
.btn-check:focus + .btn-plum, .btn-plum:focus {
color: #000;
background-color: #e2aee2;
border-color: #e0aae0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(188, 136, 188, 0.5);
box-shadow: 0 0 0 0.25rem rgba(188, 136, 188, 0.5);
}
.btn-check:checked + .btn-plum,
.btn-check:active + .btn-plum, .btn-plum:active, .btn-plum.active,
.show > .btn-plum.dropdown-toggle {
color: #000;
background-color: #e4b3e4;
border-color: #e0aae0;
}
.btn-check:checked + .btn-plum:focus,
.btn-check:active + .btn-plum:focus, .btn-plum:active:focus, .btn-plum.active:focus,
.show > .btn-plum.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(188, 136, 188, 0.5);
box-shadow: 0 0 0 0.25rem rgba(188, 136, 188, 0.5);
}
.btn-plum:disabled, .btn-plum.disabled {
color: #000;
background-color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-powderblue {
color: #000;
background-color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-powderblue:hover {
color: #000;
background-color: #bce5ea;
border-color: #b8e3e9;
}
.btn-check:focus + .btn-powderblue, .btn-powderblue:focus {
color: #000;
background-color: #bce5ea;
border-color: #b8e3e9;
-webkit-box-shadow: 0 0 0 0.25rem rgba(150, 190, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(150, 190, 196, 0.5);
}
.btn-check:checked + .btn-powderblue,
.btn-check:active + .btn-powderblue, .btn-powderblue:active, .btn-powderblue.active,
.show > .btn-powderblue.dropdown-toggle {
color: #000;
background-color: #c0e6eb;
border-color: #b8e3e9;
}
.btn-check:checked + .btn-powderblue:focus,
.btn-check:active + .btn-powderblue:focus, .btn-powderblue:active:focus, .btn-powderblue.active:focus,
.show > .btn-powderblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(150, 190, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(150, 190, 196, 0.5);
}
.btn-powderblue:disabled, .btn-powderblue.disabled {
color: #000;
background-color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-rebeccapurple {
color: #fff;
background-color: #663399;
border-color: #663399;
}
.btn-rebeccapurple:hover {
color: #fff;
background-color: #572b82;
border-color: #52297a;
}
.btn-check:focus + .btn-rebeccapurple, .btn-rebeccapurple:focus {
color: #fff;
background-color: #572b82;
border-color: #52297a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(125, 82, 168, 0.5);
box-shadow: 0 0 0 0.25rem rgba(125, 82, 168, 0.5);
}
.btn-check:checked + .btn-rebeccapurple,
.btn-check:active + .btn-rebeccapurple, .btn-rebeccapurple:active, .btn-rebeccapurple.active,
.show > .btn-rebeccapurple.dropdown-toggle {
color: #fff;
background-color: #52297a;
border-color: #4d2673;
}
.btn-check:checked + .btn-rebeccapurple:focus,
.btn-check:active + .btn-rebeccapurple:focus, .btn-rebeccapurple:active:focus, .btn-rebeccapurple.active:focus,
.show > .btn-rebeccapurple.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(125, 82, 168, 0.5);
box-shadow: 0 0 0 0.25rem rgba(125, 82, 168, 0.5);
}
.btn-rebeccapurple:disabled, .btn-rebeccapurple.disabled {
color: #fff;
background-color: #663399;
border-color: #663399;
}
.btn-rosybrown {
color: #000;
background-color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-rosybrown:hover {
color: #000;
background-color: #c6a0a0;
border-color: #c39a9a;
}
.btn-check:focus + .btn-rosybrown, .btn-rosybrown:focus {
color: #000;
background-color: #c6a0a0;
border-color: #c39a9a;
-webkit-box-shadow: 0 0 0 0.25rem rgba(160, 122, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(160, 122, 122, 0.5);
}
.btn-check:checked + .btn-rosybrown,
.btn-check:active + .btn-rosybrown, .btn-rosybrown:active, .btn-rosybrown.active,
.show > .btn-rosybrown.dropdown-toggle {
color: #000;
background-color: #c9a5a5;
border-color: #c39a9a;
}
.btn-check:checked + .btn-rosybrown:focus,
.btn-check:active + .btn-rosybrown:focus, .btn-rosybrown:active:focus, .btn-rosybrown.active:focus,
.show > .btn-rosybrown.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(160, 122, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(160, 122, 122, 0.5);
}
.btn-rosybrown:disabled, .btn-rosybrown.disabled {
color: #000;
background-color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-royalblue {
color: #fff;
background-color: #4169E1;
border-color: #4169E1;
}
.btn-royalblue:hover {
color: #fff;
background-color: #3759bf;
border-color: #3454b4;
}
.btn-check:focus + .btn-royalblue, .btn-royalblue:focus {
color: #fff;
background-color: #3759bf;
border-color: #3454b4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(94, 128, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(94, 128, 230, 0.5);
}
.btn-check:checked + .btn-royalblue,
.btn-check:active + .btn-royalblue, .btn-royalblue:active, .btn-royalblue.active,
.show > .btn-royalblue.dropdown-toggle {
color: #fff;
background-color: #3454b4;
border-color: #314fa9;
}
.btn-check:checked + .btn-royalblue:focus,
.btn-check:active + .btn-royalblue:focus, .btn-royalblue:active:focus, .btn-royalblue.active:focus,
.show > .btn-royalblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(94, 128, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(94, 128, 230, 0.5);
}
.btn-royalblue:disabled, .btn-royalblue.disabled {
color: #fff;
background-color: #4169E1;
border-color: #4169E1;
}
.btn-saddlebrown {
color: #fff;
background-color: #8B4513;
border-color: #8B4513;
}
.btn-saddlebrown:hover {
color: #fff;
background-color: #763b10;
border-color: #6f370f;
}
.btn-check:focus + .btn-saddlebrown, .btn-saddlebrown:focus {
color: #fff;
background-color: #763b10;
border-color: #6f370f;
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 97, 54, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 97, 54, 0.5);
}
.btn-check:checked + .btn-saddlebrown,
.btn-check:active + .btn-saddlebrown, .btn-saddlebrown:active, .btn-saddlebrown.active,
.show > .btn-saddlebrown.dropdown-toggle {
color: #fff;
background-color: #6f370f;
border-color: #68340e;
}
.btn-check:checked + .btn-saddlebrown:focus,
.btn-check:active + .btn-saddlebrown:focus, .btn-saddlebrown:active:focus, .btn-saddlebrown.active:focus,
.show > .btn-saddlebrown.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(156, 97, 54, 0.5);
box-shadow: 0 0 0 0.25rem rgba(156, 97, 54, 0.5);
}
.btn-saddlebrown:disabled, .btn-saddlebrown.disabled {
color: #fff;
background-color: #8B4513;
border-color: #8B4513;
}
.btn-salmon {
color: #000;
background-color: #FA8072;
border-color: #FA8072;
}
.btn-salmon:hover {
color: #000;
background-color: #fb9387;
border-color: #fb8d80;
}
.btn-check:focus + .btn-salmon, .btn-salmon:focus {
color: #000;
background-color: #fb9387;
border-color: #fb8d80;
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 109, 97, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 109, 97, 0.5);
}
.btn-check:checked + .btn-salmon,
.btn-check:active + .btn-salmon, .btn-salmon:active, .btn-salmon.active,
.show > .btn-salmon.dropdown-toggle {
color: #000;
background-color: #fb998e;
border-color: #fb8d80;
}
.btn-check:checked + .btn-salmon:focus,
.btn-check:active + .btn-salmon:focus, .btn-salmon:active:focus, .btn-salmon.active:focus,
.show > .btn-salmon.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(213, 109, 97, 0.5);
box-shadow: 0 0 0 0.25rem rgba(213, 109, 97, 0.5);
}
.btn-salmon:disabled, .btn-salmon.disabled {
color: #000;
background-color: #FA8072;
border-color: #FA8072;
}
.btn-sandybrown {
color: #000;
background-color: #F4A460;
border-color: #F4A460;
}
.btn-sandybrown:hover {
color: #000;
background-color: #f6b278;
border-color: #f5ad70;
}
.btn-check:focus + .btn-sandybrown, .btn-sandybrown:focus {
color: #000;
background-color: #f6b278;
border-color: #f5ad70;
-webkit-box-shadow: 0 0 0 0.25rem rgba(207, 139, 82, 0.5);
box-shadow: 0 0 0 0.25rem rgba(207, 139, 82, 0.5);
}
.btn-check:checked + .btn-sandybrown,
.btn-check:active + .btn-sandybrown, .btn-sandybrown:active, .btn-sandybrown.active,
.show > .btn-sandybrown.dropdown-toggle {
color: #000;
background-color: #f6b680;
border-color: #f5ad70;
}
.btn-check:checked + .btn-sandybrown:focus,
.btn-check:active + .btn-sandybrown:focus, .btn-sandybrown:active:focus, .btn-sandybrown.active:focus,
.show > .btn-sandybrown.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(207, 139, 82, 0.5);
box-shadow: 0 0 0 0.25rem rgba(207, 139, 82, 0.5);
}
.btn-sandybrown:disabled, .btn-sandybrown.disabled {
color: #000;
background-color: #F4A460;
border-color: #F4A460;
}
.btn-seagreen {
color: #000;
background-color: #2E8B57;
border-color: #2E8B57;
}
.btn-seagreen:hover {
color: #000;
background-color: #4d9c70;
border-color: #439768;
}
.btn-check:focus + .btn-seagreen, .btn-seagreen:focus {
color: #000;
background-color: #4d9c70;
border-color: #439768;
-webkit-box-shadow: 0 0 0 0.25rem rgba(39, 118, 74, 0.5);
box-shadow: 0 0 0 0.25rem rgba(39, 118, 74, 0.5);
}
.btn-check:checked + .btn-seagreen,
.btn-check:active + .btn-seagreen, .btn-seagreen:active, .btn-seagreen.active,
.show > .btn-seagreen.dropdown-toggle {
color: #000;
background-color: #58a279;
border-color: #439768;
}
.btn-check:checked + .btn-seagreen:focus,
.btn-check:active + .btn-seagreen:focus, .btn-seagreen:active:focus, .btn-seagreen.active:focus,
.show > .btn-seagreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(39, 118, 74, 0.5);
box-shadow: 0 0 0 0.25rem rgba(39, 118, 74, 0.5);
}
.btn-seagreen:disabled, .btn-seagreen.disabled {
color: #000;
background-color: #2E8B57;
border-color: #2E8B57;
}
.btn-seashell {
color: #000;
background-color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-seashell:hover {
color: #000;
background-color: #fff7f1;
border-color: #fff6f0;
}
.btn-check:focus + .btn-seashell, .btn-seashell:focus {
color: #000;
background-color: #fff7f1;
border-color: #fff6f0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 208, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 208, 202, 0.5);
}
.btn-check:checked + .btn-seashell,
.btn-check:active + .btn-seashell, .btn-seashell:active, .btn-seashell.active,
.show > .btn-seashell.dropdown-toggle {
color: #000;
background-color: #fff7f1;
border-color: #fff6f0;
}
.btn-check:checked + .btn-seashell:focus,
.btn-check:active + .btn-seashell:focus, .btn-seashell:active:focus, .btn-seashell.active:focus,
.show > .btn-seashell.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 208, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 208, 202, 0.5);
}
.btn-seashell:disabled, .btn-seashell.disabled {
color: #000;
background-color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-sienna {
color: #fff;
background-color: #A0522D;
border-color: #A0522D;
}
.btn-sienna:hover {
color: #fff;
background-color: #884626;
border-color: #804224;
}
.btn-check:focus + .btn-sienna, .btn-sienna:focus {
color: #fff;
background-color: #884626;
border-color: #804224;
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 108, 77, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 108, 77, 0.5);
}
.btn-check:checked + .btn-sienna,
.btn-check:active + .btn-sienna, .btn-sienna:active, .btn-sienna.active,
.show > .btn-sienna.dropdown-toggle {
color: #fff;
background-color: #804224;
border-color: #783e22;
}
.btn-check:checked + .btn-sienna:focus,
.btn-check:active + .btn-sienna:focus, .btn-sienna:active:focus, .btn-sienna.active:focus,
.show > .btn-sienna.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(174, 108, 77, 0.5);
box-shadow: 0 0 0 0.25rem rgba(174, 108, 77, 0.5);
}
.btn-sienna:disabled, .btn-sienna.disabled {
color: #fff;
background-color: #A0522D;
border-color: #A0522D;
}
.btn-silver {
color: #000;
background-color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-silver:hover {
color: #000;
background-color: #c9c9c9;
border-color: #c6c6c6;
}
.btn-check:focus + .btn-silver, .btn-silver:focus {
color: #000;
background-color: #c9c9c9;
border-color: #c6c6c6;
-webkit-box-shadow: 0 0 0 0.25rem rgba(163, 163, 163, 0.5);
box-shadow: 0 0 0 0.25rem rgba(163, 163, 163, 0.5);
}
.btn-check:checked + .btn-silver,
.btn-check:active + .btn-silver, .btn-silver:active, .btn-silver.active,
.show > .btn-silver.dropdown-toggle {
color: #000;
background-color: #cdcdcd;
border-color: #c6c6c6;
}
.btn-check:checked + .btn-silver:focus,
.btn-check:active + .btn-silver:focus, .btn-silver:active:focus, .btn-silver.active:focus,
.show > .btn-silver.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(163, 163, 163, 0.5);
box-shadow: 0 0 0 0.25rem rgba(163, 163, 163, 0.5);
}
.btn-silver:disabled, .btn-silver.disabled {
color: #000;
background-color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-skyblue {
color: #000;
background-color: #87CEEB;
border-color: #87CEEB;
}
.btn-skyblue:hover {
color: #000;
background-color: #99d5ee;
border-color: #93d3ed;
}
.btn-check:focus + .btn-skyblue, .btn-skyblue:focus {
color: #000;
background-color: #99d5ee;
border-color: #93d3ed;
-webkit-box-shadow: 0 0 0 0.25rem rgba(115, 175, 200, 0.5);
box-shadow: 0 0 0 0.25rem rgba(115, 175, 200, 0.5);
}
.btn-check:checked + .btn-skyblue,
.btn-check:active + .btn-skyblue, .btn-skyblue:active, .btn-skyblue.active,
.show > .btn-skyblue.dropdown-toggle {
color: #000;
background-color: #9fd8ef;
border-color: #93d3ed;
}
.btn-check:checked + .btn-skyblue:focus,
.btn-check:active + .btn-skyblue:focus, .btn-skyblue:active:focus, .btn-skyblue.active:focus,
.show > .btn-skyblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(115, 175, 200, 0.5);
box-shadow: 0 0 0 0.25rem rgba(115, 175, 200, 0.5);
}
.btn-skyblue:disabled, .btn-skyblue.disabled {
color: #000;
background-color: #87CEEB;
border-color: #87CEEB;
}
.btn-slateblue {
color: #fff;
background-color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-slateblue:hover {
color: #fff;
background-color: #5a4dae;
border-color: #5548a4;
}
.btn-check:focus + .btn-slateblue, .btn-slateblue:focus {
color: #fff;
background-color: #5a4dae;
border-color: #5548a4;
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 115, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 115, 213, 0.5);
}
.btn-check:checked + .btn-slateblue,
.btn-check:active + .btn-slateblue, .btn-slateblue:active, .btn-slateblue.active,
.show > .btn-slateblue.dropdown-toggle {
color: #fff;
background-color: #5548a4;
border-color: #50449a;
}
.btn-check:checked + .btn-slateblue:focus,
.btn-check:active + .btn-slateblue:focus, .btn-slateblue:active:focus, .btn-slateblue.active:focus,
.show > .btn-slateblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 115, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 115, 213, 0.5);
}
.btn-slateblue:disabled, .btn-slateblue.disabled {
color: #fff;
background-color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-slategray {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-slategray:hover {
color: #000;
background-color: #8593a1;
border-color: #7e8d9b;
}
.btn-check:focus + .btn-slategray, .btn-slategray:focus {
color: #000;
background-color: #8593a1;
border-color: #7e8d9b;
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
}
.btn-check:checked + .btn-slategray,
.btn-check:active + .btn-slategray, .btn-slategray:active, .btn-slategray.active,
.show > .btn-slategray.dropdown-toggle {
color: #000;
background-color: #8d99a6;
border-color: #7e8d9b;
}
.btn-check:checked + .btn-slategray:focus,
.btn-check:active + .btn-slategray:focus, .btn-slategray:active:focus, .btn-slategray.active:focus,
.show > .btn-slategray.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
}
.btn-slategray:disabled, .btn-slategray.disabled {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-slategrey {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-slategrey:hover {
color: #000;
background-color: #8593a1;
border-color: #7e8d9b;
}
.btn-check:focus + .btn-slategrey, .btn-slategrey:focus {
color: #000;
background-color: #8593a1;
border-color: #7e8d9b;
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
}
.btn-check:checked + .btn-slategrey,
.btn-check:active + .btn-slategrey, .btn-slategrey:active, .btn-slategrey.active,
.show > .btn-slategrey.dropdown-toggle {
color: #000;
background-color: #8d99a6;
border-color: #7e8d9b;
}
.btn-check:checked + .btn-slategrey:focus,
.btn-check:active + .btn-slategrey:focus, .btn-slategrey:active:focus, .btn-slategrey.active:focus,
.show > .btn-slategrey.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 109, 122, 0.5);
}
.btn-slategrey:disabled, .btn-slategrey.disabled {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-snow {
color: #000;
background-color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-snow:hover {
color: #000;
background-color: #fffbfb;
border-color: #fffbfb;
}
.btn-check:focus + .btn-snow, .btn-snow:focus {
color: #000;
background-color: #fffbfb;
border-color: #fffbfb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 213, 0.5);
}
.btn-check:checked + .btn-snow,
.btn-check:active + .btn-snow, .btn-snow:active, .btn-snow.active,
.show > .btn-snow.dropdown-toggle {
color: #000;
background-color: #fffbfb;
border-color: #fffbfb;
}
.btn-check:checked + .btn-snow:focus,
.btn-check:active + .btn-snow:focus, .btn-snow:active:focus, .btn-snow.active:focus,
.show > .btn-snow.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 213, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 213, 213, 0.5);
}
.btn-snow:disabled, .btn-snow.disabled {
color: #000;
background-color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-springgreen {
color: #000;
background-color: #00FF7F;
border-color: #00FF7F;
}
.btn-springgreen:hover {
color: #000;
background-color: #26ff92;
border-color: #1aff8c;
}
.btn-check:focus + .btn-springgreen, .btn-springgreen:focus {
color: #000;
background-color: #26ff92;
border-color: #1aff8c;
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 108, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 108, 0.5);
}
.btn-check:checked + .btn-springgreen,
.btn-check:active + .btn-springgreen, .btn-springgreen:active, .btn-springgreen.active,
.show > .btn-springgreen.dropdown-toggle {
color: #000;
background-color: #33ff99;
border-color: #1aff8c;
}
.btn-check:checked + .btn-springgreen:focus,
.btn-check:active + .btn-springgreen:focus, .btn-springgreen:active:focus, .btn-springgreen.active:focus,
.show > .btn-springgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 217, 108, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 217, 108, 0.5);
}
.btn-springgreen:disabled, .btn-springgreen.disabled {
color: #000;
background-color: #00FF7F;
border-color: #00FF7F;
}
.btn-steelblue {
color: #000;
background-color: #4682B4;
border-color: #4682B4;
}
.btn-steelblue:hover {
color: #000;
background-color: #6295bf;
border-color: #598fbc;
}
.btn-check:focus + .btn-steelblue, .btn-steelblue:focus {
color: #000;
background-color: #6295bf;
border-color: #598fbc;
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 111, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 111, 153, 0.5);
}
.btn-check:checked + .btn-steelblue,
.btn-check:active + .btn-steelblue, .btn-steelblue:active, .btn-steelblue.active,
.show > .btn-steelblue.dropdown-toggle {
color: #000;
background-color: #6b9bc3;
border-color: #598fbc;
}
.btn-check:checked + .btn-steelblue:focus,
.btn-check:active + .btn-steelblue:focus, .btn-steelblue:active:focus, .btn-steelblue.active:focus,
.show > .btn-steelblue.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 111, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 111, 153, 0.5);
}
.btn-steelblue:disabled, .btn-steelblue.disabled {
color: #000;
background-color: #4682B4;
border-color: #4682B4;
}
.btn-tan {
color: #000;
background-color: #D2B48C;
border-color: #D2B48C;
}
.btn-tan:hover {
color: #000;
background-color: #d9bf9d;
border-color: #d7bc98;
}
.btn-check:focus + .btn-tan, .btn-tan:focus {
color: #000;
background-color: #d9bf9d;
border-color: #d7bc98;
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 153, 119, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 153, 119, 0.5);
}
.btn-check:checked + .btn-tan,
.btn-check:active + .btn-tan, .btn-tan:active, .btn-tan.active,
.show > .btn-tan.dropdown-toggle {
color: #000;
background-color: #dbc3a3;
border-color: #d7bc98;
}
.btn-check:checked + .btn-tan:focus,
.btn-check:active + .btn-tan:focus, .btn-tan:active:focus, .btn-tan.active:focus,
.show > .btn-tan.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(179, 153, 119, 0.5);
box-shadow: 0 0 0 0.25rem rgba(179, 153, 119, 0.5);
}
.btn-tan:disabled, .btn-tan.disabled {
color: #000;
background-color: #D2B48C;
border-color: #D2B48C;
}
.btn-thistle {
color: #000;
background-color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-thistle:hover {
color: #000;
background-color: #dec9de;
border-color: #dcc5dc;
}
.btn-check:focus + .btn-thistle, .btn-thistle:focus {
color: #000;
background-color: #dec9de;
border-color: #dcc5dc;
-webkit-box-shadow: 0 0 0 0.25rem rgba(184, 162, 184, 0.5);
box-shadow: 0 0 0 0.25rem rgba(184, 162, 184, 0.5);
}
.btn-check:checked + .btn-thistle,
.btn-check:active + .btn-thistle, .btn-thistle:active, .btn-thistle.active,
.show > .btn-thistle.dropdown-toggle {
color: #000;
background-color: #e0cce0;
border-color: #dcc5dc;
}
.btn-check:checked + .btn-thistle:focus,
.btn-check:active + .btn-thistle:focus, .btn-thistle:active:focus, .btn-thistle.active:focus,
.show > .btn-thistle.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(184, 162, 184, 0.5);
box-shadow: 0 0 0 0.25rem rgba(184, 162, 184, 0.5);
}
.btn-thistle:disabled, .btn-thistle.disabled {
color: #000;
background-color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-tomato {
color: #000;
background-color: #FF6347;
border-color: #FF6347;
}
.btn-tomato:hover {
color: #000;
background-color: #ff7a63;
border-color: #ff7359;
}
.btn-check:focus + .btn-tomato, .btn-tomato:focus {
color: #000;
background-color: #ff7a63;
border-color: #ff7359;
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 84, 60, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 84, 60, 0.5);
}
.btn-check:checked + .btn-tomato,
.btn-check:active + .btn-tomato, .btn-tomato:active, .btn-tomato.active,
.show > .btn-tomato.dropdown-toggle {
color: #000;
background-color: #ff826c;
border-color: #ff7359;
}
.btn-check:checked + .btn-tomato:focus,
.btn-check:active + .btn-tomato:focus, .btn-tomato:active:focus, .btn-tomato.active:focus,
.show > .btn-tomato.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(217, 84, 60, 0.5);
box-shadow: 0 0 0 0.25rem rgba(217, 84, 60, 0.5);
}
.btn-tomato:disabled, .btn-tomato.disabled {
color: #000;
background-color: #FF6347;
border-color: #FF6347;
}
.btn-turquoise {
color: #000;
background-color: #40E0D0;
border-color: #40E0D0;
}
.btn-turquoise:hover {
color: #000;
background-color: #5de5d7;
border-color: #53e3d5;
}
.btn-check:focus + .btn-turquoise, .btn-turquoise:focus {
color: #000;
background-color: #5de5d7;
border-color: #53e3d5;
-webkit-box-shadow: 0 0 0 0.25rem rgba(54, 190, 177, 0.5);
box-shadow: 0 0 0 0.25rem rgba(54, 190, 177, 0.5);
}
.btn-check:checked + .btn-turquoise,
.btn-check:active + .btn-turquoise, .btn-turquoise:active, .btn-turquoise.active,
.show > .btn-turquoise.dropdown-toggle {
color: #000;
background-color: #66e6d9;
border-color: #53e3d5;
}
.btn-check:checked + .btn-turquoise:focus,
.btn-check:active + .btn-turquoise:focus, .btn-turquoise:active:focus, .btn-turquoise.active:focus,
.show > .btn-turquoise.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(54, 190, 177, 0.5);
box-shadow: 0 0 0 0.25rem rgba(54, 190, 177, 0.5);
}
.btn-turquoise:disabled, .btn-turquoise.disabled {
color: #000;
background-color: #40E0D0;
border-color: #40E0D0;
}
.btn-violet {
color: #000;
background-color: #EE82EE;
border-color: #EE82EE;
}
.btn-violet:hover {
color: #000;
background-color: #f195f1;
border-color: #f08ff0;
}
.btn-check:focus + .btn-violet, .btn-violet:focus {
color: #000;
background-color: #f195f1;
border-color: #f08ff0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(202, 111, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(202, 111, 202, 0.5);
}
.btn-check:checked + .btn-violet,
.btn-check:active + .btn-violet, .btn-violet:active, .btn-violet.active,
.show > .btn-violet.dropdown-toggle {
color: #000;
background-color: #f19bf1;
border-color: #f08ff0;
}
.btn-check:checked + .btn-violet:focus,
.btn-check:active + .btn-violet:focus, .btn-violet:active:focus, .btn-violet.active:focus,
.show > .btn-violet.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(202, 111, 202, 0.5);
box-shadow: 0 0 0 0.25rem rgba(202, 111, 202, 0.5);
}
.btn-violet:disabled, .btn-violet.disabled {
color: #000;
background-color: #EE82EE;
border-color: #EE82EE;
}
.btn-wheat {
color: #000;
background-color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-wheat:hover {
color: #000;
background-color: #f7e3be;
border-color: #f6e1bb;
}
.btn-check:focus + .btn-wheat, .btn-wheat:focus {
color: #000;
background-color: #f7e3be;
border-color: #f6e1bb;
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 189, 152, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 189, 152, 0.5);
}
.btn-check:checked + .btn-wheat,
.btn-check:active + .btn-wheat, .btn-wheat:active, .btn-wheat.active,
.show > .btn-wheat.dropdown-toggle {
color: #000;
background-color: #f7e5c2;
border-color: #f6e1bb;
}
.btn-check:checked + .btn-wheat:focus,
.btn-check:active + .btn-wheat:focus, .btn-wheat:active:focus, .btn-wheat.active:focus,
.show > .btn-wheat.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 189, 152, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 189, 152, 0.5);
}
.btn-wheat:disabled, .btn-wheat.disabled {
color: #000;
background-color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-whitesmoke {
color: #000;
background-color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-whitesmoke:hover {
color: #000;
background-color: #f7f7f7;
border-color: #f6f6f6;
}
.btn-check:focus + .btn-whitesmoke, .btn-whitesmoke:focus {
color: #000;
background-color: #f7f7f7;
border-color: #f6f6f6;
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
}
.btn-check:checked + .btn-whitesmoke,
.btn-check:active + .btn-whitesmoke, .btn-whitesmoke:active, .btn-whitesmoke.active,
.show > .btn-whitesmoke.dropdown-toggle {
color: #000;
background-color: #f7f7f7;
border-color: #f6f6f6;
}
.btn-check:checked + .btn-whitesmoke:focus,
.btn-check:active + .btn-whitesmoke:focus, .btn-whitesmoke:active:focus, .btn-whitesmoke.active:focus,
.show > .btn-whitesmoke.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
}
.btn-whitesmoke:disabled, .btn-whitesmoke.disabled {
color: #000;
background-color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-yellowgreen {
color: #000;
background-color: #9ACD32;
border-color: #9ACD32;
}
.btn-yellowgreen:hover {
color: #000;
background-color: #a9d551;
border-color: #a4d247;
}
.btn-check:focus + .btn-yellowgreen, .btn-yellowgreen:focus {
color: #000;
background-color: #a9d551;
border-color: #a4d247;
-webkit-box-shadow: 0 0 0 0.25rem rgba(131, 174, 43, 0.5);
box-shadow: 0 0 0 0.25rem rgba(131, 174, 43, 0.5);
}
.btn-check:checked + .btn-yellowgreen,
.btn-check:active + .btn-yellowgreen, .btn-yellowgreen:active, .btn-yellowgreen.active,
.show > .btn-yellowgreen.dropdown-toggle {
color: #000;
background-color: #aed75b;
border-color: #a4d247;
}
.btn-check:checked + .btn-yellowgreen:focus,
.btn-check:active + .btn-yellowgreen:focus, .btn-yellowgreen:active:focus, .btn-yellowgreen.active:focus,
.show > .btn-yellowgreen.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(131, 174, 43, 0.5);
box-shadow: 0 0 0 0.25rem rgba(131, 174, 43, 0.5);
}
.btn-yellowgreen:disabled, .btn-yellowgreen.disabled {
color: #000;
background-color: #9ACD32;
border-color: #9ACD32;
}
.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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
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 {
-webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
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-rc-red {
color: #DA291C;
border-color: #DA291C;
}
.btn-outline-rc-red:hover {
color: #fff;
background-color: #DA291C;
border-color: #DA291C;
}
.btn-check:focus + .btn-outline-rc-red, .btn-outline-rc-red:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.5);
}
.btn-check:checked + .btn-outline-rc-red,
.btn-check:active + .btn-outline-rc-red, .btn-outline-rc-red:active, .btn-outline-rc-red.active, .btn-outline-rc-red.dropdown-toggle.show {
color: #fff;
background-color: #DA291C;
border-color: #DA291C;
}
.btn-check:checked + .btn-outline-rc-red:focus,
.btn-check:active + .btn-outline-rc-red:focus, .btn-outline-rc-red:active:focus, .btn-outline-rc-red.active:focus, .btn-outline-rc-red.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.5);
}
.btn-outline-rc-red:disabled, .btn-outline-rc-red.disabled {
color: #DA291C;
background-color: transparent;
}
.btn-outline-rc-wine {
color: #A50034;
border-color: #A50034;
}
.btn-outline-rc-wine:hover {
color: #fff;
background-color: #A50034;
border-color: #A50034;
}
.btn-check:focus + .btn-outline-rc-wine, .btn-outline-rc-wine:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(165, 0, 52, 0.5);
box-shadow: 0 0 0 0.25rem rgba(165, 0, 52, 0.5);
}
.btn-check:checked + .btn-outline-rc-wine,
.btn-check:active + .btn-outline-rc-wine, .btn-outline-rc-wine:active, .btn-outline-rc-wine.active, .btn-outline-rc-wine.dropdown-toggle.show {
color: #fff;
background-color: #A50034;
border-color: #A50034;
}
.btn-check:checked + .btn-outline-rc-wine:focus,
.btn-check:active + .btn-outline-rc-wine:focus, .btn-outline-rc-wine:active:focus, .btn-outline-rc-wine.active:focus, .btn-outline-rc-wine.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(165, 0, 52, 0.5);
box-shadow: 0 0 0 0.25rem rgba(165, 0, 52, 0.5);
}
.btn-outline-rc-wine:disabled, .btn-outline-rc-wine.disabled {
color: #A50034;
background-color: transparent;
}
.btn-outline-rc-blue {
color: #002554;
border-color: #002554;
}
.btn-outline-rc-blue:hover {
color: #fff;
background-color: #002554;
border-color: #002554;
}
.btn-check:focus + .btn-outline-rc-blue, .btn-outline-rc-blue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 37, 84, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 37, 84, 0.5);
}
.btn-check:checked + .btn-outline-rc-blue,
.btn-check:active + .btn-outline-rc-blue, .btn-outline-rc-blue:active, .btn-outline-rc-blue.active, .btn-outline-rc-blue.dropdown-toggle.show {
color: #fff;
background-color: #002554;
border-color: #002554;
}
.btn-check:checked + .btn-outline-rc-blue:focus,
.btn-check:active + .btn-outline-rc-blue:focus, .btn-outline-rc-blue:active:focus, .btn-outline-rc-blue.active:focus, .btn-outline-rc-blue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 37, 84, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 37, 84, 0.5);
}
.btn-outline-rc-blue:disabled, .btn-outline-rc-blue.disabled {
color: #002554;
background-color: transparent;
}
.btn-outline-rc-gold {
color: #FFB200;
border-color: #FFB200;
}
.btn-outline-rc-gold:hover {
color: #000;
background-color: #FFB200;
border-color: #FFB200;
}
.btn-check:focus + .btn-outline-rc-gold, .btn-outline-rc-gold:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 178, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 178, 0, 0.5);
}
.btn-check:checked + .btn-outline-rc-gold,
.btn-check:active + .btn-outline-rc-gold, .btn-outline-rc-gold:active, .btn-outline-rc-gold.active, .btn-outline-rc-gold.dropdown-toggle.show {
color: #000;
background-color: #FFB200;
border-color: #FFB200;
}
.btn-check:checked + .btn-outline-rc-gold:focus,
.btn-check:active + .btn-outline-rc-gold:focus, .btn-outline-rc-gold:active:focus, .btn-outline-rc-gold.active:focus, .btn-outline-rc-gold.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 178, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 178, 0, 0.5);
}
.btn-outline-rc-gold:disabled, .btn-outline-rc-gold.disabled {
color: #FFB200;
background-color: transparent;
}
.btn-outline-rc-silver {
color: #808080;
border-color: #808080;
}
.btn-outline-rc-silver:hover {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-check:focus + .btn-outline-rc-silver, .btn-outline-rc-silver:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-check:checked + .btn-outline-rc-silver,
.btn-check:active + .btn-outline-rc-silver, .btn-outline-rc-silver:active, .btn-outline-rc-silver.active, .btn-outline-rc-silver.dropdown-toggle.show {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-check:checked + .btn-outline-rc-silver:focus,
.btn-check:active + .btn-outline-rc-silver:focus, .btn-outline-rc-silver:active:focus, .btn-outline-rc-silver.active:focus, .btn-outline-rc-silver.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-outline-rc-silver:disabled, .btn-outline-rc-silver.disabled {
color: #808080;
background-color: transparent;
}
.btn-outline-rc-skyblue {
color: #00B0F0;
border-color: #00B0F0;
}
.btn-outline-rc-skyblue:hover {
color: #000;
background-color: #00B0F0;
border-color: #00B0F0;
}
.btn-check:focus + .btn-outline-rc-skyblue, .btn-outline-rc-skyblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 176, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 176, 240, 0.5);
}
.btn-check:checked + .btn-outline-rc-skyblue,
.btn-check:active + .btn-outline-rc-skyblue, .btn-outline-rc-skyblue:active, .btn-outline-rc-skyblue.active, .btn-outline-rc-skyblue.dropdown-toggle.show {
color: #000;
background-color: #00B0F0;
border-color: #00B0F0;
}
.btn-check:checked + .btn-outline-rc-skyblue:focus,
.btn-check:active + .btn-outline-rc-skyblue:focus, .btn-outline-rc-skyblue:active:focus, .btn-outline-rc-skyblue.active:focus, .btn-outline-rc-skyblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 176, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 176, 240, 0.5);
}
.btn-outline-rc-skyblue:disabled, .btn-outline-rc-skyblue.disabled {
color: #00B0F0;
background-color: transparent;
}
.btn-outline-aliceblue {
color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-outline-aliceblue:hover {
color: #000;
background-color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-check:focus + .btn-outline-aliceblue, .btn-outline-aliceblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 248, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 248, 255, 0.5);
}
.btn-check:checked + .btn-outline-aliceblue,
.btn-check:active + .btn-outline-aliceblue, .btn-outline-aliceblue:active, .btn-outline-aliceblue.active, .btn-outline-aliceblue.dropdown-toggle.show {
color: #000;
background-color: #F0F8FF;
border-color: #F0F8FF;
}
.btn-check:checked + .btn-outline-aliceblue:focus,
.btn-check:active + .btn-outline-aliceblue:focus, .btn-outline-aliceblue:active:focus, .btn-outline-aliceblue.active:focus, .btn-outline-aliceblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 248, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 248, 255, 0.5);
}
.btn-outline-aliceblue:disabled, .btn-outline-aliceblue.disabled {
color: #F0F8FF;
background-color: transparent;
}
.btn-outline-antiquewhite {
color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-outline-antiquewhite:hover {
color: #000;
background-color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-check:focus + .btn-outline-antiquewhite, .btn-outline-antiquewhite:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 235, 215, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 235, 215, 0.5);
}
.btn-check:checked + .btn-outline-antiquewhite,
.btn-check:active + .btn-outline-antiquewhite, .btn-outline-antiquewhite:active, .btn-outline-antiquewhite.active, .btn-outline-antiquewhite.dropdown-toggle.show {
color: #000;
background-color: #FAEBD7;
border-color: #FAEBD7;
}
.btn-check:checked + .btn-outline-antiquewhite:focus,
.btn-check:active + .btn-outline-antiquewhite:focus, .btn-outline-antiquewhite:active:focus, .btn-outline-antiquewhite.active:focus, .btn-outline-antiquewhite.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 235, 215, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 235, 215, 0.5);
}
.btn-outline-antiquewhite:disabled, .btn-outline-antiquewhite.disabled {
color: #FAEBD7;
background-color: transparent;
}
.btn-outline-aqua {
color: #00FFFF;
border-color: #00FFFF;
}
.btn-outline-aqua:hover {
color: #000;
background-color: #00FFFF;
border-color: #00FFFF;
}
.btn-check:focus + .btn-outline-aqua, .btn-outline-aqua:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-aqua,
.btn-check:active + .btn-outline-aqua, .btn-outline-aqua:active, .btn-outline-aqua.active, .btn-outline-aqua.dropdown-toggle.show {
color: #000;
background-color: #00FFFF;
border-color: #00FFFF;
}
.btn-check:checked + .btn-outline-aqua:focus,
.btn-check:active + .btn-outline-aqua:focus, .btn-outline-aqua:active:focus, .btn-outline-aqua.active:focus, .btn-outline-aqua.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.5);
}
.btn-outline-aqua:disabled, .btn-outline-aqua.disabled {
color: #00FFFF;
background-color: transparent;
}
.btn-outline-aquamarine {
color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-outline-aquamarine:hover {
color: #000;
background-color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-check:focus + .btn-outline-aquamarine, .btn-outline-aquamarine:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(127, 255, 212, 0.5);
box-shadow: 0 0 0 0.25rem rgba(127, 255, 212, 0.5);
}
.btn-check:checked + .btn-outline-aquamarine,
.btn-check:active + .btn-outline-aquamarine, .btn-outline-aquamarine:active, .btn-outline-aquamarine.active, .btn-outline-aquamarine.dropdown-toggle.show {
color: #000;
background-color: #7FFFD4;
border-color: #7FFFD4;
}
.btn-check:checked + .btn-outline-aquamarine:focus,
.btn-check:active + .btn-outline-aquamarine:focus, .btn-outline-aquamarine:active:focus, .btn-outline-aquamarine.active:focus, .btn-outline-aquamarine.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(127, 255, 212, 0.5);
box-shadow: 0 0 0 0.25rem rgba(127, 255, 212, 0.5);
}
.btn-outline-aquamarine:disabled, .btn-outline-aquamarine.disabled {
color: #7FFFD4;
background-color: transparent;
}
.btn-outline-azure {
color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-outline-azure:hover {
color: #000;
background-color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-check:focus + .btn-outline-azure, .btn-outline-azure:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-azure,
.btn-check:active + .btn-outline-azure, .btn-outline-azure:active, .btn-outline-azure.active, .btn-outline-azure.dropdown-toggle.show {
color: #000;
background-color: #F0FFFF;
border-color: #F0FFFF;
}
.btn-check:checked + .btn-outline-azure:focus,
.btn-check:active + .btn-outline-azure:focus, .btn-outline-azure:active:focus, .btn-outline-azure.active:focus, .btn-outline-azure.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 255, 255, 0.5);
}
.btn-outline-azure:disabled, .btn-outline-azure.disabled {
color: #F0FFFF;
background-color: transparent;
}
.btn-outline-beige {
color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-outline-beige:hover {
color: #000;
background-color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-check:focus + .btn-outline-beige, .btn-outline-beige:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 245, 220, 0.5);
}
.btn-check:checked + .btn-outline-beige,
.btn-check:active + .btn-outline-beige, .btn-outline-beige:active, .btn-outline-beige.active, .btn-outline-beige.dropdown-toggle.show {
color: #000;
background-color: #F5F5DC;
border-color: #F5F5DC;
}
.btn-check:checked + .btn-outline-beige:focus,
.btn-check:active + .btn-outline-beige:focus, .btn-outline-beige:active:focus, .btn-outline-beige.active:focus, .btn-outline-beige.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 245, 220, 0.5);
}
.btn-outline-beige:disabled, .btn-outline-beige.disabled {
color: #F5F5DC;
background-color: transparent;
}
.btn-outline-bisque {
color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-outline-bisque:hover {
color: #000;
background-color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-check:focus + .btn-outline-bisque, .btn-outline-bisque:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 196, 0.5);
}
.btn-check:checked + .btn-outline-bisque,
.btn-check:active + .btn-outline-bisque, .btn-outline-bisque:active, .btn-outline-bisque.active, .btn-outline-bisque.dropdown-toggle.show {
color: #000;
background-color: #FFE4C4;
border-color: #FFE4C4;
}
.btn-check:checked + .btn-outline-bisque:focus,
.btn-check:active + .btn-outline-bisque:focus, .btn-outline-bisque:active:focus, .btn-outline-bisque.active:focus, .btn-outline-bisque.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 196, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 196, 0.5);
}
.btn-outline-bisque:disabled, .btn-outline-bisque.disabled {
color: #FFE4C4;
background-color: transparent;
}
.btn-outline-blanchedalmond {
color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-outline-blanchedalmond:hover {
color: #000;
background-color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-check:focus + .btn-outline-blanchedalmond, .btn-outline-blanchedalmond:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 235, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 235, 205, 0.5);
}
.btn-check:checked + .btn-outline-blanchedalmond,
.btn-check:active + .btn-outline-blanchedalmond, .btn-outline-blanchedalmond:active, .btn-outline-blanchedalmond.active, .btn-outline-blanchedalmond.dropdown-toggle.show {
color: #000;
background-color: #FFEBCD;
border-color: #FFEBCD;
}
.btn-check:checked + .btn-outline-blanchedalmond:focus,
.btn-check:active + .btn-outline-blanchedalmond:focus, .btn-outline-blanchedalmond:active:focus, .btn-outline-blanchedalmond.active:focus, .btn-outline-blanchedalmond.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 235, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 235, 205, 0.5);
}
.btn-outline-blanchedalmond:disabled, .btn-outline-blanchedalmond.disabled {
color: #FFEBCD;
background-color: transparent;
}
.btn-outline-blueviolet {
color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-outline-blueviolet:hover {
color: #fff;
background-color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-check:focus + .btn-outline-blueviolet, .btn-outline-blueviolet:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.5);
box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.5);
}
.btn-check:checked + .btn-outline-blueviolet,
.btn-check:active + .btn-outline-blueviolet, .btn-outline-blueviolet:active, .btn-outline-blueviolet.active, .btn-outline-blueviolet.dropdown-toggle.show {
color: #fff;
background-color: #8A2BE2;
border-color: #8A2BE2;
}
.btn-check:checked + .btn-outline-blueviolet:focus,
.btn-check:active + .btn-outline-blueviolet:focus, .btn-outline-blueviolet:active:focus, .btn-outline-blueviolet.active:focus, .btn-outline-blueviolet.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.5);
box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.5);
}
.btn-outline-blueviolet:disabled, .btn-outline-blueviolet.disabled {
color: #8A2BE2;
background-color: transparent;
}
.btn-outline-brown {
color: #A52A2A;
border-color: #A52A2A;
}
.btn-outline-brown:hover {
color: #fff;
background-color: #A52A2A;
border-color: #A52A2A;
}
.btn-check:focus + .btn-outline-brown, .btn-outline-brown:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.5);
box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.5);
}
.btn-check:checked + .btn-outline-brown,
.btn-check:active + .btn-outline-brown, .btn-outline-brown:active, .btn-outline-brown.active, .btn-outline-brown.dropdown-toggle.show {
color: #fff;
background-color: #A52A2A;
border-color: #A52A2A;
}
.btn-check:checked + .btn-outline-brown:focus,
.btn-check:active + .btn-outline-brown:focus, .btn-outline-brown:active:focus, .btn-outline-brown.active:focus, .btn-outline-brown.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.5);
box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.5);
}
.btn-outline-brown:disabled, .btn-outline-brown.disabled {
color: #A52A2A;
background-color: transparent;
}
.btn-outline-burlywood {
color: #DEB887;
border-color: #DEB887;
}
.btn-outline-burlywood:hover {
color: #000;
background-color: #DEB887;
border-color: #DEB887;
}
.btn-check:focus + .btn-outline-burlywood, .btn-outline-burlywood:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(222, 184, 135, 0.5);
box-shadow: 0 0 0 0.25rem rgba(222, 184, 135, 0.5);
}
.btn-check:checked + .btn-outline-burlywood,
.btn-check:active + .btn-outline-burlywood, .btn-outline-burlywood:active, .btn-outline-burlywood.active, .btn-outline-burlywood.dropdown-toggle.show {
color: #000;
background-color: #DEB887;
border-color: #DEB887;
}
.btn-check:checked + .btn-outline-burlywood:focus,
.btn-check:active + .btn-outline-burlywood:focus, .btn-outline-burlywood:active:focus, .btn-outline-burlywood.active:focus, .btn-outline-burlywood.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(222, 184, 135, 0.5);
box-shadow: 0 0 0 0.25rem rgba(222, 184, 135, 0.5);
}
.btn-outline-burlywood:disabled, .btn-outline-burlywood.disabled {
color: #DEB887;
background-color: transparent;
}
.btn-outline-cadetblue {
color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-outline-cadetblue:hover {
color: #000;
background-color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-check:focus + .btn-outline-cadetblue, .btn-outline-cadetblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 158, 160, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 158, 160, 0.5);
}
.btn-check:checked + .btn-outline-cadetblue,
.btn-check:active + .btn-outline-cadetblue, .btn-outline-cadetblue:active, .btn-outline-cadetblue.active, .btn-outline-cadetblue.dropdown-toggle.show {
color: #000;
background-color: #5F9EA0;
border-color: #5F9EA0;
}
.btn-check:checked + .btn-outline-cadetblue:focus,
.btn-check:active + .btn-outline-cadetblue:focus, .btn-outline-cadetblue:active:focus, .btn-outline-cadetblue.active:focus, .btn-outline-cadetblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(95, 158, 160, 0.5);
box-shadow: 0 0 0 0.25rem rgba(95, 158, 160, 0.5);
}
.btn-outline-cadetblue:disabled, .btn-outline-cadetblue.disabled {
color: #5F9EA0;
background-color: transparent;
}
.btn-outline-chartreuse {
color: #7FFF00;
border-color: #7FFF00;
}
.btn-outline-chartreuse:hover {
color: #000;
background-color: #7FFF00;
border-color: #7FFF00;
}
.btn-check:focus + .btn-outline-chartreuse, .btn-outline-chartreuse:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(127, 255, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(127, 255, 0, 0.5);
}
.btn-check:checked + .btn-outline-chartreuse,
.btn-check:active + .btn-outline-chartreuse, .btn-outline-chartreuse:active, .btn-outline-chartreuse.active, .btn-outline-chartreuse.dropdown-toggle.show {
color: #000;
background-color: #7FFF00;
border-color: #7FFF00;
}
.btn-check:checked + .btn-outline-chartreuse:focus,
.btn-check:active + .btn-outline-chartreuse:focus, .btn-outline-chartreuse:active:focus, .btn-outline-chartreuse.active:focus, .btn-outline-chartreuse.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(127, 255, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(127, 255, 0, 0.5);
}
.btn-outline-chartreuse:disabled, .btn-outline-chartreuse.disabled {
color: #7FFF00;
background-color: transparent;
}
.btn-outline-chocolate {
color: #D2691E;
border-color: #D2691E;
}
.btn-outline-chocolate:hover {
color: #000;
background-color: #D2691E;
border-color: #D2691E;
}
.btn-check:focus + .btn-outline-chocolate, .btn-outline-chocolate:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.5);
box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.5);
}
.btn-check:checked + .btn-outline-chocolate,
.btn-check:active + .btn-outline-chocolate, .btn-outline-chocolate:active, .btn-outline-chocolate.active, .btn-outline-chocolate.dropdown-toggle.show {
color: #000;
background-color: #D2691E;
border-color: #D2691E;
}
.btn-check:checked + .btn-outline-chocolate:focus,
.btn-check:active + .btn-outline-chocolate:focus, .btn-outline-chocolate:active:focus, .btn-outline-chocolate.active:focus, .btn-outline-chocolate.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.5);
box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.5);
}
.btn-outline-chocolate:disabled, .btn-outline-chocolate.disabled {
color: #D2691E;
background-color: transparent;
}
.btn-outline-coral {
color: #FF7F50;
border-color: #FF7F50;
}
.btn-outline-coral:hover {
color: #000;
background-color: #FF7F50;
border-color: #FF7F50;
}
.btn-check:focus + .btn-outline-coral, .btn-outline-coral:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.5);
}
.btn-check:checked + .btn-outline-coral,
.btn-check:active + .btn-outline-coral, .btn-outline-coral:active, .btn-outline-coral.active, .btn-outline-coral.dropdown-toggle.show {
color: #000;
background-color: #FF7F50;
border-color: #FF7F50;
}
.btn-check:checked + .btn-outline-coral:focus,
.btn-check:active + .btn-outline-coral:focus, .btn-outline-coral:active:focus, .btn-outline-coral.active:focus, .btn-outline-coral.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.5);
}
.btn-outline-coral:disabled, .btn-outline-coral.disabled {
color: #FF7F50;
background-color: transparent;
}
.btn-outline-cornflowerblue {
color: #6495ED;
border-color: #6495ED;
}
.btn-outline-cornflowerblue:hover {
color: #000;
background-color: #6495ED;
border-color: #6495ED;
}
.btn-check:focus + .btn-outline-cornflowerblue, .btn-outline-cornflowerblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(100, 149, 237, 0.5);
box-shadow: 0 0 0 0.25rem rgba(100, 149, 237, 0.5);
}
.btn-check:checked + .btn-outline-cornflowerblue,
.btn-check:active + .btn-outline-cornflowerblue, .btn-outline-cornflowerblue:active, .btn-outline-cornflowerblue.active, .btn-outline-cornflowerblue.dropdown-toggle.show {
color: #000;
background-color: #6495ED;
border-color: #6495ED;
}
.btn-check:checked + .btn-outline-cornflowerblue:focus,
.btn-check:active + .btn-outline-cornflowerblue:focus, .btn-outline-cornflowerblue:active:focus, .btn-outline-cornflowerblue.active:focus, .btn-outline-cornflowerblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(100, 149, 237, 0.5);
box-shadow: 0 0 0 0.25rem rgba(100, 149, 237, 0.5);
}
.btn-outline-cornflowerblue:disabled, .btn-outline-cornflowerblue.disabled {
color: #6495ED;
background-color: transparent;
}
.btn-outline-cornsilk {
color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-outline-cornsilk:hover {
color: #000;
background-color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-check:focus + .btn-outline-cornsilk, .btn-outline-cornsilk:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 248, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 248, 220, 0.5);
}
.btn-check:checked + .btn-outline-cornsilk,
.btn-check:active + .btn-outline-cornsilk, .btn-outline-cornsilk:active, .btn-outline-cornsilk.active, .btn-outline-cornsilk.dropdown-toggle.show {
color: #000;
background-color: #FFF8DC;
border-color: #FFF8DC;
}
.btn-check:checked + .btn-outline-cornsilk:focus,
.btn-check:active + .btn-outline-cornsilk:focus, .btn-outline-cornsilk:active:focus, .btn-outline-cornsilk.active:focus, .btn-outline-cornsilk.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 248, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 248, 220, 0.5);
}
.btn-outline-cornsilk:disabled, .btn-outline-cornsilk.disabled {
color: #FFF8DC;
background-color: transparent;
}
.btn-outline-crimson {
color: #DC143C;
border-color: #DC143C;
}
.btn-outline-crimson:hover {
color: #fff;
background-color: #DC143C;
border-color: #DC143C;
}
.btn-check:focus + .btn-outline-crimson, .btn-outline-crimson:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.5);
box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.5);
}
.btn-check:checked + .btn-outline-crimson,
.btn-check:active + .btn-outline-crimson, .btn-outline-crimson:active, .btn-outline-crimson.active, .btn-outline-crimson.dropdown-toggle.show {
color: #fff;
background-color: #DC143C;
border-color: #DC143C;
}
.btn-check:checked + .btn-outline-crimson:focus,
.btn-check:active + .btn-outline-crimson:focus, .btn-outline-crimson:active:focus, .btn-outline-crimson.active:focus, .btn-outline-crimson.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.5);
box-shadow: 0 0 0 0.25rem rgba(220, 20, 60, 0.5);
}
.btn-outline-crimson:disabled, .btn-outline-crimson.disabled {
color: #DC143C;
background-color: transparent;
}
.btn-outline-darkblue {
color: #00008B;
border-color: #00008B;
}
.btn-outline-darkblue:hover {
color: #fff;
background-color: #00008B;
border-color: #00008B;
}
.btn-check:focus + .btn-outline-darkblue, .btn-outline-darkblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.5);
}
.btn-check:checked + .btn-outline-darkblue,
.btn-check:active + .btn-outline-darkblue, .btn-outline-darkblue:active, .btn-outline-darkblue.active, .btn-outline-darkblue.dropdown-toggle.show {
color: #fff;
background-color: #00008B;
border-color: #00008B;
}
.btn-check:checked + .btn-outline-darkblue:focus,
.btn-check:active + .btn-outline-darkblue:focus, .btn-outline-darkblue:active:focus, .btn-outline-darkblue.active:focus, .btn-outline-darkblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.5);
}
.btn-outline-darkblue:disabled, .btn-outline-darkblue.disabled {
color: #00008B;
background-color: transparent;
}
.btn-outline-darkcyan {
color: #008B8B;
border-color: #008B8B;
}
.btn-outline-darkcyan:hover {
color: #000;
background-color: #008B8B;
border-color: #008B8B;
}
.btn-check:focus + .btn-outline-darkcyan, .btn-outline-darkcyan:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.5);
}
.btn-check:checked + .btn-outline-darkcyan,
.btn-check:active + .btn-outline-darkcyan, .btn-outline-darkcyan:active, .btn-outline-darkcyan.active, .btn-outline-darkcyan.dropdown-toggle.show {
color: #000;
background-color: #008B8B;
border-color: #008B8B;
}
.btn-check:checked + .btn-outline-darkcyan:focus,
.btn-check:active + .btn-outline-darkcyan:focus, .btn-outline-darkcyan:active:focus, .btn-outline-darkcyan.active:focus, .btn-outline-darkcyan.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.5);
}
.btn-outline-darkcyan:disabled, .btn-outline-darkcyan.disabled {
color: #008B8B;
background-color: transparent;
}
.btn-outline-darkgoldenrod {
color: #B8860B;
border-color: #B8860B;
}
.btn-outline-darkgoldenrod:hover {
color: #000;
background-color: #B8860B;
border-color: #B8860B;
}
.btn-check:focus + .btn-outline-darkgoldenrod, .btn-outline-darkgoldenrod:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5);
box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5);
}
.btn-check:checked + .btn-outline-darkgoldenrod,
.btn-check:active + .btn-outline-darkgoldenrod, .btn-outline-darkgoldenrod:active, .btn-outline-darkgoldenrod.active, .btn-outline-darkgoldenrod.dropdown-toggle.show {
color: #000;
background-color: #B8860B;
border-color: #B8860B;
}
.btn-check:checked + .btn-outline-darkgoldenrod:focus,
.btn-check:active + .btn-outline-darkgoldenrod:focus, .btn-outline-darkgoldenrod:active:focus, .btn-outline-darkgoldenrod.active:focus, .btn-outline-darkgoldenrod.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5);
box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5);
}
.btn-outline-darkgoldenrod:disabled, .btn-outline-darkgoldenrod.disabled {
color: #B8860B;
background-color: transparent;
}
.btn-outline-darkgray {
color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-outline-darkgray:hover {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-check:focus + .btn-outline-darkgray, .btn-outline-darkgray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
}
.btn-check:checked + .btn-outline-darkgray,
.btn-check:active + .btn-outline-darkgray, .btn-outline-darkgray:active, .btn-outline-darkgray.active, .btn-outline-darkgray.dropdown-toggle.show {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-check:checked + .btn-outline-darkgray:focus,
.btn-check:active + .btn-outline-darkgray:focus, .btn-outline-darkgray:active:focus, .btn-outline-darkgray.active:focus, .btn-outline-darkgray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
}
.btn-outline-darkgray:disabled, .btn-outline-darkgray.disabled {
color: #A9A9A9;
background-color: transparent;
}
.btn-outline-darkgreen {
color: #006400;
border-color: #006400;
}
.btn-outline-darkgreen:hover {
color: #fff;
background-color: #006400;
border-color: #006400;
}
.btn-check:focus + .btn-outline-darkgreen, .btn-outline-darkgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.5);
}
.btn-check:checked + .btn-outline-darkgreen,
.btn-check:active + .btn-outline-darkgreen, .btn-outline-darkgreen:active, .btn-outline-darkgreen.active, .btn-outline-darkgreen.dropdown-toggle.show {
color: #fff;
background-color: #006400;
border-color: #006400;
}
.btn-check:checked + .btn-outline-darkgreen:focus,
.btn-check:active + .btn-outline-darkgreen:focus, .btn-outline-darkgreen:active:focus, .btn-outline-darkgreen.active:focus, .btn-outline-darkgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 100, 0, 0.5);
}
.btn-outline-darkgreen:disabled, .btn-outline-darkgreen.disabled {
color: #006400;
background-color: transparent;
}
.btn-outline-darkgrey {
color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-outline-darkgrey:hover {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-check:focus + .btn-outline-darkgrey, .btn-outline-darkgrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
}
.btn-check:checked + .btn-outline-darkgrey,
.btn-check:active + .btn-outline-darkgrey, .btn-outline-darkgrey:active, .btn-outline-darkgrey.active, .btn-outline-darkgrey.dropdown-toggle.show {
color: #000;
background-color: #A9A9A9;
border-color: #A9A9A9;
}
.btn-check:checked + .btn-outline-darkgrey:focus,
.btn-check:active + .btn-outline-darkgrey:focus, .btn-outline-darkgrey:active:focus, .btn-outline-darkgrey.active:focus, .btn-outline-darkgrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.5);
}
.btn-outline-darkgrey:disabled, .btn-outline-darkgrey.disabled {
color: #A9A9A9;
background-color: transparent;
}
.btn-outline-darkkhaki {
color: #BDB76B;
border-color: #BDB76B;
}
.btn-outline-darkkhaki:hover {
color: #000;
background-color: #BDB76B;
border-color: #BDB76B;
}
.btn-check:focus + .btn-outline-darkkhaki, .btn-outline-darkkhaki:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(189, 183, 107, 0.5);
box-shadow: 0 0 0 0.25rem rgba(189, 183, 107, 0.5);
}
.btn-check:checked + .btn-outline-darkkhaki,
.btn-check:active + .btn-outline-darkkhaki, .btn-outline-darkkhaki:active, .btn-outline-darkkhaki.active, .btn-outline-darkkhaki.dropdown-toggle.show {
color: #000;
background-color: #BDB76B;
border-color: #BDB76B;
}
.btn-check:checked + .btn-outline-darkkhaki:focus,
.btn-check:active + .btn-outline-darkkhaki:focus, .btn-outline-darkkhaki:active:focus, .btn-outline-darkkhaki.active:focus, .btn-outline-darkkhaki.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(189, 183, 107, 0.5);
box-shadow: 0 0 0 0.25rem rgba(189, 183, 107, 0.5);
}
.btn-outline-darkkhaki:disabled, .btn-outline-darkkhaki.disabled {
color: #BDB76B;
background-color: transparent;
}
.btn-outline-darkmagenta {
color: #8B008B;
border-color: #8B008B;
}
.btn-outline-darkmagenta:hover {
color: #fff;
background-color: #8B008B;
border-color: #8B008B;
}
.btn-check:focus + .btn-outline-darkmagenta, .btn-outline-darkmagenta:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 0, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 0, 139, 0.5);
}
.btn-check:checked + .btn-outline-darkmagenta,
.btn-check:active + .btn-outline-darkmagenta, .btn-outline-darkmagenta:active, .btn-outline-darkmagenta.active, .btn-outline-darkmagenta.dropdown-toggle.show {
color: #fff;
background-color: #8B008B;
border-color: #8B008B;
}
.btn-check:checked + .btn-outline-darkmagenta:focus,
.btn-check:active + .btn-outline-darkmagenta:focus, .btn-outline-darkmagenta:active:focus, .btn-outline-darkmagenta.active:focus, .btn-outline-darkmagenta.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 0, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 0, 139, 0.5);
}
.btn-outline-darkmagenta:disabled, .btn-outline-darkmagenta.disabled {
color: #8B008B;
background-color: transparent;
}
.btn-outline-darkolivegreen {
color: #556B2F;
border-color: #556B2F;
}
.btn-outline-darkolivegreen:hover {
color: #fff;
background-color: #556B2F;
border-color: #556B2F;
}
.btn-check:focus + .btn-outline-darkolivegreen, .btn-outline-darkolivegreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.5);
box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.5);
}
.btn-check:checked + .btn-outline-darkolivegreen,
.btn-check:active + .btn-outline-darkolivegreen, .btn-outline-darkolivegreen:active, .btn-outline-darkolivegreen.active, .btn-outline-darkolivegreen.dropdown-toggle.show {
color: #fff;
background-color: #556B2F;
border-color: #556B2F;
}
.btn-check:checked + .btn-outline-darkolivegreen:focus,
.btn-check:active + .btn-outline-darkolivegreen:focus, .btn-outline-darkolivegreen:active:focus, .btn-outline-darkolivegreen.active:focus, .btn-outline-darkolivegreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.5);
box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.5);
}
.btn-outline-darkolivegreen:disabled, .btn-outline-darkolivegreen.disabled {
color: #556B2F;
background-color: transparent;
}
.btn-outline-darkorange {
color: #FF8C00;
border-color: #FF8C00;
}
.btn-outline-darkorange:hover {
color: #000;
background-color: #FF8C00;
border-color: #FF8C00;
}
.btn-check:focus + .btn-outline-darkorange, .btn-outline-darkorange:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
}
.btn-check:checked + .btn-outline-darkorange,
.btn-check:active + .btn-outline-darkorange, .btn-outline-darkorange:active, .btn-outline-darkorange.active, .btn-outline-darkorange.dropdown-toggle.show {
color: #000;
background-color: #FF8C00;
border-color: #FF8C00;
}
.btn-check:checked + .btn-outline-darkorange:focus,
.btn-check:active + .btn-outline-darkorange:focus, .btn-outline-darkorange:active:focus, .btn-outline-darkorange.active:focus, .btn-outline-darkorange.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
}
.btn-outline-darkorange:disabled, .btn-outline-darkorange.disabled {
color: #FF8C00;
background-color: transparent;
}
.btn-outline-darkorchid {
color: #9932CC;
border-color: #9932CC;
}
.btn-outline-darkorchid:hover {
color: #fff;
background-color: #9932CC;
border-color: #9932CC;
}
.btn-check:focus + .btn-outline-darkorchid, .btn-outline-darkorchid:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(153, 50, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(153, 50, 204, 0.5);
}
.btn-check:checked + .btn-outline-darkorchid,
.btn-check:active + .btn-outline-darkorchid, .btn-outline-darkorchid:active, .btn-outline-darkorchid.active, .btn-outline-darkorchid.dropdown-toggle.show {
color: #fff;
background-color: #9932CC;
border-color: #9932CC;
}
.btn-check:checked + .btn-outline-darkorchid:focus,
.btn-check:active + .btn-outline-darkorchid:focus, .btn-outline-darkorchid:active:focus, .btn-outline-darkorchid.active:focus, .btn-outline-darkorchid.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(153, 50, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(153, 50, 204, 0.5);
}
.btn-outline-darkorchid:disabled, .btn-outline-darkorchid.disabled {
color: #9932CC;
background-color: transparent;
}
.btn-outline-darkred {
color: #8B0000;
border-color: #8B0000;
}
.btn-outline-darkred:hover {
color: #fff;
background-color: #8B0000;
border-color: #8B0000;
}
.btn-check:focus + .btn-outline-darkred, .btn-outline-darkred:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.5);
}
.btn-check:checked + .btn-outline-darkred,
.btn-check:active + .btn-outline-darkred, .btn-outline-darkred:active, .btn-outline-darkred.active, .btn-outline-darkred.dropdown-toggle.show {
color: #fff;
background-color: #8B0000;
border-color: #8B0000;
}
.btn-check:checked + .btn-outline-darkred:focus,
.btn-check:active + .btn-outline-darkred:focus, .btn-outline-darkred:active:focus, .btn-outline-darkred.active:focus, .btn-outline-darkred.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.5);
}
.btn-outline-darkred:disabled, .btn-outline-darkred.disabled {
color: #8B0000;
background-color: transparent;
}
.btn-outline-darksalmon {
color: #E9967A;
border-color: #E9967A;
}
.btn-outline-darksalmon:hover {
color: #000;
background-color: #E9967A;
border-color: #E9967A;
}
.btn-check:focus + .btn-outline-darksalmon, .btn-outline-darksalmon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(233, 150, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(233, 150, 122, 0.5);
}
.btn-check:checked + .btn-outline-darksalmon,
.btn-check:active + .btn-outline-darksalmon, .btn-outline-darksalmon:active, .btn-outline-darksalmon.active, .btn-outline-darksalmon.dropdown-toggle.show {
color: #000;
background-color: #E9967A;
border-color: #E9967A;
}
.btn-check:checked + .btn-outline-darksalmon:focus,
.btn-check:active + .btn-outline-darksalmon:focus, .btn-outline-darksalmon:active:focus, .btn-outline-darksalmon.active:focus, .btn-outline-darksalmon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(233, 150, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(233, 150, 122, 0.5);
}
.btn-outline-darksalmon:disabled, .btn-outline-darksalmon.disabled {
color: #E9967A;
background-color: transparent;
}
.btn-outline-darkseagreen {
color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-outline-darkseagreen:hover {
color: #000;
background-color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-check:focus + .btn-outline-darkseagreen, .btn-outline-darkseagreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(143, 188, 143, 0.5);
box-shadow: 0 0 0 0.25rem rgba(143, 188, 143, 0.5);
}
.btn-check:checked + .btn-outline-darkseagreen,
.btn-check:active + .btn-outline-darkseagreen, .btn-outline-darkseagreen:active, .btn-outline-darkseagreen.active, .btn-outline-darkseagreen.dropdown-toggle.show {
color: #000;
background-color: #8FBC8F;
border-color: #8FBC8F;
}
.btn-check:checked + .btn-outline-darkseagreen:focus,
.btn-check:active + .btn-outline-darkseagreen:focus, .btn-outline-darkseagreen:active:focus, .btn-outline-darkseagreen.active:focus, .btn-outline-darkseagreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(143, 188, 143, 0.5);
box-shadow: 0 0 0 0.25rem rgba(143, 188, 143, 0.5);
}
.btn-outline-darkseagreen:disabled, .btn-outline-darkseagreen.disabled {
color: #8FBC8F;
background-color: transparent;
}
.btn-outline-darkslateblue {
color: #483D8B;
border-color: #483D8B;
}
.btn-outline-darkslateblue:hover {
color: #fff;
background-color: #483D8B;
border-color: #483D8B;
}
.btn-check:focus + .btn-outline-darkslateblue, .btn-outline-darkslateblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.5);
}
.btn-check:checked + .btn-outline-darkslateblue,
.btn-check:active + .btn-outline-darkslateblue, .btn-outline-darkslateblue:active, .btn-outline-darkslateblue.active, .btn-outline-darkslateblue.dropdown-toggle.show {
color: #fff;
background-color: #483D8B;
border-color: #483D8B;
}
.btn-check:checked + .btn-outline-darkslateblue:focus,
.btn-check:active + .btn-outline-darkslateblue:focus, .btn-outline-darkslateblue:active:focus, .btn-outline-darkslateblue.active:focus, .btn-outline-darkslateblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.5);
box-shadow: 0 0 0 0.25rem rgba(72, 61, 139, 0.5);
}
.btn-outline-darkslateblue:disabled, .btn-outline-darkslateblue.disabled {
color: #483D8B;
background-color: transparent;
}
.btn-outline-darkslategray {
color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-outline-darkslategray:hover {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-check:focus + .btn-outline-darkslategray, .btn-outline-darkslategray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
}
.btn-check:checked + .btn-outline-darkslategray,
.btn-check:active + .btn-outline-darkslategray, .btn-outline-darkslategray:active, .btn-outline-darkslategray.active, .btn-outline-darkslategray.dropdown-toggle.show {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-check:checked + .btn-outline-darkslategray:focus,
.btn-check:active + .btn-outline-darkslategray:focus, .btn-outline-darkslategray:active:focus, .btn-outline-darkslategray.active:focus, .btn-outline-darkslategray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
}
.btn-outline-darkslategray:disabled, .btn-outline-darkslategray.disabled {
color: #2F4F4F;
background-color: transparent;
}
.btn-outline-darkslategrey {
color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-outline-darkslategrey:hover {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-check:focus + .btn-outline-darkslategrey, .btn-outline-darkslategrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
}
.btn-check:checked + .btn-outline-darkslategrey,
.btn-check:active + .btn-outline-darkslategrey, .btn-outline-darkslategrey:active, .btn-outline-darkslategrey.active, .btn-outline-darkslategrey.dropdown-toggle.show {
color: #fff;
background-color: #2F4F4F;
border-color: #2F4F4F;
}
.btn-check:checked + .btn-outline-darkslategrey:focus,
.btn-check:active + .btn-outline-darkslategrey:focus, .btn-outline-darkslategrey:active:focus, .btn-outline-darkslategrey.active:focus, .btn-outline-darkslategrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
box-shadow: 0 0 0 0.25rem rgba(47, 79, 79, 0.5);
}
.btn-outline-darkslategrey:disabled, .btn-outline-darkslategrey.disabled {
color: #2F4F4F;
background-color: transparent;
}
.btn-outline-darkturquoise {
color: #00CED1;
border-color: #00CED1;
}
.btn-outline-darkturquoise:hover {
color: #000;
background-color: #00CED1;
border-color: #00CED1;
}
.btn-check:focus + .btn-outline-darkturquoise, .btn-outline-darkturquoise:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 206, 209, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 206, 209, 0.5);
}
.btn-check:checked + .btn-outline-darkturquoise,
.btn-check:active + .btn-outline-darkturquoise, .btn-outline-darkturquoise:active, .btn-outline-darkturquoise.active, .btn-outline-darkturquoise.dropdown-toggle.show {
color: #000;
background-color: #00CED1;
border-color: #00CED1;
}
.btn-check:checked + .btn-outline-darkturquoise:focus,
.btn-check:active + .btn-outline-darkturquoise:focus, .btn-outline-darkturquoise:active:focus, .btn-outline-darkturquoise.active:focus, .btn-outline-darkturquoise.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 206, 209, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 206, 209, 0.5);
}
.btn-outline-darkturquoise:disabled, .btn-outline-darkturquoise.disabled {
color: #00CED1;
background-color: transparent;
}
.btn-outline-darkviolet {
color: #9400D3;
border-color: #9400D3;
}
.btn-outline-darkviolet:hover {
color: #fff;
background-color: #9400D3;
border-color: #9400D3;
}
.btn-check:focus + .btn-outline-darkviolet, .btn-outline-darkviolet:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.5);
}
.btn-check:checked + .btn-outline-darkviolet,
.btn-check:active + .btn-outline-darkviolet, .btn-outline-darkviolet:active, .btn-outline-darkviolet.active, .btn-outline-darkviolet.dropdown-toggle.show {
color: #fff;
background-color: #9400D3;
border-color: #9400D3;
}
.btn-check:checked + .btn-outline-darkviolet:focus,
.btn-check:active + .btn-outline-darkviolet:focus, .btn-outline-darkviolet:active:focus, .btn-outline-darkviolet.active:focus, .btn-outline-darkviolet.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.5);
}
.btn-outline-darkviolet:disabled, .btn-outline-darkviolet.disabled {
color: #9400D3;
background-color: transparent;
}
.btn-outline-deeppink {
color: #FF1493;
border-color: #FF1493;
}
.btn-outline-deeppink:hover {
color: #000;
background-color: #FF1493;
border-color: #FF1493;
}
.btn-check:focus + .btn-outline-deeppink, .btn-outline-deeppink:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.5);
}
.btn-check:checked + .btn-outline-deeppink,
.btn-check:active + .btn-outline-deeppink, .btn-outline-deeppink:active, .btn-outline-deeppink.active, .btn-outline-deeppink.dropdown-toggle.show {
color: #000;
background-color: #FF1493;
border-color: #FF1493;
}
.btn-check:checked + .btn-outline-deeppink:focus,
.btn-check:active + .btn-outline-deeppink:focus, .btn-outline-deeppink:active:focus, .btn-outline-deeppink.active:focus, .btn-outline-deeppink.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.5);
}
.btn-outline-deeppink:disabled, .btn-outline-deeppink.disabled {
color: #FF1493;
background-color: transparent;
}
.btn-outline-deepskyblue {
color: #00BFFF;
border-color: #00BFFF;
}
.btn-outline-deepskyblue:hover {
color: #000;
background-color: #00BFFF;
border-color: #00BFFF;
}
.btn-check:focus + .btn-outline-deepskyblue, .btn-outline-deepskyblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
}
.btn-check:checked + .btn-outline-deepskyblue,
.btn-check:active + .btn-outline-deepskyblue, .btn-outline-deepskyblue:active, .btn-outline-deepskyblue.active, .btn-outline-deepskyblue.dropdown-toggle.show {
color: #000;
background-color: #00BFFF;
border-color: #00BFFF;
}
.btn-check:checked + .btn-outline-deepskyblue:focus,
.btn-check:active + .btn-outline-deepskyblue:focus, .btn-outline-deepskyblue:active:focus, .btn-outline-deepskyblue.active:focus, .btn-outline-deepskyblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
}
.btn-outline-deepskyblue:disabled, .btn-outline-deepskyblue.disabled {
color: #00BFFF;
background-color: transparent;
}
.btn-outline-dimgray {
color: #696969;
border-color: #696969;
}
.btn-outline-dimgray:hover {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-check:focus + .btn-outline-dimgray, .btn-outline-dimgray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
}
.btn-check:checked + .btn-outline-dimgray,
.btn-check:active + .btn-outline-dimgray, .btn-outline-dimgray:active, .btn-outline-dimgray.active, .btn-outline-dimgray.dropdown-toggle.show {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-check:checked + .btn-outline-dimgray:focus,
.btn-check:active + .btn-outline-dimgray:focus, .btn-outline-dimgray:active:focus, .btn-outline-dimgray.active:focus, .btn-outline-dimgray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
}
.btn-outline-dimgray:disabled, .btn-outline-dimgray.disabled {
color: #696969;
background-color: transparent;
}
.btn-outline-dimgrey {
color: #696969;
border-color: #696969;
}
.btn-outline-dimgrey:hover {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-check:focus + .btn-outline-dimgrey, .btn-outline-dimgrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
}
.btn-check:checked + .btn-outline-dimgrey,
.btn-check:active + .btn-outline-dimgrey, .btn-outline-dimgrey:active, .btn-outline-dimgrey.active, .btn-outline-dimgrey.dropdown-toggle.show {
color: #fff;
background-color: #696969;
border-color: #696969;
}
.btn-check:checked + .btn-outline-dimgrey:focus,
.btn-check:active + .btn-outline-dimgrey:focus, .btn-outline-dimgrey:active:focus, .btn-outline-dimgrey.active:focus, .btn-outline-dimgrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
box-shadow: 0 0 0 0.25rem rgba(105, 105, 105, 0.5);
}
.btn-outline-dimgrey:disabled, .btn-outline-dimgrey.disabled {
color: #696969;
background-color: transparent;
}
.btn-outline-dodgerblue {
color: #1E90FF;
border-color: #1E90FF;
}
.btn-outline-dodgerblue:hover {
color: #000;
background-color: #1E90FF;
border-color: #1E90FF;
}
.btn-check:focus + .btn-outline-dodgerblue, .btn-outline-dodgerblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.5);
}
.btn-check:checked + .btn-outline-dodgerblue,
.btn-check:active + .btn-outline-dodgerblue, .btn-outline-dodgerblue:active, .btn-outline-dodgerblue.active, .btn-outline-dodgerblue.dropdown-toggle.show {
color: #000;
background-color: #1E90FF;
border-color: #1E90FF;
}
.btn-check:checked + .btn-outline-dodgerblue:focus,
.btn-check:active + .btn-outline-dodgerblue:focus, .btn-outline-dodgerblue:active:focus, .btn-outline-dodgerblue.active:focus, .btn-outline-dodgerblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.5);
}
.btn-outline-dodgerblue:disabled, .btn-outline-dodgerblue.disabled {
color: #1E90FF;
background-color: transparent;
}
.btn-outline-firebrick {
color: #B22222;
border-color: #B22222;
}
.btn-outline-firebrick:hover {
color: #fff;
background-color: #B22222;
border-color: #B22222;
}
.btn-check:focus + .btn-outline-firebrick, .btn-outline-firebrick:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(178, 34, 34, 0.5);
box-shadow: 0 0 0 0.25rem rgba(178, 34, 34, 0.5);
}
.btn-check:checked + .btn-outline-firebrick,
.btn-check:active + .btn-outline-firebrick, .btn-outline-firebrick:active, .btn-outline-firebrick.active, .btn-outline-firebrick.dropdown-toggle.show {
color: #fff;
background-color: #B22222;
border-color: #B22222;
}
.btn-check:checked + .btn-outline-firebrick:focus,
.btn-check:active + .btn-outline-firebrick:focus, .btn-outline-firebrick:active:focus, .btn-outline-firebrick.active:focus, .btn-outline-firebrick.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(178, 34, 34, 0.5);
box-shadow: 0 0 0 0.25rem rgba(178, 34, 34, 0.5);
}
.btn-outline-firebrick:disabled, .btn-outline-firebrick.disabled {
color: #B22222;
background-color: transparent;
}
.btn-outline-floralwhite {
color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-outline-floralwhite:hover {
color: #000;
background-color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-check:focus + .btn-outline-floralwhite, .btn-outline-floralwhite:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 240, 0.5);
}
.btn-check:checked + .btn-outline-floralwhite,
.btn-check:active + .btn-outline-floralwhite, .btn-outline-floralwhite:active, .btn-outline-floralwhite.active, .btn-outline-floralwhite.dropdown-toggle.show {
color: #000;
background-color: #FFFAF0;
border-color: #FFFAF0;
}
.btn-check:checked + .btn-outline-floralwhite:focus,
.btn-check:active + .btn-outline-floralwhite:focus, .btn-outline-floralwhite:active:focus, .btn-outline-floralwhite.active:focus, .btn-outline-floralwhite.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 240, 0.5);
}
.btn-outline-floralwhite:disabled, .btn-outline-floralwhite.disabled {
color: #FFFAF0;
background-color: transparent;
}
.btn-outline-forestgreen {
color: #228B22;
border-color: #228B22;
}
.btn-outline-forestgreen:hover {
color: #000;
background-color: #228B22;
border-color: #228B22;
}
.btn-check:focus + .btn-outline-forestgreen, .btn-outline-forestgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.5);
box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.5);
}
.btn-check:checked + .btn-outline-forestgreen,
.btn-check:active + .btn-outline-forestgreen, .btn-outline-forestgreen:active, .btn-outline-forestgreen.active, .btn-outline-forestgreen.dropdown-toggle.show {
color: #000;
background-color: #228B22;
border-color: #228B22;
}
.btn-check:checked + .btn-outline-forestgreen:focus,
.btn-check:active + .btn-outline-forestgreen:focus, .btn-outline-forestgreen:active:focus, .btn-outline-forestgreen.active:focus, .btn-outline-forestgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.5);
box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.5);
}
.btn-outline-forestgreen:disabled, .btn-outline-forestgreen.disabled {
color: #228B22;
background-color: transparent;
}
.btn-outline-fuchsia {
color: #FF00FF;
border-color: #FF00FF;
}
.btn-outline-fuchsia:hover {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-check:focus + .btn-outline-fuchsia, .btn-outline-fuchsia:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
}
.btn-check:checked + .btn-outline-fuchsia,
.btn-check:active + .btn-outline-fuchsia, .btn-outline-fuchsia:active, .btn-outline-fuchsia.active, .btn-outline-fuchsia.dropdown-toggle.show {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-check:checked + .btn-outline-fuchsia:focus,
.btn-check:active + .btn-outline-fuchsia:focus, .btn-outline-fuchsia:active:focus, .btn-outline-fuchsia.active:focus, .btn-outline-fuchsia.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
}
.btn-outline-fuchsia:disabled, .btn-outline-fuchsia.disabled {
color: #FF00FF;
background-color: transparent;
}
.btn-outline-gainsboro {
color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-outline-gainsboro:hover {
color: #000;
background-color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-check:focus + .btn-outline-gainsboro, .btn-outline-gainsboro:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 220, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(220, 220, 220, 0.5);
}
.btn-check:checked + .btn-outline-gainsboro,
.btn-check:active + .btn-outline-gainsboro, .btn-outline-gainsboro:active, .btn-outline-gainsboro.active, .btn-outline-gainsboro.dropdown-toggle.show {
color: #000;
background-color: #DCDCDC;
border-color: #DCDCDC;
}
.btn-check:checked + .btn-outline-gainsboro:focus,
.btn-check:active + .btn-outline-gainsboro:focus, .btn-outline-gainsboro:active:focus, .btn-outline-gainsboro.active:focus, .btn-outline-gainsboro.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(220, 220, 220, 0.5);
box-shadow: 0 0 0 0.25rem rgba(220, 220, 220, 0.5);
}
.btn-outline-gainsboro:disabled, .btn-outline-gainsboro.disabled {
color: #DCDCDC;
background-color: transparent;
}
.btn-outline-ghostwhite {
color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-outline-ghostwhite:hover {
color: #000;
background-color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-check:focus + .btn-outline-ghostwhite, .btn-outline-ghostwhite:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 248, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(248, 248, 255, 0.5);
}
.btn-check:checked + .btn-outline-ghostwhite,
.btn-check:active + .btn-outline-ghostwhite, .btn-outline-ghostwhite:active, .btn-outline-ghostwhite.active, .btn-outline-ghostwhite.dropdown-toggle.show {
color: #000;
background-color: #F8F8FF;
border-color: #F8F8FF;
}
.btn-check:checked + .btn-outline-ghostwhite:focus,
.btn-check:active + .btn-outline-ghostwhite:focus, .btn-outline-ghostwhite:active:focus, .btn-outline-ghostwhite.active:focus, .btn-outline-ghostwhite.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(248, 248, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(248, 248, 255, 0.5);
}
.btn-outline-ghostwhite:disabled, .btn-outline-ghostwhite.disabled {
color: #F8F8FF;
background-color: transparent;
}
.btn-outline-gold {
color: #FFD700;
border-color: #FFD700;
}
.btn-outline-gold:hover {
color: #000;
background-color: #FFD700;
border-color: #FFD700;
}
.btn-check:focus + .btn-outline-gold, .btn-outline-gold:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
}
.btn-check:checked + .btn-outline-gold,
.btn-check:active + .btn-outline-gold, .btn-outline-gold:active, .btn-outline-gold.active, .btn-outline-gold.dropdown-toggle.show {
color: #000;
background-color: #FFD700;
border-color: #FFD700;
}
.btn-check:checked + .btn-outline-gold:focus,
.btn-check:active + .btn-outline-gold:focus, .btn-outline-gold:active:focus, .btn-outline-gold.active:focus, .btn-outline-gold.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
}
.btn-outline-gold:disabled, .btn-outline-gold.disabled {
color: #FFD700;
background-color: transparent;
}
.btn-outline-goldenrod {
color: #DAA520;
border-color: #DAA520;
}
.btn-outline-goldenrod:hover {
color: #000;
background-color: #DAA520;
border-color: #DAA520;
}
.btn-check:focus + .btn-outline-goldenrod, .btn-outline-goldenrod:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.5);
}
.btn-check:checked + .btn-outline-goldenrod,
.btn-check:active + .btn-outline-goldenrod, .btn-outline-goldenrod:active, .btn-outline-goldenrod.active, .btn-outline-goldenrod.dropdown-toggle.show {
color: #000;
background-color: #DAA520;
border-color: #DAA520;
}
.btn-check:checked + .btn-outline-goldenrod:focus,
.btn-check:active + .btn-outline-goldenrod:focus, .btn-outline-goldenrod:active:focus, .btn-outline-goldenrod.active:focus, .btn-outline-goldenrod.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.5);
}
.btn-outline-goldenrod:disabled, .btn-outline-goldenrod.disabled {
color: #DAA520;
background-color: transparent;
}
.btn-outline-greenyellow {
color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-outline-greenyellow:hover {
color: #000;
background-color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-check:focus + .btn-outline-greenyellow, .btn-outline-greenyellow:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(173, 255, 47, 0.5);
box-shadow: 0 0 0 0.25rem rgba(173, 255, 47, 0.5);
}
.btn-check:checked + .btn-outline-greenyellow,
.btn-check:active + .btn-outline-greenyellow, .btn-outline-greenyellow:active, .btn-outline-greenyellow.active, .btn-outline-greenyellow.dropdown-toggle.show {
color: #000;
background-color: #ADFF2F;
border-color: #ADFF2F;
}
.btn-check:checked + .btn-outline-greenyellow:focus,
.btn-check:active + .btn-outline-greenyellow:focus, .btn-outline-greenyellow:active:focus, .btn-outline-greenyellow.active:focus, .btn-outline-greenyellow.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(173, 255, 47, 0.5);
box-shadow: 0 0 0 0.25rem rgba(173, 255, 47, 0.5);
}
.btn-outline-greenyellow:disabled, .btn-outline-greenyellow.disabled {
color: #ADFF2F;
background-color: transparent;
}
.btn-outline-grey {
color: #808080;
border-color: #808080;
}
.btn-outline-grey:hover {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-check:focus + .btn-outline-grey, .btn-outline-grey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-check:checked + .btn-outline-grey,
.btn-check:active + .btn-outline-grey, .btn-outline-grey:active, .btn-outline-grey.active, .btn-outline-grey.dropdown-toggle.show {
color: #000;
background-color: #808080;
border-color: #808080;
}
.btn-check:checked + .btn-outline-grey:focus,
.btn-check:active + .btn-outline-grey:focus, .btn-outline-grey:active:focus, .btn-outline-grey.active:focus, .btn-outline-grey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 128, 0.5);
}
.btn-outline-grey:disabled, .btn-outline-grey.disabled {
color: #808080;
background-color: transparent;
}
.btn-outline-honeydew {
color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-outline-honeydew:hover {
color: #000;
background-color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-check:focus + .btn-outline-honeydew, .btn-outline-honeydew:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 255, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 255, 240, 0.5);
}
.btn-check:checked + .btn-outline-honeydew,
.btn-check:active + .btn-outline-honeydew, .btn-outline-honeydew:active, .btn-outline-honeydew.active, .btn-outline-honeydew.dropdown-toggle.show {
color: #000;
background-color: #F0FFF0;
border-color: #F0FFF0;
}
.btn-check:checked + .btn-outline-honeydew:focus,
.btn-check:active + .btn-outline-honeydew:focus, .btn-outline-honeydew:active:focus, .btn-outline-honeydew.active:focus, .btn-outline-honeydew.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 255, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 255, 240, 0.5);
}
.btn-outline-honeydew:disabled, .btn-outline-honeydew.disabled {
color: #F0FFF0;
background-color: transparent;
}
.btn-outline-hotpink {
color: #FF69B4;
border-color: #FF69B4;
}
.btn-outline-hotpink:hover {
color: #000;
background-color: #FF69B4;
border-color: #FF69B4;
}
.btn-check:focus + .btn-outline-hotpink, .btn-outline-hotpink:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.5);
}
.btn-check:checked + .btn-outline-hotpink,
.btn-check:active + .btn-outline-hotpink, .btn-outline-hotpink:active, .btn-outline-hotpink.active, .btn-outline-hotpink.dropdown-toggle.show {
color: #000;
background-color: #FF69B4;
border-color: #FF69B4;
}
.btn-check:checked + .btn-outline-hotpink:focus,
.btn-check:active + .btn-outline-hotpink:focus, .btn-outline-hotpink:active:focus, .btn-outline-hotpink.active:focus, .btn-outline-hotpink.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.5);
}
.btn-outline-hotpink:disabled, .btn-outline-hotpink.disabled {
color: #FF69B4;
background-color: transparent;
}
.btn-outline-indianred {
color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-outline-indianred:hover {
color: #000;
background-color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-check:focus + .btn-outline-indianred, .btn-outline-indianred:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(205, 92, 92, 0.5);
box-shadow: 0 0 0 0.25rem rgba(205, 92, 92, 0.5);
}
.btn-check:checked + .btn-outline-indianred,
.btn-check:active + .btn-outline-indianred, .btn-outline-indianred:active, .btn-outline-indianred.active, .btn-outline-indianred.dropdown-toggle.show {
color: #000;
background-color: #CD5C5C;
border-color: #CD5C5C;
}
.btn-check:checked + .btn-outline-indianred:focus,
.btn-check:active + .btn-outline-indianred:focus, .btn-outline-indianred:active:focus, .btn-outline-indianred.active:focus, .btn-outline-indianred.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(205, 92, 92, 0.5);
box-shadow: 0 0 0 0.25rem rgba(205, 92, 92, 0.5);
}
.btn-outline-indianred:disabled, .btn-outline-indianred.disabled {
color: #CD5C5C;
background-color: transparent;
}
.btn-outline-ivory {
color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-outline-ivory:hover {
color: #000;
background-color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-check:focus + .btn-outline-ivory, .btn-outline-ivory:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 255, 240, 0.5);
}
.btn-check:checked + .btn-outline-ivory,
.btn-check:active + .btn-outline-ivory, .btn-outline-ivory:active, .btn-outline-ivory.active, .btn-outline-ivory.dropdown-toggle.show {
color: #000;
background-color: #FFFFF0;
border-color: #FFFFF0;
}
.btn-check:checked + .btn-outline-ivory:focus,
.btn-check:active + .btn-outline-ivory:focus, .btn-outline-ivory:active:focus, .btn-outline-ivory.active:focus, .btn-outline-ivory.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 240, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 255, 240, 0.5);
}
.btn-outline-ivory:disabled, .btn-outline-ivory.disabled {
color: #FFFFF0;
background-color: transparent;
}
.btn-outline-khaki {
color: #F0E68C;
border-color: #F0E68C;
}
.btn-outline-khaki:hover {
color: #000;
background-color: #F0E68C;
border-color: #F0E68C;
}
.btn-check:focus + .btn-outline-khaki, .btn-outline-khaki:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 230, 140, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 230, 140, 0.5);
}
.btn-check:checked + .btn-outline-khaki,
.btn-check:active + .btn-outline-khaki, .btn-outline-khaki:active, .btn-outline-khaki.active, .btn-outline-khaki.dropdown-toggle.show {
color: #000;
background-color: #F0E68C;
border-color: #F0E68C;
}
.btn-check:checked + .btn-outline-khaki:focus,
.btn-check:active + .btn-outline-khaki:focus, .btn-outline-khaki:active:focus, .btn-outline-khaki.active:focus, .btn-outline-khaki.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 230, 140, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 230, 140, 0.5);
}
.btn-outline-khaki:disabled, .btn-outline-khaki.disabled {
color: #F0E68C;
background-color: transparent;
}
.btn-outline-lavender {
color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-outline-lavender:hover {
color: #000;
background-color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-check:focus + .btn-outline-lavender, .btn-outline-lavender:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(230, 230, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(230, 230, 250, 0.5);
}
.btn-check:checked + .btn-outline-lavender,
.btn-check:active + .btn-outline-lavender, .btn-outline-lavender:active, .btn-outline-lavender.active, .btn-outline-lavender.dropdown-toggle.show {
color: #000;
background-color: #E6E6FA;
border-color: #E6E6FA;
}
.btn-check:checked + .btn-outline-lavender:focus,
.btn-check:active + .btn-outline-lavender:focus, .btn-outline-lavender:active:focus, .btn-outline-lavender.active:focus, .btn-outline-lavender.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(230, 230, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(230, 230, 250, 0.5);
}
.btn-outline-lavender:disabled, .btn-outline-lavender.disabled {
color: #E6E6FA;
background-color: transparent;
}
.btn-outline-lavenderblush {
color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-outline-lavenderblush:hover {
color: #000;
background-color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-check:focus + .btn-outline-lavenderblush, .btn-outline-lavenderblush:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 240, 245, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 240, 245, 0.5);
}
.btn-check:checked + .btn-outline-lavenderblush,
.btn-check:active + .btn-outline-lavenderblush, .btn-outline-lavenderblush:active, .btn-outline-lavenderblush.active, .btn-outline-lavenderblush.dropdown-toggle.show {
color: #000;
background-color: #FFF0F5;
border-color: #FFF0F5;
}
.btn-check:checked + .btn-outline-lavenderblush:focus,
.btn-check:active + .btn-outline-lavenderblush:focus, .btn-outline-lavenderblush:active:focus, .btn-outline-lavenderblush.active:focus, .btn-outline-lavenderblush.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 240, 245, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 240, 245, 0.5);
}
.btn-outline-lavenderblush:disabled, .btn-outline-lavenderblush.disabled {
color: #FFF0F5;
background-color: transparent;
}
.btn-outline-lawngreen {
color: #7CFC00;
border-color: #7CFC00;
}
.btn-outline-lawngreen:hover {
color: #000;
background-color: #7CFC00;
border-color: #7CFC00;
}
.btn-check:focus + .btn-outline-lawngreen, .btn-outline-lawngreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(124, 252, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(124, 252, 0, 0.5);
}
.btn-check:checked + .btn-outline-lawngreen,
.btn-check:active + .btn-outline-lawngreen, .btn-outline-lawngreen:active, .btn-outline-lawngreen.active, .btn-outline-lawngreen.dropdown-toggle.show {
color: #000;
background-color: #7CFC00;
border-color: #7CFC00;
}
.btn-check:checked + .btn-outline-lawngreen:focus,
.btn-check:active + .btn-outline-lawngreen:focus, .btn-outline-lawngreen:active:focus, .btn-outline-lawngreen.active:focus, .btn-outline-lawngreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(124, 252, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(124, 252, 0, 0.5);
}
.btn-outline-lawngreen:disabled, .btn-outline-lawngreen.disabled {
color: #7CFC00;
background-color: transparent;
}
.btn-outline-lemonchiffon {
color: #FFFACD;
border-color: #FFFACD;
}
.btn-outline-lemonchiffon:hover {
color: #000;
background-color: #FFFACD;
border-color: #FFFACD;
}
.btn-check:focus + .btn-outline-lemonchiffon, .btn-outline-lemonchiffon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 205, 0.5);
}
.btn-check:checked + .btn-outline-lemonchiffon,
.btn-check:active + .btn-outline-lemonchiffon, .btn-outline-lemonchiffon:active, .btn-outline-lemonchiffon.active, .btn-outline-lemonchiffon.dropdown-toggle.show {
color: #000;
background-color: #FFFACD;
border-color: #FFFACD;
}
.btn-check:checked + .btn-outline-lemonchiffon:focus,
.btn-check:active + .btn-outline-lemonchiffon:focus, .btn-outline-lemonchiffon:active:focus, .btn-outline-lemonchiffon.active:focus, .btn-outline-lemonchiffon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 205, 0.5);
}
.btn-outline-lemonchiffon:disabled, .btn-outline-lemonchiffon.disabled {
color: #FFFACD;
background-color: transparent;
}
.btn-outline-lightblue {
color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-outline-lightblue:hover {
color: #000;
background-color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-check:focus + .btn-outline-lightblue, .btn-outline-lightblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.5);
}
.btn-check:checked + .btn-outline-lightblue,
.btn-check:active + .btn-outline-lightblue, .btn-outline-lightblue:active, .btn-outline-lightblue.active, .btn-outline-lightblue.dropdown-toggle.show {
color: #000;
background-color: #ADD8E6;
border-color: #ADD8E6;
}
.btn-check:checked + .btn-outline-lightblue:focus,
.btn-check:active + .btn-outline-lightblue:focus, .btn-outline-lightblue:active:focus, .btn-outline-lightblue.active:focus, .btn-outline-lightblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(173, 216, 230, 0.5);
}
.btn-outline-lightblue:disabled, .btn-outline-lightblue.disabled {
color: #ADD8E6;
background-color: transparent;
}
.btn-outline-lightcoral {
color: #F08080;
border-color: #F08080;
}
.btn-outline-lightcoral:hover {
color: #000;
background-color: #F08080;
border-color: #F08080;
}
.btn-check:focus + .btn-outline-lightcoral, .btn-outline-lightcoral:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 128, 128, 0.5);
}
.btn-check:checked + .btn-outline-lightcoral,
.btn-check:active + .btn-outline-lightcoral, .btn-outline-lightcoral:active, .btn-outline-lightcoral.active, .btn-outline-lightcoral.dropdown-toggle.show {
color: #000;
background-color: #F08080;
border-color: #F08080;
}
.btn-check:checked + .btn-outline-lightcoral:focus,
.btn-check:active + .btn-outline-lightcoral:focus, .btn-outline-lightcoral:active:focus, .btn-outline-lightcoral.active:focus, .btn-outline-lightcoral.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(240, 128, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(240, 128, 128, 0.5);
}
.btn-outline-lightcoral:disabled, .btn-outline-lightcoral.disabled {
color: #F08080;
background-color: transparent;
}
.btn-outline-lightcyan {
color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-outline-lightcyan:hover {
color: #000;
background-color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-check:focus + .btn-outline-lightcyan, .btn-outline-lightcyan:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(224, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(224, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-lightcyan,
.btn-check:active + .btn-outline-lightcyan, .btn-outline-lightcyan:active, .btn-outline-lightcyan.active, .btn-outline-lightcyan.dropdown-toggle.show {
color: #000;
background-color: #E0FFFF;
border-color: #E0FFFF;
}
.btn-check:checked + .btn-outline-lightcyan:focus,
.btn-check:active + .btn-outline-lightcyan:focus, .btn-outline-lightcyan:active:focus, .btn-outline-lightcyan.active:focus, .btn-outline-lightcyan.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(224, 255, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(224, 255, 255, 0.5);
}
.btn-outline-lightcyan:disabled, .btn-outline-lightcyan.disabled {
color: #E0FFFF;
background-color: transparent;
}
.btn-outline-lightgoldenrodyellow {
color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-outline-lightgoldenrodyellow:hover {
color: #000;
background-color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-check:focus + .btn-outline-lightgoldenrodyellow, .btn-outline-lightgoldenrodyellow:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 250, 210, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 250, 210, 0.5);
}
.btn-check:checked + .btn-outline-lightgoldenrodyellow,
.btn-check:active + .btn-outline-lightgoldenrodyellow, .btn-outline-lightgoldenrodyellow:active, .btn-outline-lightgoldenrodyellow.active, .btn-outline-lightgoldenrodyellow.dropdown-toggle.show {
color: #000;
background-color: #FAFAD2;
border-color: #FAFAD2;
}
.btn-check:checked + .btn-outline-lightgoldenrodyellow:focus,
.btn-check:active + .btn-outline-lightgoldenrodyellow:focus, .btn-outline-lightgoldenrodyellow:active:focus, .btn-outline-lightgoldenrodyellow.active:focus, .btn-outline-lightgoldenrodyellow.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 250, 210, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 250, 210, 0.5);
}
.btn-outline-lightgoldenrodyellow:disabled, .btn-outline-lightgoldenrodyellow.disabled {
color: #FAFAD2;
background-color: transparent;
}
.btn-outline-lightgray {
color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-outline-lightgray:hover {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-check:focus + .btn-outline-lightgray, .btn-outline-lightgray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-check:checked + .btn-outline-lightgray,
.btn-check:active + .btn-outline-lightgray, .btn-outline-lightgray:active, .btn-outline-lightgray.active, .btn-outline-lightgray.dropdown-toggle.show {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-check:checked + .btn-outline-lightgray:focus,
.btn-check:active + .btn-outline-lightgray:focus, .btn-outline-lightgray:active:focus, .btn-outline-lightgray.active:focus, .btn-outline-lightgray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-outline-lightgray:disabled, .btn-outline-lightgray.disabled {
color: #D3D3D3;
background-color: transparent;
}
.btn-outline-lightgreen {
color: #90EE90;
border-color: #90EE90;
}
.btn-outline-lightgreen:hover {
color: #000;
background-color: #90EE90;
border-color: #90EE90;
}
.btn-check:focus + .btn-outline-lightgreen, .btn-outline-lightgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5);
}
.btn-check:checked + .btn-outline-lightgreen,
.btn-check:active + .btn-outline-lightgreen, .btn-outline-lightgreen:active, .btn-outline-lightgreen.active, .btn-outline-lightgreen.dropdown-toggle.show {
color: #000;
background-color: #90EE90;
border-color: #90EE90;
}
.btn-check:checked + .btn-outline-lightgreen:focus,
.btn-check:active + .btn-outline-lightgreen:focus, .btn-outline-lightgreen:active:focus, .btn-outline-lightgreen.active:focus, .btn-outline-lightgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(144, 238, 144, 0.5);
}
.btn-outline-lightgreen:disabled, .btn-outline-lightgreen.disabled {
color: #90EE90;
background-color: transparent;
}
.btn-outline-lightgrey {
color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-outline-lightgrey:hover {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-check:focus + .btn-outline-lightgrey, .btn-outline-lightgrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-check:checked + .btn-outline-lightgrey,
.btn-check:active + .btn-outline-lightgrey, .btn-outline-lightgrey:active, .btn-outline-lightgrey.active, .btn-outline-lightgrey.dropdown-toggle.show {
color: #000;
background-color: #D3D3D3;
border-color: #D3D3D3;
}
.btn-check:checked + .btn-outline-lightgrey:focus,
.btn-check:active + .btn-outline-lightgrey:focus, .btn-outline-lightgrey:active:focus, .btn-outline-lightgrey.active:focus, .btn-outline-lightgrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-outline-lightgrey:disabled, .btn-outline-lightgrey.disabled {
color: #D3D3D3;
background-color: transparent;
}
.btn-outline-lightpink {
color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-outline-lightpink:hover {
color: #000;
background-color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-check:focus + .btn-outline-lightpink, .btn-outline-lightpink:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 182, 193, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 182, 193, 0.5);
}
.btn-check:checked + .btn-outline-lightpink,
.btn-check:active + .btn-outline-lightpink, .btn-outline-lightpink:active, .btn-outline-lightpink.active, .btn-outline-lightpink.dropdown-toggle.show {
color: #000;
background-color: #FFB6C1;
border-color: #FFB6C1;
}
.btn-check:checked + .btn-outline-lightpink:focus,
.btn-check:active + .btn-outline-lightpink:focus, .btn-outline-lightpink:active:focus, .btn-outline-lightpink.active:focus, .btn-outline-lightpink.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 182, 193, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 182, 193, 0.5);
}
.btn-outline-lightpink:disabled, .btn-outline-lightpink.disabled {
color: #FFB6C1;
background-color: transparent;
}
.btn-outline-lightsalmon {
color: #FFA07A;
border-color: #FFA07A;
}
.btn-outline-lightsalmon:hover {
color: #000;
background-color: #FFA07A;
border-color: #FFA07A;
}
.btn-check:focus + .btn-outline-lightsalmon, .btn-outline-lightsalmon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 160, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 160, 122, 0.5);
}
.btn-check:checked + .btn-outline-lightsalmon,
.btn-check:active + .btn-outline-lightsalmon, .btn-outline-lightsalmon:active, .btn-outline-lightsalmon.active, .btn-outline-lightsalmon.dropdown-toggle.show {
color: #000;
background-color: #FFA07A;
border-color: #FFA07A;
}
.btn-check:checked + .btn-outline-lightsalmon:focus,
.btn-check:active + .btn-outline-lightsalmon:focus, .btn-outline-lightsalmon:active:focus, .btn-outline-lightsalmon.active:focus, .btn-outline-lightsalmon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 160, 122, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 160, 122, 0.5);
}
.btn-outline-lightsalmon:disabled, .btn-outline-lightsalmon.disabled {
color: #FFA07A;
background-color: transparent;
}
.btn-outline-lightseagreen {
color: #20B2AA;
border-color: #20B2AA;
}
.btn-outline-lightseagreen:hover {
color: #000;
background-color: #20B2AA;
border-color: #20B2AA;
}
.btn-check:focus + .btn-outline-lightseagreen, .btn-outline-lightseagreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(32, 178, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(32, 178, 170, 0.5);
}
.btn-check:checked + .btn-outline-lightseagreen,
.btn-check:active + .btn-outline-lightseagreen, .btn-outline-lightseagreen:active, .btn-outline-lightseagreen.active, .btn-outline-lightseagreen.dropdown-toggle.show {
color: #000;
background-color: #20B2AA;
border-color: #20B2AA;
}
.btn-check:checked + .btn-outline-lightseagreen:focus,
.btn-check:active + .btn-outline-lightseagreen:focus, .btn-outline-lightseagreen:active:focus, .btn-outline-lightseagreen.active:focus, .btn-outline-lightseagreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(32, 178, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(32, 178, 170, 0.5);
}
.btn-outline-lightseagreen:disabled, .btn-outline-lightseagreen.disabled {
color: #20B2AA;
background-color: transparent;
}
.btn-outline-lightskyblue {
color: #87CEFA;
border-color: #87CEFA;
}
.btn-outline-lightskyblue:hover {
color: #000;
background-color: #87CEFA;
border-color: #87CEFA;
}
.btn-check:focus + .btn-outline-lightskyblue, .btn-outline-lightskyblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(135, 206, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(135, 206, 250, 0.5);
}
.btn-check:checked + .btn-outline-lightskyblue,
.btn-check:active + .btn-outline-lightskyblue, .btn-outline-lightskyblue:active, .btn-outline-lightskyblue.active, .btn-outline-lightskyblue.dropdown-toggle.show {
color: #000;
background-color: #87CEFA;
border-color: #87CEFA;
}
.btn-check:checked + .btn-outline-lightskyblue:focus,
.btn-check:active + .btn-outline-lightskyblue:focus, .btn-outline-lightskyblue:active:focus, .btn-outline-lightskyblue.active:focus, .btn-outline-lightskyblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(135, 206, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(135, 206, 250, 0.5);
}
.btn-outline-lightskyblue:disabled, .btn-outline-lightskyblue.disabled {
color: #87CEFA;
background-color: transparent;
}
.btn-outline-lightslategray {
color: #778899;
border-color: #778899;
}
.btn-outline-lightslategray:hover {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-check:focus + .btn-outline-lightslategray, .btn-outline-lightslategray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
}
.btn-check:checked + .btn-outline-lightslategray,
.btn-check:active + .btn-outline-lightslategray, .btn-outline-lightslategray:active, .btn-outline-lightslategray.active, .btn-outline-lightslategray.dropdown-toggle.show {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-check:checked + .btn-outline-lightslategray:focus,
.btn-check:active + .btn-outline-lightslategray:focus, .btn-outline-lightslategray:active:focus, .btn-outline-lightslategray.active:focus, .btn-outline-lightslategray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
}
.btn-outline-lightslategray:disabled, .btn-outline-lightslategray.disabled {
color: #778899;
background-color: transparent;
}
.btn-outline-lightslategrey {
color: #778899;
border-color: #778899;
}
.btn-outline-lightslategrey:hover {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-check:focus + .btn-outline-lightslategrey, .btn-outline-lightslategrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
}
.btn-check:checked + .btn-outline-lightslategrey,
.btn-check:active + .btn-outline-lightslategrey, .btn-outline-lightslategrey:active, .btn-outline-lightslategrey.active, .btn-outline-lightslategrey.dropdown-toggle.show {
color: #000;
background-color: #778899;
border-color: #778899;
}
.btn-check:checked + .btn-outline-lightslategrey:focus,
.btn-check:active + .btn-outline-lightslategrey:focus, .btn-outline-lightslategrey:active:focus, .btn-outline-lightslategrey.active:focus, .btn-outline-lightslategrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(119, 136, 153, 0.5);
}
.btn-outline-lightslategrey:disabled, .btn-outline-lightslategrey.disabled {
color: #778899;
background-color: transparent;
}
.btn-outline-lightsteelblue {
color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-outline-lightsteelblue:hover {
color: #000;
background-color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-check:focus + .btn-outline-lightsteelblue, .btn-outline-lightsteelblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(176, 196, 222, 0.5);
box-shadow: 0 0 0 0.25rem rgba(176, 196, 222, 0.5);
}
.btn-check:checked + .btn-outline-lightsteelblue,
.btn-check:active + .btn-outline-lightsteelblue, .btn-outline-lightsteelblue:active, .btn-outline-lightsteelblue.active, .btn-outline-lightsteelblue.dropdown-toggle.show {
color: #000;
background-color: #B0C4DE;
border-color: #B0C4DE;
}
.btn-check:checked + .btn-outline-lightsteelblue:focus,
.btn-check:active + .btn-outline-lightsteelblue:focus, .btn-outline-lightsteelblue:active:focus, .btn-outline-lightsteelblue.active:focus, .btn-outline-lightsteelblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(176, 196, 222, 0.5);
box-shadow: 0 0 0 0.25rem rgba(176, 196, 222, 0.5);
}
.btn-outline-lightsteelblue:disabled, .btn-outline-lightsteelblue.disabled {
color: #B0C4DE;
background-color: transparent;
}
.btn-outline-lightyellow {
color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-outline-lightyellow:hover {
color: #000;
background-color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-check:focus + .btn-outline-lightyellow, .btn-outline-lightyellow:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 224, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 255, 224, 0.5);
}
.btn-check:checked + .btn-outline-lightyellow,
.btn-check:active + .btn-outline-lightyellow, .btn-outline-lightyellow:active, .btn-outline-lightyellow.active, .btn-outline-lightyellow.dropdown-toggle.show {
color: #000;
background-color: #FFFFE0;
border-color: #FFFFE0;
}
.btn-check:checked + .btn-outline-lightyellow:focus,
.btn-check:active + .btn-outline-lightyellow:focus, .btn-outline-lightyellow:active:focus, .btn-outline-lightyellow.active:focus, .btn-outline-lightyellow.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 224, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 255, 224, 0.5);
}
.btn-outline-lightyellow:disabled, .btn-outline-lightyellow.disabled {
color: #FFFFE0;
background-color: transparent;
}
.btn-outline-lime {
color: #00FF00;
border-color: #00FF00;
}
.btn-outline-lime:hover {
color: #000;
background-color: #00FF00;
border-color: #00FF00;
}
.btn-check:focus + .btn-outline-lime, .btn-outline-lime:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.5);
}
.btn-check:checked + .btn-outline-lime,
.btn-check:active + .btn-outline-lime, .btn-outline-lime:active, .btn-outline-lime.active, .btn-outline-lime.dropdown-toggle.show {
color: #000;
background-color: #00FF00;
border-color: #00FF00;
}
.btn-check:checked + .btn-outline-lime:focus,
.btn-check:active + .btn-outline-lime:focus, .btn-outline-lime:active:focus, .btn-outline-lime.active:focus, .btn-outline-lime.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.5);
}
.btn-outline-lime:disabled, .btn-outline-lime.disabled {
color: #00FF00;
background-color: transparent;
}
.btn-outline-limegreen {
color: #32CD32;
border-color: #32CD32;
}
.btn-outline-limegreen:hover {
color: #000;
background-color: #32CD32;
border-color: #32CD32;
}
.btn-check:focus + .btn-outline-limegreen, .btn-outline-limegreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.5);
box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.5);
}
.btn-check:checked + .btn-outline-limegreen,
.btn-check:active + .btn-outline-limegreen, .btn-outline-limegreen:active, .btn-outline-limegreen.active, .btn-outline-limegreen.dropdown-toggle.show {
color: #000;
background-color: #32CD32;
border-color: #32CD32;
}
.btn-check:checked + .btn-outline-limegreen:focus,
.btn-check:active + .btn-outline-limegreen:focus, .btn-outline-limegreen:active:focus, .btn-outline-limegreen.active:focus, .btn-outline-limegreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.5);
box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.5);
}
.btn-outline-limegreen:disabled, .btn-outline-limegreen.disabled {
color: #32CD32;
background-color: transparent;
}
.btn-outline-linen {
color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-outline-linen:hover {
color: #000;
background-color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-check:focus + .btn-outline-linen, .btn-outline-linen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 240, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 240, 230, 0.5);
}
.btn-check:checked + .btn-outline-linen,
.btn-check:active + .btn-outline-linen, .btn-outline-linen:active, .btn-outline-linen.active, .btn-outline-linen.dropdown-toggle.show {
color: #000;
background-color: #FAF0E6;
border-color: #FAF0E6;
}
.btn-check:checked + .btn-outline-linen:focus,
.btn-check:active + .btn-outline-linen:focus, .btn-outline-linen:active:focus, .btn-outline-linen.active:focus, .btn-outline-linen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 240, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 240, 230, 0.5);
}
.btn-outline-linen:disabled, .btn-outline-linen.disabled {
color: #FAF0E6;
background-color: transparent;
}
.btn-outline-magenta {
color: #FF00FF;
border-color: #FF00FF;
}
.btn-outline-magenta:hover {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-check:focus + .btn-outline-magenta, .btn-outline-magenta:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
}
.btn-check:checked + .btn-outline-magenta,
.btn-check:active + .btn-outline-magenta, .btn-outline-magenta:active, .btn-outline-magenta.active, .btn-outline-magenta.dropdown-toggle.show {
color: #000;
background-color: #FF00FF;
border-color: #FF00FF;
}
.btn-check:checked + .btn-outline-magenta:focus,
.btn-check:active + .btn-outline-magenta:focus, .btn-outline-magenta:active:focus, .btn-outline-magenta.active:focus, .btn-outline-magenta.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.5);
}
.btn-outline-magenta:disabled, .btn-outline-magenta.disabled {
color: #FF00FF;
background-color: transparent;
}
.btn-outline-maroon {
color: #800000;
border-color: #800000;
}
.btn-outline-maroon:hover {
color: #fff;
background-color: #800000;
border-color: #800000;
}
.btn-check:focus + .btn-outline-maroon, .btn-outline-maroon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.5);
}
.btn-check:checked + .btn-outline-maroon,
.btn-check:active + .btn-outline-maroon, .btn-outline-maroon:active, .btn-outline-maroon.active, .btn-outline-maroon.dropdown-toggle.show {
color: #fff;
background-color: #800000;
border-color: #800000;
}
.btn-check:checked + .btn-outline-maroon:focus,
.btn-check:active + .btn-outline-maroon:focus, .btn-outline-maroon:active:focus, .btn-outline-maroon.active:focus, .btn-outline-maroon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.5);
}
.btn-outline-maroon:disabled, .btn-outline-maroon.disabled {
color: #800000;
background-color: transparent;
}
.btn-outline-mediumaquamarine {
color: #66CDAA;
border-color: #66CDAA;
}
.btn-outline-mediumaquamarine:hover {
color: #000;
background-color: #66CDAA;
border-color: #66CDAA;
}
.btn-check:focus + .btn-outline-mediumaquamarine, .btn-outline-mediumaquamarine:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(102, 205, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(102, 205, 170, 0.5);
}
.btn-check:checked + .btn-outline-mediumaquamarine,
.btn-check:active + .btn-outline-mediumaquamarine, .btn-outline-mediumaquamarine:active, .btn-outline-mediumaquamarine.active, .btn-outline-mediumaquamarine.dropdown-toggle.show {
color: #000;
background-color: #66CDAA;
border-color: #66CDAA;
}
.btn-check:checked + .btn-outline-mediumaquamarine:focus,
.btn-check:active + .btn-outline-mediumaquamarine:focus, .btn-outline-mediumaquamarine:active:focus, .btn-outline-mediumaquamarine.active:focus, .btn-outline-mediumaquamarine.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(102, 205, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(102, 205, 170, 0.5);
}
.btn-outline-mediumaquamarine:disabled, .btn-outline-mediumaquamarine.disabled {
color: #66CDAA;
background-color: transparent;
}
.btn-outline-mediumblue {
color: #0000CD;
border-color: #0000CD;
}
.btn-outline-mediumblue:hover {
color: #fff;
background-color: #0000CD;
border-color: #0000CD;
}
.btn-check:focus + .btn-outline-mediumblue, .btn-outline-mediumblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 205, 0.5);
}
.btn-check:checked + .btn-outline-mediumblue,
.btn-check:active + .btn-outline-mediumblue, .btn-outline-mediumblue:active, .btn-outline-mediumblue.active, .btn-outline-mediumblue.dropdown-toggle.show {
color: #fff;
background-color: #0000CD;
border-color: #0000CD;
}
.btn-check:checked + .btn-outline-mediumblue:focus,
.btn-check:active + .btn-outline-mediumblue:focus, .btn-outline-mediumblue:active:focus, .btn-outline-mediumblue.active:focus, .btn-outline-mediumblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 205, 0.5);
}
.btn-outline-mediumblue:disabled, .btn-outline-mediumblue.disabled {
color: #0000CD;
background-color: transparent;
}
.btn-outline-mediumorchid {
color: #BA55D3;
border-color: #BA55D3;
}
.btn-outline-mediumorchid:hover {
color: #000;
background-color: #BA55D3;
border-color: #BA55D3;
}
.btn-check:focus + .btn-outline-mediumorchid, .btn-outline-mediumorchid:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(186, 85, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(186, 85, 211, 0.5);
}
.btn-check:checked + .btn-outline-mediumorchid,
.btn-check:active + .btn-outline-mediumorchid, .btn-outline-mediumorchid:active, .btn-outline-mediumorchid.active, .btn-outline-mediumorchid.dropdown-toggle.show {
color: #000;
background-color: #BA55D3;
border-color: #BA55D3;
}
.btn-check:checked + .btn-outline-mediumorchid:focus,
.btn-check:active + .btn-outline-mediumorchid:focus, .btn-outline-mediumorchid:active:focus, .btn-outline-mediumorchid.active:focus, .btn-outline-mediumorchid.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(186, 85, 211, 0.5);
box-shadow: 0 0 0 0.25rem rgba(186, 85, 211, 0.5);
}
.btn-outline-mediumorchid:disabled, .btn-outline-mediumorchid.disabled {
color: #BA55D3;
background-color: transparent;
}
.btn-outline-mediumpurple {
color: #9370DB;
border-color: #9370DB;
}
.btn-outline-mediumpurple:hover {
color: #000;
background-color: #9370DB;
border-color: #9370DB;
}
.btn-check:focus + .btn-outline-mediumpurple, .btn-outline-mediumpurple:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 112, 219, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 112, 219, 0.5);
}
.btn-check:checked + .btn-outline-mediumpurple,
.btn-check:active + .btn-outline-mediumpurple, .btn-outline-mediumpurple:active, .btn-outline-mediumpurple.active, .btn-outline-mediumpurple.dropdown-toggle.show {
color: #000;
background-color: #9370DB;
border-color: #9370DB;
}
.btn-check:checked + .btn-outline-mediumpurple:focus,
.btn-check:active + .btn-outline-mediumpurple:focus, .btn-outline-mediumpurple:active:focus, .btn-outline-mediumpurple.active:focus, .btn-outline-mediumpurple.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(147, 112, 219, 0.5);
box-shadow: 0 0 0 0.25rem rgba(147, 112, 219, 0.5);
}
.btn-outline-mediumpurple:disabled, .btn-outline-mediumpurple.disabled {
color: #9370DB;
background-color: transparent;
}
.btn-outline-mediumseagreen {
color: #3CB371;
border-color: #3CB371;
}
.btn-outline-mediumseagreen:hover {
color: #000;
background-color: #3CB371;
border-color: #3CB371;
}
.btn-check:focus + .btn-outline-mediumseagreen, .btn-outline-mediumseagreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 179, 113, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 179, 113, 0.5);
}
.btn-check:checked + .btn-outline-mediumseagreen,
.btn-check:active + .btn-outline-mediumseagreen, .btn-outline-mediumseagreen:active, .btn-outline-mediumseagreen.active, .btn-outline-mediumseagreen.dropdown-toggle.show {
color: #000;
background-color: #3CB371;
border-color: #3CB371;
}
.btn-check:checked + .btn-outline-mediumseagreen:focus,
.btn-check:active + .btn-outline-mediumseagreen:focus, .btn-outline-mediumseagreen:active:focus, .btn-outline-mediumseagreen.active:focus, .btn-outline-mediumseagreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(60, 179, 113, 0.5);
box-shadow: 0 0 0 0.25rem rgba(60, 179, 113, 0.5);
}
.btn-outline-mediumseagreen:disabled, .btn-outline-mediumseagreen.disabled {
color: #3CB371;
background-color: transparent;
}
.btn-outline-mediumslateblue {
color: #7B68EE;
border-color: #7B68EE;
}
.btn-outline-mediumslateblue:hover {
color: #000;
background-color: #7B68EE;
border-color: #7B68EE;
}
.btn-check:focus + .btn-outline-mediumslateblue, .btn-outline-mediumslateblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.5);
}
.btn-check:checked + .btn-outline-mediumslateblue,
.btn-check:active + .btn-outline-mediumslateblue, .btn-outline-mediumslateblue:active, .btn-outline-mediumslateblue.active, .btn-outline-mediumslateblue.dropdown-toggle.show {
color: #000;
background-color: #7B68EE;
border-color: #7B68EE;
}
.btn-check:checked + .btn-outline-mediumslateblue:focus,
.btn-check:active + .btn-outline-mediumslateblue:focus, .btn-outline-mediumslateblue:active:focus, .btn-outline-mediumslateblue.active:focus, .btn-outline-mediumslateblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.5);
}
.btn-outline-mediumslateblue:disabled, .btn-outline-mediumslateblue.disabled {
color: #7B68EE;
background-color: transparent;
}
.btn-outline-mediumspringgreen {
color: #00FA9A;
border-color: #00FA9A;
}
.btn-outline-mediumspringgreen:hover {
color: #000;
background-color: #00FA9A;
border-color: #00FA9A;
}
.btn-check:focus + .btn-outline-mediumspringgreen, .btn-outline-mediumspringgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 250, 154, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 250, 154, 0.5);
}
.btn-check:checked + .btn-outline-mediumspringgreen,
.btn-check:active + .btn-outline-mediumspringgreen, .btn-outline-mediumspringgreen:active, .btn-outline-mediumspringgreen.active, .btn-outline-mediumspringgreen.dropdown-toggle.show {
color: #000;
background-color: #00FA9A;
border-color: #00FA9A;
}
.btn-check:checked + .btn-outline-mediumspringgreen:focus,
.btn-check:active + .btn-outline-mediumspringgreen:focus, .btn-outline-mediumspringgreen:active:focus, .btn-outline-mediumspringgreen.active:focus, .btn-outline-mediumspringgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 250, 154, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 250, 154, 0.5);
}
.btn-outline-mediumspringgreen:disabled, .btn-outline-mediumspringgreen.disabled {
color: #00FA9A;
background-color: transparent;
}
.btn-outline-mediumturquoise {
color: #48D1CC;
border-color: #48D1CC;
}
.btn-outline-mediumturquoise:hover {
color: #000;
background-color: #48D1CC;
border-color: #48D1CC;
}
.btn-check:focus + .btn-outline-mediumturquoise, .btn-outline-mediumturquoise:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(72, 209, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(72, 209, 204, 0.5);
}
.btn-check:checked + .btn-outline-mediumturquoise,
.btn-check:active + .btn-outline-mediumturquoise, .btn-outline-mediumturquoise:active, .btn-outline-mediumturquoise.active, .btn-outline-mediumturquoise.dropdown-toggle.show {
color: #000;
background-color: #48D1CC;
border-color: #48D1CC;
}
.btn-check:checked + .btn-outline-mediumturquoise:focus,
.btn-check:active + .btn-outline-mediumturquoise:focus, .btn-outline-mediumturquoise:active:focus, .btn-outline-mediumturquoise.active:focus, .btn-outline-mediumturquoise.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(72, 209, 204, 0.5);
box-shadow: 0 0 0 0.25rem rgba(72, 209, 204, 0.5);
}
.btn-outline-mediumturquoise:disabled, .btn-outline-mediumturquoise.disabled {
color: #48D1CC;
background-color: transparent;
}
.btn-outline-mediumvioletred {
color: #C71585;
border-color: #C71585;
}
.btn-outline-mediumvioletred:hover {
color: #fff;
background-color: #C71585;
border-color: #C71585;
}
.btn-check:focus + .btn-outline-mediumvioletred, .btn-outline-mediumvioletred:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(199, 21, 133, 0.5);
box-shadow: 0 0 0 0.25rem rgba(199, 21, 133, 0.5);
}
.btn-check:checked + .btn-outline-mediumvioletred,
.btn-check:active + .btn-outline-mediumvioletred, .btn-outline-mediumvioletred:active, .btn-outline-mediumvioletred.active, .btn-outline-mediumvioletred.dropdown-toggle.show {
color: #fff;
background-color: #C71585;
border-color: #C71585;
}
.btn-check:checked + .btn-outline-mediumvioletred:focus,
.btn-check:active + .btn-outline-mediumvioletred:focus, .btn-outline-mediumvioletred:active:focus, .btn-outline-mediumvioletred.active:focus, .btn-outline-mediumvioletred.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(199, 21, 133, 0.5);
box-shadow: 0 0 0 0.25rem rgba(199, 21, 133, 0.5);
}
.btn-outline-mediumvioletred:disabled, .btn-outline-mediumvioletred.disabled {
color: #C71585;
background-color: transparent;
}
.btn-outline-midnightblue {
color: #191970;
border-color: #191970;
}
.btn-outline-midnightblue:hover {
color: #fff;
background-color: #191970;
border-color: #191970;
}
.btn-check:focus + .btn-outline-midnightblue, .btn-outline-midnightblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.5);
box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.5);
}
.btn-check:checked + .btn-outline-midnightblue,
.btn-check:active + .btn-outline-midnightblue, .btn-outline-midnightblue:active, .btn-outline-midnightblue.active, .btn-outline-midnightblue.dropdown-toggle.show {
color: #fff;
background-color: #191970;
border-color: #191970;
}
.btn-check:checked + .btn-outline-midnightblue:focus,
.btn-check:active + .btn-outline-midnightblue:focus, .btn-outline-midnightblue:active:focus, .btn-outline-midnightblue.active:focus, .btn-outline-midnightblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.5);
box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.5);
}
.btn-outline-midnightblue:disabled, .btn-outline-midnightblue.disabled {
color: #191970;
background-color: transparent;
}
.btn-outline-mintcream {
color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-outline-mintcream:hover {
color: #000;
background-color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-check:focus + .btn-outline-mintcream, .btn-outline-mintcream:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 255, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 255, 250, 0.5);
}
.btn-check:checked + .btn-outline-mintcream,
.btn-check:active + .btn-outline-mintcream, .btn-outline-mintcream:active, .btn-outline-mintcream.active, .btn-outline-mintcream.dropdown-toggle.show {
color: #000;
background-color: #F5FFFA;
border-color: #F5FFFA;
}
.btn-check:checked + .btn-outline-mintcream:focus,
.btn-check:active + .btn-outline-mintcream:focus, .btn-outline-mintcream:active:focus, .btn-outline-mintcream.active:focus, .btn-outline-mintcream.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 255, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 255, 250, 0.5);
}
.btn-outline-mintcream:disabled, .btn-outline-mintcream.disabled {
color: #F5FFFA;
background-color: transparent;
}
.btn-outline-mistyrose {
color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-outline-mistyrose:hover {
color: #000;
background-color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-check:focus + .btn-outline-mistyrose, .btn-outline-mistyrose:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 225, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 225, 0.5);
}
.btn-check:checked + .btn-outline-mistyrose,
.btn-check:active + .btn-outline-mistyrose, .btn-outline-mistyrose:active, .btn-outline-mistyrose.active, .btn-outline-mistyrose.dropdown-toggle.show {
color: #000;
background-color: #FFE4E1;
border-color: #FFE4E1;
}
.btn-check:checked + .btn-outline-mistyrose:focus,
.btn-check:active + .btn-outline-mistyrose:focus, .btn-outline-mistyrose:active:focus, .btn-outline-mistyrose.active:focus, .btn-outline-mistyrose.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 225, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 225, 0.5);
}
.btn-outline-mistyrose:disabled, .btn-outline-mistyrose.disabled {
color: #FFE4E1;
background-color: transparent;
}
.btn-outline-moccasin {
color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-outline-moccasin:hover {
color: #000;
background-color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-check:focus + .btn-outline-moccasin, .btn-outline-moccasin:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 181, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 181, 0.5);
}
.btn-check:checked + .btn-outline-moccasin,
.btn-check:active + .btn-outline-moccasin, .btn-outline-moccasin:active, .btn-outline-moccasin.active, .btn-outline-moccasin.dropdown-toggle.show {
color: #000;
background-color: #FFE4B5;
border-color: #FFE4B5;
}
.btn-check:checked + .btn-outline-moccasin:focus,
.btn-check:active + .btn-outline-moccasin:focus, .btn-outline-moccasin:active:focus, .btn-outline-moccasin.active:focus, .btn-outline-moccasin.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 228, 181, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 228, 181, 0.5);
}
.btn-outline-moccasin:disabled, .btn-outline-moccasin.disabled {
color: #FFE4B5;
background-color: transparent;
}
.btn-outline-navajowhite {
color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-outline-navajowhite:hover {
color: #000;
background-color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-check:focus + .btn-outline-navajowhite, .btn-outline-navajowhite:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 222, 173, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 222, 173, 0.5);
}
.btn-check:checked + .btn-outline-navajowhite,
.btn-check:active + .btn-outline-navajowhite, .btn-outline-navajowhite:active, .btn-outline-navajowhite.active, .btn-outline-navajowhite.dropdown-toggle.show {
color: #000;
background-color: #FFDEAD;
border-color: #FFDEAD;
}
.btn-check:checked + .btn-outline-navajowhite:focus,
.btn-check:active + .btn-outline-navajowhite:focus, .btn-outline-navajowhite:active:focus, .btn-outline-navajowhite.active:focus, .btn-outline-navajowhite.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 222, 173, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 222, 173, 0.5);
}
.btn-outline-navajowhite:disabled, .btn-outline-navajowhite.disabled {
color: #FFDEAD;
background-color: transparent;
}
.btn-outline-navy {
color: #000080;
border-color: #000080;
}
.btn-outline-navy:hover {
color: #fff;
background-color: #000080;
border-color: #000080;
}
.btn-check:focus + .btn-outline-navy, .btn-outline-navy:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, 0.5);
}
.btn-check:checked + .btn-outline-navy,
.btn-check:active + .btn-outline-navy, .btn-outline-navy:active, .btn-outline-navy.active, .btn-outline-navy.dropdown-toggle.show {
color: #fff;
background-color: #000080;
border-color: #000080;
}
.btn-check:checked + .btn-outline-navy:focus,
.btn-check:active + .btn-outline-navy:focus, .btn-outline-navy:active:focus, .btn-outline-navy.active:focus, .btn-outline-navy.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, 0.5);
}
.btn-outline-navy:disabled, .btn-outline-navy.disabled {
color: #000080;
background-color: transparent;
}
.btn-outline-oldlace {
color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-outline-oldlace:hover {
color: #000;
background-color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-check:focus + .btn-outline-oldlace, .btn-outline-oldlace:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(253, 245, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(253, 245, 230, 0.5);
}
.btn-check:checked + .btn-outline-oldlace,
.btn-check:active + .btn-outline-oldlace, .btn-outline-oldlace:active, .btn-outline-oldlace.active, .btn-outline-oldlace.dropdown-toggle.show {
color: #000;
background-color: #FDF5E6;
border-color: #FDF5E6;
}
.btn-check:checked + .btn-outline-oldlace:focus,
.btn-check:active + .btn-outline-oldlace:focus, .btn-outline-oldlace:active:focus, .btn-outline-oldlace.active:focus, .btn-outline-oldlace.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(253, 245, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(253, 245, 230, 0.5);
}
.btn-outline-oldlace:disabled, .btn-outline-oldlace.disabled {
color: #FDF5E6;
background-color: transparent;
}
.btn-outline-olive {
color: #808000;
border-color: #808000;
}
.btn-outline-olive:hover {
color: #000;
background-color: #808000;
border-color: #808000;
}
.btn-check:focus + .btn-outline-olive, .btn-outline-olive:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 0, 0.5);
}
.btn-check:checked + .btn-outline-olive,
.btn-check:active + .btn-outline-olive, .btn-outline-olive:active, .btn-outline-olive.active, .btn-outline-olive.dropdown-toggle.show {
color: #000;
background-color: #808000;
border-color: #808000;
}
.btn-check:checked + .btn-outline-olive:focus,
.btn-check:active + .btn-outline-olive:focus, .btn-outline-olive:active:focus, .btn-outline-olive.active:focus, .btn-outline-olive.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(128, 128, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(128, 128, 0, 0.5);
}
.btn-outline-olive:disabled, .btn-outline-olive.disabled {
color: #808000;
background-color: transparent;
}
.btn-outline-olivedrab {
color: #6B8E23;
border-color: #6B8E23;
}
.btn-outline-olivedrab:hover {
color: #000;
background-color: #6B8E23;
border-color: #6B8E23;
}
.btn-check:focus + .btn-outline-olivedrab, .btn-outline-olivedrab:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.5);
box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.5);
}
.btn-check:checked + .btn-outline-olivedrab,
.btn-check:active + .btn-outline-olivedrab, .btn-outline-olivedrab:active, .btn-outline-olivedrab.active, .btn-outline-olivedrab.dropdown-toggle.show {
color: #000;
background-color: #6B8E23;
border-color: #6B8E23;
}
.btn-check:checked + .btn-outline-olivedrab:focus,
.btn-check:active + .btn-outline-olivedrab:focus, .btn-outline-olivedrab:active:focus, .btn-outline-olivedrab.active:focus, .btn-outline-olivedrab.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.5);
box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.5);
}
.btn-outline-olivedrab:disabled, .btn-outline-olivedrab.disabled {
color: #6B8E23;
background-color: transparent;
}
.btn-outline-orangered {
color: #FF4500;
border-color: #FF4500;
}
.btn-outline-orangered:hover {
color: #000;
background-color: #FF4500;
border-color: #FF4500;
}
.btn-check:focus + .btn-outline-orangered, .btn-outline-orangered:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.5);
}
.btn-check:checked + .btn-outline-orangered,
.btn-check:active + .btn-outline-orangered, .btn-outline-orangered:active, .btn-outline-orangered.active, .btn-outline-orangered.dropdown-toggle.show {
color: #000;
background-color: #FF4500;
border-color: #FF4500;
}
.btn-check:checked + .btn-outline-orangered:focus,
.btn-check:active + .btn-outline-orangered:focus, .btn-outline-orangered:active:focus, .btn-outline-orangered.active:focus, .btn-outline-orangered.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.5);
}
.btn-outline-orangered:disabled, .btn-outline-orangered.disabled {
color: #FF4500;
background-color: transparent;
}
.btn-outline-orchid {
color: #DA70D6;
border-color: #DA70D6;
}
.btn-outline-orchid:hover {
color: #000;
background-color: #DA70D6;
border-color: #DA70D6;
}
.btn-check:focus + .btn-outline-orchid, .btn-outline-orchid:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 112, 214, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 112, 214, 0.5);
}
.btn-check:checked + .btn-outline-orchid,
.btn-check:active + .btn-outline-orchid, .btn-outline-orchid:active, .btn-outline-orchid.active, .btn-outline-orchid.dropdown-toggle.show {
color: #000;
background-color: #DA70D6;
border-color: #DA70D6;
}
.btn-check:checked + .btn-outline-orchid:focus,
.btn-check:active + .btn-outline-orchid:focus, .btn-outline-orchid:active:focus, .btn-outline-orchid.active:focus, .btn-outline-orchid.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(218, 112, 214, 0.5);
box-shadow: 0 0 0 0.25rem rgba(218, 112, 214, 0.5);
}
.btn-outline-orchid:disabled, .btn-outline-orchid.disabled {
color: #DA70D6;
background-color: transparent;
}
.btn-outline-palegoldenrod {
color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-outline-palegoldenrod:hover {
color: #000;
background-color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-check:focus + .btn-outline-palegoldenrod, .btn-outline-palegoldenrod:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(238, 232, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(238, 232, 170, 0.5);
}
.btn-check:checked + .btn-outline-palegoldenrod,
.btn-check:active + .btn-outline-palegoldenrod, .btn-outline-palegoldenrod:active, .btn-outline-palegoldenrod.active, .btn-outline-palegoldenrod.dropdown-toggle.show {
color: #000;
background-color: #EEE8AA;
border-color: #EEE8AA;
}
.btn-check:checked + .btn-outline-palegoldenrod:focus,
.btn-check:active + .btn-outline-palegoldenrod:focus, .btn-outline-palegoldenrod:active:focus, .btn-outline-palegoldenrod.active:focus, .btn-outline-palegoldenrod.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(238, 232, 170, 0.5);
box-shadow: 0 0 0 0.25rem rgba(238, 232, 170, 0.5);
}
.btn-outline-palegoldenrod:disabled, .btn-outline-palegoldenrod.disabled {
color: #EEE8AA;
background-color: transparent;
}
.btn-outline-palegreen {
color: #98FB98;
border-color: #98FB98;
}
.btn-outline-palegreen:hover {
color: #000;
background-color: #98FB98;
border-color: #98FB98;
}
.btn-check:focus + .btn-outline-palegreen, .btn-outline-palegreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.5);
box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.5);
}
.btn-check:checked + .btn-outline-palegreen,
.btn-check:active + .btn-outline-palegreen, .btn-outline-palegreen:active, .btn-outline-palegreen.active, .btn-outline-palegreen.dropdown-toggle.show {
color: #000;
background-color: #98FB98;
border-color: #98FB98;
}
.btn-check:checked + .btn-outline-palegreen:focus,
.btn-check:active + .btn-outline-palegreen:focus, .btn-outline-palegreen:active:focus, .btn-outline-palegreen.active:focus, .btn-outline-palegreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.5);
box-shadow: 0 0 0 0.25rem rgba(152, 251, 152, 0.5);
}
.btn-outline-palegreen:disabled, .btn-outline-palegreen.disabled {
color: #98FB98;
background-color: transparent;
}
.btn-outline-paleturquoise {
color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-outline-paleturquoise:hover {
color: #000;
background-color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-check:focus + .btn-outline-paleturquoise, .btn-outline-paleturquoise:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(175, 238, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(175, 238, 238, 0.5);
}
.btn-check:checked + .btn-outline-paleturquoise,
.btn-check:active + .btn-outline-paleturquoise, .btn-outline-paleturquoise:active, .btn-outline-paleturquoise.active, .btn-outline-paleturquoise.dropdown-toggle.show {
color: #000;
background-color: #AFEEEE;
border-color: #AFEEEE;
}
.btn-check:checked + .btn-outline-paleturquoise:focus,
.btn-check:active + .btn-outline-paleturquoise:focus, .btn-outline-paleturquoise:active:focus, .btn-outline-paleturquoise.active:focus, .btn-outline-paleturquoise.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(175, 238, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(175, 238, 238, 0.5);
}
.btn-outline-paleturquoise:disabled, .btn-outline-paleturquoise.disabled {
color: #AFEEEE;
background-color: transparent;
}
.btn-outline-palevioletred {
color: #DB7093;
border-color: #DB7093;
}
.btn-outline-palevioletred:hover {
color: #000;
background-color: #DB7093;
border-color: #DB7093;
}
.btn-check:focus + .btn-outline-palevioletred, .btn-outline-palevioletred:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.5);
}
.btn-check:checked + .btn-outline-palevioletred,
.btn-check:active + .btn-outline-palevioletred, .btn-outline-palevioletred:active, .btn-outline-palevioletred.active, .btn-outline-palevioletred.dropdown-toggle.show {
color: #000;
background-color: #DB7093;
border-color: #DB7093;
}
.btn-check:checked + .btn-outline-palevioletred:focus,
.btn-check:active + .btn-outline-palevioletred:focus, .btn-outline-palevioletred:active:focus, .btn-outline-palevioletred.active:focus, .btn-outline-palevioletred.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.5);
box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.5);
}
.btn-outline-palevioletred:disabled, .btn-outline-palevioletred.disabled {
color: #DB7093;
background-color: transparent;
}
.btn-outline-papayawhip {
color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-outline-papayawhip:hover {
color: #000;
background-color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-check:focus + .btn-outline-papayawhip, .btn-outline-papayawhip:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 239, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 239, 213, 0.5);
}
.btn-check:checked + .btn-outline-papayawhip,
.btn-check:active + .btn-outline-papayawhip, .btn-outline-papayawhip:active, .btn-outline-papayawhip.active, .btn-outline-papayawhip.dropdown-toggle.show {
color: #000;
background-color: #FFEFD5;
border-color: #FFEFD5;
}
.btn-check:checked + .btn-outline-papayawhip:focus,
.btn-check:active + .btn-outline-papayawhip:focus, .btn-outline-papayawhip:active:focus, .btn-outline-papayawhip.active:focus, .btn-outline-papayawhip.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 239, 213, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 239, 213, 0.5);
}
.btn-outline-papayawhip:disabled, .btn-outline-papayawhip.disabled {
color: #FFEFD5;
background-color: transparent;
}
.btn-outline-peachpuff {
color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-outline-peachpuff:hover {
color: #000;
background-color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-check:focus + .btn-outline-peachpuff, .btn-outline-peachpuff:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 218, 185, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 218, 185, 0.5);
}
.btn-check:checked + .btn-outline-peachpuff,
.btn-check:active + .btn-outline-peachpuff, .btn-outline-peachpuff:active, .btn-outline-peachpuff.active, .btn-outline-peachpuff.dropdown-toggle.show {
color: #000;
background-color: #FFDAB9;
border-color: #FFDAB9;
}
.btn-check:checked + .btn-outline-peachpuff:focus,
.btn-check:active + .btn-outline-peachpuff:focus, .btn-outline-peachpuff:active:focus, .btn-outline-peachpuff.active:focus, .btn-outline-peachpuff.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 218, 185, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 218, 185, 0.5);
}
.btn-outline-peachpuff:disabled, .btn-outline-peachpuff.disabled {
color: #FFDAB9;
background-color: transparent;
}
.btn-outline-peru {
color: #CD853F;
border-color: #CD853F;
}
.btn-outline-peru:hover {
color: #000;
background-color: #CD853F;
border-color: #CD853F;
}
.btn-check:focus + .btn-outline-peru, .btn-outline-peru:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(205, 133, 63, 0.5);
box-shadow: 0 0 0 0.25rem rgba(205, 133, 63, 0.5);
}
.btn-check:checked + .btn-outline-peru,
.btn-check:active + .btn-outline-peru, .btn-outline-peru:active, .btn-outline-peru.active, .btn-outline-peru.dropdown-toggle.show {
color: #000;
background-color: #CD853F;
border-color: #CD853F;
}
.btn-check:checked + .btn-outline-peru:focus,
.btn-check:active + .btn-outline-peru:focus, .btn-outline-peru:active:focus, .btn-outline-peru.active:focus, .btn-outline-peru.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(205, 133, 63, 0.5);
box-shadow: 0 0 0 0.25rem rgba(205, 133, 63, 0.5);
}
.btn-outline-peru:disabled, .btn-outline-peru.disabled {
color: #CD853F;
background-color: transparent;
}
.btn-outline-plum {
color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-outline-plum:hover {
color: #000;
background-color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-check:focus + .btn-outline-plum, .btn-outline-plum:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(221, 160, 221, 0.5);
box-shadow: 0 0 0 0.25rem rgba(221, 160, 221, 0.5);
}
.btn-check:checked + .btn-outline-plum,
.btn-check:active + .btn-outline-plum, .btn-outline-plum:active, .btn-outline-plum.active, .btn-outline-plum.dropdown-toggle.show {
color: #000;
background-color: #DDA0DD;
border-color: #DDA0DD;
}
.btn-check:checked + .btn-outline-plum:focus,
.btn-check:active + .btn-outline-plum:focus, .btn-outline-plum:active:focus, .btn-outline-plum.active:focus, .btn-outline-plum.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(221, 160, 221, 0.5);
box-shadow: 0 0 0 0.25rem rgba(221, 160, 221, 0.5);
}
.btn-outline-plum:disabled, .btn-outline-plum.disabled {
color: #DDA0DD;
background-color: transparent;
}
.btn-outline-powderblue {
color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-outline-powderblue:hover {
color: #000;
background-color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-check:focus + .btn-outline-powderblue, .btn-outline-powderblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(176, 224, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(176, 224, 230, 0.5);
}
.btn-check:checked + .btn-outline-powderblue,
.btn-check:active + .btn-outline-powderblue, .btn-outline-powderblue:active, .btn-outline-powderblue.active, .btn-outline-powderblue.dropdown-toggle.show {
color: #000;
background-color: #B0E0E6;
border-color: #B0E0E6;
}
.btn-check:checked + .btn-outline-powderblue:focus,
.btn-check:active + .btn-outline-powderblue:focus, .btn-outline-powderblue:active:focus, .btn-outline-powderblue.active:focus, .btn-outline-powderblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(176, 224, 230, 0.5);
box-shadow: 0 0 0 0.25rem rgba(176, 224, 230, 0.5);
}
.btn-outline-powderblue:disabled, .btn-outline-powderblue.disabled {
color: #B0E0E6;
background-color: transparent;
}
.btn-outline-rebeccapurple {
color: #663399;
border-color: #663399;
}
.btn-outline-rebeccapurple:hover {
color: #fff;
background-color: #663399;
border-color: #663399;
}
.btn-check:focus + .btn-outline-rebeccapurple, .btn-outline-rebeccapurple:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(102, 51, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(102, 51, 153, 0.5);
}
.btn-check:checked + .btn-outline-rebeccapurple,
.btn-check:active + .btn-outline-rebeccapurple, .btn-outline-rebeccapurple:active, .btn-outline-rebeccapurple.active, .btn-outline-rebeccapurple.dropdown-toggle.show {
color: #fff;
background-color: #663399;
border-color: #663399;
}
.btn-check:checked + .btn-outline-rebeccapurple:focus,
.btn-check:active + .btn-outline-rebeccapurple:focus, .btn-outline-rebeccapurple:active:focus, .btn-outline-rebeccapurple.active:focus, .btn-outline-rebeccapurple.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(102, 51, 153, 0.5);
box-shadow: 0 0 0 0.25rem rgba(102, 51, 153, 0.5);
}
.btn-outline-rebeccapurple:disabled, .btn-outline-rebeccapurple.disabled {
color: #663399;
background-color: transparent;
}
.btn-outline-rosybrown {
color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-outline-rosybrown:hover {
color: #000;
background-color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-check:focus + .btn-outline-rosybrown, .btn-outline-rosybrown:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(188, 143, 143, 0.5);
box-shadow: 0 0 0 0.25rem rgba(188, 143, 143, 0.5);
}
.btn-check:checked + .btn-outline-rosybrown,
.btn-check:active + .btn-outline-rosybrown, .btn-outline-rosybrown:active, .btn-outline-rosybrown.active, .btn-outline-rosybrown.dropdown-toggle.show {
color: #000;
background-color: #BC8F8F;
border-color: #BC8F8F;
}
.btn-check:checked + .btn-outline-rosybrown:focus,
.btn-check:active + .btn-outline-rosybrown:focus, .btn-outline-rosybrown:active:focus, .btn-outline-rosybrown.active:focus, .btn-outline-rosybrown.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(188, 143, 143, 0.5);
box-shadow: 0 0 0 0.25rem rgba(188, 143, 143, 0.5);
}
.btn-outline-rosybrown:disabled, .btn-outline-rosybrown.disabled {
color: #BC8F8F;
background-color: transparent;
}
.btn-outline-royalblue {
color: #4169E1;
border-color: #4169E1;
}
.btn-outline-royalblue:hover {
color: #fff;
background-color: #4169E1;
border-color: #4169E1;
}
.btn-check:focus + .btn-outline-royalblue, .btn-outline-royalblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.5);
box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.5);
}
.btn-check:checked + .btn-outline-royalblue,
.btn-check:active + .btn-outline-royalblue, .btn-outline-royalblue:active, .btn-outline-royalblue.active, .btn-outline-royalblue.dropdown-toggle.show {
color: #fff;
background-color: #4169E1;
border-color: #4169E1;
}
.btn-check:checked + .btn-outline-royalblue:focus,
.btn-check:active + .btn-outline-royalblue:focus, .btn-outline-royalblue:active:focus, .btn-outline-royalblue.active:focus, .btn-outline-royalblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.5);
box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.5);
}
.btn-outline-royalblue:disabled, .btn-outline-royalblue.disabled {
color: #4169E1;
background-color: transparent;
}
.btn-outline-saddlebrown {
color: #8B4513;
border-color: #8B4513;
}
.btn-outline-saddlebrown:hover {
color: #fff;
background-color: #8B4513;
border-color: #8B4513;
}
.btn-check:focus + .btn-outline-saddlebrown, .btn-outline-saddlebrown:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5);
}
.btn-check:checked + .btn-outline-saddlebrown,
.btn-check:active + .btn-outline-saddlebrown, .btn-outline-saddlebrown:active, .btn-outline-saddlebrown.active, .btn-outline-saddlebrown.dropdown-toggle.show {
color: #fff;
background-color: #8B4513;
border-color: #8B4513;
}
.btn-check:checked + .btn-outline-saddlebrown:focus,
.btn-check:active + .btn-outline-saddlebrown:focus, .btn-outline-saddlebrown:active:focus, .btn-outline-saddlebrown.active:focus, .btn-outline-saddlebrown.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5);
box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5);
}
.btn-outline-saddlebrown:disabled, .btn-outline-saddlebrown.disabled {
color: #8B4513;
background-color: transparent;
}
.btn-outline-salmon {
color: #FA8072;
border-color: #FA8072;
}
.btn-outline-salmon:hover {
color: #000;
background-color: #FA8072;
border-color: #FA8072;
}
.btn-check:focus + .btn-outline-salmon, .btn-outline-salmon:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 128, 114, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 128, 114, 0.5);
}
.btn-check:checked + .btn-outline-salmon,
.btn-check:active + .btn-outline-salmon, .btn-outline-salmon:active, .btn-outline-salmon.active, .btn-outline-salmon.dropdown-toggle.show {
color: #000;
background-color: #FA8072;
border-color: #FA8072;
}
.btn-check:checked + .btn-outline-salmon:focus,
.btn-check:active + .btn-outline-salmon:focus, .btn-outline-salmon:active:focus, .btn-outline-salmon.active:focus, .btn-outline-salmon.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(250, 128, 114, 0.5);
box-shadow: 0 0 0 0.25rem rgba(250, 128, 114, 0.5);
}
.btn-outline-salmon:disabled, .btn-outline-salmon.disabled {
color: #FA8072;
background-color: transparent;
}
.btn-outline-sandybrown {
color: #F4A460;
border-color: #F4A460;
}
.btn-outline-sandybrown:hover {
color: #000;
background-color: #F4A460;
border-color: #F4A460;
}
.btn-check:focus + .btn-outline-sandybrown, .btn-outline-sandybrown:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.5);
box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.5);
}
.btn-check:checked + .btn-outline-sandybrown,
.btn-check:active + .btn-outline-sandybrown, .btn-outline-sandybrown:active, .btn-outline-sandybrown.active, .btn-outline-sandybrown.dropdown-toggle.show {
color: #000;
background-color: #F4A460;
border-color: #F4A460;
}
.btn-check:checked + .btn-outline-sandybrown:focus,
.btn-check:active + .btn-outline-sandybrown:focus, .btn-outline-sandybrown:active:focus, .btn-outline-sandybrown.active:focus, .btn-outline-sandybrown.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.5);
box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.5);
}
.btn-outline-sandybrown:disabled, .btn-outline-sandybrown.disabled {
color: #F4A460;
background-color: transparent;
}
.btn-outline-seagreen {
color: #2E8B57;
border-color: #2E8B57;
}
.btn-outline-seagreen:hover {
color: #000;
background-color: #2E8B57;
border-color: #2E8B57;
}
.btn-check:focus + .btn-outline-seagreen, .btn-outline-seagreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.5);
box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.5);
}
.btn-check:checked + .btn-outline-seagreen,
.btn-check:active + .btn-outline-seagreen, .btn-outline-seagreen:active, .btn-outline-seagreen.active, .btn-outline-seagreen.dropdown-toggle.show {
color: #000;
background-color: #2E8B57;
border-color: #2E8B57;
}
.btn-check:checked + .btn-outline-seagreen:focus,
.btn-check:active + .btn-outline-seagreen:focus, .btn-outline-seagreen:active:focus, .btn-outline-seagreen.active:focus, .btn-outline-seagreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.5);
box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.5);
}
.btn-outline-seagreen:disabled, .btn-outline-seagreen.disabled {
color: #2E8B57;
background-color: transparent;
}
.btn-outline-seashell {
color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-outline-seashell:hover {
color: #000;
background-color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-check:focus + .btn-outline-seashell, .btn-outline-seashell:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 245, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 245, 238, 0.5);
}
.btn-check:checked + .btn-outline-seashell,
.btn-check:active + .btn-outline-seashell, .btn-outline-seashell:active, .btn-outline-seashell.active, .btn-outline-seashell.dropdown-toggle.show {
color: #000;
background-color: #FFF5EE;
border-color: #FFF5EE;
}
.btn-check:checked + .btn-outline-seashell:focus,
.btn-check:active + .btn-outline-seashell:focus, .btn-outline-seashell:active:focus, .btn-outline-seashell.active:focus, .btn-outline-seashell.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 245, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 245, 238, 0.5);
}
.btn-outline-seashell:disabled, .btn-outline-seashell.disabled {
color: #FFF5EE;
background-color: transparent;
}
.btn-outline-sienna {
color: #A0522D;
border-color: #A0522D;
}
.btn-outline-sienna:hover {
color: #fff;
background-color: #A0522D;
border-color: #A0522D;
}
.btn-check:focus + .btn-outline-sienna, .btn-outline-sienna:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(160, 82, 45, 0.5);
box-shadow: 0 0 0 0.25rem rgba(160, 82, 45, 0.5);
}
.btn-check:checked + .btn-outline-sienna,
.btn-check:active + .btn-outline-sienna, .btn-outline-sienna:active, .btn-outline-sienna.active, .btn-outline-sienna.dropdown-toggle.show {
color: #fff;
background-color: #A0522D;
border-color: #A0522D;
}
.btn-check:checked + .btn-outline-sienna:focus,
.btn-check:active + .btn-outline-sienna:focus, .btn-outline-sienna:active:focus, .btn-outline-sienna.active:focus, .btn-outline-sienna.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(160, 82, 45, 0.5);
box-shadow: 0 0 0 0.25rem rgba(160, 82, 45, 0.5);
}
.btn-outline-sienna:disabled, .btn-outline-sienna.disabled {
color: #A0522D;
background-color: transparent;
}
.btn-outline-silver {
color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-outline-silver:hover {
color: #000;
background-color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-check:focus + .btn-outline-silver, .btn-outline-silver:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(192, 192, 192, 0.5);
box-shadow: 0 0 0 0.25rem rgba(192, 192, 192, 0.5);
}
.btn-check:checked + .btn-outline-silver,
.btn-check:active + .btn-outline-silver, .btn-outline-silver:active, .btn-outline-silver.active, .btn-outline-silver.dropdown-toggle.show {
color: #000;
background-color: #C0C0C0;
border-color: #C0C0C0;
}
.btn-check:checked + .btn-outline-silver:focus,
.btn-check:active + .btn-outline-silver:focus, .btn-outline-silver:active:focus, .btn-outline-silver.active:focus, .btn-outline-silver.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(192, 192, 192, 0.5);
box-shadow: 0 0 0 0.25rem rgba(192, 192, 192, 0.5);
}
.btn-outline-silver:disabled, .btn-outline-silver.disabled {
color: #C0C0C0;
background-color: transparent;
}
.btn-outline-skyblue {
color: #87CEEB;
border-color: #87CEEB;
}
.btn-outline-skyblue:hover {
color: #000;
background-color: #87CEEB;
border-color: #87CEEB;
}
.btn-check:focus + .btn-outline-skyblue, .btn-outline-skyblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.5);
box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.5);
}
.btn-check:checked + .btn-outline-skyblue,
.btn-check:active + .btn-outline-skyblue, .btn-outline-skyblue:active, .btn-outline-skyblue.active, .btn-outline-skyblue.dropdown-toggle.show {
color: #000;
background-color: #87CEEB;
border-color: #87CEEB;
}
.btn-check:checked + .btn-outline-skyblue:focus,
.btn-check:active + .btn-outline-skyblue:focus, .btn-outline-skyblue:active:focus, .btn-outline-skyblue.active:focus, .btn-outline-skyblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.5);
box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.5);
}
.btn-outline-skyblue:disabled, .btn-outline-skyblue.disabled {
color: #87CEEB;
background-color: transparent;
}
.btn-outline-slateblue {
color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-outline-slateblue:hover {
color: #fff;
background-color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-check:focus + .btn-outline-slateblue, .btn-outline-slateblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.5);
}
.btn-check:checked + .btn-outline-slateblue,
.btn-check:active + .btn-outline-slateblue, .btn-outline-slateblue:active, .btn-outline-slateblue.active, .btn-outline-slateblue.dropdown-toggle.show {
color: #fff;
background-color: #6A5ACD;
border-color: #6A5ACD;
}
.btn-check:checked + .btn-outline-slateblue:focus,
.btn-check:active + .btn-outline-slateblue:focus, .btn-outline-slateblue:active:focus, .btn-outline-slateblue.active:focus, .btn-outline-slateblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.5);
box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.5);
}
.btn-outline-slateblue:disabled, .btn-outline-slateblue.disabled {
color: #6A5ACD;
background-color: transparent;
}
.btn-outline-slategray {
color: #708090;
border-color: #708090;
}
.btn-outline-slategray:hover {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-check:focus + .btn-outline-slategray, .btn-outline-slategray:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
}
.btn-check:checked + .btn-outline-slategray,
.btn-check:active + .btn-outline-slategray, .btn-outline-slategray:active, .btn-outline-slategray.active, .btn-outline-slategray.dropdown-toggle.show {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-check:checked + .btn-outline-slategray:focus,
.btn-check:active + .btn-outline-slategray:focus, .btn-outline-slategray:active:focus, .btn-outline-slategray.active:focus, .btn-outline-slategray.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
}
.btn-outline-slategray:disabled, .btn-outline-slategray.disabled {
color: #708090;
background-color: transparent;
}
.btn-outline-slategrey {
color: #708090;
border-color: #708090;
}
.btn-outline-slategrey:hover {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-check:focus + .btn-outline-slategrey, .btn-outline-slategrey:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
}
.btn-check:checked + .btn-outline-slategrey,
.btn-check:active + .btn-outline-slategrey, .btn-outline-slategrey:active, .btn-outline-slategrey.active, .btn-outline-slategrey.dropdown-toggle.show {
color: #000;
background-color: #708090;
border-color: #708090;
}
.btn-check:checked + .btn-outline-slategrey:focus,
.btn-check:active + .btn-outline-slategrey:focus, .btn-outline-slategrey:active:focus, .btn-outline-slategrey.active:focus, .btn-outline-slategrey.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
box-shadow: 0 0 0 0.25rem rgba(112, 128, 144, 0.5);
}
.btn-outline-slategrey:disabled, .btn-outline-slategrey.disabled {
color: #708090;
background-color: transparent;
}
.btn-outline-snow {
color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-outline-snow:hover {
color: #000;
background-color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-check:focus + .btn-outline-snow, .btn-outline-snow:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 250, 0.5);
}
.btn-check:checked + .btn-outline-snow,
.btn-check:active + .btn-outline-snow, .btn-outline-snow:active, .btn-outline-snow.active, .btn-outline-snow.dropdown-toggle.show {
color: #000;
background-color: #FFFAFA;
border-color: #FFFAFA;
}
.btn-check:checked + .btn-outline-snow:focus,
.btn-check:active + .btn-outline-snow:focus, .btn-outline-snow:active:focus, .btn-outline-snow.active:focus, .btn-outline-snow.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 250, 250, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 250, 250, 0.5);
}
.btn-outline-snow:disabled, .btn-outline-snow.disabled {
color: #FFFAFA;
background-color: transparent;
}
.btn-outline-springgreen {
color: #00FF7F;
border-color: #00FF7F;
}
.btn-outline-springgreen:hover {
color: #000;
background-color: #00FF7F;
border-color: #00FF7F;
}
.btn-check:focus + .btn-outline-springgreen, .btn-outline-springgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.5);
}
.btn-check:checked + .btn-outline-springgreen,
.btn-check:active + .btn-outline-springgreen, .btn-outline-springgreen:active, .btn-outline-springgreen.active, .btn-outline-springgreen.dropdown-toggle.show {
color: #000;
background-color: #00FF7F;
border-color: #00FF7F;
}
.btn-check:checked + .btn-outline-springgreen:focus,
.btn-check:active + .btn-outline-springgreen:focus, .btn-outline-springgreen:active:focus, .btn-outline-springgreen.active:focus, .btn-outline-springgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.5);
box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.5);
}
.btn-outline-springgreen:disabled, .btn-outline-springgreen.disabled {
color: #00FF7F;
background-color: transparent;
}
.btn-outline-steelblue {
color: #4682B4;
border-color: #4682B4;
}
.btn-outline-steelblue:hover {
color: #000;
background-color: #4682B4;
border-color: #4682B4;
}
.btn-check:focus + .btn-outline-steelblue, .btn-outline-steelblue:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(70, 130, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(70, 130, 180, 0.5);
}
.btn-check:checked + .btn-outline-steelblue,
.btn-check:active + .btn-outline-steelblue, .btn-outline-steelblue:active, .btn-outline-steelblue.active, .btn-outline-steelblue.dropdown-toggle.show {
color: #000;
background-color: #4682B4;
border-color: #4682B4;
}
.btn-check:checked + .btn-outline-steelblue:focus,
.btn-check:active + .btn-outline-steelblue:focus, .btn-outline-steelblue:active:focus, .btn-outline-steelblue.active:focus, .btn-outline-steelblue.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(70, 130, 180, 0.5);
box-shadow: 0 0 0 0.25rem rgba(70, 130, 180, 0.5);
}
.btn-outline-steelblue:disabled, .btn-outline-steelblue.disabled {
color: #4682B4;
background-color: transparent;
}
.btn-outline-tan {
color: #D2B48C;
border-color: #D2B48C;
}
.btn-outline-tan:hover {
color: #000;
background-color: #D2B48C;
border-color: #D2B48C;
}
.btn-check:focus + .btn-outline-tan, .btn-outline-tan:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.5);
box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.5);
}
.btn-check:checked + .btn-outline-tan,
.btn-check:active + .btn-outline-tan, .btn-outline-tan:active, .btn-outline-tan.active, .btn-outline-tan.dropdown-toggle.show {
color: #000;
background-color: #D2B48C;
border-color: #D2B48C;
}
.btn-check:checked + .btn-outline-tan:focus,
.btn-check:active + .btn-outline-tan:focus, .btn-outline-tan:active:focus, .btn-outline-tan.active:focus, .btn-outline-tan.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.5);
box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.5);
}
.btn-outline-tan:disabled, .btn-outline-tan.disabled {
color: #D2B48C;
background-color: transparent;
}
.btn-outline-thistle {
color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-outline-thistle:hover {
color: #000;
background-color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-check:focus + .btn-outline-thistle, .btn-outline-thistle:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(216, 191, 216, 0.5);
box-shadow: 0 0 0 0.25rem rgba(216, 191, 216, 0.5);
}
.btn-check:checked + .btn-outline-thistle,
.btn-check:active + .btn-outline-thistle, .btn-outline-thistle:active, .btn-outline-thistle.active, .btn-outline-thistle.dropdown-toggle.show {
color: #000;
background-color: #D8BFD8;
border-color: #D8BFD8;
}
.btn-check:checked + .btn-outline-thistle:focus,
.btn-check:active + .btn-outline-thistle:focus, .btn-outline-thistle:active:focus, .btn-outline-thistle.active:focus, .btn-outline-thistle.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(216, 191, 216, 0.5);
box-shadow: 0 0 0 0.25rem rgba(216, 191, 216, 0.5);
}
.btn-outline-thistle:disabled, .btn-outline-thistle.disabled {
color: #D8BFD8;
background-color: transparent;
}
.btn-outline-tomato {
color: #FF6347;
border-color: #FF6347;
}
.btn-outline-tomato:hover {
color: #000;
background-color: #FF6347;
border-color: #FF6347;
}
.btn-check:focus + .btn-outline-tomato, .btn-outline-tomato:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.5);
}
.btn-check:checked + .btn-outline-tomato,
.btn-check:active + .btn-outline-tomato, .btn-outline-tomato:active, .btn-outline-tomato.active, .btn-outline-tomato.dropdown-toggle.show {
color: #000;
background-color: #FF6347;
border-color: #FF6347;
}
.btn-check:checked + .btn-outline-tomato:focus,
.btn-check:active + .btn-outline-tomato:focus, .btn-outline-tomato:active:focus, .btn-outline-tomato.active:focus, .btn-outline-tomato.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.5);
box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.5);
}
.btn-outline-tomato:disabled, .btn-outline-tomato.disabled {
color: #FF6347;
background-color: transparent;
}
.btn-outline-turquoise {
color: #40E0D0;
border-color: #40E0D0;
}
.btn-outline-turquoise:hover {
color: #000;
background-color: #40E0D0;
border-color: #40E0D0;
}
.btn-check:focus + .btn-outline-turquoise, .btn-outline-turquoise:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.5);
}
.btn-check:checked + .btn-outline-turquoise,
.btn-check:active + .btn-outline-turquoise, .btn-outline-turquoise:active, .btn-outline-turquoise.active, .btn-outline-turquoise.dropdown-toggle.show {
color: #000;
background-color: #40E0D0;
border-color: #40E0D0;
}
.btn-check:checked + .btn-outline-turquoise:focus,
.btn-check:active + .btn-outline-turquoise:focus, .btn-outline-turquoise:active:focus, .btn-outline-turquoise.active:focus, .btn-outline-turquoise.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.5);
box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.5);
}
.btn-outline-turquoise:disabled, .btn-outline-turquoise.disabled {
color: #40E0D0;
background-color: transparent;
}
.btn-outline-violet {
color: #EE82EE;
border-color: #EE82EE;
}
.btn-outline-violet:hover {
color: #000;
background-color: #EE82EE;
border-color: #EE82EE;
}
.btn-check:focus + .btn-outline-violet, .btn-outline-violet:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(238, 130, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(238, 130, 238, 0.5);
}
.btn-check:checked + .btn-outline-violet,
.btn-check:active + .btn-outline-violet, .btn-outline-violet:active, .btn-outline-violet.active, .btn-outline-violet.dropdown-toggle.show {
color: #000;
background-color: #EE82EE;
border-color: #EE82EE;
}
.btn-check:checked + .btn-outline-violet:focus,
.btn-check:active + .btn-outline-violet:focus, .btn-outline-violet:active:focus, .btn-outline-violet.active:focus, .btn-outline-violet.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(238, 130, 238, 0.5);
box-shadow: 0 0 0 0.25rem rgba(238, 130, 238, 0.5);
}
.btn-outline-violet:disabled, .btn-outline-violet.disabled {
color: #EE82EE;
background-color: transparent;
}
.btn-outline-wheat {
color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-outline-wheat:hover {
color: #000;
background-color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-check:focus + .btn-outline-wheat, .btn-outline-wheat:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 222, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 222, 179, 0.5);
}
.btn-check:checked + .btn-outline-wheat,
.btn-check:active + .btn-outline-wheat, .btn-outline-wheat:active, .btn-outline-wheat.active, .btn-outline-wheat.dropdown-toggle.show {
color: #000;
background-color: #F5DEB3;
border-color: #F5DEB3;
}
.btn-check:checked + .btn-outline-wheat:focus,
.btn-check:active + .btn-outline-wheat:focus, .btn-outline-wheat:active:focus, .btn-outline-wheat.active:focus, .btn-outline-wheat.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 222, 179, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 222, 179, 0.5);
}
.btn-outline-wheat:disabled, .btn-outline-wheat.disabled {
color: #F5DEB3;
background-color: transparent;
}
.btn-outline-whitesmoke {
color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-outline-whitesmoke:hover {
color: #000;
background-color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-check:focus + .btn-outline-whitesmoke, .btn-outline-whitesmoke:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
}
.btn-check:checked + .btn-outline-whitesmoke,
.btn-check:active + .btn-outline-whitesmoke, .btn-outline-whitesmoke:active, .btn-outline-whitesmoke.active, .btn-outline-whitesmoke.dropdown-toggle.show {
color: #000;
background-color: #F5F5F5;
border-color: #F5F5F5;
}
.btn-check:checked + .btn-outline-whitesmoke:focus,
.btn-check:active + .btn-outline-whitesmoke:focus, .btn-outline-whitesmoke:active:focus, .btn-outline-whitesmoke.active:focus, .btn-outline-whitesmoke.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
}
.btn-outline-whitesmoke:disabled, .btn-outline-whitesmoke.disabled {
color: #F5F5F5;
background-color: transparent;
}
.btn-outline-yellowgreen {
color: #9ACD32;
border-color: #9ACD32;
}
.btn-outline-yellowgreen:hover {
color: #000;
background-color: #9ACD32;
border-color: #9ACD32;
}
.btn-check:focus + .btn-outline-yellowgreen, .btn-outline-yellowgreen:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(154, 205, 50, 0.5);
box-shadow: 0 0 0 0.25rem rgba(154, 205, 50, 0.5);
}
.btn-check:checked + .btn-outline-yellowgreen,
.btn-check:active + .btn-outline-yellowgreen, .btn-outline-yellowgreen:active, .btn-outline-yellowgreen.active, .btn-outline-yellowgreen.dropdown-toggle.show {
color: #000;
background-color: #9ACD32;
border-color: #9ACD32;
}
.btn-check:checked + .btn-outline-yellowgreen:focus,
.btn-check:active + .btn-outline-yellowgreen:focus, .btn-outline-yellowgreen:active:focus, .btn-outline-yellowgreen.active:focus, .btn-outline-yellowgreen.dropdown-toggle.show:focus {
-webkit-box-shadow: 0 0 0 0.25rem rgba(154, 205, 50, 0.5);
box-shadow: 0 0 0 0.25rem rgba(154, 205, 50, 0.5);
}
.btn-outline-yellowgreen:disabled, .btn-outline-yellowgreen.disabled {
color: #9ACD32;
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 {
-webkit-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
.fade {
-webkit-transition: none;
transition: none;
}
}
.fade:not(.show) {
opacity: 0;
}
.collapse:not(.show) {
display: none;
}
.collapsing {
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing {
-webkit-transition: none;
transition: none;
}
}
.collapsing.collapse-horizontal {
width: 0;
height: auto;
-webkit-transition: width 0.35s ease;
transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing.collapse-horizontal {
-webkit-transition: none;
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;
z-index: 1000;
display: none;
min-width: 10rem;
padding: 0.5rem 0;
margin: 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[data-bs-popper] {
top: 100%;
left: 0;
margin-top: 0.125rem;
}
.dropdown-menu-start {
--bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-end {
--bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
right: 0;
left: auto;
}
@media (min-width: 576px) {
.dropdown-menu-sm-start {
--bs-position: start;
}
.dropdown-menu-sm-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-sm-end {
--bs-position: end;
}
.dropdown-menu-sm-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 768px) {
.dropdown-menu-md-start {
--bs-position: start;
}
.dropdown-menu-md-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-md-end {
--bs-position: end;
}
.dropdown-menu-md-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 992px) {
.dropdown-menu-lg-start {
--bs-position: start;
}
.dropdown-menu-lg-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-lg-end {
--bs-position: end;
}
.dropdown-menu-lg-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 1200px) {
.dropdown-menu-xl-start {
--bs-position: start;
}
.dropdown-menu-xl-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-xl-end {
--bs-position: end;
}
.dropdown-menu-xl-end[data-bs-popper] {
right: 0;
left: auto;
}
}
@media (min-width: 1400px) {
.dropdown-menu-xxl-start {
--bs-position: start;
}
.dropdown-menu-xxl-start[data-bs-popper] {
right: auto;
left: 0;
}
.dropdown-menu-xxl-end {
--bs-position: end;
}
.dropdown-menu-xxl-end[data-bs-popper] {
right: 0;
left: auto;
}
}
.dropup .dropdown-menu[data-bs-popper] {
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[data-bs-popper] {
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[data-bs-popper] {
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: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
color: #adb5bd;
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: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
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 {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
color: #0d6efd;
text-decoration: none;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 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;
}
@media (prefers-reduced-motion: reduce) {
.nav-link {
-webkit-transition: none;
transition: none;
}
}
.nav-link:hover, .nav-link:focus {
color: #0a58ca;
}
.nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}
.nav-tabs {
border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
margin-bottom: -1px;
background: none;
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;
isolation: isolate;
}
.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 {
background: none;
border: 0;
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 {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
width: 100%;
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.navbar {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: inherit;
flex-wrap: inherit;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.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;
-webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
transition: -webkit-box-shadow 0.15s ease-in-out;
transition: box-shadow 0.15s ease-in-out;
transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.navbar-toggler {
-webkit-transition: none;
transition: none;
}
}
.navbar-toggler:hover {
text-decoration: none;
}
.navbar-toggler:focus {
text-decoration: none;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem;
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%;
}
.navbar-nav-scroll {
max-height: var(--bs-scroll-height, 75vh);
overflow-y: auto;
}
@media (min-width: 576px) {
.navbar-expand-sm {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-sm .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-sm .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-sm .navbar-toggler {
display: none;
}
.navbar-expand-sm .offcanvas-header {
display: none;
}
.navbar-expand-sm .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-sm .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 768px) {
.navbar-expand-md {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-md .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-md .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-md .navbar-toggler {
display: none;
}
.navbar-expand-md .offcanvas-header {
display: none;
}
.navbar-expand-md .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-md .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 992px) {
.navbar-expand-lg {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-lg .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-lg .navbar-toggler {
display: none;
}
.navbar-expand-lg .offcanvas-header {
display: none;
}
.navbar-expand-lg .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-lg .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 1200px) {
.navbar-expand-xl {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xl .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-xl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xl .navbar-toggler {
display: none;
}
.navbar-expand-xl .offcanvas-header {
display: none;
}
.navbar-expand-xl .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-xl .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
@media (min-width: 1400px) {
.navbar-expand-xxl {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xxl .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand-xxl .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xxl .navbar-toggler {
display: none;
}
.navbar-expand-xxl .offcanvas-header {
display: none;
}
.navbar-expand-xxl .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand-xxl .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
}
.navbar-expand {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-nav-scroll {
overflow: visible;
}
.navbar-expand .navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand .navbar-toggler {
display: none;
}
.navbar-expand .offcanvas-header {
display: none;
}
.navbar-expand .offcanvas {
position: inherit;
bottom: 0;
z-index: 1000;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
visibility: visible !important;
background-color: transparent;
border-right: 0;
border-left: 0;
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
height: auto;
border-top: 0;
border-bottom: 0;
}
.navbar-expand .offcanvas-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
padding: 0;
overflow-y: visible;
}
.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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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 {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
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 + .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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
}
.card-group > .card {
-webkit-box-flex: 1;
-ms-flex: 1 0 0%;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
padding: 1rem 1.25rem;
font-size: 1rem;
color: #212529;
text-align: left;
background-color: #fff;
border: 0;
border-radius: 0;
overflow-anchor: none;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-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, border-radius 0.15s ease, -webkit-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, border-radius 0.15s ease;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button {
-webkit-transition: none;
transition: none;
}
}
.accordion-button:not(.collapsed) {
color: #0c63e4;
background-color: #e7f1ff;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.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");
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
.accordion-button::after {
-ms-flex-negative: 0;
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;
-webkit-transition: -webkit-transform 0.2s ease-in-out;
transition: -webkit-transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.accordion-button::after {
-webkit-transition: none;
transition: none;
}
}
.accordion-button:hover {
z-index: 2;
}
.accordion-button:focus {
z-index: 3;
border-color: #86b7fe;
outline: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
margin-bottom: 0;
}
.accordion-item {
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
border-top: 0;
}
.accordion-item:last-of-type {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.accordion-body {
padding: 1rem 1.25rem;
}
.accordion-flush .accordion-collapse {
border-width: 0;
}
.accordion-flush .accordion-item {
border-right: 0;
border-left: 0;
border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
border-top: 0;
}
.accordion-flush .accordion-item:last-child {
border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
border-radius: 0;
}
.breadcrumb {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
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, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
color: #6c757d;
}
.pagination {
display: -webkit-box;
display: -ms-flexbox;
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;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.page-link {
-webkit-transition: none;
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;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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-rc-red {
color: #831911;
background-color: #f8d4d2;
border-color: #f4bfbb;
}
.alert-rc-red .alert-link {
color: #69140e;
}
.alert-rc-wine {
color: #63001f;
background-color: #edccd6;
border-color: #e4b3c2;
}
.alert-rc-wine .alert-link {
color: #4f0019;
}
.alert-rc-blue {
color: #001632;
background-color: #ccd3dd;
border-color: #b3becc;
}
.alert-rc-blue .alert-link {
color: #001228;
}
.alert-rc-gold {
color: #664700;
background-color: #fff0cc;
border-color: #ffe8b3;
}
.alert-rc-gold .alert-link {
color: #523900;
}
.alert-rc-silver {
color: #4d4d4d;
background-color: #e6e6e6;
border-color: #d9d9d9;
}
.alert-rc-silver .alert-link {
color: #3e3e3e;
}
.alert-rc-skyblue {
color: #006a90;
background-color: #cceffc;
border-color: #b3e7fb;
}
.alert-rc-skyblue .alert-link {
color: #005573;
}
.alert-aliceblue {
color: #606366;
background-color: #fcfeff;
border-color: #fbfdff;
}
.alert-aliceblue .alert-link {
color: #4d4f52;
}
.alert-antiquewhite {
color: #645e56;
background-color: #fefbf7;
border-color: #fef9f3;
}
.alert-antiquewhite .alert-link {
color: #504b45;
}
.alert-aqua {
color: #006666;
background-color: #ccffff;
border-color: #b3ffff;
}
.alert-aqua .alert-link {
color: #005252;
}
.alert-aquamarine {
color: #336655;
background-color: #e5fff6;
border-color: #d9fff2;
}
.alert-aquamarine .alert-link {
color: #295244;
}
.alert-azure {
color: #606666;
background-color: #fcffff;
border-color: #fbffff;
}
.alert-azure .alert-link {
color: #4d5252;
}
.alert-beige {
color: #626258;
background-color: #fdfdf8;
border-color: #fcfcf5;
}
.alert-beige .alert-link {
color: #4e4e46;
}
.alert-bisque {
color: #665b4e;
background-color: #fffaf3;
border-color: #fff7ed;
}
.alert-bisque .alert-link {
color: #52493e;
}
.alert-blanchedalmond {
color: #665e52;
background-color: #fffbf5;
border-color: #fff9f0;
}
.alert-blanchedalmond .alert-link {
color: #524b42;
}
.alert-blueviolet {
color: #531a88;
background-color: #e8d5f9;
border-color: #dcbff6;
}
.alert-blueviolet .alert-link {
color: #42156d;
}
.alert-brown {
color: #631919;
background-color: #edd4d4;
border-color: #e4bfbf;
}
.alert-brown .alert-link {
color: #4f1414;
}
.alert-burlywood {
color: #594a36;
background-color: #f8f1e7;
border-color: #f5eadb;
}
.alert-burlywood .alert-link {
color: #473b2b;
}
.alert-cadetblue {
color: #395f60;
background-color: #dfecec;
border-color: #cfe2e3;
}
.alert-cadetblue .alert-link {
color: #2e4c4d;
}
.alert-chartreuse {
color: #336600;
background-color: #e5ffcc;
border-color: #d9ffb3;
}
.alert-chartreuse .alert-link {
color: #295200;
}
.alert-chocolate {
color: #7e3f12;
background-color: #f6e1d2;
border-color: #f2d2bc;
}
.alert-chocolate .alert-link {
color: #65320e;
}
.alert-coral {
color: #994c30;
background-color: #ffe5dc;
border-color: #ffd9cb;
}
.alert-coral .alert-link {
color: #7a3d26;
}
.alert-cornflowerblue {
color: #3c598e;
background-color: #e0eafb;
border-color: #d1dffa;
}
.alert-cornflowerblue .alert-link {
color: #304772;
}
.alert-cornsilk {
color: #666358;
background-color: #fffef8;
border-color: #fffdf5;
}
.alert-cornsilk .alert-link {
color: #524f46;
}
.alert-crimson {
color: #840c24;
background-color: #f8d0d8;
border-color: #f5b9c5;
}
.alert-crimson .alert-link {
color: #6a0a1d;
}
.alert-darkblue {
color: #000053;
background-color: #cccce8;
border-color: #b3b3dc;
}
.alert-darkblue .alert-link {
color: #000042;
}
.alert-darkcyan {
color: #005353;
background-color: #cce8e8;
border-color: #b3dcdc;
}
.alert-darkcyan .alert-link {
color: #004242;
}
.alert-darkgoldenrod {
color: #6e5007;
background-color: #f1e7ce;
border-color: #eadbb6;
}
.alert-darkgoldenrod .alert-link {
color: #584006;
}
.alert-darkgray {
color: #656565;
background-color: #eeeeee;
border-color: #e5e5e5;
}
.alert-darkgray .alert-link {
color: #515151;
}
.alert-darkgreen {
color: #003c00;
background-color: #cce0cc;
border-color: #b3d1b3;
}
.alert-darkgreen .alert-link {
color: #003000;
}
.alert-darkgrey {
color: #656565;
background-color: #eeeeee;
border-color: #e5e5e5;
}
.alert-darkgrey .alert-link {
color: #515151;
}
.alert-darkkhaki {
color: #716e40;
background-color: #f2f1e1;
border-color: #ebe9d3;
}
.alert-darkkhaki .alert-link {
color: #5a5833;
}
.alert-darkmagenta {
color: #530053;
background-color: #e8cce8;
border-color: #dcb3dc;
}
.alert-darkmagenta .alert-link {
color: #420042;
}
.alert-darkolivegreen {
color: #33401c;
background-color: #dde1d5;
border-color: #ccd3c1;
}
.alert-darkolivegreen .alert-link {
color: #293316;
}
.alert-darkorange {
color: #995400;
background-color: #ffe8cc;
border-color: #ffddb3;
}
.alert-darkorange .alert-link {
color: #7a4300;
}
.alert-darkorchid {
color: #5c1e7a;
background-color: #ebd6f5;
border-color: #e0c2f0;
}
.alert-darkorchid .alert-link {
color: #4a1862;
}
.alert-darkred {
color: #530000;
background-color: #e8cccc;
border-color: #dcb3b3;
}
.alert-darkred .alert-link {
color: #420000;
}
.alert-darksalmon {
color: #8c5a49;
background-color: #fbeae4;
border-color: #f8e0d7;
}
.alert-darksalmon .alert-link {
color: #70483a;
}
.alert-darkseagreen {
color: #567156;
background-color: #e9f2e9;
border-color: #ddebdd;
}
.alert-darkseagreen .alert-link {
color: #455a45;
}
.alert-darkslateblue {
color: #2b2553;
background-color: #dad8e8;
border-color: #c8c5dc;
}
.alert-darkslateblue .alert-link {
color: #221e42;
}
.alert-darkslategray {
color: #1c2f2f;
background-color: #d5dcdc;
border-color: #c1caca;
}
.alert-darkslategray .alert-link {
color: #162626;
}
.alert-darkslategrey {
color: #1c2f2f;
background-color: #d5dcdc;
border-color: #c1caca;
}
.alert-darkslategrey .alert-link {
color: #162626;
}
.alert-darkturquoise {
color: #005254;
background-color: #ccf5f6;
border-color: #b3f0f1;
}
.alert-darkturquoise .alert-link {
color: #004243;
}
.alert-darkviolet {
color: #59007f;
background-color: #eaccf6;
border-color: #dfb3f2;
}
.alert-darkviolet .alert-link {
color: #470066;
}
.alert-deeppink {
color: #990c58;
background-color: #ffd0e9;
border-color: #ffb9df;
}
.alert-deeppink .alert-link {
color: #7a0a46;
}
.alert-deepskyblue {
color: #007399;
background-color: #ccf2ff;
border-color: #b3ecff;
}
.alert-deepskyblue .alert-link {
color: #005c7a;
}
.alert-dimgray {
color: #3f3f3f;
background-color: #e1e1e1;
border-color: #d2d2d2;
}
.alert-dimgray .alert-link {
color: #323232;
}
.alert-dimgrey {
color: #3f3f3f;
background-color: #e1e1e1;
border-color: #d2d2d2;
}
.alert-dimgrey .alert-link {
color: #323232;
}
.alert-dodgerblue {
color: #125699;
background-color: #d2e9ff;
border-color: #bcdeff;
}
.alert-dodgerblue .alert-link {
color: #0e457a;
}
.alert-firebrick {
color: #6b1414;
background-color: #f0d3d3;
border-color: #e8bdbd;
}
.alert-firebrick .alert-link {
color: #561010;
}
.alert-floralwhite {
color: #666460;
background-color: #fffefc;
border-color: #fffefb;
}
.alert-floralwhite .alert-link {
color: #52504d;
}
.alert-forestgreen {
color: #145314;
background-color: #d3e8d3;
border-color: #bddcbd;
}
.alert-forestgreen .alert-link {
color: #104210;
}
.alert-fuchsia {
color: #990099;
background-color: #ffccff;
border-color: #ffb3ff;
}
.alert-fuchsia .alert-link {
color: #7a007a;
}
.alert-gainsboro {
color: #585858;
background-color: #f8f8f8;
border-color: whitesmoke;
}
.alert-gainsboro .alert-link {
color: #464646;
}
.alert-ghostwhite {
color: #636366;
background-color: #fefeff;
border-color: #fdfdff;
}
.alert-ghostwhite .alert-link {
color: #4f4f52;
}
.alert-gold {
color: #665600;
background-color: #fff7cc;
border-color: #fff3b3;
}
.alert-gold .alert-link {
color: #524500;
}
.alert-goldenrod {
color: #836313;
background-color: #f8edd2;
border-color: #f4e4bc;
}
.alert-goldenrod .alert-link {
color: #694f0f;
}
.alert-greenyellow {
color: #456613;
background-color: #efffd5;
border-color: #e6ffc1;
}
.alert-greenyellow .alert-link {
color: #37520f;
}
.alert-grey {
color: #4d4d4d;
background-color: #e6e6e6;
border-color: #d9d9d9;
}
.alert-grey .alert-link {
color: #3e3e3e;
}
.alert-honeydew {
color: #606660;
background-color: #fcfffc;
border-color: #fbfffb;
}
.alert-honeydew .alert-link {
color: #4d524d;
}
.alert-hotpink {
color: #993f6c;
background-color: #ffe1f0;
border-color: #ffd2e9;
}
.alert-hotpink .alert-link {
color: #7a3256;
}
.alert-indianred {
color: #7b3737;
background-color: #f5dede;
border-color: #f0cece;
}
.alert-indianred .alert-link {
color: #622c2c;
}
.alert-ivory {
color: #666660;
background-color: #fffffc;
border-color: #fffffb;
}
.alert-ivory .alert-link {
color: #52524d;
}
.alert-khaki {
color: #605c38;
background-color: #fcfae8;
border-color: #fbf8dd;
}
.alert-khaki .alert-link {
color: #4d4a2d;
}
.alert-lavender {
color: #5c5c64;
background-color: #fafafe;
border-color: #f8f8fe;
}
.alert-lavender .alert-link {
color: #4a4a50;
}
.alert-lavenderblush {
color: #666062;
background-color: #fffcfd;
border-color: #fffbfc;
}
.alert-lavenderblush .alert-link {
color: #524d4e;
}
.alert-lawngreen {
color: #326500;
background-color: #e5fecc;
border-color: #d8feb3;
}
.alert-lawngreen .alert-link {
color: #285100;
}
.alert-lemonchiffon {
color: #666452;
background-color: #fffef5;
border-color: #fffef0;
}
.alert-lemonchiffon .alert-link {
color: #525042;
}
.alert-lightblue {
color: #45565c;
background-color: #eff7fa;
border-color: #e6f3f8;
}
.alert-lightblue .alert-link {
color: #37454a;
}
.alert-lightcoral {
color: #904d4d;
background-color: #fce6e6;
border-color: #fbd9d9;
}
.alert-lightcoral .alert-link {
color: #733e3e;
}
.alert-lightcyan {
color: #5a6666;
background-color: #f9ffff;
border-color: #f6ffff;
}
.alert-lightcyan .alert-link {
color: #485252;
}
.alert-lightgoldenrodyellow {
color: #646454;
background-color: #fefef6;
border-color: #fefef2;
}
.alert-lightgoldenrodyellow .alert-link {
color: #505043;
}
.alert-lightgray {
color: #545454;
background-color: #f6f6f6;
border-color: #f2f2f2;
}
.alert-lightgray .alert-link {
color: #434343;
}
.alert-lightgreen {
color: #3a5f3a;
background-color: #e9fce9;
border-color: #defade;
}
.alert-lightgreen .alert-link {
color: #2e4c2e;
}
.alert-lightgrey {
color: #545454;
background-color: #f6f6f6;
border-color: #f2f2f2;
}
.alert-lightgrey .alert-link {
color: #434343;
}
.alert-lightpink {
color: #66494d;
background-color: #fff0f3;
border-color: #ffe9ec;
}
.alert-lightpink .alert-link {
color: #523a3e;
}
.alert-lightsalmon {
color: #664031;
background-color: #ffece4;
border-color: #ffe3d7;
}
.alert-lightsalmon .alert-link {
color: #523327;
}
.alert-lightseagreen {
color: #136b66;
background-color: #d2f0ee;
border-color: #bce8e6;
}
.alert-lightseagreen .alert-link {
color: #0f5652;
}
.alert-lightskyblue {
color: #365264;
background-color: #e7f5fe;
border-color: #dbf0fe;
}
.alert-lightskyblue .alert-link {
color: #2b4250;
}
.alert-lightslategray {
color: #47525c;
background-color: #e4e7eb;
border-color: #d6dbe0;
}
.alert-lightslategray .alert-link {
color: #39424a;
}
.alert-lightslategrey {
color: #47525c;
background-color: #e4e7eb;
border-color: #d6dbe0;
}
.alert-lightslategrey .alert-link {
color: #39424a;
}
.alert-lightsteelblue {
color: #464e59;
background-color: #eff3f8;
border-color: #e7edf5;
}
.alert-lightsteelblue .alert-link {
color: #383e47;
}
.alert-lightyellow {
color: #66665a;
background-color: #fffff9;
border-color: #fffff6;
}
.alert-lightyellow .alert-link {
color: #525248;
}
.alert-lime {
color: #006600;
background-color: #ccffcc;
border-color: #b3ffb3;
}
.alert-lime .alert-link {
color: #005200;
}
.alert-limegreen {
color: #1e7b1e;
background-color: #d6f5d6;
border-color: #c2f0c2;
}
.alert-limegreen .alert-link {
color: #186218;
}
.alert-linen {
color: #64605c;
background-color: #fefcfa;
border-color: #fefbf8;
}
.alert-linen .alert-link {
color: #504d4a;
}
.alert-magenta {
color: #990099;
background-color: #ffccff;
border-color: #ffb3ff;
}
.alert-magenta .alert-link {
color: #7a007a;
}
.alert-maroon {
color: #4d0000;
background-color: #e6cccc;
border-color: #d9b3b3;
}
.alert-maroon .alert-link {
color: #3e0000;
}
.alert-mediumaquamarine {
color: #295244;
background-color: #e0f5ee;
border-color: #d1f0e6;
}
.alert-mediumaquamarine .alert-link {
color: #214236;
}
.alert-mediumblue {
color: #00007b;
background-color: #ccccf5;
border-color: #b3b3f0;
}
.alert-mediumblue .alert-link {
color: #000062;
}
.alert-mediumorchid {
color: #70337f;
background-color: #f1ddf6;
border-color: #eaccf2;
}
.alert-mediumorchid .alert-link {
color: #5a2966;
}
.alert-mediumpurple {
color: #584383;
background-color: #e9e2f8;
border-color: #dfd4f4;
}
.alert-mediumpurple .alert-link {
color: #463669;
}
.alert-mediumseagreen {
color: #246b44;
background-color: #d8f0e3;
border-color: #c5e8d4;
}
.alert-mediumseagreen .alert-link {
color: #1d5636;
}
.alert-mediumslateblue {
color: #4a3e8f;
background-color: #e5e1fc;
border-color: #d7d2fa;
}
.alert-mediumslateblue .alert-link {
color: #3b3272;
}
.alert-mediumspringgreen {
color: #00643e;
background-color: #ccfeeb;
border-color: #b3fee1;
}
.alert-mediumspringgreen .alert-link {
color: #005032;
}
.alert-mediumturquoise {
color: #1d5452;
background-color: #daf6f5;
border-color: #c8f1f0;
}
.alert-mediumturquoise .alert-link {
color: #174342;
}
.alert-mediumvioletred {
color: #770d50;
background-color: #f4d0e7;
border-color: #eeb9da;
}
.alert-mediumvioletred .alert-link {
color: #5f0a40;
}
.alert-midnightblue {
color: #0f0f43;
background-color: #d1d1e2;
border-color: #babad4;
}
.alert-midnightblue .alert-link {
color: #0c0c36;
}
.alert-mintcream {
color: #626664;
background-color: #fdfffe;
border-color: #fcfffe;
}
.alert-mintcream .alert-link {
color: #4e5250;
}
.alert-mistyrose {
color: #665b5a;
background-color: #fffaf9;
border-color: #fff7f6;
}
.alert-mistyrose .alert-link {
color: #524948;
}
.alert-moccasin {
color: #665b48;
background-color: floralwhite;
border-color: #fff7e9;
}
.alert-moccasin .alert-link {
color: #52493a;
}
.alert-navajowhite {
color: #665945;
background-color: #fff8ef;
border-color: #fff5e6;
}
.alert-navajowhite .alert-link {
color: #524737;
}
.alert-navy {
color: #00004d;
background-color: #cccce6;
border-color: #b3b3d9;
}
.alert-navy .alert-link {
color: #00003e;
}
.alert-oldlace {
color: #65625c;
background-color: #fffdfa;
border-color: #fefcf8;
}
.alert-oldlace .alert-link {
color: #514e4a;
}
.alert-olive {
color: #4d4d00;
background-color: #e6e6cc;
border-color: #d9d9b3;
}
.alert-olive .alert-link {
color: #3e3e00;
}
.alert-olivedrab {
color: #405515;
background-color: #e1e8d3;
border-color: #d3ddbd;
}
.alert-olivedrab .alert-link {
color: #334411;
}
.alert-orangered {
color: #992900;
background-color: #ffdacc;
border-color: #ffc7b3;
}
.alert-orangered .alert-link {
color: #7a2100;
}
.alert-orchid {
color: #834380;
background-color: #f8e2f7;
border-color: #f4d4f3;
}
.alert-orchid .alert-link {
color: #693666;
}
.alert-palegoldenrod {
color: #5f5d44;
background-color: #fcfaee;
border-color: #faf8e6;
}
.alert-palegoldenrod .alert-link {
color: #4c4a36;
}
.alert-palegreen {
color: #3d643d;
background-color: #eafeea;
border-color: #e0fee0;
}
.alert-palegreen .alert-link {
color: #315031;
}
.alert-paleturquoise {
color: #465f5f;
background-color: #effcfc;
border-color: #e7fafa;
}
.alert-paleturquoise .alert-link {
color: #384c4c;
}
.alert-palevioletred {
color: #834358;
background-color: #f8e2e9;
border-color: #f4d4df;
}
.alert-palevioletred .alert-link {
color: #693646;
}
.alert-papayawhip {
color: #666055;
background-color: #fffcf7;
border-color: #fffaf2;
}
.alert-papayawhip .alert-link {
color: #524d44;
}
.alert-peachpuff {
color: #66574a;
background-color: #fff8f1;
border-color: #fff4ea;
}
.alert-peachpuff .alert-link {
color: #52463b;
}
.alert-peru {
color: #7b5026;
background-color: #f5e7d9;
border-color: #f0dac5;
}
.alert-peru .alert-link {
color: #62401e;
}
.alert-plum {
color: #856085;
background-color: #f8ecf8;
border-color: #f5e3f5;
}
.alert-plum .alert-link {
color: #6a4d6a;
}
.alert-powderblue {
color: #465a5c;
background-color: #eff9fa;
border-color: #e7f6f8;
}
.alert-powderblue .alert-link {
color: #38484a;
}
.alert-rebeccapurple {
color: #3d1f5c;
background-color: #e0d6eb;
border-color: #d1c2e0;
}
.alert-rebeccapurple .alert-link {
color: #31194a;
}
.alert-rosybrown {
color: #715656;
background-color: #f2e9e9;
border-color: #ebdddd;
}
.alert-rosybrown .alert-link {
color: #5a4545;
}
.alert-royalblue {
color: #273f87;
background-color: #d9e1f9;
border-color: #c6d2f6;
}
.alert-royalblue .alert-link {
color: #1f326c;
}
.alert-saddlebrown {
color: #53290b;
background-color: #e8dad0;
border-color: #dcc7b8;
}
.alert-saddlebrown .alert-link {
color: #422109;
}
.alert-salmon {
color: #964d44;
background-color: #fee6e3;
border-color: #fed9d5;
}
.alert-salmon .alert-link {
color: #783e36;
}
.alert-sandybrown {
color: #92623a;
background-color: #fdeddf;
border-color: #fce4cf;
}
.alert-sandybrown .alert-link {
color: #754e2e;
}
.alert-seagreen {
color: #1c5334;
background-color: #d5e8dd;
border-color: #c0dccd;
}
.alert-seagreen .alert-link {
color: #16422a;
}
.alert-seashell {
color: #66625f;
background-color: #fffdfc;
border-color: #fffcfa;
}
.alert-seashell .alert-link {
color: #524e4c;
}
.alert-sienna {
color: #60311b;
background-color: #ecdcd5;
border-color: #e3cbc0;
}
.alert-sienna .alert-link {
color: #4d2716;
}
.alert-silver {
color: #4d4d4d;
background-color: #f2f2f2;
border-color: #ececec;
}
.alert-silver .alert-link {
color: #3e3e3e;
}
.alert-skyblue {
color: #36525e;
background-color: #e7f5fb;
border-color: #dbf0f9;
}
.alert-skyblue .alert-link {
color: #2b424b;
}
.alert-slateblue {
color: #40367b;
background-color: #e1def5;
border-color: #d2cef0;
}
.alert-slateblue .alert-link {
color: #332b62;
}
.alert-slategray {
color: #434d56;
background-color: #e2e6e9;
border-color: #d4d9de;
}
.alert-slategray .alert-link {
color: #363e45;
}
.alert-slategrey {
color: #434d56;
background-color: #e2e6e9;
border-color: #d4d9de;
}
.alert-slategrey .alert-link {
color: #363e45;
}
.alert-snow {
color: #666464;
background-color: #fffefe;
border-color: #fffefe;
}
.alert-snow .alert-link {
color: #525050;
}
.alert-springgreen {
color: #006633;
background-color: #ccffe5;
border-color: #b3ffd9;
}
.alert-springgreen .alert-link {
color: #005229;
}
.alert-steelblue {
color: #2a4e6c;
background-color: #dae6f0;
border-color: #c8dae9;
}
.alert-steelblue .alert-link {
color: #223e56;
}
.alert-tan {
color: #544838;
background-color: #f6f0e8;
border-color: #f2e9dd;
}
.alert-tan .alert-link {
color: #433a2d;
}
.alert-thistle {
color: #564c56;
background-color: #f7f2f7;
border-color: #f3ecf3;
}
.alert-thistle .alert-link {
color: #453d45;
}
.alert-tomato {
color: #993b2b;
background-color: #ffe0da;
border-color: #ffd0c8;
}
.alert-tomato .alert-link {
color: #7a2f22;
}
.alert-turquoise {
color: #1a5a53;
background-color: #d9f9f6;
border-color: #c6f6f1;
}
.alert-turquoise .alert-link {
color: #154842;
}
.alert-violet {
color: #8f4e8f;
background-color: #fce6fc;
border-color: #fadafa;
}
.alert-violet .alert-link {
color: #723e72;
}
.alert-wheat {
color: #625948;
background-color: #fdf8f0;
border-color: #fcf5e8;
}
.alert-wheat .alert-link {
color: #4e473a;
}
.alert-whitesmoke {
color: #626262;
background-color: #fdfdfd;
border-color: #fcfcfc;
}
.alert-whitesmoke .alert-link {
color: #4e4e4e;
}
.alert-yellowgreen {
color: #3e5214;
background-color: #ebf5d6;
border-color: #e1f0c2;
}
.alert-yellowgreen .alert-link {
color: #324210;
}
@keyframes progress-bar-stripes {
0% {
background-position-x: 1rem;
}
}
.progress {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #e9ecef;
border-radius: 0.25rem;
}
.progress-bar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
overflow: hidden;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #0d6efd;
-webkit-transition: width 0.6s ease;
transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar {
-webkit-transition: none;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
border-radius: 0.25rem;
}
.list-group-numbered {
list-style-type: none;
counter-reset: section;
}
.list-group-numbered > li::before {
content: counters(section, ".") ". ";
counter-increment: section;
}
.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;
color: #212529;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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 {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
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-rc-red {
color: #831911;
background-color: #f8d4d2;
}
.list-group-item-rc-red.list-group-item-action:hover, .list-group-item-rc-red.list-group-item-action:focus {
color: #831911;
background-color: #dfbfbd;
}
.list-group-item-rc-red.list-group-item-action.active {
color: #fff;
background-color: #831911;
border-color: #831911;
}
.list-group-item-rc-wine {
color: #63001f;
background-color: #edccd6;
}
.list-group-item-rc-wine.list-group-item-action:hover, .list-group-item-rc-wine.list-group-item-action:focus {
color: #63001f;
background-color: #d5b8c1;
}
.list-group-item-rc-wine.list-group-item-action.active {
color: #fff;
background-color: #63001f;
border-color: #63001f;
}
.list-group-item-rc-blue {
color: #001632;
background-color: #ccd3dd;
}
.list-group-item-rc-blue.list-group-item-action:hover, .list-group-item-rc-blue.list-group-item-action:focus {
color: #001632;
background-color: #b8bec7;
}
.list-group-item-rc-blue.list-group-item-action.active {
color: #fff;
background-color: #001632;
border-color: #001632;
}
.list-group-item-rc-gold {
color: #664700;
background-color: #fff0cc;
}
.list-group-item-rc-gold.list-group-item-action:hover, .list-group-item-rc-gold.list-group-item-action:focus {
color: #664700;
background-color: #e6d8b8;
}
.list-group-item-rc-gold.list-group-item-action.active {
color: #fff;
background-color: #664700;
border-color: #664700;
}
.list-group-item-rc-silver {
color: #4d4d4d;
background-color: #e6e6e6;
}
.list-group-item-rc-silver.list-group-item-action:hover, .list-group-item-rc-silver.list-group-item-action:focus {
color: #4d4d4d;
background-color: #cfcfcf;
}
.list-group-item-rc-silver.list-group-item-action.active {
color: #fff;
background-color: #4d4d4d;
border-color: #4d4d4d;
}
.list-group-item-rc-skyblue {
color: #006a90;
background-color: #cceffc;
}
.list-group-item-rc-skyblue.list-group-item-action:hover, .list-group-item-rc-skyblue.list-group-item-action:focus {
color: #006a90;
background-color: #b8d7e3;
}
.list-group-item-rc-skyblue.list-group-item-action.active {
color: #fff;
background-color: #006a90;
border-color: #006a90;
}
.list-group-item-aliceblue {
color: #606366;
background-color: #fcfeff;
}
.list-group-item-aliceblue.list-group-item-action:hover, .list-group-item-aliceblue.list-group-item-action:focus {
color: #606366;
background-color: #e3e5e6;
}
.list-group-item-aliceblue.list-group-item-action.active {
color: #fff;
background-color: #606366;
border-color: #606366;
}
.list-group-item-antiquewhite {
color: #645e56;
background-color: #fefbf7;
}
.list-group-item-antiquewhite.list-group-item-action:hover, .list-group-item-antiquewhite.list-group-item-action:focus {
color: #645e56;
background-color: #e5e2de;
}
.list-group-item-antiquewhite.list-group-item-action.active {
color: #fff;
background-color: #645e56;
border-color: #645e56;
}
.list-group-item-aqua {
color: #006666;
background-color: #ccffff;
}
.list-group-item-aqua.list-group-item-action:hover, .list-group-item-aqua.list-group-item-action:focus {
color: #006666;
background-color: #b8e6e6;
}
.list-group-item-aqua.list-group-item-action.active {
color: #fff;
background-color: #006666;
border-color: #006666;
}
.list-group-item-aquamarine {
color: #336655;
background-color: #e5fff6;
}
.list-group-item-aquamarine.list-group-item-action:hover, .list-group-item-aquamarine.list-group-item-action:focus {
color: #336655;
background-color: #cee6dd;
}
.list-group-item-aquamarine.list-group-item-action.active {
color: #fff;
background-color: #336655;
border-color: #336655;
}
.list-group-item-azure {
color: #606666;
background-color: #fcffff;
}
.list-group-item-azure.list-group-item-action:hover, .list-group-item-azure.list-group-item-action:focus {
color: #606666;
background-color: #e3e6e6;
}
.list-group-item-azure.list-group-item-action.active {
color: #fff;
background-color: #606666;
border-color: #606666;
}
.list-group-item-beige {
color: #626258;
background-color: #fdfdf8;
}
.list-group-item-beige.list-group-item-action:hover, .list-group-item-beige.list-group-item-action:focus {
color: #626258;
background-color: #e4e4df;
}
.list-group-item-beige.list-group-item-action.active {
color: #fff;
background-color: #626258;
border-color: #626258;
}
.list-group-item-bisque {
color: #665b4e;
background-color: #fffaf3;
}
.list-group-item-bisque.list-group-item-action:hover, .list-group-item-bisque.list-group-item-action:focus {
color: #665b4e;
background-color: #e6e1db;
}
.list-group-item-bisque.list-group-item-action.active {
color: #fff;
background-color: #665b4e;
border-color: #665b4e;
}
.list-group-item-blanchedalmond {
color: #665e52;
background-color: #fffbf5;
}
.list-group-item-blanchedalmond.list-group-item-action:hover, .list-group-item-blanchedalmond.list-group-item-action:focus {
color: #665e52;
background-color: #e6e2dd;
}
.list-group-item-blanchedalmond.list-group-item-action.active {
color: #fff;
background-color: #665e52;
border-color: #665e52;
}
.list-group-item-blueviolet {
color: #531a88;
background-color: #e8d5f9;
}
.list-group-item-blueviolet.list-group-item-action:hover, .list-group-item-blueviolet.list-group-item-action:focus {
color: #531a88;
background-color: #d1c0e0;
}
.list-group-item-blueviolet.list-group-item-action.active {
color: #fff;
background-color: #531a88;
border-color: #531a88;
}
.list-group-item-brown {
color: #631919;
background-color: #edd4d4;
}
.list-group-item-brown.list-group-item-action:hover, .list-group-item-brown.list-group-item-action:focus {
color: #631919;
background-color: #d5bfbf;
}
.list-group-item-brown.list-group-item-action.active {
color: #fff;
background-color: #631919;
border-color: #631919;
}
.list-group-item-burlywood {
color: #594a36;
background-color: #f8f1e7;
}
.list-group-item-burlywood.list-group-item-action:hover, .list-group-item-burlywood.list-group-item-action:focus {
color: #594a36;
background-color: #dfd9d0;
}
.list-group-item-burlywood.list-group-item-action.active {
color: #fff;
background-color: #594a36;
border-color: #594a36;
}
.list-group-item-cadetblue {
color: #395f60;
background-color: #dfecec;
}
.list-group-item-cadetblue.list-group-item-action:hover, .list-group-item-cadetblue.list-group-item-action:focus {
color: #395f60;
background-color: #c9d4d4;
}
.list-group-item-cadetblue.list-group-item-action.active {
color: #fff;
background-color: #395f60;
border-color: #395f60;
}
.list-group-item-chartreuse {
color: #336600;
background-color: #e5ffcc;
}
.list-group-item-chartreuse.list-group-item-action:hover, .list-group-item-chartreuse.list-group-item-action:focus {
color: #336600;
background-color: #cee6b8;
}
.list-group-item-chartreuse.list-group-item-action.active {
color: #fff;
background-color: #336600;
border-color: #336600;
}
.list-group-item-chocolate {
color: #7e3f12;
background-color: #f6e1d2;
}
.list-group-item-chocolate.list-group-item-action:hover, .list-group-item-chocolate.list-group-item-action:focus {
color: #7e3f12;
background-color: #ddcbbd;
}
.list-group-item-chocolate.list-group-item-action.active {
color: #fff;
background-color: #7e3f12;
border-color: #7e3f12;
}
.list-group-item-coral {
color: #994c30;
background-color: #ffe5dc;
}
.list-group-item-coral.list-group-item-action:hover, .list-group-item-coral.list-group-item-action:focus {
color: #994c30;
background-color: #e6cec6;
}
.list-group-item-coral.list-group-item-action.active {
color: #fff;
background-color: #994c30;
border-color: #994c30;
}
.list-group-item-cornflowerblue {
color: #3c598e;
background-color: #e0eafb;
}
.list-group-item-cornflowerblue.list-group-item-action:hover, .list-group-item-cornflowerblue.list-group-item-action:focus {
color: #3c598e;
background-color: #cad3e2;
}
.list-group-item-cornflowerblue.list-group-item-action.active {
color: #fff;
background-color: #3c598e;
border-color: #3c598e;
}
.list-group-item-cornsilk {
color: #666358;
background-color: #fffef8;
}
.list-group-item-cornsilk.list-group-item-action:hover, .list-group-item-cornsilk.list-group-item-action:focus {
color: #666358;
background-color: #e6e5df;
}
.list-group-item-cornsilk.list-group-item-action.active {
color: #fff;
background-color: #666358;
border-color: #666358;
}
.list-group-item-crimson {
color: #840c24;
background-color: #f8d0d8;
}
.list-group-item-crimson.list-group-item-action:hover, .list-group-item-crimson.list-group-item-action:focus {
color: #840c24;
background-color: #dfbbc2;
}
.list-group-item-crimson.list-group-item-action.active {
color: #fff;
background-color: #840c24;
border-color: #840c24;
}
.list-group-item-darkblue {
color: #000053;
background-color: #cccce8;
}
.list-group-item-darkblue.list-group-item-action:hover, .list-group-item-darkblue.list-group-item-action:focus {
color: #000053;
background-color: #b8b8d1;
}
.list-group-item-darkblue.list-group-item-action.active {
color: #fff;
background-color: #000053;
border-color: #000053;
}
.list-group-item-darkcyan {
color: #005353;
background-color: #cce8e8;
}
.list-group-item-darkcyan.list-group-item-action:hover, .list-group-item-darkcyan.list-group-item-action:focus {
color: #005353;
background-color: #b8d1d1;
}
.list-group-item-darkcyan.list-group-item-action.active {
color: #fff;
background-color: #005353;
border-color: #005353;
}
.list-group-item-darkgoldenrod {
color: #6e5007;
background-color: #f1e7ce;
}
.list-group-item-darkgoldenrod.list-group-item-action:hover, .list-group-item-darkgoldenrod.list-group-item-action:focus {
color: #6e5007;
background-color: #d9d0b9;
}
.list-group-item-darkgoldenrod.list-group-item-action.active {
color: #fff;
background-color: #6e5007;
border-color: #6e5007;
}
.list-group-item-darkgray {
color: #656565;
background-color: #eeeeee;
}
.list-group-item-darkgray.list-group-item-action:hover, .list-group-item-darkgray.list-group-item-action:focus {
color: #656565;
background-color: #d6d6d6;
}
.list-group-item-darkgray.list-group-item-action.active {
color: #fff;
background-color: #656565;
border-color: #656565;
}
.list-group-item-darkgreen {
color: #003c00;
background-color: #cce0cc;
}
.list-group-item-darkgreen.list-group-item-action:hover, .list-group-item-darkgreen.list-group-item-action:focus {
color: #003c00;
background-color: #b8cab8;
}
.list-group-item-darkgreen.list-group-item-action.active {
color: #fff;
background-color: #003c00;
border-color: #003c00;
}
.list-group-item-darkgrey {
color: #656565;
background-color: #eeeeee;
}
.list-group-item-darkgrey.list-group-item-action:hover, .list-group-item-darkgrey.list-group-item-action:focus {
color: #656565;
background-color: #d6d6d6;
}
.list-group-item-darkgrey.list-group-item-action.active {
color: #fff;
background-color: #656565;
border-color: #656565;
}
.list-group-item-darkkhaki {
color: #716e40;
background-color: #f2f1e1;
}
.list-group-item-darkkhaki.list-group-item-action:hover, .list-group-item-darkkhaki.list-group-item-action:focus {
color: #716e40;
background-color: #dad9cb;
}
.list-group-item-darkkhaki.list-group-item-action.active {
color: #fff;
background-color: #716e40;
border-color: #716e40;
}
.list-group-item-darkmagenta {
color: #530053;
background-color: #e8cce8;
}
.list-group-item-darkmagenta.list-group-item-action:hover, .list-group-item-darkmagenta.list-group-item-action:focus {
color: #530053;
background-color: #d1b8d1;
}
.list-group-item-darkmagenta.list-group-item-action.active {
color: #fff;
background-color: #530053;
border-color: #530053;
}
.list-group-item-darkolivegreen {
color: #33401c;
background-color: #dde1d5;
}
.list-group-item-darkolivegreen.list-group-item-action:hover, .list-group-item-darkolivegreen.list-group-item-action:focus {
color: #33401c;
background-color: #c7cbc0;
}
.list-group-item-darkolivegreen.list-group-item-action.active {
color: #fff;
background-color: #33401c;
border-color: #33401c;
}
.list-group-item-darkorange {
color: #995400;
background-color: #ffe8cc;
}
.list-group-item-darkorange.list-group-item-action:hover, .list-group-item-darkorange.list-group-item-action:focus {
color: #995400;
background-color: #e6d1b8;
}
.list-group-item-darkorange.list-group-item-action.active {
color: #fff;
background-color: #995400;
border-color: #995400;
}
.list-group-item-darkorchid {
color: #5c1e7a;
background-color: #ebd6f5;
}
.list-group-item-darkorchid.list-group-item-action:hover, .list-group-item-darkorchid.list-group-item-action:focus {
color: #5c1e7a;
background-color: #d4c1dd;
}
.list-group-item-darkorchid.list-group-item-action.active {
color: #fff;
background-color: #5c1e7a;
border-color: #5c1e7a;
}
.list-group-item-darkred {
color: #530000;
background-color: #e8cccc;
}
.list-group-item-darkred.list-group-item-action:hover, .list-group-item-darkred.list-group-item-action:focus {
color: #530000;
background-color: #d1b8b8;
}
.list-group-item-darkred.list-group-item-action.active {
color: #fff;
background-color: #530000;
border-color: #530000;
}
.list-group-item-darksalmon {
color: #8c5a49;
background-color: #fbeae4;
}
.list-group-item-darksalmon.list-group-item-action:hover, .list-group-item-darksalmon.list-group-item-action:focus {
color: #8c5a49;
background-color: #e2d3cd;
}
.list-group-item-darksalmon.list-group-item-action.active {
color: #fff;
background-color: #8c5a49;
border-color: #8c5a49;
}
.list-group-item-darkseagreen {
color: #567156;
background-color: #e9f2e9;
}
.list-group-item-darkseagreen.list-group-item-action:hover, .list-group-item-darkseagreen.list-group-item-action:focus {
color: #567156;
background-color: #d2dad2;
}
.list-group-item-darkseagreen.list-group-item-action.active {
color: #fff;
background-color: #567156;
border-color: #567156;
}
.list-group-item-darkslateblue {
color: #2b2553;
background-color: #dad8e8;
}
.list-group-item-darkslateblue.list-group-item-action:hover, .list-group-item-darkslateblue.list-group-item-action:focus {
color: #2b2553;
background-color: #c4c2d1;
}
.list-group-item-darkslateblue.list-group-item-action.active {
color: #fff;
background-color: #2b2553;
border-color: #2b2553;
}
.list-group-item-darkslategray {
color: #1c2f2f;
background-color: #d5dcdc;
}
.list-group-item-darkslategray.list-group-item-action:hover, .list-group-item-darkslategray.list-group-item-action:focus {
color: #1c2f2f;
background-color: #c0c6c6;
}
.list-group-item-darkslategray.list-group-item-action.active {
color: #fff;
background-color: #1c2f2f;
border-color: #1c2f2f;
}
.list-group-item-darkslategrey {
color: #1c2f2f;
background-color: #d5dcdc;
}
.list-group-item-darkslategrey.list-group-item-action:hover, .list-group-item-darkslategrey.list-group-item-action:focus {
color: #1c2f2f;
background-color: #c0c6c6;
}
.list-group-item-darkslategrey.list-group-item-action.active {
color: #fff;
background-color: #1c2f2f;
border-color: #1c2f2f;
}
.list-group-item-darkturquoise {
color: #005254;
background-color: #ccf5f6;
}
.list-group-item-darkturquoise.list-group-item-action:hover, .list-group-item-darkturquoise.list-group-item-action:focus {
color: #005254;
background-color: #b8dddd;
}
.list-group-item-darkturquoise.list-group-item-action.active {
color: #fff;
background-color: #005254;
border-color: #005254;
}
.list-group-item-darkviolet {
color: #59007f;
background-color: #eaccf6;
}
.list-group-item-darkviolet.list-group-item-action:hover, .list-group-item-darkviolet.list-group-item-action:focus {
color: #59007f;
background-color: #d3b8dd;
}
.list-group-item-darkviolet.list-group-item-action.active {
color: #fff;
background-color: #59007f;
border-color: #59007f;
}
.list-group-item-deeppink {
color: #990c58;
background-color: #ffd0e9;
}
.list-group-item-deeppink.list-group-item-action:hover, .list-group-item-deeppink.list-group-item-action:focus {
color: #990c58;
background-color: #e6bbd2;
}
.list-group-item-deeppink.list-group-item-action.active {
color: #fff;
background-color: #990c58;
border-color: #990c58;
}
.list-group-item-deepskyblue {
color: #007399;
background-color: #ccf2ff;
}
.list-group-item-deepskyblue.list-group-item-action:hover, .list-group-item-deepskyblue.list-group-item-action:focus {
color: #007399;
background-color: #b8dae6;
}
.list-group-item-deepskyblue.list-group-item-action.active {
color: #fff;
background-color: #007399;
border-color: #007399;
}
.list-group-item-dimgray {
color: #3f3f3f;
background-color: #e1e1e1;
}
.list-group-item-dimgray.list-group-item-action:hover, .list-group-item-dimgray.list-group-item-action:focus {
color: #3f3f3f;
background-color: #cbcbcb;
}
.list-group-item-dimgray.list-group-item-action.active {
color: #fff;
background-color: #3f3f3f;
border-color: #3f3f3f;
}
.list-group-item-dimgrey {
color: #3f3f3f;
background-color: #e1e1e1;
}
.list-group-item-dimgrey.list-group-item-action:hover, .list-group-item-dimgrey.list-group-item-action:focus {
color: #3f3f3f;
background-color: #cbcbcb;
}
.list-group-item-dimgrey.list-group-item-action.active {
color: #fff;
background-color: #3f3f3f;
border-color: #3f3f3f;
}
.list-group-item-dodgerblue {
color: #125699;
background-color: #d2e9ff;
}
.list-group-item-dodgerblue.list-group-item-action:hover, .list-group-item-dodgerblue.list-group-item-action:focus {
color: #125699;
background-color: #bdd2e6;
}
.list-group-item-dodgerblue.list-group-item-action.active {
color: #fff;
background-color: #125699;
border-color: #125699;
}
.list-group-item-firebrick {
color: #6b1414;
background-color: #f0d3d3;
}
.list-group-item-firebrick.list-group-item-action:hover, .list-group-item-firebrick.list-group-item-action:focus {
color: #6b1414;
background-color: #d8bebe;
}
.list-group-item-firebrick.list-group-item-action.active {
color: #fff;
background-color: #6b1414;
border-color: #6b1414;
}
.list-group-item-floralwhite {
color: #666460;
background-color: #fffefc;
}
.list-group-item-floralwhite.list-group-item-action:hover, .list-group-item-floralwhite.list-group-item-action:focus {
color: #666460;
background-color: #e6e5e3;
}
.list-group-item-floralwhite.list-group-item-action.active {
color: #fff;
background-color: #666460;
border-color: #666460;
}
.list-group-item-forestgreen {
color: #145314;
background-color: #d3e8d3;
}
.list-group-item-forestgreen.list-group-item-action:hover, .list-group-item-forestgreen.list-group-item-action:focus {
color: #145314;
background-color: #bed1be;
}
.list-group-item-forestgreen.list-group-item-action.active {
color: #fff;
background-color: #145314;
border-color: #145314;
}
.list-group-item-fuchsia {
color: #990099;
background-color: #ffccff;
}
.list-group-item-fuchsia.list-group-item-action:hover, .list-group-item-fuchsia.list-group-item-action:focus {
color: #990099;
background-color: #e6b8e6;
}
.list-group-item-fuchsia.list-group-item-action.active {
color: #fff;
background-color: #990099;
border-color: #990099;
}
.list-group-item-gainsboro {
color: #585858;
background-color: #f8f8f8;
}
.list-group-item-gainsboro.list-group-item-action:hover, .list-group-item-gainsboro.list-group-item-action:focus {
color: #585858;
background-color: #dfdfdf;
}
.list-group-item-gainsboro.list-group-item-action.active {
color: #fff;
background-color: #585858;
border-color: #585858;
}
.list-group-item-ghostwhite {
color: #636366;
background-color: #fefeff;
}
.list-group-item-ghostwhite.list-group-item-action:hover, .list-group-item-ghostwhite.list-group-item-action:focus {
color: #636366;
background-color: #e5e5e6;
}
.list-group-item-ghostwhite.list-group-item-action.active {
color: #fff;
background-color: #636366;
border-color: #636366;
}
.list-group-item-gold {
color: #665600;
background-color: #fff7cc;
}
.list-group-item-gold.list-group-item-action:hover, .list-group-item-gold.list-group-item-action:focus {
color: #665600;
background-color: #e6deb8;
}
.list-group-item-gold.list-group-item-action.active {
color: #fff;
background-color: #665600;
border-color: #665600;
}
.list-group-item-goldenrod {
color: #836313;
background-color: #f8edd2;
}
.list-group-item-goldenrod.list-group-item-action:hover, .list-group-item-goldenrod.list-group-item-action:focus {
color: #836313;
background-color: #dfd5bd;
}
.list-group-item-goldenrod.list-group-item-action.active {
color: #fff;
background-color: #836313;
border-color: #836313;
}
.list-group-item-greenyellow {
color: #456613;
background-color: #efffd5;
}
.list-group-item-greenyellow.list-group-item-action:hover, .list-group-item-greenyellow.list-group-item-action:focus {
color: #456613;
background-color: #d7e6c0;
}
.list-group-item-greenyellow.list-group-item-action.active {
color: #fff;
background-color: #456613;
border-color: #456613;
}
.list-group-item-grey {
color: #4d4d4d;
background-color: #e6e6e6;
}
.list-group-item-grey.list-group-item-action:hover, .list-group-item-grey.list-group-item-action:focus {
color: #4d4d4d;
background-color: #cfcfcf;
}
.list-group-item-grey.list-group-item-action.active {
color: #fff;
background-color: #4d4d4d;
border-color: #4d4d4d;
}
.list-group-item-honeydew {
color: #606660;
background-color: #fcfffc;
}
.list-group-item-honeydew.list-group-item-action:hover, .list-group-item-honeydew.list-group-item-action:focus {
color: #606660;
background-color: #e3e6e3;
}
.list-group-item-honeydew.list-group-item-action.active {
color: #fff;
background-color: #606660;
border-color: #606660;
}
.list-group-item-hotpink {
color: #993f6c;
background-color: #ffe1f0;
}
.list-group-item-hotpink.list-group-item-action:hover, .list-group-item-hotpink.list-group-item-action:focus {
color: #993f6c;
background-color: #e6cbd8;
}
.list-group-item-hotpink.list-group-item-action.active {
color: #fff;
background-color: #993f6c;
border-color: #993f6c;
}
.list-group-item-indianred {
color: #7b3737;
background-color: #f5dede;
}
.list-group-item-indianred.list-group-item-action:hover, .list-group-item-indianred.list-group-item-action:focus {
color: #7b3737;
background-color: #ddc8c8;
}
.list-group-item-indianred.list-group-item-action.active {
color: #fff;
background-color: #7b3737;
border-color: #7b3737;
}
.list-group-item-ivory {
color: #666660;
background-color: #fffffc;
}
.list-group-item-ivory.list-group-item-action:hover, .list-group-item-ivory.list-group-item-action:focus {
color: #666660;
background-color: #e6e6e3;
}
.list-group-item-ivory.list-group-item-action.active {
color: #fff;
background-color: #666660;
border-color: #666660;
}
.list-group-item-khaki {
color: #605c38;
background-color: #fcfae8;
}
.list-group-item-khaki.list-group-item-action:hover, .list-group-item-khaki.list-group-item-action:focus {
color: #605c38;
background-color: #e3e1d1;
}
.list-group-item-khaki.list-group-item-action.active {
color: #fff;
background-color: #605c38;
border-color: #605c38;
}
.list-group-item-lavender {
color: #5c5c64;
background-color: #fafafe;
}
.list-group-item-lavender.list-group-item-action:hover, .list-group-item-lavender.list-group-item-action:focus {
color: #5c5c64;
background-color: #e1e1e5;
}
.list-group-item-lavender.list-group-item-action.active {
color: #fff;
background-color: #5c5c64;
border-color: #5c5c64;
}
.list-group-item-lavenderblush {
color: #666062;
background-color: #fffcfd;
}
.list-group-item-lavenderblush.list-group-item-action:hover, .list-group-item-lavenderblush.list-group-item-action:focus {
color: #666062;
background-color: #e6e3e4;
}
.list-group-item-lavenderblush.list-group-item-action.active {
color: #fff;
background-color: #666062;
border-color: #666062;
}
.list-group-item-lawngreen {
color: #326500;
background-color: #e5fecc;
}
.list-group-item-lawngreen.list-group-item-action:hover, .list-group-item-lawngreen.list-group-item-action:focus {
color: #326500;
background-color: #cee5b8;
}
.list-group-item-lawngreen.list-group-item-action.active {
color: #fff;
background-color: #326500;
border-color: #326500;
}
.list-group-item-lemonchiffon {
color: #666452;
background-color: #fffef5;
}
.list-group-item-lemonchiffon.list-group-item-action:hover, .list-group-item-lemonchiffon.list-group-item-action:focus {
color: #666452;
background-color: #e6e5dd;
}
.list-group-item-lemonchiffon.list-group-item-action.active {
color: #fff;
background-color: #666452;
border-color: #666452;
}
.list-group-item-lightblue {
color: #45565c;
background-color: #eff7fa;
}
.list-group-item-lightblue.list-group-item-action:hover, .list-group-item-lightblue.list-group-item-action:focus {
color: #45565c;
background-color: #d7dee1;
}
.list-group-item-lightblue.list-group-item-action.active {
color: #fff;
background-color: #45565c;
border-color: #45565c;
}
.list-group-item-lightcoral {
color: #904d4d;
background-color: #fce6e6;
}
.list-group-item-lightcoral.list-group-item-action:hover, .list-group-item-lightcoral.list-group-item-action:focus {
color: #904d4d;
background-color: #e3cfcf;
}
.list-group-item-lightcoral.list-group-item-action.active {
color: #fff;
background-color: #904d4d;
border-color: #904d4d;
}
.list-group-item-lightcyan {
color: #5a6666;
background-color: #f9ffff;
}
.list-group-item-lightcyan.list-group-item-action:hover, .list-group-item-lightcyan.list-group-item-action:focus {
color: #5a6666;
background-color: #e0e6e6;
}
.list-group-item-lightcyan.list-group-item-action.active {
color: #fff;
background-color: #5a6666;
border-color: #5a6666;
}
.list-group-item-lightgoldenrodyellow {
color: #646454;
background-color: #fefef6;
}
.list-group-item-lightgoldenrodyellow.list-group-item-action:hover, .list-group-item-lightgoldenrodyellow.list-group-item-action:focus {
color: #646454;
background-color: #e5e5dd;
}
.list-group-item-lightgoldenrodyellow.list-group-item-action.active {
color: #fff;
background-color: #646454;
border-color: #646454;
}
.list-group-item-lightgray {
color: #545454;
background-color: #f6f6f6;
}
.list-group-item-lightgray.list-group-item-action:hover, .list-group-item-lightgray.list-group-item-action:focus {
color: #545454;
background-color: #dddddd;
}
.list-group-item-lightgray.list-group-item-action.active {
color: #fff;
background-color: #545454;
border-color: #545454;
}
.list-group-item-lightgreen {
color: #3a5f3a;
background-color: #e9fce9;
}
.list-group-item-lightgreen.list-group-item-action:hover, .list-group-item-lightgreen.list-group-item-action:focus {
color: #3a5f3a;
background-color: #d2e3d2;
}
.list-group-item-lightgreen.list-group-item-action.active {
color: #fff;
background-color: #3a5f3a;
border-color: #3a5f3a;
}
.list-group-item-lightgrey {
color: #545454;
background-color: #f6f6f6;
}
.list-group-item-lightgrey.list-group-item-action:hover, .list-group-item-lightgrey.list-group-item-action:focus {
color: #545454;
background-color: #dddddd;
}
.list-group-item-lightgrey.list-group-item-action.active {
color: #fff;
background-color: #545454;
border-color: #545454;
}
.list-group-item-lightpink {
color: #66494d;
background-color: #fff0f3;
}
.list-group-item-lightpink.list-group-item-action:hover, .list-group-item-lightpink.list-group-item-action:focus {
color: #66494d;
background-color: #e6d8db;
}
.list-group-item-lightpink.list-group-item-action.active {
color: #fff;
background-color: #66494d;
border-color: #66494d;
}
.list-group-item-lightsalmon {
color: #664031;
background-color: #ffece4;
}
.list-group-item-lightsalmon.list-group-item-action:hover, .list-group-item-lightsalmon.list-group-item-action:focus {
color: #664031;
background-color: #e6d4cd;
}
.list-group-item-lightsalmon.list-group-item-action.active {
color: #fff;
background-color: #664031;
border-color: #664031;
}
.list-group-item-lightseagreen {
color: #136b66;
background-color: #d2f0ee;
}
.list-group-item-lightseagreen.list-group-item-action:hover, .list-group-item-lightseagreen.list-group-item-action:focus {
color: #136b66;
background-color: #bdd8d6;
}
.list-group-item-lightseagreen.list-group-item-action.active {
color: #fff;
background-color: #136b66;
border-color: #136b66;
}
.list-group-item-lightskyblue {
color: #365264;
background-color: #e7f5fe;
}
.list-group-item-lightskyblue.list-group-item-action:hover, .list-group-item-lightskyblue.list-group-item-action:focus {
color: #365264;
background-color: #d0dde5;
}
.list-group-item-lightskyblue.list-group-item-action.active {
color: #fff;
background-color: #365264;
border-color: #365264;
}
.list-group-item-lightslategray {
color: #47525c;
background-color: #e4e7eb;
}
.list-group-item-lightslategray.list-group-item-action:hover, .list-group-item-lightslategray.list-group-item-action:focus {
color: #47525c;
background-color: #cdd0d4;
}
.list-group-item-lightslategray.list-group-item-action.active {
color: #fff;
background-color: #47525c;
border-color: #47525c;
}
.list-group-item-lightslategrey {
color: #47525c;
background-color: #e4e7eb;
}
.list-group-item-lightslategrey.list-group-item-action:hover, .list-group-item-lightslategrey.list-group-item-action:focus {
color: #47525c;
background-color: #cdd0d4;
}
.list-group-item-lightslategrey.list-group-item-action.active {
color: #fff;
background-color: #47525c;
border-color: #47525c;
}
.list-group-item-lightsteelblue {
color: #464e59;
background-color: #eff3f8;
}
.list-group-item-lightsteelblue.list-group-item-action:hover, .list-group-item-lightsteelblue.list-group-item-action:focus {
color: #464e59;
background-color: #d7dbdf;
}
.list-group-item-lightsteelblue.list-group-item-action.active {
color: #fff;
background-color: #464e59;
border-color: #464e59;
}
.list-group-item-lightyellow {
color: #66665a;
background-color: #fffff9;
}
.list-group-item-lightyellow.list-group-item-action:hover, .list-group-item-lightyellow.list-group-item-action:focus {
color: #66665a;
background-color: #e6e6e0;
}
.list-group-item-lightyellow.list-group-item-action.active {
color: #fff;
background-color: #66665a;
border-color: #66665a;
}
.list-group-item-lime {
color: #006600;
background-color: #ccffcc;
}
.list-group-item-lime.list-group-item-action:hover, .list-group-item-lime.list-group-item-action:focus {
color: #006600;
background-color: #b8e6b8;
}
.list-group-item-lime.list-group-item-action.active {
color: #fff;
background-color: #006600;
border-color: #006600;
}
.list-group-item-limegreen {
color: #1e7b1e;
background-color: #d6f5d6;
}
.list-group-item-limegreen.list-group-item-action:hover, .list-group-item-limegreen.list-group-item-action:focus {
color: #1e7b1e;
background-color: #c1ddc1;
}
.list-group-item-limegreen.list-group-item-action.active {
color: #fff;
background-color: #1e7b1e;
border-color: #1e7b1e;
}
.list-group-item-linen {
color: #64605c;
background-color: #fefcfa;
}
.list-group-item-linen.list-group-item-action:hover, .list-group-item-linen.list-group-item-action:focus {
color: #64605c;
background-color: #e5e3e1;
}
.list-group-item-linen.list-group-item-action.active {
color: #fff;
background-color: #64605c;
border-color: #64605c;
}
.list-group-item-magenta {
color: #990099;
background-color: #ffccff;
}
.list-group-item-magenta.list-group-item-action:hover, .list-group-item-magenta.list-group-item-action:focus {
color: #990099;
background-color: #e6b8e6;
}
.list-group-item-magenta.list-group-item-action.active {
color: #fff;
background-color: #990099;
border-color: #990099;
}
.list-group-item-maroon {
color: #4d0000;
background-color: #e6cccc;
}
.list-group-item-maroon.list-group-item-action:hover, .list-group-item-maroon.list-group-item-action:focus {
color: #4d0000;
background-color: #cfb8b8;
}
.list-group-item-maroon.list-group-item-action.active {
color: #fff;
background-color: #4d0000;
border-color: #4d0000;
}
.list-group-item-mediumaquamarine {
color: #295244;
background-color: #e0f5ee;
}
.list-group-item-mediumaquamarine.list-group-item-action:hover, .list-group-item-mediumaquamarine.list-group-item-action:focus {
color: #295244;
background-color: #caddd6;
}
.list-group-item-mediumaquamarine.list-group-item-action.active {
color: #fff;
background-color: #295244;
border-color: #295244;
}
.list-group-item-mediumblue {
color: #00007b;
background-color: #ccccf5;
}
.list-group-item-mediumblue.list-group-item-action:hover, .list-group-item-mediumblue.list-group-item-action:focus {
color: #00007b;
background-color: #b8b8dd;
}
.list-group-item-mediumblue.list-group-item-action.active {
color: #fff;
background-color: #00007b;
border-color: #00007b;
}
.list-group-item-mediumorchid {
color: #70337f;
background-color: #f1ddf6;
}
.list-group-item-mediumorchid.list-group-item-action:hover, .list-group-item-mediumorchid.list-group-item-action:focus {
color: #70337f;
background-color: #d9c7dd;
}
.list-group-item-mediumorchid.list-group-item-action.active {
color: #fff;
background-color: #70337f;
border-color: #70337f;
}
.list-group-item-mediumpurple {
color: #584383;
background-color: #e9e2f8;
}
.list-group-item-mediumpurple.list-group-item-action:hover, .list-group-item-mediumpurple.list-group-item-action:focus {
color: #584383;
background-color: #d2cbdf;
}
.list-group-item-mediumpurple.list-group-item-action.active {
color: #fff;
background-color: #584383;
border-color: #584383;
}
.list-group-item-mediumseagreen {
color: #246b44;
background-color: #d8f0e3;
}
.list-group-item-mediumseagreen.list-group-item-action:hover, .list-group-item-mediumseagreen.list-group-item-action:focus {
color: #246b44;
background-color: #c2d8cc;
}
.list-group-item-mediumseagreen.list-group-item-action.active {
color: #fff;
background-color: #246b44;
border-color: #246b44;
}
.list-group-item-mediumslateblue {
color: #4a3e8f;
background-color: #e5e1fc;
}
.list-group-item-mediumslateblue.list-group-item-action:hover, .list-group-item-mediumslateblue.list-group-item-action:focus {
color: #4a3e8f;
background-color: #cecbe3;
}
.list-group-item-mediumslateblue.list-group-item-action.active {
color: #fff;
background-color: #4a3e8f;
border-color: #4a3e8f;
}
.list-group-item-mediumspringgreen {
color: #00643e;
background-color: #ccfeeb;
}
.list-group-item-mediumspringgreen.list-group-item-action:hover, .list-group-item-mediumspringgreen.list-group-item-action:focus {
color: #00643e;
background-color: #b8e5d4;
}
.list-group-item-mediumspringgreen.list-group-item-action.active {
color: #fff;
background-color: #00643e;
border-color: #00643e;
}
.list-group-item-mediumturquoise {
color: #1d5452;
background-color: #daf6f5;
}
.list-group-item-mediumturquoise.list-group-item-action:hover, .list-group-item-mediumturquoise.list-group-item-action:focus {
color: #1d5452;
background-color: #c4dddd;
}
.list-group-item-mediumturquoise.list-group-item-action.active {
color: #fff;
background-color: #1d5452;
border-color: #1d5452;
}
.list-group-item-mediumvioletred {
color: #770d50;
background-color: #f4d0e7;
}
.list-group-item-mediumvioletred.list-group-item-action:hover, .list-group-item-mediumvioletred.list-group-item-action:focus {
color: #770d50;
background-color: #dcbbd0;
}
.list-group-item-mediumvioletred.list-group-item-action.active {
color: #fff;
background-color: #770d50;
border-color: #770d50;
}
.list-group-item-midnightblue {
color: #0f0f43;
background-color: #d1d1e2;
}
.list-group-item-midnightblue.list-group-item-action:hover, .list-group-item-midnightblue.list-group-item-action:focus {
color: #0f0f43;
background-color: #bcbccb;
}
.list-group-item-midnightblue.list-group-item-action.active {
color: #fff;
background-color: #0f0f43;
border-color: #0f0f43;
}
.list-group-item-mintcream {
color: #626664;
background-color: #fdfffe;
}
.list-group-item-mintcream.list-group-item-action:hover, .list-group-item-mintcream.list-group-item-action:focus {
color: #626664;
background-color: #e4e6e5;
}
.list-group-item-mintcream.list-group-item-action.active {
color: #fff;
background-color: #626664;
border-color: #626664;
}
.list-group-item-mistyrose {
color: #665b5a;
background-color: #fffaf9;
}
.list-group-item-mistyrose.list-group-item-action:hover, .list-group-item-mistyrose.list-group-item-action:focus {
color: #665b5a;
background-color: #e6e1e0;
}
.list-group-item-mistyrose.list-group-item-action.active {
color: #fff;
background-color: #665b5a;
border-color: #665b5a;
}
.list-group-item-moccasin {
color: #665b48;
background-color: floralwhite;
}
.list-group-item-moccasin.list-group-item-action:hover, .list-group-item-moccasin.list-group-item-action:focus {
color: #665b48;
background-color: #e6e1d8;
}
.list-group-item-moccasin.list-group-item-action.active {
color: #fff;
background-color: #665b48;
border-color: #665b48;
}
.list-group-item-navajowhite {
color: #665945;
background-color: #fff8ef;
}
.list-group-item-navajowhite.list-group-item-action:hover, .list-group-item-navajowhite.list-group-item-action:focus {
color: #665945;
background-color: #e6dfd7;
}
.list-group-item-navajowhite.list-group-item-action.active {
color: #fff;
background-color: #665945;
border-color: #665945;
}
.list-group-item-navy {
color: #00004d;
background-color: #cccce6;
}
.list-group-item-navy.list-group-item-action:hover, .list-group-item-navy.list-group-item-action:focus {
color: #00004d;
background-color: #b8b8cf;
}
.list-group-item-navy.list-group-item-action.active {
color: #fff;
background-color: #00004d;
border-color: #00004d;
}
.list-group-item-oldlace {
color: #65625c;
background-color: #fffdfa;
}
.list-group-item-oldlace.list-group-item-action:hover, .list-group-item-oldlace.list-group-item-action:focus {
color: #65625c;
background-color: #e6e4e1;
}
.list-group-item-oldlace.list-group-item-action.active {
color: #fff;
background-color: #65625c;
border-color: #65625c;
}
.list-group-item-olive {
color: #4d4d00;
background-color: #e6e6cc;
}
.list-group-item-olive.list-group-item-action:hover, .list-group-item-olive.list-group-item-action:focus {
color: #4d4d00;
background-color: #cfcfb8;
}
.list-group-item-olive.list-group-item-action.active {
color: #fff;
background-color: #4d4d00;
border-color: #4d4d00;
}
.list-group-item-olivedrab {
color: #405515;
background-color: #e1e8d3;
}
.list-group-item-olivedrab.list-group-item-action:hover, .list-group-item-olivedrab.list-group-item-action:focus {
color: #405515;
background-color: #cbd1be;
}
.list-group-item-olivedrab.list-group-item-action.active {
color: #fff;
background-color: #405515;
border-color: #405515;
}
.list-group-item-orangered {
color: #992900;
background-color: #ffdacc;
}
.list-group-item-orangered.list-group-item-action:hover, .list-group-item-orangered.list-group-item-action:focus {
color: #992900;
background-color: #e6c4b8;
}
.list-group-item-orangered.list-group-item-action.active {
color: #fff;
background-color: #992900;
border-color: #992900;
}
.list-group-item-orchid {
color: #834380;
background-color: #f8e2f7;
}
.list-group-item-orchid.list-group-item-action:hover, .list-group-item-orchid.list-group-item-action:focus {
color: #834380;
background-color: #dfcbde;
}
.list-group-item-orchid.list-group-item-action.active {
color: #fff;
background-color: #834380;
border-color: #834380;
}
.list-group-item-palegoldenrod {
color: #5f5d44;
background-color: #fcfaee;
}
.list-group-item-palegoldenrod.list-group-item-action:hover, .list-group-item-palegoldenrod.list-group-item-action:focus {
color: #5f5d44;
background-color: #e3e1d6;
}
.list-group-item-palegoldenrod.list-group-item-action.active {
color: #fff;
background-color: #5f5d44;
border-color: #5f5d44;
}
.list-group-item-palegreen {
color: #3d643d;
background-color: #eafeea;
}
.list-group-item-palegreen.list-group-item-action:hover, .list-group-item-palegreen.list-group-item-action:focus {
color: #3d643d;
background-color: #d3e5d3;
}
.list-group-item-palegreen.list-group-item-action.active {
color: #fff;
background-color: #3d643d;
border-color: #3d643d;
}
.list-group-item-paleturquoise {
color: #465f5f;
background-color: #effcfc;
}
.list-group-item-paleturquoise.list-group-item-action:hover, .list-group-item-paleturquoise.list-group-item-action:focus {
color: #465f5f;
background-color: #d7e3e3;
}
.list-group-item-paleturquoise.list-group-item-action.active {
color: #fff;
background-color: #465f5f;
border-color: #465f5f;
}
.list-group-item-palevioletred {
color: #834358;
background-color: #f8e2e9;
}
.list-group-item-palevioletred.list-group-item-action:hover, .list-group-item-palevioletred.list-group-item-action:focus {
color: #834358;
background-color: #dfcbd2;
}
.list-group-item-palevioletred.list-group-item-action.active {
color: #fff;
background-color: #834358;
border-color: #834358;
}
.list-group-item-papayawhip {
color: #666055;
background-color: #fffcf7;
}
.list-group-item-papayawhip.list-group-item-action:hover, .list-group-item-papayawhip.list-group-item-action:focus {
color: #666055;
background-color: #e6e3de;
}
.list-group-item-papayawhip.list-group-item-action.active {
color: #fff;
background-color: #666055;
border-color: #666055;
}
.list-group-item-peachpuff {
color: #66574a;
background-color: #fff8f1;
}
.list-group-item-peachpuff.list-group-item-action:hover, .list-group-item-peachpuff.list-group-item-action:focus {
color: #66574a;
background-color: #e6dfd9;
}
.list-group-item-peachpuff.list-group-item-action.active {
color: #fff;
background-color: #66574a;
border-color: #66574a;
}
.list-group-item-peru {
color: #7b5026;
background-color: #f5e7d9;
}
.list-group-item-peru.list-group-item-action:hover, .list-group-item-peru.list-group-item-action:focus {
color: #7b5026;
background-color: #ddd0c3;
}
.list-group-item-peru.list-group-item-action.active {
color: #fff;
background-color: #7b5026;
border-color: #7b5026;
}
.list-group-item-plum {
color: #856085;
background-color: #f8ecf8;
}
.list-group-item-plum.list-group-item-action:hover, .list-group-item-plum.list-group-item-action:focus {
color: #856085;
background-color: #dfd4df;
}
.list-group-item-plum.list-group-item-action.active {
color: #fff;
background-color: #856085;
border-color: #856085;
}
.list-group-item-powderblue {
color: #465a5c;
background-color: #eff9fa;
}
.list-group-item-powderblue.list-group-item-action:hover, .list-group-item-powderblue.list-group-item-action:focus {
color: #465a5c;
background-color: #d7e0e1;
}
.list-group-item-powderblue.list-group-item-action.active {
color: #fff;
background-color: #465a5c;
border-color: #465a5c;
}
.list-group-item-rebeccapurple {
color: #3d1f5c;
background-color: #e0d6eb;
}
.list-group-item-rebeccapurple.list-group-item-action:hover, .list-group-item-rebeccapurple.list-group-item-action:focus {
color: #3d1f5c;
background-color: #cac1d4;
}
.list-group-item-rebeccapurple.list-group-item-action.active {
color: #fff;
background-color: #3d1f5c;
border-color: #3d1f5c;
}
.list-group-item-rosybrown {
color: #715656;
background-color: #f2e9e9;
}
.list-group-item-rosybrown.list-group-item-action:hover, .list-group-item-rosybrown.list-group-item-action:focus {
color: #715656;
background-color: #dad2d2;
}
.list-group-item-rosybrown.list-group-item-action.active {
color: #fff;
background-color: #715656;
border-color: #715656;
}
.list-group-item-royalblue {
color: #273f87;
background-color: #d9e1f9;
}
.list-group-item-royalblue.list-group-item-action:hover, .list-group-item-royalblue.list-group-item-action:focus {
color: #273f87;
background-color: #c3cbe0;
}
.list-group-item-royalblue.list-group-item-action.active {
color: #fff;
background-color: #273f87;
border-color: #273f87;
}
.list-group-item-saddlebrown {
color: #53290b;
background-color: #e8dad0;
}
.list-group-item-saddlebrown.list-group-item-action:hover, .list-group-item-saddlebrown.list-group-item-action:focus {
color: #53290b;
background-color: #d1c4bb;
}
.list-group-item-saddlebrown.list-group-item-action.active {
color: #fff;
background-color: #53290b;
border-color: #53290b;
}
.list-group-item-salmon {
color: #964d44;
background-color: #fee6e3;
}
.list-group-item-salmon.list-group-item-action:hover, .list-group-item-salmon.list-group-item-action:focus {
color: #964d44;
background-color: #e5cfcc;
}
.list-group-item-salmon.list-group-item-action.active {
color: #fff;
background-color: #964d44;
border-color: #964d44;
}
.list-group-item-sandybrown {
color: #92623a;
background-color: #fdeddf;
}
.list-group-item-sandybrown.list-group-item-action:hover, .list-group-item-sandybrown.list-group-item-action:focus {
color: #92623a;
background-color: #e4d5c9;
}
.list-group-item-sandybrown.list-group-item-action.active {
color: #fff;
background-color: #92623a;
border-color: #92623a;
}
.list-group-item-seagreen {
color: #1c5334;
background-color: #d5e8dd;
}
.list-group-item-seagreen.list-group-item-action:hover, .list-group-item-seagreen.list-group-item-action:focus {
color: #1c5334;
background-color: #c0d1c7;
}
.list-group-item-seagreen.list-group-item-action.active {
color: #fff;
background-color: #1c5334;
border-color: #1c5334;
}
.list-group-item-seashell {
color: #66625f;
background-color: #fffdfc;
}
.list-group-item-seashell.list-group-item-action:hover, .list-group-item-seashell.list-group-item-action:focus {
color: #66625f;
background-color: #e6e4e3;
}
.list-group-item-seashell.list-group-item-action.active {
color: #fff;
background-color: #66625f;
border-color: #66625f;
}
.list-group-item-sienna {
color: #60311b;
background-color: #ecdcd5;
}
.list-group-item-sienna.list-group-item-action:hover, .list-group-item-sienna.list-group-item-action:focus {
color: #60311b;
background-color: #d4c6c0;
}
.list-group-item-sienna.list-group-item-action.active {
color: #fff;
background-color: #60311b;
border-color: #60311b;
}
.list-group-item-silver {
color: #4d4d4d;
background-color: #f2f2f2;
}
.list-group-item-silver.list-group-item-action:hover, .list-group-item-silver.list-group-item-action:focus {
color: #4d4d4d;
background-color: #dadada;
}
.list-group-item-silver.list-group-item-action.active {
color: #fff;
background-color: #4d4d4d;
border-color: #4d4d4d;
}
.list-group-item-skyblue {
color: #36525e;
background-color: #e7f5fb;
}
.list-group-item-skyblue.list-group-item-action:hover, .list-group-item-skyblue.list-group-item-action:focus {
color: #36525e;
background-color: #d0dde2;
}
.list-group-item-skyblue.list-group-item-action.active {
color: #fff;
background-color: #36525e;
border-color: #36525e;
}
.list-group-item-slateblue {
color: #40367b;
background-color: #e1def5;
}
.list-group-item-slateblue.list-group-item-action:hover, .list-group-item-slateblue.list-group-item-action:focus {
color: #40367b;
background-color: #cbc8dd;
}
.list-group-item-slateblue.list-group-item-action.active {
color: #fff;
background-color: #40367b;
border-color: #40367b;
}
.list-group-item-slategray {
color: #434d56;
background-color: #e2e6e9;
}
.list-group-item-slategray.list-group-item-action:hover, .list-group-item-slategray.list-group-item-action:focus {
color: #434d56;
background-color: #cbcfd2;
}
.list-group-item-slategray.list-group-item-action.active {
color: #fff;
background-color: #434d56;
border-color: #434d56;
}
.list-group-item-slategrey {
color: #434d56;
background-color: #e2e6e9;
}
.list-group-item-slategrey.list-group-item-action:hover, .list-group-item-slategrey.list-group-item-action:focus {
color: #434d56;
background-color: #cbcfd2;
}
.list-group-item-slategrey.list-group-item-action.active {
color: #fff;
background-color: #434d56;
border-color: #434d56;
}
.list-group-item-snow {
color: #666464;
background-color: #fffefe;
}
.list-group-item-snow.list-group-item-action:hover, .list-group-item-snow.list-group-item-action:focus {
color: #666464;
background-color: #e6e5e5;
}
.list-group-item-snow.list-group-item-action.active {
color: #fff;
background-color: #666464;
border-color: #666464;
}
.list-group-item-springgreen {
color: #006633;
background-color: #ccffe5;
}
.list-group-item-springgreen.list-group-item-action:hover, .list-group-item-springgreen.list-group-item-action:focus {
color: #006633;
background-color: #b8e6ce;
}
.list-group-item-springgreen.list-group-item-action.active {
color: #fff;
background-color: #006633;
border-color: #006633;
}
.list-group-item-steelblue {
color: #2a4e6c;
background-color: #dae6f0;
}
.list-group-item-steelblue.list-group-item-action:hover, .list-group-item-steelblue.list-group-item-action:focus {
color: #2a4e6c;
background-color: #c4cfd8;
}
.list-group-item-steelblue.list-group-item-action.active {
color: #fff;
background-color: #2a4e6c;
border-color: #2a4e6c;
}
.list-group-item-tan {
color: #544838;
background-color: #f6f0e8;
}
.list-group-item-tan.list-group-item-action:hover, .list-group-item-tan.list-group-item-action:focus {
color: #544838;
background-color: #ddd8d1;
}
.list-group-item-tan.list-group-item-action.active {
color: #fff;
background-color: #544838;
border-color: #544838;
}
.list-group-item-thistle {
color: #564c56;
background-color: #f7f2f7;
}
.list-group-item-thistle.list-group-item-action:hover, .list-group-item-thistle.list-group-item-action:focus {
color: #564c56;
background-color: #dedade;
}
.list-group-item-thistle.list-group-item-action.active {
color: #fff;
background-color: #564c56;
border-color: #564c56;
}
.list-group-item-tomato {
color: #993b2b;
background-color: #ffe0da;
}
.list-group-item-tomato.list-group-item-action:hover, .list-group-item-tomato.list-group-item-action:focus {
color: #993b2b;
background-color: #e6cac4;
}
.list-group-item-tomato.list-group-item-action.active {
color: #fff;
background-color: #993b2b;
border-color: #993b2b;
}
.list-group-item-turquoise {
color: #1a5a53;
background-color: #d9f9f6;
}
.list-group-item-turquoise.list-group-item-action:hover, .list-group-item-turquoise.list-group-item-action:focus {
color: #1a5a53;
background-color: #c3e0dd;
}
.list-group-item-turquoise.list-group-item-action.active {
color: #fff;
background-color: #1a5a53;
border-color: #1a5a53;
}
.list-group-item-violet {
color: #8f4e8f;
background-color: #fce6fc;
}
.list-group-item-violet.list-group-item-action:hover, .list-group-item-violet.list-group-item-action:focus {
color: #8f4e8f;
background-color: #e3cfe3;
}
.list-group-item-violet.list-group-item-action.active {
color: #fff;
background-color: #8f4e8f;
border-color: #8f4e8f;
}
.list-group-item-wheat {
color: #625948;
background-color: #fdf8f0;
}
.list-group-item-wheat.list-group-item-action:hover, .list-group-item-wheat.list-group-item-action:focus {
color: #625948;
background-color: #e4dfd8;
}
.list-group-item-wheat.list-group-item-action.active {
color: #fff;
background-color: #625948;
border-color: #625948;
}
.list-group-item-whitesmoke {
color: #626262;
background-color: #fdfdfd;
}
.list-group-item-whitesmoke.list-group-item-action:hover, .list-group-item-whitesmoke.list-group-item-action:focus {
color: #626262;
background-color: #e4e4e4;
}
.list-group-item-whitesmoke.list-group-item-action.active {
color: #fff;
background-color: #626262;
border-color: #626262;
}
.list-group-item-yellowgreen {
color: #3e5214;
background-color: #ebf5d6;
}
.list-group-item-yellowgreen.list-group-item-action:hover, .list-group-item-yellowgreen.list-group-item-action:focus {
color: #3e5214;
background-color: #d4ddc1;
}
.list-group-item-yellowgreen.list-group-item-action.active {
color: #fff;
background-color: #3e5214;
border-color: #3e5214;
}
.btn-close {
-webkit-box-sizing: content-box;
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: 0;
-webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
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 {
-webkit-filter: invert(1) grayscale(100%) brightness(200%);
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);
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
}
.toast.showing {
opacity: 0;
}
.toast:not(.show) {
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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;
word-wrap: break-word;
}
.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1055;
display: none;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
-webkit-transition: -webkit-transform 0.3s ease-out;
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
-webkit-transform: translate(0, -50px);
transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
-webkit-transition: none;
transition: none;
}
}
.modal.show .modal-dialog {
-webkit-transform: none;
transform: none;
}
.modal.modal-static .modal-dialog {
-webkit-transform: scale(1.02);
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - 1rem);
}
.modal-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
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: 1050;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.5;
}
.modal-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-negative: 0;
flex-shrink: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
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;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1rem;
}
.modal-footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-negative: 0;
flex-shrink: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
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;
}
@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: 1080;
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 /* rtl:ignore */;
z-index: 1070;
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;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
position: absolute;
display: block;
content: "";
border-color: transparent;
border-style: solid;
}
.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 > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
left: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
}
.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 > .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 > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
right: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
}
.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 rgba(0, 0, 0, 0.2);
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 {
-ms-touch-action: pan-y;
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;
-webkit-transition: -webkit-transform 0.6s ease-in-out;
transition: -webkit-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.carousel-item {
-webkit-transition: none;
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 {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
/* rtl:end:ignore */
.carousel-fade .carousel-item {
opacity: 0;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transform: none;
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;
-webkit-transition: opacity 0s 0.6s;
transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
-webkit-transition: none;
transition: none;
}
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 15%;
padding: 0;
color: #fff;
text-align: center;
background: none;
border: 0;
opacity: 0.5;
-webkit-transition: opacity 0.15s ease;
transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
-webkit-transition: none;
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: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0;
margin-right: 15%;
margin-bottom: 1rem;
margin-left: 15%;
list-style: none;
}
.carousel-indicators [data-bs-target] {
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
width: 30px;
height: 3px;
padding: 0;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #fff;
background-clip: padding-box;
border: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: 0.5;
-webkit-transition: opacity 0.6s ease;
transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-indicators [data-bs-target] {
-webkit-transition: none;
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 {
-webkit-filter: invert(1) grayscale(100);
filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
background-color: #000;
}
.carousel-dark .carousel-caption {
color: #000;
}
@keyframes spinner-border {
to {
-webkit-transform: rotate(360deg) /* rtl:ignore */;
transform: rotate(360deg) /* rtl:ignore */;
}
}
.spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: -0.125em;
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;
}
@keyframes spinner-grow {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: -0.125em;
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;
}
}
.offcanvas {
position: fixed;
bottom: 0;
z-index: 1045;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
max-width: 100%;
visibility: hidden;
background-color: #fff;
background-clip: padding-box;
outline: 0;
-webkit-transition: -webkit-transform 0.3s ease-in-out;
transition: -webkit-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.offcanvas {
-webkit-transition: none;
transition: none;
}
}
.offcanvas-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.offcanvas-backdrop.fade {
opacity: 0;
}
.offcanvas-backdrop.show {
opacity: 0.5;
}
.offcanvas-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
padding: 0.5rem 0.5rem;
margin-top: -0.5rem;
margin-right: -0.5rem;
margin-bottom: -0.5rem;
}
.offcanvas-title {
margin-bottom: 0;
line-height: 1.5;
}
.offcanvas-body {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 1rem 1rem;
overflow-y: auto;
}
.offcanvas-start {
top: 0;
left: 0;
width: 400px;
border-right: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
.offcanvas-end {
top: 0;
right: 0;
width: 400px;
border-left: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.offcanvas-top {
top: 0;
right: 0;
left: 0;
height: 30vh;
max-height: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.offcanvas-bottom {
right: 0;
left: 0;
height: 30vh;
max-height: 100%;
border-top: 1px solid rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
.offcanvas.show {
-webkit-transform: none;
transform: none;
}
.placeholder {
display: inline-block;
min-height: 1em;
vertical-align: middle;
cursor: wait;
background-color: currentColor;
opacity: 0.5;
}
.placeholder.btn::before {
display: inline-block;
content: "";
}
.placeholder-xs {
min-height: .6em;
}
.placeholder-sm {
min-height: .8em;
}
.placeholder-lg {
min-height: 1.2em;
}
.placeholder-glow .placeholder {
-webkit-animation: placeholder-glow 2s ease-in-out infinite;
animation: placeholder-glow 2s ease-in-out infinite;
}
@keyframes placeholder-glow {
50% {
opacity: 0.2;
}
}
.placeholder-wave {
-webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
-webkit-mask-size: 200% 100%;
mask-size: 200% 100%;
-webkit-animation: placeholder-wave 2s linear infinite;
animation: placeholder-wave 2s linear infinite;
}
@keyframes placeholder-wave {
100% {
-webkit-mask-position: -200% 0%;
mask-position: -200% 0%;
}
}
.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-rc-red {
color: #DA291C;
}
.link-rc-red:hover, .link-rc-red:focus {
color: #ae2116;
}
.link-rc-wine {
color: #A50034;
}
.link-rc-wine:hover, .link-rc-wine:focus {
color: #84002a;
}
.link-rc-blue {
color: #002554;
}
.link-rc-blue:hover, .link-rc-blue:focus {
color: #001e43;
}
.link-rc-gold {
color: #FFB200;
}
.link-rc-gold:hover, .link-rc-gold:focus {
color: #ffc133;
}
.link-rc-silver {
color: #808080;
}
.link-rc-silver:hover, .link-rc-silver:focus {
color: #999999;
}
.link-rc-skyblue {
color: #00B0F0;
}
.link-rc-skyblue:hover, .link-rc-skyblue:focus {
color: #33c0f3;
}
.link-aliceblue {
color: #F0F8FF;
}
.link-aliceblue:hover, .link-aliceblue:focus {
color: #f3f9ff;
}
.link-antiquewhite {
color: #FAEBD7;
}
.link-antiquewhite:hover, .link-antiquewhite:focus {
color: #fbefdf;
}
.link-aqua {
color: #00FFFF;
}
.link-aqua:hover, .link-aqua:focus {
color: #33ffff;
}
.link-aquamarine {
color: #7FFFD4;
}
.link-aquamarine:hover, .link-aquamarine:focus {
color: #99ffdd;
}
.link-azure {
color: #F0FFFF;
}
.link-azure:hover, .link-azure:focus {
color: #f3ffff;
}
.link-beige {
color: #F5F5DC;
}
.link-beige:hover, .link-beige:focus {
color: #f7f7e3;
}
.link-bisque {
color: #FFE4C4;
}
.link-bisque:hover, .link-bisque:focus {
color: #ffe9d0;
}
.link-blanchedalmond {
color: #FFEBCD;
}
.link-blanchedalmond:hover, .link-blanchedalmond:focus {
color: #ffefd7;
}
.link-blueviolet {
color: #8A2BE2;
}
.link-blueviolet:hover, .link-blueviolet:focus {
color: #6e22b5;
}
.link-brown {
color: #A52A2A;
}
.link-brown:hover, .link-brown:focus {
color: #842222;
}
.link-burlywood {
color: #DEB887;
}
.link-burlywood:hover, .link-burlywood:focus {
color: #e5c69f;
}
.link-cadetblue {
color: #5F9EA0;
}
.link-cadetblue:hover, .link-cadetblue:focus {
color: #7fb1b3;
}
.link-chartreuse {
color: #7FFF00;
}
.link-chartreuse:hover, .link-chartreuse:focus {
color: #99ff33;
}
.link-chocolate {
color: #D2691E;
}
.link-chocolate:hover, .link-chocolate:focus {
color: #db874b;
}
.link-coral {
color: #FF7F50;
}
.link-coral:hover, .link-coral:focus {
color: #ff9973;
}
.link-cornflowerblue {
color: #6495ED;
}
.link-cornflowerblue:hover, .link-cornflowerblue:focus {
color: #83aaf1;
}
.link-cornsilk {
color: #FFF8DC;
}
.link-cornsilk:hover, .link-cornsilk:focus {
color: #fff9e3;
}
.link-crimson {
color: #DC143C;
}
.link-crimson:hover, .link-crimson:focus {
color: #b01030;
}
.link-darkblue {
color: #00008B;
}
.link-darkblue:hover, .link-darkblue:focus {
color: #00006f;
}
.link-darkcyan {
color: #008B8B;
}
.link-darkcyan:hover, .link-darkcyan:focus {
color: #33a2a2;
}
.link-darkgoldenrod {
color: #B8860B;
}
.link-darkgoldenrod:hover, .link-darkgoldenrod:focus {
color: #c69e3c;
}
.link-darkgray {
color: #A9A9A9;
}
.link-darkgray:hover, .link-darkgray:focus {
color: #bababa;
}
.link-darkgreen {
color: #006400;
}
.link-darkgreen:hover, .link-darkgreen:focus {
color: #005000;
}
.link-darkgrey {
color: #A9A9A9;
}
.link-darkgrey:hover, .link-darkgrey:focus {
color: #bababa;
}
.link-darkkhaki {
color: #BDB76B;
}
.link-darkkhaki:hover, .link-darkkhaki:focus {
color: #cac589;
}
.link-darkmagenta {
color: #8B008B;
}
.link-darkmagenta:hover, .link-darkmagenta:focus {
color: #6f006f;
}
.link-darkolivegreen {
color: #556B2F;
}
.link-darkolivegreen:hover, .link-darkolivegreen:focus {
color: #445626;
}
.link-darkorange {
color: #FF8C00;
}
.link-darkorange:hover, .link-darkorange:focus {
color: #ffa333;
}
.link-darkorchid {
color: #9932CC;
}
.link-darkorchid:hover, .link-darkorchid:focus {
color: #7a28a3;
}
.link-darkred {
color: #8B0000;
}
.link-darkred:hover, .link-darkred:focus {
color: #6f0000;
}
.link-darksalmon {
color: #E9967A;
}
.link-darksalmon:hover, .link-darksalmon:focus {
color: #edab95;
}
.link-darkseagreen {
color: #8FBC8F;
}
.link-darkseagreen:hover, .link-darkseagreen:focus {
color: #a5c9a5;
}
.link-darkslateblue {
color: #483D8B;
}
.link-darkslateblue:hover, .link-darkslateblue:focus {
color: #3a316f;
}
.link-darkslategray {
color: #2F4F4F;
}
.link-darkslategray:hover, .link-darkslategray:focus {
color: #263f3f;
}
.link-darkslategrey {
color: #2F4F4F;
}
.link-darkslategrey:hover, .link-darkslategrey:focus {
color: #263f3f;
}
.link-darkturquoise {
color: #00CED1;
}
.link-darkturquoise:hover, .link-darkturquoise:focus {
color: #33d8da;
}
.link-darkviolet {
color: #9400D3;
}
.link-darkviolet:hover, .link-darkviolet:focus {
color: #7600a9;
}
.link-deeppink {
color: #FF1493;
}
.link-deeppink:hover, .link-deeppink:focus {
color: #ff43a9;
}
.link-deepskyblue {
color: #00BFFF;
}
.link-deepskyblue:hover, .link-deepskyblue:focus {
color: #33ccff;
}
.link-dimgray {
color: #696969;
}
.link-dimgray:hover, .link-dimgray:focus {
color: #545454;
}
.link-dimgrey {
color: #696969;
}
.link-dimgrey:hover, .link-dimgrey:focus {
color: #545454;
}
.link-dodgerblue {
color: #1E90FF;
}
.link-dodgerblue:hover, .link-dodgerblue:focus {
color: #4ba6ff;
}
.link-firebrick {
color: #B22222;
}
.link-firebrick:hover, .link-firebrick:focus {
color: #8e1b1b;
}
.link-floralwhite {
color: #FFFAF0;
}
.link-floralwhite:hover, .link-floralwhite:focus {
color: #fffbf3;
}
.link-forestgreen {
color: #228B22;
}
.link-forestgreen:hover, .link-forestgreen:focus {
color: #4ea24e;
}
.link-fuchsia {
color: #FF00FF;
}
.link-fuchsia:hover, .link-fuchsia:focus {
color: #ff33ff;
}
.link-gainsboro {
color: #DCDCDC;
}
.link-gainsboro:hover, .link-gainsboro:focus {
color: #e3e3e3;
}
.link-ghostwhite {
color: #F8F8FF;
}
.link-ghostwhite:hover, .link-ghostwhite:focus {
color: #f9f9ff;
}
.link-gold {
color: #FFD700;
}
.link-gold:hover, .link-gold:focus {
color: #ffdf33;
}
.link-goldenrod {
color: #DAA520;
}
.link-goldenrod:hover, .link-goldenrod:focus {
color: #e1b74d;
}
.link-greenyellow {
color: #ADFF2F;
}
.link-greenyellow:hover, .link-greenyellow:focus {
color: #bdff59;
}
.link-grey {
color: #808080;
}
.link-grey:hover, .link-grey:focus {
color: #999999;
}
.link-honeydew {
color: #F0FFF0;
}
.link-honeydew:hover, .link-honeydew:focus {
color: #f3fff3;
}
.link-hotpink {
color: #FF69B4;
}
.link-hotpink:hover, .link-hotpink:focus {
color: #ff87c3;
}
.link-indianred {
color: #CD5C5C;
}
.link-indianred:hover, .link-indianred:focus {
color: #d77d7d;
}
.link-ivory {
color: #FFFFF0;
}
.link-ivory:hover, .link-ivory:focus {
color: #fffff3;
}
.link-khaki {
color: #F0E68C;
}
.link-khaki:hover, .link-khaki:focus {
color: #f3eba3;
}
.link-lavender {
color: #E6E6FA;
}
.link-lavender:hover, .link-lavender:focus {
color: #ebebfb;
}
.link-lavenderblush {
color: #FFF0F5;
}
.link-lavenderblush:hover, .link-lavenderblush:focus {
color: #fff3f7;
}
.link-lawngreen {
color: #7CFC00;
}
.link-lawngreen:hover, .link-lawngreen:focus {
color: #96fd33;
}
.link-lemonchiffon {
color: #FFFACD;
}
.link-lemonchiffon:hover, .link-lemonchiffon:focus {
color: #fffbd7;
}
.link-lightblue {
color: #ADD8E6;
}
.link-lightblue:hover, .link-lightblue:focus {
color: #bde0eb;
}
.link-lightcoral {
color: #F08080;
}
.link-lightcoral:hover, .link-lightcoral:focus {
color: #f39999;
}
.link-lightcyan {
color: #E0FFFF;
}
.link-lightcyan:hover, .link-lightcyan:focus {
color: #e6ffff;
}
.link-lightgoldenrodyellow {
color: #FAFAD2;
}
.link-lightgoldenrodyellow:hover, .link-lightgoldenrodyellow:focus {
color: #fbfbdb;
}
.link-lightgray {
color: #D3D3D3;
}
.link-lightgray:hover, .link-lightgray:focus {
color: gainsboro;
}
.link-lightgreen {
color: #90EE90;
}
.link-lightgreen:hover, .link-lightgreen:focus {
color: #a6f1a6;
}
.link-lightgrey {
color: #D3D3D3;
}
.link-lightgrey:hover, .link-lightgrey:focus {
color: gainsboro;
}
.link-lightpink {
color: #FFB6C1;
}
.link-lightpink:hover, .link-lightpink:focus {
color: #ffc5cd;
}
.link-lightsalmon {
color: #FFA07A;
}
.link-lightsalmon:hover, .link-lightsalmon:focus {
color: #ffb395;
}
.link-lightseagreen {
color: #20B2AA;
}
.link-lightseagreen:hover, .link-lightseagreen:focus {
color: #4dc1bb;
}
.link-lightskyblue {
color: #87CEFA;
}
.link-lightskyblue:hover, .link-lightskyblue:focus {
color: #9fd8fb;
}
.link-lightslategray {
color: #778899;
}
.link-lightslategray:hover, .link-lightslategray:focus {
color: #92a0ad;
}
.link-lightslategrey {
color: #778899;
}
.link-lightslategrey:hover, .link-lightslategrey:focus {
color: #92a0ad;
}
.link-lightsteelblue {
color: #B0C4DE;
}
.link-lightsteelblue:hover, .link-lightsteelblue:focus {
color: #c0d0e5;
}
.link-lightyellow {
color: #FFFFE0;
}
.link-lightyellow:hover, .link-lightyellow:focus {
color: #ffffe6;
}
.link-lime {
color: #00FF00;
}
.link-lime:hover, .link-lime:focus {
color: #33ff33;
}
.link-limegreen {
color: #32CD32;
}
.link-limegreen:hover, .link-limegreen:focus {
color: #5bd75b;
}
.link-linen {
color: #FAF0E6;
}
.link-linen:hover, .link-linen:focus {
color: #fbf3eb;
}
.link-magenta {
color: #FF00FF;
}
.link-magenta:hover, .link-magenta:focus {
color: #ff33ff;
}
.link-maroon {
color: #800000;
}
.link-maroon:hover, .link-maroon:focus {
color: #660000;
}
.link-mediumaquamarine {
color: #66CDAA;
}
.link-mediumaquamarine:hover, .link-mediumaquamarine:focus {
color: #85d7bb;
}
.link-mediumblue {
color: #0000CD;
}
.link-mediumblue:hover, .link-mediumblue:focus {
color: #0000a4;
}
.link-mediumorchid {
color: #BA55D3;
}
.link-mediumorchid:hover, .link-mediumorchid:focus {
color: #c877dc;
}
.link-mediumpurple {
color: #9370DB;
}
.link-mediumpurple:hover, .link-mediumpurple:focus {
color: #a98de2;
}
.link-mediumseagreen {
color: #3CB371;
}
.link-mediumseagreen:hover, .link-mediumseagreen:focus {
color: #63c28d;
}
.link-mediumslateblue {
color: #7B68EE;
}
.link-mediumslateblue:hover, .link-mediumslateblue:focus {
color: #9586f1;
}
.link-mediumspringgreen {
color: #00FA9A;
}
.link-mediumspringgreen:hover, .link-mediumspringgreen:focus {
color: #33fbae;
}
.link-mediumturquoise {
color: #48D1CC;
}
.link-mediumturquoise:hover, .link-mediumturquoise:focus {
color: #6ddad6;
}
.link-mediumvioletred {
color: #C71585;
}
.link-mediumvioletred:hover, .link-mediumvioletred:focus {
color: #9f116a;
}
.link-midnightblue {
color: #191970;
}
.link-midnightblue:hover, .link-midnightblue:focus {
color: #14145a;
}
.link-mintcream {
color: #F5FFFA;
}
.link-mintcream:hover, .link-mintcream:focus {
color: #f7fffb;
}
.link-mistyrose {
color: #FFE4E1;
}
.link-mistyrose:hover, .link-mistyrose:focus {
color: #ffe9e7;
}
.link-moccasin {
color: #FFE4B5;
}
.link-moccasin:hover, .link-moccasin:focus {
color: #ffe9c4;
}
.link-navajowhite {
color: #FFDEAD;
}
.link-navajowhite:hover, .link-navajowhite:focus {
color: #ffe5bd;
}
.link-navy {
color: #000080;
}
.link-navy:hover, .link-navy:focus {
color: #000066;
}
.link-oldlace {
color: #FDF5E6;
}
.link-oldlace:hover, .link-oldlace:focus {
color: #fdf7eb;
}
.link-olive {
color: #808000;
}
.link-olive:hover, .link-olive:focus {
color: #999933;
}
.link-olivedrab {
color: #6B8E23;
}
.link-olivedrab:hover, .link-olivedrab:focus {
color: #89a54f;
}
.link-orangered {
color: #FF4500;
}
.link-orangered:hover, .link-orangered:focus {
color: #ff6a33;
}
.link-orchid {
color: #DA70D6;
}
.link-orchid:hover, .link-orchid:focus {
color: #e18dde;
}
.link-palegoldenrod {
color: #EEE8AA;
}
.link-palegoldenrod:hover, .link-palegoldenrod:focus {
color: #f1edbb;
}
.link-palegreen {
color: #98FB98;
}
.link-palegreen:hover, .link-palegreen:focus {
color: #adfcad;
}
.link-paleturquoise {
color: #AFEEEE;
}
.link-paleturquoise:hover, .link-paleturquoise:focus {
color: #bff1f1;
}
.link-palevioletred {
color: #DB7093;
}
.link-palevioletred:hover, .link-palevioletred:focus {
color: #e28da9;
}
.link-papayawhip {
color: #FFEFD5;
}
.link-papayawhip:hover, .link-papayawhip:focus {
color: #fff2dd;
}
.link-peachpuff {
color: #FFDAB9;
}
.link-peachpuff:hover, .link-peachpuff:focus {
color: #ffe1c7;
}
.link-peru {
color: #CD853F;
}
.link-peru:hover, .link-peru:focus {
color: #d79d65;
}
.link-plum {
color: #DDA0DD;
}
.link-plum:hover, .link-plum:focus {
color: #e4b3e4;
}
.link-powderblue {
color: #B0E0E6;
}
.link-powderblue:hover, .link-powderblue:focus {
color: #c0e6eb;
}
.link-rebeccapurple {
color: #663399;
}
.link-rebeccapurple:hover, .link-rebeccapurple:focus {
color: #52297a;
}
.link-rosybrown {
color: #BC8F8F;
}
.link-rosybrown:hover, .link-rosybrown:focus {
color: #c9a5a5;
}
.link-royalblue {
color: #4169E1;
}
.link-royalblue:hover, .link-royalblue:focus {
color: #3454b4;
}
.link-saddlebrown {
color: #8B4513;
}
.link-saddlebrown:hover, .link-saddlebrown:focus {
color: #6f370f;
}
.link-salmon {
color: #FA8072;
}
.link-salmon:hover, .link-salmon:focus {
color: #fb998e;
}
.link-sandybrown {
color: #F4A460;
}
.link-sandybrown:hover, .link-sandybrown:focus {
color: #f6b680;
}
.link-seagreen {
color: #2E8B57;
}
.link-seagreen:hover, .link-seagreen:focus {
color: #58a279;
}
.link-seashell {
color: #FFF5EE;
}
.link-seashell:hover, .link-seashell:focus {
color: #fff7f1;
}
.link-sienna {
color: #A0522D;
}
.link-sienna:hover, .link-sienna:focus {
color: #804224;
}
.link-silver {
color: #C0C0C0;
}
.link-silver:hover, .link-silver:focus {
color: #cdcdcd;
}
.link-skyblue {
color: #87CEEB;
}
.link-skyblue:hover, .link-skyblue:focus {
color: #9fd8ef;
}
.link-slateblue {
color: #6A5ACD;
}
.link-slateblue:hover, .link-slateblue:focus {
color: #5548a4;
}
.link-slategray {
color: #708090;
}
.link-slategray:hover, .link-slategray:focus {
color: #8d99a6;
}
.link-slategrey {
color: #708090;
}
.link-slategrey:hover, .link-slategrey:focus {
color: #8d99a6;
}
.link-snow {
color: #FFFAFA;
}
.link-snow:hover, .link-snow:focus {
color: #fffbfb;
}
.link-springgreen {
color: #00FF7F;
}
.link-springgreen:hover, .link-springgreen:focus {
color: #33ff99;
}
.link-steelblue {
color: #4682B4;
}
.link-steelblue:hover, .link-steelblue:focus {
color: #6b9bc3;
}
.link-tan {
color: #D2B48C;
}
.link-tan:hover, .link-tan:focus {
color: #dbc3a3;
}
.link-thistle {
color: #D8BFD8;
}
.link-thistle:hover, .link-thistle:focus {
color: #e0cce0;
}
.link-tomato {
color: #FF6347;
}
.link-tomato:hover, .link-tomato:focus {
color: #ff826c;
}
.link-turquoise {
color: #40E0D0;
}
.link-turquoise:hover, .link-turquoise:focus {
color: #66e6d9;
}
.link-violet {
color: #EE82EE;
}
.link-violet:hover, .link-violet:focus {
color: #f19bf1;
}
.link-wheat {
color: #F5DEB3;
}
.link-wheat:hover, .link-wheat:focus {
color: #f7e5c2;
}
.link-whitesmoke {
color: #F5F5F5;
}
.link-whitesmoke:hover, .link-whitesmoke:focus {
color: #f7f7f7;
}
.link-yellowgreen {
color: #9ACD32;
}
.link-yellowgreen:hover, .link-yellowgreen:focus {
color: #aed75b;
}
.ratio {
position: relative;
width: 100%;
}
.ratio::before {
display: block;
padding-top: var(--bs-aspect-ratio);
content: "";
}
.ratio > * {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ratio-1x1 {
--bs-aspect-ratio: 100%;
}
.ratio-4x3 {
--bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
--bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
--bs-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;
}
}
.hstack {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.vstack {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
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;
}
.vr {
display: inline-block;
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
width: 1px;
min-height: 1em;
background-color: currentColor;
opacity: 0.25;
}
.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;
}
.opacity-0 {
opacity: 0 !important;
}
.opacity-25 {
opacity: 0.25 !important;
}
.opacity-50 {
opacity: 0.5 !important;
}
.opacity-75 {
opacity: 0.75 !important;
}
.opacity-100 {
opacity: 1 !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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.shadow {
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
-webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
-webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
-webkit-box-shadow: none !important;
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 {
-webkit-transform: translate(-50%, -50%) !important;
transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
-webkit-transform: translateX(-50%) !important;
transform: translateX(-50%) !important;
}
.translate-middle-y {
-webkit-transform: translateY(-50%) !important;
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-white {
border-color: #fff !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 {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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;
}
.font-monospace {
font-family: var(--bs-font-monospace) !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;
}
.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;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-decoration-none {
text-decoration: none !important;
}
.text-decoration-underline {
text-decoration: underline !important;
}
.text-decoration-line-through {
text-decoration: line-through !important;
}
.text-lowercase {
text-transform: lowercase !important;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: capitalize !important;
}
.text-wrap {
white-space: normal !important;
}
.text-nowrap {
white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
word-wrap: break-word !important;
word-break: break-word !important;
}
/* rtl:end:remove */
.text-primary {
--bs-text-opacity: 1;
color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
--bs-text-opacity: 1;
color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
--bs-text-opacity: 1;
color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
--bs-text-opacity: 1;
color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
--bs-text-opacity: 1;
color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
--bs-text-opacity: 1;
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
--bs-text-opacity: 1;
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
--bs-text-opacity: 1;
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
--bs-text-opacity: 1;
color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
--bs-text-opacity: 1;
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
--bs-text-opacity: 1;
color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
--bs-text-opacity: 1;
color: #6c757d !important;
}
.text-black-50 {
--bs-text-opacity: 1;
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
--bs-text-opacity: 1;
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
--bs-text-opacity: 1;
color: inherit !important;
}
.text-opacity-25 {
--bs-text-opacity: 0.25;
}
.text-opacity-50 {
--bs-text-opacity: 0.5;
}
.text-opacity-75 {
--bs-text-opacity: 0.75;
}
.text-opacity-100 {
--bs-text-opacity: 1;
}
.bg-primary {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
--bs-bg-opacity: 1;
background-color: transparent !important;
}
.bg-opacity-10 {
--bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
--bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
--bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
--bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
--bs-bg-opacity: 1;
}
.bg-gradient {
background-image: var(--bs-gradient) !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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-sm-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-sm-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-sm-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-sm-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-sm-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-sm-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-sm-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-sm-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-sm-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-sm-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-sm-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-sm-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-sm-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-sm-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-sm-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-sm-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-sm-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-sm-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-sm-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-sm-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-sm-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-sm-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-sm-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-sm-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-sm-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-sm-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-sm-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-sm-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-sm-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-sm-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-sm-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-sm-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-sm-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-sm-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-sm-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-md-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-md-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-md-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-md-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-md-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-md-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-md-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-md-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-md-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-md-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-md-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-md-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-md-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-md-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-md-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-md-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-md-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-md-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-md-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-md-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-md-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-md-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-md-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-md-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-md-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-md-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-md-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-md-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-md-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-md-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-md-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-md-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-md-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-md-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-md-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-md-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-md-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-lg-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-lg-none {
display: none !important;
}
.flex-lg-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-lg-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-lg-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-lg-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-lg-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-lg-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-lg-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-lg-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-lg-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-lg-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-lg-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-lg-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-lg-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-lg-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-lg-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-lg-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-lg-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-lg-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-lg-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-lg-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-lg-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-lg-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-lg-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-lg-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-lg-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-lg-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-lg-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-lg-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-lg-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-lg-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-lg-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-lg-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-lg-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-lg-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-lg-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-lg-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-xl-none {
display: none !important;
}
.flex-xl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-xl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-xl-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-xl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-xl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-xl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-xl-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-xl-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-xl-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-xl-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-xl-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-xl-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-xl-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-xl-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-xxl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-xxl-none {
display: none !important;
}
.flex-xxl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xxl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xxl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xxl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xxl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.flex-xxl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
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 {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xxl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xxl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xxl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xxl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
-webkit-box-pack: space-evenly !important;
-ms-flex-pack: space-evenly !important;
justify-content: space-evenly !important;
}
.align-items-xxl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xxl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xxl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xxl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xxl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xxl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xxl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xxl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xxl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xxl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xxl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xxl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}
.align-self-xxl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xxl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xxl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}
.align-self-xxl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xxl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
.order-xxl-first {
-webkit-box-ordinal-group: 0 !important;
-ms-flex-order: -1 !important;
order: -1 !important;
}
.order-xxl-0 {
-webkit-box-ordinal-group: 1 !important;
-ms-flex-order: 0 !important;
order: 0 !important;
}
.order-xxl-1 {
-webkit-box-ordinal-group: 2 !important;
-ms-flex-order: 1 !important;
order: 1 !important;
}
.order-xxl-2 {
-webkit-box-ordinal-group: 3 !important;
-ms-flex-order: 2 !important;
order: 2 !important;
}
.order-xxl-3 {
-webkit-box-ordinal-group: 4 !important;
-ms-flex-order: 3 !important;
order: 3 !important;
}
.order-xxl-4 {
-webkit-box-ordinal-group: 5 !important;
-ms-flex-order: 4 !important;
order: 4 !important;
}
.order-xxl-5 {
-webkit-box-ordinal-group: 6 !important;
-ms-flex-order: 5 !important;
order: 5 !important;
}
.order-xxl-last {
-webkit-box-ordinal-group: 7 !important;
-ms-flex-order: 6 !important;
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;
}
}
@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: -ms-grid !important;
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: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.d-print-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
.d-print-none {
display: none !important;
}
}
/*# sourceMappingURL=styles.css.map */ | 0.458591 | 0.109182 |
.top {
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
height: 100%;
}
#bigScreen {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: -webkit-linear-gradient(90deg, rgb(0, 0, 0), rgb(68, 2, 160), rgb(68, 2, 160));
height: 100%;
width: 100%;
z-index: -100;
display: flex;
align-items: center;
justify-content: center;
}
#bigQuote {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
font-size: 17vw;
width: 90%;
font-weight: 900;
}
#myDescription {
position: 100%;
}
.myInfoTitle {
font-size: 26px;
}
.myInfo {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.myInfo h3,
.myInfo ul {
margin: 0px;
}
.myInfo p {
margin: 5px 0px;
text-align: justify;
}
.myInfo div {
border-radius: 20px;
padding: 20px;
margin-bottom: 20px;
width: 45%;
height: auto;
font-size: 18px;
}
.myInfo#skillsSection {
justify-content: space-evenly;
}
.myInfo#skillsSection div {
background: white;
color: black;
width: auto;
align-items: center;
display: flex;
flex-direction: column;
padding: 15px;
flex-wrap: wrap;
margin: 10px;
}
.myInfo#skillsSection img {
width: 40px;
}
.myInfo#educationSection div {
background: -webkit-linear-gradient(
45deg,
rgb(125, 26, 227),
rgb(0, 123, 230)
);
}
.myInfo#honorsSection div {
background: white;
color: black;
}
.myInfo#honorsSection h3 {
background: -webkit-linear-gradient(45deg, rgb(124, 50, 244), rgb(0, 187, 255));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.myInfo#activitiesSection div {
background-image: linear-gradient( 109.8deg, rgba(62,5,116,1) -5.2%, rgb(52, 28, 148) -5.2%, rgb(118, 57, 215) 103.3% );
}
/***********************************
MARK: - Responsive
***********************************/
@media screen and (max-width: 950px) {
.myInfo div {
width: 100%;
}
}
/***********************************
MARK: - Animations
***********************************/
#bigQuote {
-webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 3s; /* Firefox < 16 */
-ms-animation: fadein 3s; /* Internet Explorer */
-o-animation: fadein 3s; /* Opera < 12.1 */
animation: fadein 3s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#scrollIndicator {
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
width: 25%;
height: 90px;
bottom: 0px;
left: 50%;
-ms-transform: translate(-50%, 0%);
transform: translate(-50%, 0%);
}
#scrollIndicator span {
width: 40px;
height: 40px;
border-left: 2px solid #fff;
border-bottom: 2px solid #fff;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: sdb05 3s infinite;
animation: sdb05 3s infinite;
box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
0% {
-webkit-transform: rotate(-45deg) translate(0, 0);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
-webkit-transform: rotate(-45deg) translate(-20px, 20px);
opacity: 0;
}
}
@keyframes sdb05 {
0% {
transform: rotate(-45deg) translate(0, 0);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: rotate(-45deg) translate(-20px, 20px);
opacity: 0;
}
} | public/css/index.css | .top {
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
height: 100%;
}
#bigScreen {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: -webkit-linear-gradient(90deg, rgb(0, 0, 0), rgb(68, 2, 160), rgb(68, 2, 160));
height: 100%;
width: 100%;
z-index: -100;
display: flex;
align-items: center;
justify-content: center;
}
#bigQuote {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
font-size: 17vw;
width: 90%;
font-weight: 900;
}
#myDescription {
position: 100%;
}
.myInfoTitle {
font-size: 26px;
}
.myInfo {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.myInfo h3,
.myInfo ul {
margin: 0px;
}
.myInfo p {
margin: 5px 0px;
text-align: justify;
}
.myInfo div {
border-radius: 20px;
padding: 20px;
margin-bottom: 20px;
width: 45%;
height: auto;
font-size: 18px;
}
.myInfo#skillsSection {
justify-content: space-evenly;
}
.myInfo#skillsSection div {
background: white;
color: black;
width: auto;
align-items: center;
display: flex;
flex-direction: column;
padding: 15px;
flex-wrap: wrap;
margin: 10px;
}
.myInfo#skillsSection img {
width: 40px;
}
.myInfo#educationSection div {
background: -webkit-linear-gradient(
45deg,
rgb(125, 26, 227),
rgb(0, 123, 230)
);
}
.myInfo#honorsSection div {
background: white;
color: black;
}
.myInfo#honorsSection h3 {
background: -webkit-linear-gradient(45deg, rgb(124, 50, 244), rgb(0, 187, 255));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.myInfo#activitiesSection div {
background-image: linear-gradient( 109.8deg, rgba(62,5,116,1) -5.2%, rgb(52, 28, 148) -5.2%, rgb(118, 57, 215) 103.3% );
}
/***********************************
MARK: - Responsive
***********************************/
@media screen and (max-width: 950px) {
.myInfo div {
width: 100%;
}
}
/***********************************
MARK: - Animations
***********************************/
#bigQuote {
-webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 3s; /* Firefox < 16 */
-ms-animation: fadein 3s; /* Internet Explorer */
-o-animation: fadein 3s; /* Opera < 12.1 */
animation: fadein 3s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#scrollIndicator {
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
width: 25%;
height: 90px;
bottom: 0px;
left: 50%;
-ms-transform: translate(-50%, 0%);
transform: translate(-50%, 0%);
}
#scrollIndicator span {
width: 40px;
height: 40px;
border-left: 2px solid #fff;
border-bottom: 2px solid #fff;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: sdb05 3s infinite;
animation: sdb05 3s infinite;
box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
0% {
-webkit-transform: rotate(-45deg) translate(0, 0);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
-webkit-transform: rotate(-45deg) translate(-20px, 20px);
opacity: 0;
}
}
@keyframes sdb05 {
0% {
transform: rotate(-45deg) translate(0, 0);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: rotate(-45deg) translate(-20px, 20px);
opacity: 0;
}
} | 0.552298 | 0.112795 |
@CHARSET "UTF-8";
.placeholder {
outline: 1px dashed #4183C4;
/*-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
margin: -1px;*/
}
.mjs-nestedSortable-error {
background: #fbe3e4;
border-color: transparent;
}
ol {
margin: 0;
padding: 0;
padding-left: 30px;
}
ol.sortable, ol.sortable ol {
margin: 0 0 0 25px;
padding: 0;
list-style-type: none;
}
ol.sortable {
margin: 4em 0;
}
.sortable li {
margin: 5px 0 0 0;
padding: 0;
}
.sortable li div {
border: 1px solid #d4d4d4;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-color: #D4D4D4 #D4D4D4 #BCBCBC;
padding: 6px;
margin: 0;
cursor: move;
background: #f6f6f6;
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed));
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
}
.sortable li.mjs-nestedSortable-branch div {
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #f0ece9 100%);
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#f0ece9 100%);
}
.sortable li.mjs-nestedSortable-leaf div {
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #bcccbc 100%);
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#bcccbc 100%);
}
li.mjs-nestedSortable-collapsed.mjs-nestedSortable-hovering div {
border-color: #999;
background: #fafafa;
}
.disclose {
cursor: pointer;
width: 10px;
display: none;
}
.sortable li.mjs-nestedSortable-collapsed > ol {
display: none;
}
.sortable li.mjs-nestedSortable-branch > div > .disclose {
display: inline-block;
}
.sortable li.mjs-nestedSortable-collapsed > div > .disclose > span:before {
content: '+ ';
}
.sortable li.mjs-nestedSortable-expanded > div > .disclose > span:before {
content: '- ';
} | html/css/admin.css | @CHARSET "UTF-8";
.placeholder {
outline: 1px dashed #4183C4;
/*-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
margin: -1px;*/
}
.mjs-nestedSortable-error {
background: #fbe3e4;
border-color: transparent;
}
ol {
margin: 0;
padding: 0;
padding-left: 30px;
}
ol.sortable, ol.sortable ol {
margin: 0 0 0 25px;
padding: 0;
list-style-type: none;
}
ol.sortable {
margin: 4em 0;
}
.sortable li {
margin: 5px 0 0 0;
padding: 0;
}
.sortable li div {
border: 1px solid #d4d4d4;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-color: #D4D4D4 #D4D4D4 #BCBCBC;
padding: 6px;
margin: 0;
cursor: move;
background: #f6f6f6;
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed));
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
}
.sortable li.mjs-nestedSortable-branch div {
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #f0ece9 100%);
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#f0ece9 100%);
}
.sortable li.mjs-nestedSortable-leaf div {
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #bcccbc 100%);
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#bcccbc 100%);
}
li.mjs-nestedSortable-collapsed.mjs-nestedSortable-hovering div {
border-color: #999;
background: #fafafa;
}
.disclose {
cursor: pointer;
width: 10px;
display: none;
}
.sortable li.mjs-nestedSortable-collapsed > ol {
display: none;
}
.sortable li.mjs-nestedSortable-branch > div > .disclose {
display: inline-block;
}
.sortable li.mjs-nestedSortable-collapsed > div > .disclose > span:before {
content: '+ ';
}
.sortable li.mjs-nestedSortable-expanded > div > .disclose > span:before {
content: '- ';
} | 0.270673 | 0.131006 |
[class*="col-"] {
width: 100%;
}
@media only screen and (min-width: 600px) {
/* For tablets: */
.col-s-1 {width: 8.33%;}
.col-s-2 {width: 16.66%;}
.col-s-3 {width: 25%;}
.col-s-4 {width: 33.33%;}
.col-s-5 {width: 41.66%;}
.col-s-6 {width: 50%;}
.col-s-7 {width: 58.33%;}
.col-s-8 {width: 66.66%;}
.col-s-9 {width: 75%;}
.col-s-10 {width: 83.33%;}
.col-s-11 {width: 91.66%;}
.col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}
table th {
color: blanchedalmond;
padding: 5px;
text-justify: auto;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
table{
background-color: rgb(219, 184, 118);
width: 100%;
padding: 4px;
}
body{
background-image: url(https://i.kym-cdn.com/entries/icons/original/000/037/848/cover2.jpg);
background-size: cover;
margin: 0%;
height: 166px;
}
@media screen and (max-width: 300px){
body {background-image: url(https://i.kym-cdn.com/entries/icons/original/000/037/848/cover2.jpg);
background-size: cover;
}
}
.img-in-text{
height: 166px ;
padding-left: 2%;
}
@media screen and (min){
}
th :hover {
background-color: rgba(0, 0, 0, 0.3);
}
h1{
background-color: sandybrown;
margin: 0px;
padding: 6px;
font-family: cursive;
}
.op2{
text-decoration: none;
color: snow;
}
.op{
list-style: none;
text-decoration: none;
color: #ffff;
border-collapse: collapse;
}
th :hover {
background-color: rgba(0, 0, 0, 0.3);
}
.op2{
text-decoration: none;
color: snow;
}
.op{
list-style: none;
text-decoration: none;
color: #ffff;
border-collapse: collapse;
}
table th {
color: blanchedalmond;
padding: 5px;
text-justify: auto;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
table{
background-color: rgb(219, 184, 118);
width: 100%;
padding: 4px;
}
.tit-insc{
text-justify: auto;
font-family: cursive;
padding-left: 3%;
}
.termos{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #ffff;
}
.termos :hover{
background-color: rgba(255, 248, 248, 0.3);
}
h2 {
color: antiquewhite;
}
.termo-um{
color: beige;
padding-block-start: 50px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.regras{
background-color: #ffff;
color: black;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 10px;
padding: 10px;
}
.tit-tit{
font-size: x-large;
color: blanchedalmond;
}
.ficha{
color: #ffff;
padding-left: 6%;
}
.ft{
color: #ffff;
}
.ft2{
color: #ffff;
}
.section-um{
padding: 20px;
padding-block-start: 0%;
padding-block-end: 0%;
}
.section-dois{
padding-left: 5%;
}
.img1{
font-size: 0%;
width: 300px;
height: 300px;
padding-left: 5%;
} | assets/css/styles.css | [class*="col-"] {
width: 100%;
}
@media only screen and (min-width: 600px) {
/* For tablets: */
.col-s-1 {width: 8.33%;}
.col-s-2 {width: 16.66%;}
.col-s-3 {width: 25%;}
.col-s-4 {width: 33.33%;}
.col-s-5 {width: 41.66%;}
.col-s-6 {width: 50%;}
.col-s-7 {width: 58.33%;}
.col-s-8 {width: 66.66%;}
.col-s-9 {width: 75%;}
.col-s-10 {width: 83.33%;}
.col-s-11 {width: 91.66%;}
.col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}
table th {
color: blanchedalmond;
padding: 5px;
text-justify: auto;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
table{
background-color: rgb(219, 184, 118);
width: 100%;
padding: 4px;
}
body{
background-image: url(https://i.kym-cdn.com/entries/icons/original/000/037/848/cover2.jpg);
background-size: cover;
margin: 0%;
height: 166px;
}
@media screen and (max-width: 300px){
body {background-image: url(https://i.kym-cdn.com/entries/icons/original/000/037/848/cover2.jpg);
background-size: cover;
}
}
.img-in-text{
height: 166px ;
padding-left: 2%;
}
@media screen and (min){
}
th :hover {
background-color: rgba(0, 0, 0, 0.3);
}
h1{
background-color: sandybrown;
margin: 0px;
padding: 6px;
font-family: cursive;
}
.op2{
text-decoration: none;
color: snow;
}
.op{
list-style: none;
text-decoration: none;
color: #ffff;
border-collapse: collapse;
}
th :hover {
background-color: rgba(0, 0, 0, 0.3);
}
.op2{
text-decoration: none;
color: snow;
}
.op{
list-style: none;
text-decoration: none;
color: #ffff;
border-collapse: collapse;
}
table th {
color: blanchedalmond;
padding: 5px;
text-justify: auto;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
table{
background-color: rgb(219, 184, 118);
width: 100%;
padding: 4px;
}
.tit-insc{
text-justify: auto;
font-family: cursive;
padding-left: 3%;
}
.termos{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #ffff;
}
.termos :hover{
background-color: rgba(255, 248, 248, 0.3);
}
h2 {
color: antiquewhite;
}
.termo-um{
color: beige;
padding-block-start: 50px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.regras{
background-color: #ffff;
color: black;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 10px;
padding: 10px;
}
.tit-tit{
font-size: x-large;
color: blanchedalmond;
}
.ficha{
color: #ffff;
padding-left: 6%;
}
.ft{
color: #ffff;
}
.ft2{
color: #ffff;
}
.section-um{
padding: 20px;
padding-block-start: 0%;
padding-block-end: 0%;
}
.section-dois{
padding-left: 5%;
}
.img1{
font-size: 0%;
width: 300px;
height: 300px;
padding-left: 5%;
} | 0.340924 | 0.152694 |
/** light mode **/
/* Tomorrow Comment */
.hljs-comment,
.hljs-quote {
color: #8e908c;
}
/* Tomorrow Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
color: #c82829;
}
/* Tomorrow Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
color: #f5871f;
}
/* Tomorrow Yellow */
.hljs-attribute {
color: #eab700;
}
/* Tomorrow Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #718c00;
}
/* Tomorrow Blue */
.hljs-title,
.hljs-section {
color: #4271ae;
}
/* Tomorrow Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #8959a8;
}
.hljs {
display: block;
overflow-x: auto;
background: white;
color: #4d4d4c;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
:root section.dark .hljs-comment,
:root section.dark .hljs-quote {
color: #8e908c;
}
/* Tomorrow Red */
:root section.dark .hljs-variable,
:root section.dark .hljs-template-variable,
:root section.dark .hljs-tag,
:root section.dark .hljs-name,
:root section.dark .hljs-selector-id,
:root section.dark .hljs-selector-class,
:root section.dark .hljs-regexp,
:root section.dark .hljs-deletion {
color: #c82829;
}
/* Tomorrow Orange */
:root section.dark .hljs-number,
:root section.dark .hljs-built_in,
:root section.dark .hljs-builtin-name,
:root section.dark .hljs-literal,
:root section.dark .hljs-type,
:root section.dark .hljs-params,
:root section.dark .hljs-meta,
:root section.dark .hljs-link {
color: #f5871f;
}
/* Tomorrow Yellow */
:root section.dark .hljs-attribute {
color: #eab700;
}
/* Tomorrow Green */
:root section.dark .hljs-string,
:root section.dark .hljs-symbol,
:root section.dark .hljs-bullet,
:root section.dark .hljs-addition {
color: #718c00;
}
/* Tomorrow Blue */
:root section.dark .hljs-title,
:root section.dark .hljs-section {
color: #4271ae;
}
/* Tomorrow Purple */
:root section.dark .hljs-keyword,
:root section.dark .hljs-selector-tag {
color: #8959a8;
}
:root section.dark .hljs {
display: block;
overflow-x: auto;
background: white;
color: #4d4d4c;
padding: 0.5em;
}
:root section.dark .hljs-emphasis {
font-style: italic;
}
:root section.dark .hljs-strong {
font-weight: bold;
}
:root.light .hljs-comment,
:root.light .hljs-quote {
color: #8e908c;
}
/* Tomorrow Red */
:root.light .hljs-variable,
:root.light .hljs-template-variable,
:root.light .hljs-tag,
:root.light .hljs-name,
:root.light .hljs-selector-id,
:root.light .hljs-selector-class,
:root.light .hljs-regexp,
:root.light .hljs-deletion {
color: #c82829;
}
/* Tomorrow Orange */
:root.light .hljs-number,
:root.light .hljs-built_in,
:root.light .hljs-builtin-name,
:root.light .hljs-literal,
:root.light .hljs-type,
:root.light .hljs-params,
:root.light .hljs-meta,
:root.light .hljs-link {
color: #f5871f;
}
/* Tomorrow Yellow */
:root.light .hljs-attribute {
color: #eab700;
}
/* Tomorrow Green */
:root.light .hljs-string,
:root.light .hljs-symbol,
:root.light .hljs-bullet,
:root.light .hljs-addition {
color: #718c00;
}
/* Tomorrow Blue */
:root.light .hljs-title,
:root.light .hljs-section {
color: #4271ae;
}
/* Tomorrow Purple */
:root.light .hljs-keyword,
:root.light .hljs-selector-tag {
color: #8959a8;
}
:root.light .hljs {
display: block;
overflow-x: auto;
background: white;
color: #4d4d4c;
padding: 0.5em;
}
:root.light .hljs-emphasis {
font-style: italic;
}
:root.light .hljs-strong {
font-weight: bold;
}
@media (prefers-color-scheme: dark) {
/* Tomorrow Night Theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Tomorrow Comment */
.hljs-comment,
.hljs-quote {
color: #969896;
}
/* Tomorrow Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
color: #cc6666;
}
/* Tomorrow Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
color: #de935f;
}
/* Tomorrow Yellow */
.hljs-attribute {
color: #f0c674;
}
/* Tomorrow Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #b5bd68;
}
/* Tomorrow Blue */
.hljs-title,
.hljs-section {
color: #81a2be;
}
/* Tomorrow Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #b294bb;
}
.hljs {
display: block;
overflow-x: auto;
background: #1d1f21;
color: #c5c8c6;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
}
/** dark override **/
/* Tomorrow Night Theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Tomorrow Comment */
:root.dark .hljs-comment,
:root.dark .hljs-quote {
color: #969896;
}
/* Tomorrow Red */
:root.dark .hljs-variable,
:root.dark .hljs-template-variable,
:root.dark .hljs-tag,
:root.dark .hljs-name,
:root.dark .hljs-selector-id,
:root.dark .hljs-selector-class,
:root.dark .hljs-regexp,
:root.dark .hljs-deletion {
color: #cc6666;
}
/* Tomorrow Orange */
:root.dark .hljs-number,
:root.dark .hljs-built_in,
:root.dark .hljs-builtin-name,
:root.dark .hljs-literal,
:root.dark .hljs-type,
:root.dark .hljs-params,
:root.dark .hljs-meta,
:root.dark .hljs-link {
color: #de935f;
}
/* Tomorrow Yellow */
:root.dark .hljs-attribute {
color: #f0c674;
}
/* Tomorrow Green */
:root.dark .hljs-string,
:root.dark .hljs-symbol,
:root.dark .hljs-bullet,
:root.dark .hljs-addition {
color: #b5bd68;
}
/* Tomorrow Blue */
:root.dark .hljs-title,
:root.dark .hljs-section {
color: #81a2be;
}
/* Tomorrow Purple */
:root.dark .hljs-keyword,
:root.dark .hljs-selector-tag {
color: #b294bb;
}
:root.dark .hljs {
display: block;
overflow-x: auto;
background: #1d1f21;
color: #c5c8c6;
padding: 0.5em;
}
:root.dark .hljs-emphasis {
font-style: italic;
}
:root.dark .hljs-strong {
font-weight: bold;
}
:root section.dark .hljs-comment,
:root section.dark .hljs-quote {
color: #969896;
}
/* Tomorrow Red */
:root section.dark .hljs-variable,
:root section.dark .hljs-template-variable,
:root section.dark .hljs-tag,
:root section.dark .hljs-name,
:root section.dark .hljs-selector-id,
:root section.dark .hljs-selector-class,
:root section.dark .hljs-regexp,
:root section.dark .hljs-deletion {
color: #cc6666;
}
/* Tomorrow Orange */
:root section.dark .hljs-number,
:root section.dark .hljs-built_in,
:root section.dark .hljs-builtin-name,
:root section.dark .hljs-literal,
:root section.dark .hljs-type,
:root section.dark .hljs-params,
:root section.dark .hljs-meta,
:root section.dark .hljs-link {
color: #de935f;
}
/* Tomorrow Yellow */
:root section.dark .hljs-attribute {
color: #f0c674;
}
/* Tomorrow Green */
:root section.dark .hljs-string,
:root section.dark .hljs-symbol,
:root section.dark .hljs-bullet,
:root section.dark .hljs-addition {
color: #b5bd68;
}
/* Tomorrow Blue */
:root section.dark .hljs-title,
:root section.dark .hljs-section {
color: #81a2be;
}
/* Tomorrow Purple */
:root section.dark .hljs-keyword,
:root section.dark .hljs-selector-tag {
color: #b294bb;
}
:root section.dark .hljs {
display: block;
overflow-x: auto;
background: #1d1f21;
color: #c5c8c6;
padding: 0.5em;
}
:root section.dark .hljs-emphasis {
font-style: italic;
}
:root section.dark .hljs-strong {
font-weight: bold;
} | decks/_reveal.js/plugin/highlight/tomorrow.css |
/** light mode **/
/* Tomorrow Comment */
.hljs-comment,
.hljs-quote {
color: #8e908c;
}
/* Tomorrow Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
color: #c82829;
}
/* Tomorrow Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
color: #f5871f;
}
/* Tomorrow Yellow */
.hljs-attribute {
color: #eab700;
}
/* Tomorrow Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #718c00;
}
/* Tomorrow Blue */
.hljs-title,
.hljs-section {
color: #4271ae;
}
/* Tomorrow Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #8959a8;
}
.hljs {
display: block;
overflow-x: auto;
background: white;
color: #4d4d4c;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
:root section.dark .hljs-comment,
:root section.dark .hljs-quote {
color: #8e908c;
}
/* Tomorrow Red */
:root section.dark .hljs-variable,
:root section.dark .hljs-template-variable,
:root section.dark .hljs-tag,
:root section.dark .hljs-name,
:root section.dark .hljs-selector-id,
:root section.dark .hljs-selector-class,
:root section.dark .hljs-regexp,
:root section.dark .hljs-deletion {
color: #c82829;
}
/* Tomorrow Orange */
:root section.dark .hljs-number,
:root section.dark .hljs-built_in,
:root section.dark .hljs-builtin-name,
:root section.dark .hljs-literal,
:root section.dark .hljs-type,
:root section.dark .hljs-params,
:root section.dark .hljs-meta,
:root section.dark .hljs-link {
color: #f5871f;
}
/* Tomorrow Yellow */
:root section.dark .hljs-attribute {
color: #eab700;
}
/* Tomorrow Green */
:root section.dark .hljs-string,
:root section.dark .hljs-symbol,
:root section.dark .hljs-bullet,
:root section.dark .hljs-addition {
color: #718c00;
}
/* Tomorrow Blue */
:root section.dark .hljs-title,
:root section.dark .hljs-section {
color: #4271ae;
}
/* Tomorrow Purple */
:root section.dark .hljs-keyword,
:root section.dark .hljs-selector-tag {
color: #8959a8;
}
:root section.dark .hljs {
display: block;
overflow-x: auto;
background: white;
color: #4d4d4c;
padding: 0.5em;
}
:root section.dark .hljs-emphasis {
font-style: italic;
}
:root section.dark .hljs-strong {
font-weight: bold;
}
:root.light .hljs-comment,
:root.light .hljs-quote {
color: #8e908c;
}
/* Tomorrow Red */
:root.light .hljs-variable,
:root.light .hljs-template-variable,
:root.light .hljs-tag,
:root.light .hljs-name,
:root.light .hljs-selector-id,
:root.light .hljs-selector-class,
:root.light .hljs-regexp,
:root.light .hljs-deletion {
color: #c82829;
}
/* Tomorrow Orange */
:root.light .hljs-number,
:root.light .hljs-built_in,
:root.light .hljs-builtin-name,
:root.light .hljs-literal,
:root.light .hljs-type,
:root.light .hljs-params,
:root.light .hljs-meta,
:root.light .hljs-link {
color: #f5871f;
}
/* Tomorrow Yellow */
:root.light .hljs-attribute {
color: #eab700;
}
/* Tomorrow Green */
:root.light .hljs-string,
:root.light .hljs-symbol,
:root.light .hljs-bullet,
:root.light .hljs-addition {
color: #718c00;
}
/* Tomorrow Blue */
:root.light .hljs-title,
:root.light .hljs-section {
color: #4271ae;
}
/* Tomorrow Purple */
:root.light .hljs-keyword,
:root.light .hljs-selector-tag {
color: #8959a8;
}
:root.light .hljs {
display: block;
overflow-x: auto;
background: white;
color: #4d4d4c;
padding: 0.5em;
}
:root.light .hljs-emphasis {
font-style: italic;
}
:root.light .hljs-strong {
font-weight: bold;
}
@media (prefers-color-scheme: dark) {
/* Tomorrow Night Theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Tomorrow Comment */
.hljs-comment,
.hljs-quote {
color: #969896;
}
/* Tomorrow Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
color: #cc6666;
}
/* Tomorrow Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
color: #de935f;
}
/* Tomorrow Yellow */
.hljs-attribute {
color: #f0c674;
}
/* Tomorrow Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #b5bd68;
}
/* Tomorrow Blue */
.hljs-title,
.hljs-section {
color: #81a2be;
}
/* Tomorrow Purple */
.hljs-keyword,
.hljs-selector-tag {
color: #b294bb;
}
.hljs {
display: block;
overflow-x: auto;
background: #1d1f21;
color: #c5c8c6;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
}
/** dark override **/
/* Tomorrow Night Theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Tomorrow Comment */
:root.dark .hljs-comment,
:root.dark .hljs-quote {
color: #969896;
}
/* Tomorrow Red */
:root.dark .hljs-variable,
:root.dark .hljs-template-variable,
:root.dark .hljs-tag,
:root.dark .hljs-name,
:root.dark .hljs-selector-id,
:root.dark .hljs-selector-class,
:root.dark .hljs-regexp,
:root.dark .hljs-deletion {
color: #cc6666;
}
/* Tomorrow Orange */
:root.dark .hljs-number,
:root.dark .hljs-built_in,
:root.dark .hljs-builtin-name,
:root.dark .hljs-literal,
:root.dark .hljs-type,
:root.dark .hljs-params,
:root.dark .hljs-meta,
:root.dark .hljs-link {
color: #de935f;
}
/* Tomorrow Yellow */
:root.dark .hljs-attribute {
color: #f0c674;
}
/* Tomorrow Green */
:root.dark .hljs-string,
:root.dark .hljs-symbol,
:root.dark .hljs-bullet,
:root.dark .hljs-addition {
color: #b5bd68;
}
/* Tomorrow Blue */
:root.dark .hljs-title,
:root.dark .hljs-section {
color: #81a2be;
}
/* Tomorrow Purple */
:root.dark .hljs-keyword,
:root.dark .hljs-selector-tag {
color: #b294bb;
}
:root.dark .hljs {
display: block;
overflow-x: auto;
background: #1d1f21;
color: #c5c8c6;
padding: 0.5em;
}
:root.dark .hljs-emphasis {
font-style: italic;
}
:root.dark .hljs-strong {
font-weight: bold;
}
:root section.dark .hljs-comment,
:root section.dark .hljs-quote {
color: #969896;
}
/* Tomorrow Red */
:root section.dark .hljs-variable,
:root section.dark .hljs-template-variable,
:root section.dark .hljs-tag,
:root section.dark .hljs-name,
:root section.dark .hljs-selector-id,
:root section.dark .hljs-selector-class,
:root section.dark .hljs-regexp,
:root section.dark .hljs-deletion {
color: #cc6666;
}
/* Tomorrow Orange */
:root section.dark .hljs-number,
:root section.dark .hljs-built_in,
:root section.dark .hljs-builtin-name,
:root section.dark .hljs-literal,
:root section.dark .hljs-type,
:root section.dark .hljs-params,
:root section.dark .hljs-meta,
:root section.dark .hljs-link {
color: #de935f;
}
/* Tomorrow Yellow */
:root section.dark .hljs-attribute {
color: #f0c674;
}
/* Tomorrow Green */
:root section.dark .hljs-string,
:root section.dark .hljs-symbol,
:root section.dark .hljs-bullet,
:root section.dark .hljs-addition {
color: #b5bd68;
}
/* Tomorrow Blue */
:root section.dark .hljs-title,
:root section.dark .hljs-section {
color: #81a2be;
}
/* Tomorrow Purple */
:root section.dark .hljs-keyword,
:root section.dark .hljs-selector-tag {
color: #b294bb;
}
:root section.dark .hljs {
display: block;
overflow-x: auto;
background: #1d1f21;
color: #c5c8c6;
padding: 0.5em;
}
:root section.dark .hljs-emphasis {
font-style: italic;
}
:root section.dark .hljs-strong {
font-weight: bold;
} | 0.338952 | 0.061904 |
@charset "utf-8";
/* CSS Document */
.setimg{width:450px;height:250px;}
.setimg img{width:100%;height:100%;}
.setcon{width:450px;height:180px;padding:10px;}
.arrset{margin-left:400px;}
.ef:hover{box-shadow:1px 1px 10px 1px #333;transform:scale(1,1); transition:.5s}
.ef{width:450px;}
.re p{margin-top:80px;}
/*resource*/
.ffrb{background-color:#F3F4F8;height:500px;width:330px;margin-left:20px;}
.ffrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.fsrb{background-color:#F3F4F8;height:500px;width:330px;margin-left:20px;}
.fsrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.ftrb{background-color:#F3F4F8;height:500px;width:330px;margin-left:20px;}
.ftrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
/*second part*/
.sfrb{background-color:#fff;height:400px;width:330px;margin-left:20px;}
.sfrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.ssrb{background-color:#fff;height:400px;width:330px;margin-left:20px;}
.ssrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.strb{background-color:#fff;height:400px;width:330px;margin-left:20px;}
.strb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.pad{padding:30px;}
/**/
@media (min-width:768px) and (max-width:991px)
{
.setimg{width:350px;height:220px;}
.setimg img{width:100%;height:100%;}
.setcon{width:350px;height:180px;padding:10px;}
.ef:hover{box-shadow:1px 1px 10px 1px #333;transform:scale(1,1); transition:.5s}
.ef{width:350px;}
.arrset{margin-left:290px;}
.ffrb{width:230px;height:690px;margin-left:0px;}
.fsrb{width:230px;margin-left:0px;height:690px;}
.ftrb{width:220px;margin-left:0px;height:690px;}
/*second part*/
.sfrb{height:540px;width:230px;margin-left:0px;}
.ssrb{height:540px;width:230px;margin-left:0px;}
.strb{height:540px;width:220px;margin-left:0px;}
}
@media (max-width:767px)
{
.re p{margin-top:10px;}
.setimg{width:280px;height:150px;}
.setimg img{width:100%;height:100%;}
.setcon{width:280px;height:190px;padding:10px;}
.ef:hover{box-shadow:1px 1px 10px 1px #333;transform:scale(1,1); transition:.5s}
.ef{width:280px;}
.arrset{margin-left:220px;}
.ffrb{width:280px;height:460px;margin-left:0px;margin-bottom:30px;}
.fsrb{width:280px;margin-left:0px;height:460px;margin-bottom:30px;}
.ftrb{width:280px;margin-left:0px;height:460px;margin-bottom:30px;}
/*second part*/
.sfrb{height:400px;width:280px;margin-left:0px;margin-bottom:30px;}
.ssrb{height:400px;width:280px;margin-left:0px;margin-bottom:30px;}
.strb{height:400px;width:280px;margin-left:0px;margin-bottom:30px;}
}
@media (min-width:992px) and (max-width:1024px)
{
.ffrb{width:300px;margin-left:5px;}
.fsrb{width:300px;margin-left:5px;}
.ftrb{width:300px;margin-left:5px;}
/*second part*/
.sfrb{height:420px;width:300px;margin-left:5px;}
.ssrb{height:420px;width:300px;margin-left:5px;}
.strb{height:420px;width:300px;margin-left:5px;}
} | assets/webvisitor/css/ree.css | @charset "utf-8";
/* CSS Document */
.setimg{width:450px;height:250px;}
.setimg img{width:100%;height:100%;}
.setcon{width:450px;height:180px;padding:10px;}
.arrset{margin-left:400px;}
.ef:hover{box-shadow:1px 1px 10px 1px #333;transform:scale(1,1); transition:.5s}
.ef{width:450px;}
.re p{margin-top:80px;}
/*resource*/
.ffrb{background-color:#F3F4F8;height:500px;width:330px;margin-left:20px;}
.ffrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.fsrb{background-color:#F3F4F8;height:500px;width:330px;margin-left:20px;}
.fsrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.ftrb{background-color:#F3F4F8;height:500px;width:330px;margin-left:20px;}
.ftrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
/*second part*/
.sfrb{background-color:#fff;height:400px;width:330px;margin-left:20px;}
.sfrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.ssrb{background-color:#fff;height:400px;width:330px;margin-left:20px;}
.ssrb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.strb{background-color:#fff;height:400px;width:330px;margin-left:20px;}
.strb:hover{box-shadow:1px 1px 10px 1px #666;transition:0.5s;}
.pad{padding:30px;}
/**/
@media (min-width:768px) and (max-width:991px)
{
.setimg{width:350px;height:220px;}
.setimg img{width:100%;height:100%;}
.setcon{width:350px;height:180px;padding:10px;}
.ef:hover{box-shadow:1px 1px 10px 1px #333;transform:scale(1,1); transition:.5s}
.ef{width:350px;}
.arrset{margin-left:290px;}
.ffrb{width:230px;height:690px;margin-left:0px;}
.fsrb{width:230px;margin-left:0px;height:690px;}
.ftrb{width:220px;margin-left:0px;height:690px;}
/*second part*/
.sfrb{height:540px;width:230px;margin-left:0px;}
.ssrb{height:540px;width:230px;margin-left:0px;}
.strb{height:540px;width:220px;margin-left:0px;}
}
@media (max-width:767px)
{
.re p{margin-top:10px;}
.setimg{width:280px;height:150px;}
.setimg img{width:100%;height:100%;}
.setcon{width:280px;height:190px;padding:10px;}
.ef:hover{box-shadow:1px 1px 10px 1px #333;transform:scale(1,1); transition:.5s}
.ef{width:280px;}
.arrset{margin-left:220px;}
.ffrb{width:280px;height:460px;margin-left:0px;margin-bottom:30px;}
.fsrb{width:280px;margin-left:0px;height:460px;margin-bottom:30px;}
.ftrb{width:280px;margin-left:0px;height:460px;margin-bottom:30px;}
/*second part*/
.sfrb{height:400px;width:280px;margin-left:0px;margin-bottom:30px;}
.ssrb{height:400px;width:280px;margin-left:0px;margin-bottom:30px;}
.strb{height:400px;width:280px;margin-left:0px;margin-bottom:30px;}
}
@media (min-width:992px) and (max-width:1024px)
{
.ffrb{width:300px;margin-left:5px;}
.fsrb{width:300px;margin-left:5px;}
.ftrb{width:300px;margin-left:5px;}
/*second part*/
.sfrb{height:420px;width:300px;margin-left:5px;}
.ssrb{height:420px;width:300px;margin-left:5px;}
.strb{height:420px;width:300px;margin-left:5px;}
} | 0.162048 | 0.061171 |
.home-mission .mission {
padding: 70px 70px;
}
.home-mission {
background: url("../../../../../img/bg/cliniq.png") no-repeat 50% 50%;
}
.home-mission .background-logo-big {
background: url("../../../../../img/bg/cliniq.png") no-repeat 70% top;
}
.home-mission .mission p {
font-size: 18px;
}
.home-mission .mission h1{
font-family: raleway-bold;
font-size: 46px;
letter-spacing: 2px;
font-weight: 400;
}
.mobile-wrapper .home-mission .mission {
padding: 20px;
}
.mobile-wrapper .home-mission .background-logo {
height: auto;
}
.mobile-wrapper .home-mission .background-logo .btn {
font-size: 16px;
}
.mobile-wrapper .home-mission .mission h1{
padding: 20px;
font-size: 30px;
}
.mobile-wrapper .home-mission .mission p {
font-size: 16px;
}
/*indian*/
.home-mission3 .mission {
padding: 50px 70px;
}
.home-mission3 .mission{
font-family: MyriadProRegular;
font-size: 30px;
letter-spacing: 2px;
}
@media (max-width: 380px) {
.home-mission3 .background-logo {
height: auto;
}
.home-mission3 .background-logo .btn {
font-size: 16px;
}
}
/*ideal*/
/*.home-mission1 {
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
-o-transform: skew(20deg);
transform: skew(20deg);
}*/
/*.home-mission1 {
height: 400px;
}*/
.home-mission1{
background: url("../../../../../img/bg/ideal.jpg") no-repeat top center;
}
.home-mission1 .mission {
padding: 70px;
}
.home-mission1 .mission p {
font-size: 18px;
}
.home-mission1 .mission h1{
font-family: ahellya;
font-size: 46px;
letter-spacing: 2px;
font-weight: 400;
}
@media (max-width: 380px) {
.home-mission1 .background-logo {
height: auto;
}
.home-mission1 .background-logo .btn {
font-size: 16px;
}
.home-mission1 .mission {
padding: 20px;
font-size: 30px;
}
.home-mission1 .mission p {
font-size: 16px;
}
}
/*fashion*/
.home-mission2 .container {
width: 100%;
}
.home-mission2 .mission {
padding-left: 20px;
padding-right: 20px;
border: 50px solid rgba(185, 219, 229, 0.62);
border: 50px solid rgba(226, 226, 226, 0.62);
}
.home-mission2 .mission p {
font-size: 18px;
}
.home-mission2 .mission h1{
font-family: mistral;
font-size: 66px;
letter-spacing: 2px;
font-weight: 400;
}
@media (max-width: 380px) {
.home-mission2 .mission {
border: 20px solid rgba(185, 219, 229, 0.62);
}
}
/*base-indian*/
.home-mission3 .mission {
padding: 50px 70px;
}
.home-mission3 .mission{
/*font-family: HelveticaNeueCyrLight;*/
font-size: 40px;
letter-spacing: 2px;
}
@media (max-width: 380px) {
.home-mission3 .background-logo {
height: auto;
}
.home-mission3 .background-logo .btn {
font-size: 16px;
}
}
/*base-murti*/
.home-mission4 .mission {
padding: 50px 70px;
}
.home-mission4 .mission{
font-family: HelveticaNeueCyrLight;
font-size: 40px;
letter-spacing: 2px;
}
@media (max-width: 380px) {
.home-mission4 .background-logo {
height: auto;
}
.home-mission4 .background-logo .btn {
font-size: 16px;
}
}
.mobile-wrapper .home-mission4 .mission {
padding: 0 10px;
}
/*cake*/
.home-mission5{
background: url("../../../../../img/bg/cake.jpg") no-repeat top center;
}
.home-mission5 .mission {
padding: 20px 70px 50px 70px;
}
.home-mission5 .mission{
font-family: LuganskiyV;
font-size: 40px;
letter-spacing: 2px;
}
.home-mission5 .mission h1{
font-family: Forum_Regular;
}
@media (max-width: 380px) {
.home-mission5 .background-logo {
height: auto;
}
.home-mission5 .background-logo .btn {
font-size: 16px;
}
}
.mobile-wrapper .home-mission5 .mission {
padding: 0 10px;
} | public/views/template/partials/home/banner/old/mission2409.css |
.home-mission .mission {
padding: 70px 70px;
}
.home-mission {
background: url("../../../../../img/bg/cliniq.png") no-repeat 50% 50%;
}
.home-mission .background-logo-big {
background: url("../../../../../img/bg/cliniq.png") no-repeat 70% top;
}
.home-mission .mission p {
font-size: 18px;
}
.home-mission .mission h1{
font-family: raleway-bold;
font-size: 46px;
letter-spacing: 2px;
font-weight: 400;
}
.mobile-wrapper .home-mission .mission {
padding: 20px;
}
.mobile-wrapper .home-mission .background-logo {
height: auto;
}
.mobile-wrapper .home-mission .background-logo .btn {
font-size: 16px;
}
.mobile-wrapper .home-mission .mission h1{
padding: 20px;
font-size: 30px;
}
.mobile-wrapper .home-mission .mission p {
font-size: 16px;
}
/*indian*/
.home-mission3 .mission {
padding: 50px 70px;
}
.home-mission3 .mission{
font-family: MyriadProRegular;
font-size: 30px;
letter-spacing: 2px;
}
@media (max-width: 380px) {
.home-mission3 .background-logo {
height: auto;
}
.home-mission3 .background-logo .btn {
font-size: 16px;
}
}
/*ideal*/
/*.home-mission1 {
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
-o-transform: skew(20deg);
transform: skew(20deg);
}*/
/*.home-mission1 {
height: 400px;
}*/
.home-mission1{
background: url("../../../../../img/bg/ideal.jpg") no-repeat top center;
}
.home-mission1 .mission {
padding: 70px;
}
.home-mission1 .mission p {
font-size: 18px;
}
.home-mission1 .mission h1{
font-family: ahellya;
font-size: 46px;
letter-spacing: 2px;
font-weight: 400;
}
@media (max-width: 380px) {
.home-mission1 .background-logo {
height: auto;
}
.home-mission1 .background-logo .btn {
font-size: 16px;
}
.home-mission1 .mission {
padding: 20px;
font-size: 30px;
}
.home-mission1 .mission p {
font-size: 16px;
}
}
/*fashion*/
.home-mission2 .container {
width: 100%;
}
.home-mission2 .mission {
padding-left: 20px;
padding-right: 20px;
border: 50px solid rgba(185, 219, 229, 0.62);
border: 50px solid rgba(226, 226, 226, 0.62);
}
.home-mission2 .mission p {
font-size: 18px;
}
.home-mission2 .mission h1{
font-family: mistral;
font-size: 66px;
letter-spacing: 2px;
font-weight: 400;
}
@media (max-width: 380px) {
.home-mission2 .mission {
border: 20px solid rgba(185, 219, 229, 0.62);
}
}
/*base-indian*/
.home-mission3 .mission {
padding: 50px 70px;
}
.home-mission3 .mission{
/*font-family: HelveticaNeueCyrLight;*/
font-size: 40px;
letter-spacing: 2px;
}
@media (max-width: 380px) {
.home-mission3 .background-logo {
height: auto;
}
.home-mission3 .background-logo .btn {
font-size: 16px;
}
}
/*base-murti*/
.home-mission4 .mission {
padding: 50px 70px;
}
.home-mission4 .mission{
font-family: HelveticaNeueCyrLight;
font-size: 40px;
letter-spacing: 2px;
}
@media (max-width: 380px) {
.home-mission4 .background-logo {
height: auto;
}
.home-mission4 .background-logo .btn {
font-size: 16px;
}
}
.mobile-wrapper .home-mission4 .mission {
padding: 0 10px;
}
/*cake*/
.home-mission5{
background: url("../../../../../img/bg/cake.jpg") no-repeat top center;
}
.home-mission5 .mission {
padding: 20px 70px 50px 70px;
}
.home-mission5 .mission{
font-family: LuganskiyV;
font-size: 40px;
letter-spacing: 2px;
}
.home-mission5 .mission h1{
font-family: Forum_Regular;
}
@media (max-width: 380px) {
.home-mission5 .background-logo {
height: auto;
}
.home-mission5 .background-logo .btn {
font-size: 16px;
}
}
.mobile-wrapper .home-mission5 .mission {
padding: 0 10px;
} | 0.214856 | 0.09343 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
overflow: hidden;
background-image: linear-gradient( to right, black, rgb(135, 20, 170), rgb(145, 24, 216), rgb(135, 20, 170), black);
overflow-x: hidden;
overflow-y: hidden;
animation: shiftingBG 10s infinite;
animation-timing-function: ease-in-out;
-webkit-animation-timing-function: ease-in-out;
}
@keyframes shiftingBG{
0% { background-image: linear-gradient( to right, black, rgb(135, 20, 170), rgb(145, 24, 216), rgb(135, 20, 170), black);;}
15% { background-image: linear-gradient( to right, black, rgb(115, 16, 140), rgb(135, 20, 170), rgb(115, 16, 140), black);;}
30% { background-image: linear-gradient( to right, black, rgb(95, 10, 90), rgb(115, 16, 140), rgb(95, 10, 90), black);;}
45% { background-image: linear-gradient( to right, black, rgb(75, 13, 70), rgb(95, 10, 90), rgb(75, 13, 70), black);;}
60% { background-image: linear-gradient( to right, black, rgb(40, 8, 30), rgb(75, 13, 70), rgb(40, 8, 30), black);;}
75% { background-image: linear-gradient( to right, black, rgb(20, 3, 20), rgb(40, 8, 30), rgb(20, 3, 20), black);;}
100% { background-image: linear-gradient( to right, black, rgb(135, 20, 170), rgb(145, 24, 216), rgb(135, 20, 170), black);;}
95% { background-image: linear-gradient( to right, black, rgb(115, 16, 140), rgb(135, 20, 170), rgb(115, 16, 140), black);;}
90% { background-image: linear-gradient( to right, black, rgb(95, 10, 90), rgb(115, 16, 140), rgb(95, 10, 90), black);;}
85% { background-image: linear-gradient( to right, black, rgb(75, 13, 70), rgb(95, 10, 90), rgb(75, 13, 70), black);;}
80% { background-image: linear-gradient( to right, black, rgb(20, 3, 20), rgb(40, 8, 30), rgb(20, 3, 20), black);;}}
.container {
min-width: 150px;
min-height: 125px;
width: 350px;
height: 250px;
border-radius: 20px;
position: fixed;
-webkit-transition: 1.5s ease-in-out;
transition: 1.5s ease-in-out;
transform-style: preserve-3d;
z-index: 100;
display: block;
top: 25%;
left: calc(50% - 175px);
/* transform: translate(-50%, -50%); */
}
.side {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
padding: 20px 50px;
color: #fff;
transform-style: preserve-3d;
backface-visibility: hidden;
border-radius: 20px;
}
.content {
transform: translatez(70px) scale(1.0);
line-height: 1.5em;
color: rgb(140, 42, 165);
font-family: monospace;
}
.content h1 {
position: relative;
font-family: ''Share Tech Mono'', monospace;
}
.content p {
margin-top: 50px;
line-height: 0em;
font-size: larger;
}
.content h1:before {
content: "";
position: absolute;
bottom: -20px;
height: 3px;
background-color: orange;
width: 70px;
left: 50%;
transform: translateX(-50%);
}
.front {
z-index: 1000;
background-size: 100%;
background-size: cover;
background-image: url("./assets/texture-front.jpg");
color: blueviolet;
}
.back {
background-color: #333;
transform: rotateY(180deg);
z-index: 1000;
background-image: url("./assets/texture-back.jpg");
}
.container:hover {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
#particles-js {
height: 100vh;
z-index: -1000;
background-repeat: no-repeat;
background-size: cover;
}
.logo {
height: 100px;
left: calc(30px);
}
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: black;
/* background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%); */
z-index: 1000;
}
.gif {
position: fixed;
-webkit-transition: 1.5s ease-in-out;
transition: 1.5s ease-in-out;
transform-style: preserve-3d;
z-index: 2000;
display: block;
top: calc(50% - 45px);
left: calc(50% - 150px);
opacity: 1;
}
.blink-bg{
color: #fff;
display: inline-block;
margin: 0;
width: 100vw;
height: 100vh;
animation: blinkingBackground 1s infinite;
}
@keyframes blinkingBackground{
0% { background-image: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);;}
25% { background-image: linear-gradient(90deg, rgba(131,58,180,0.3) 0%, rgba(253,29,29,0.7) 50%, rgba(252,176,69,0.6) 100%);;}
50% { background-image: linear-gradient(90deg, rgba(131,58,180,0.1) 0%, rgba(253,29,29,0.65) 50%, rgba(252,176,69,0.25) 100%);;}
75% { background-image: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);;}
100% { background-image: linear-gradient(90deg, rgba(131,58,180,0.8) 0%, rgba(253,29,29,0.5) 50%, rgba(252,176,69,0.3) 100%);;}
} | style.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
overflow: hidden;
background-image: linear-gradient( to right, black, rgb(135, 20, 170), rgb(145, 24, 216), rgb(135, 20, 170), black);
overflow-x: hidden;
overflow-y: hidden;
animation: shiftingBG 10s infinite;
animation-timing-function: ease-in-out;
-webkit-animation-timing-function: ease-in-out;
}
@keyframes shiftingBG{
0% { background-image: linear-gradient( to right, black, rgb(135, 20, 170), rgb(145, 24, 216), rgb(135, 20, 170), black);;}
15% { background-image: linear-gradient( to right, black, rgb(115, 16, 140), rgb(135, 20, 170), rgb(115, 16, 140), black);;}
30% { background-image: linear-gradient( to right, black, rgb(95, 10, 90), rgb(115, 16, 140), rgb(95, 10, 90), black);;}
45% { background-image: linear-gradient( to right, black, rgb(75, 13, 70), rgb(95, 10, 90), rgb(75, 13, 70), black);;}
60% { background-image: linear-gradient( to right, black, rgb(40, 8, 30), rgb(75, 13, 70), rgb(40, 8, 30), black);;}
75% { background-image: linear-gradient( to right, black, rgb(20, 3, 20), rgb(40, 8, 30), rgb(20, 3, 20), black);;}
100% { background-image: linear-gradient( to right, black, rgb(135, 20, 170), rgb(145, 24, 216), rgb(135, 20, 170), black);;}
95% { background-image: linear-gradient( to right, black, rgb(115, 16, 140), rgb(135, 20, 170), rgb(115, 16, 140), black);;}
90% { background-image: linear-gradient( to right, black, rgb(95, 10, 90), rgb(115, 16, 140), rgb(95, 10, 90), black);;}
85% { background-image: linear-gradient( to right, black, rgb(75, 13, 70), rgb(95, 10, 90), rgb(75, 13, 70), black);;}
80% { background-image: linear-gradient( to right, black, rgb(20, 3, 20), rgb(40, 8, 30), rgb(20, 3, 20), black);;}}
.container {
min-width: 150px;
min-height: 125px;
width: 350px;
height: 250px;
border-radius: 20px;
position: fixed;
-webkit-transition: 1.5s ease-in-out;
transition: 1.5s ease-in-out;
transform-style: preserve-3d;
z-index: 100;
display: block;
top: 25%;
left: calc(50% - 175px);
/* transform: translate(-50%, -50%); */
}
.side {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
padding: 20px 50px;
color: #fff;
transform-style: preserve-3d;
backface-visibility: hidden;
border-radius: 20px;
}
.content {
transform: translatez(70px) scale(1.0);
line-height: 1.5em;
color: rgb(140, 42, 165);
font-family: monospace;
}
.content h1 {
position: relative;
font-family: ''Share Tech Mono'', monospace;
}
.content p {
margin-top: 50px;
line-height: 0em;
font-size: larger;
}
.content h1:before {
content: "";
position: absolute;
bottom: -20px;
height: 3px;
background-color: orange;
width: 70px;
left: 50%;
transform: translateX(-50%);
}
.front {
z-index: 1000;
background-size: 100%;
background-size: cover;
background-image: url("./assets/texture-front.jpg");
color: blueviolet;
}
.back {
background-color: #333;
transform: rotateY(180deg);
z-index: 1000;
background-image: url("./assets/texture-back.jpg");
}
.container:hover {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
#particles-js {
height: 100vh;
z-index: -1000;
background-repeat: no-repeat;
background-size: cover;
}
.logo {
height: 100px;
left: calc(30px);
}
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: black;
/* background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%); */
z-index: 1000;
}
.gif {
position: fixed;
-webkit-transition: 1.5s ease-in-out;
transition: 1.5s ease-in-out;
transform-style: preserve-3d;
z-index: 2000;
display: block;
top: calc(50% - 45px);
left: calc(50% - 150px);
opacity: 1;
}
.blink-bg{
color: #fff;
display: inline-block;
margin: 0;
width: 100vw;
height: 100vh;
animation: blinkingBackground 1s infinite;
}
@keyframes blinkingBackground{
0% { background-image: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);;}
25% { background-image: linear-gradient(90deg, rgba(131,58,180,0.3) 0%, rgba(253,29,29,0.7) 50%, rgba(252,176,69,0.6) 100%);;}
50% { background-image: linear-gradient(90deg, rgba(131,58,180,0.1) 0%, rgba(253,29,29,0.65) 50%, rgba(252,176,69,0.25) 100%);;}
75% { background-image: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);;}
100% { background-image: linear-gradient(90deg, rgba(131,58,180,0.8) 0%, rgba(253,29,29,0.5) 50%, rgba(252,176,69,0.3) 100%);;}
} | 0.425963 | 0.217379 |
* Name : Google Services Hopefully Cleaner RTL Contents
* Works on : Gmail, Google+, Chat, Reader, Search, Calendar, Groups, Youtube, Buzz...
* Author : EllCiii (<EMAIL>)
* Version : 0.1
* License : CC by-nc-sa - http://creativecommons.org/licenses/by-nc-sa/3.0/
* Homepage : http://twitter.com/EllCiii
*
* This userstyle:
* - Makes RTL (Right-to-Left scripts like Arabic, Hebrew and Persian) more readable on Google Services.
* - Adjust Font style, size and direction, especially usefull for users with Non RTL Browsers GUI.
* - Remove adverstisements and make the content like emails in Gmail start at the right, point.
*
* History
* GSHC-RTL follows-up great 25115 by 25284 which has been discontinued as of June 2010.
* Other brilliant authors' rulesets are tested, some selected, edited then added to this ruleset.
* As a rule, any selected userstyle and author is cited (usefull to follow them or add their style)
*
* To-Do list:
* - Clean-up code, e.g. deprecated style as of Google New ui (Summer 2011),
* - More testing on Google+
* - Test CSS3 properties for specifying block-progression flow and orientation.: 'block-progression' and 'writing-mode'
*
* Collaboration
* Any correction and other sort of collaboration effort to improve is totaly welcome.
*
* Changelog
* 0.1 - 09/12/2011:
* - Styles rulesets splitted between Google and Social Medias Services
* 0.0 - 01/12/2011:
* - Work started, release for personnal use and testing.
**/
@namespace url(http://www.w3.org/1999/xhtml);
/* -------------------------------------------------- */
/* A - Google Services */
/* -------------------------------------------------- */
/* google reader */
/* -------------------------------------------------- */
@-moz-document
url-prefix(http://www.google.com/reader),
url-prefix(https://www.google.com/reader),
url-prefix(http://www.google.com/reader/shared),
url-prefix(https://www.google.com/reader/shared) {
/* font-family */
* {font-family:tahoma;}
.entry-title-link {font-family:"Times New Roman";}
/* direction: rtl */
.add-comment-text-area {direction: rtl;}
.textarea {direction: rtl;}
input.title {direction: rtl;}
/* text-align */
.entry-snippet {text-align:justify!important;}
div.item-body p, div.item-body li {text-align:justify !important;}
.rtl {text-align:justify !important;}
.overview-metadata {text-align:justify;}
/* font-size */
#sub-tree-container ul {font-size:98%!important;}
.entry-secondary-snippet {font-size:7pt !important;}
#entries .entry-body {font-size:9pt !important;}
#sections {font-size:8pt;}
.sub-name-text {font-size:8pt !important;}
#chrome-title {font-size:10pt !important;}
.entry-title-link {font-size:14pt !important;}
.entry-source-title-parent, .entry-author-parent {font-size:8pt !important;}
.entry-title {font-size:8pt !important;}
/* line-height */
#entries .entry-body {line-height:15pt;}
/* text-decoration */
.item-body a {text-decoration: none !important;}
/* max-width */
#entries .entry-body,
#entries .entry-title {max-width: none !important;}
.entry-conversation .comments-container, .comment-entry-comments .entry-comments, .comment-entry .entry-snippet {max-width:none!important;}
.entry .entry-body, .entry .entry-title, .entry .entry-likers {max-width:none !important;}
.add-comment-text-area {width:99%!important;}
/* smart */
.unread-count {display: inline-block !important; margin-left: 2pt;}
span.title span.unread {display:inline-block !important;}
.entry-title-go-to {display:inline-block !important;}
.entry-main {overflow:hidden!important;}
/* fix from */
.entry-source-title {float: left!important; margin-right: 5px;}
.entry-source-title-parent {font-size: 0pt !important;}
a.entry-source-title-parent {font-size: 8pt !important;}
a.entry-source-title {font-size: 8pt !important;}
/* fix "Shared by" */
.entry-author-attribution-link {font-size: 9pt !important;}
.entry .entry-via {display: inline-block; margin-right: 5px!important; margin-bottom: 0px!important; margin-top: 0px!important;}
.entry-via {font-size: 0pt !important;}
/* snippet? */
#snippet-preview {font-size: 9pt !important;}
.annotation textarea {font-size: 8pt !important;}
/* fix */
.conversation-attribution {font-size: 0pt !important;}
.conversation-attribution a, .add-comment-link {font-size: 8pt !important;}
.conversation-attribution a {margin-right: 5px!important;}
/* other */
#entries .entry-body img {width:auto; height:auto; margin:0; padding:5px;}
#entries .entry-body img[align=right] {margin:0 0 0 10px;}
#entries .entry-body img[align=left] {margin:0 10px 0 0;}
#entries .entry-body img[align=center] {margin:10px;}
#entries .entry-body a,#entries .entry-body a:hover,#entries .entry-body a:visited {text-decoration:none;}
}
/* -------------------------------------------------- */
/* Gmail */
@-moz-document domain("mail.google.com") {
/* * {font-family:tahoma;} */
.iA, .y6, .y2, .editable {font-size: 12pt !important;}
/* EllCiii */
*[dir="rtl"] {
direction: rtl;
unicode-bidi: embed;
font-family: tahoma!important;
font-size: 12pt !important;
}
}
/* -------------------------------------------------- */
/* Chat Box */
@-moz-document domain("mail.google.com") {
.Df, .vG {font-size: 10pt !important;}
}
/* -------------------------------------------------- */
/* GTalk */
@-moz-document domain("mail.google.com") {
.ko, .kk, .kl, .kq, .kg {
font-size: 10pt !important;
text-align: justify !important; /* direction: rtl; */
}
.kq, .kg, .kn {direction: ltr;}
.kn {
padding-left: 1em;
float: right !important;
}
}
/* -------------------------------------------------- */
/* Buzz */
@-moz-document
domain("mail.google.com") {
/* font-family */
* {font-family:tahoma!important;}
/* font-size */
/* text-align */
.YJ {max-width:none !important; text-align: right !important;}
.H4 {max-width:none !important; text-align: right !important; direction: rtl;}
.G4 {display: inline-block !important; margin-right: 20pt;}
.O-L {float:right!important; margin-left:7px !important; margin-right: 25pt !important;}
}
/* -------------------------------------------------- */
/* جوجل بلس العربي Arabic Google+ (Thanks to Abdullah Obaid) */
@-moz-document domain('plus.google.com') {
/* GOOGLE DEFAULT BAR */
.hE,.CB,.wr,.Im .sy, .Im, .mp,.cd .gd, .Jd .gd, .Id .gd,.Vv,.Uv,.PM,.roster_row,.a-Tc-dD,.a-b-ld, .a-b-Fa-wc,.d-Ga-Ea,.a-b-D-G-za,.a-b-D-G-aa,.wackmsg_new_sender, .xL,.a-Y-k,.a-Uf-Dm-gb-Q, .CSS_CW_ENTRY_TEXT_AREA,.wackmsg_same_sender,.wackmsg_new_sender ,.h-je, .t-v-x-zj, .Yh,.RM,.roster_row,.a-Wj-Lh-e,.Et,.a-Sa-C-S-qd-gc, .a-Sa-C-S-Pa-gc, .a-Sa-m-S-qd-gc, .a-Sa-m-S-Pa-gc,.a-gb-vC,.NB,.cv ,.a-Uf-Dm-w,.a-m-mb-S,.a-gb-BA ,.a-gb-wC,.Ek, .a-c-dd,.Pxwknd .rYGqBc, .Pxwknd .kDbzlf,.a-Xa-A-T-If-oc, .a-Xa-A-T-vj-oc, .a-Xa-p-T-If-oc, .a-Xa-p-T-vj-oc, .a-f-i,.roster_row,.a-Lc-Sr,.a-kh-fs-Hc-R,.a-Lc-hm, .a-kh-fs-Hc-R , .a-kh-fs-G, .a-kh-fs-e, .a-St-R,.a-Ja-h,.a-p-la-T,.editable , .v-u-y-rb-p,.v-u-y-O,.a-Hc-ox,.d-h ,.a-eo-eg-eeg,.a-fi-O {
font-family: tahoma !important;
line-height: 1.8 !important;
}
#gb{font-family: tahoma !important;}
.ev {
color: #333333;
font-family: tahoma;
font-weight: bold;
white-space: nowrap;
}
body{font-family:tahoma !important;}
}
/* ---------------------------------------------------- */
/* Gmail Ads-block and Full-width */
/* Takku's hack which was inspired by great style "Gmail Cleaner and Tweaker" */
/* Source <http://userstyles.org/styles/22317>. */
/* Works with: new gmail UI (2011) */
/* Advice: For a real CLEAN Gmail interface, */
/* try ryanb userstyle, based on <NAME>'s Minimalist Gmail browser extension: */
/* http://userstyles.org/styles/35678/gmail-more-minimalist */
/* Really great on small devices like Netbooks. */
@-moz-document domain("mail.google.com") {
/* Block the ads table in the message window */
div.diLZtc td[class="Bu"]:first-child + div.diLZtc td[class="Bu"],
div.diLZtc td[class="Bu"]:last-child > div > div > div:not(:first-child) {
display: none !important;
}
/* Useful link, such as New window, Print all, Expand all, Collapse all, Foward all */
td[class="Bu"]:last-child > div.nH {
width: auto !important;
}
table.Bs div.hj {
position: absolute !important;
left: 0px !important;
margin-top: 5px !important;
width: 100% !important;
text-align: center !important;
height: 20px !important;
}
table.Bs div.hj > div.hk:not([style="display: none;"]) {
display: inline !important;
margin: 0 0.5em !important;
}
div .nH .if {
margin-top: 25px !important;
}
}
/* -------------------------------------------------- */
/* google search */
@-moz-document url-prefix(http://www.google.com/search) {
* {font-family:tahoma;}
.r {}
.s {font-size:11pt !important;}
}
/* -------------------------------------------------- */
/* google calendar */
@-moz-document
url-prefix(http://www.google.com/calendar),
url-prefix(https://www.google.com/calendar) {
/* http://www.google.com/calendar */
.chip dd {
font-family: Tahoma !important;
font-size: 10pt !important;
direction: rtl !important;
text-align: right !important;
}
.textbox-fill-mid,.textbox-fill-input {
font-family: Tahoma !important;
font-size: 8pt !important;
}
.eb-title, .rb-n, .lv-event-title {
font-family: Tahoma !important;
font-size: 10pt !important;
direction: rtl !important;
text-align: right !important;
}
.fieldinput {
font-family: Tahoma !important;
font-size: 10pt !important;
}
.mbox-cont {
font-family: Tahoma !important;
font-size: 10pt !important;
}
input, textarea, select {
font-family: Tahoma !important;
font-size: 10pt !important;
}
}
/* -------------------------------------------------- */
/* google groups */
@-moz-document domain("groups.google.com") {
tbody a {
font-family: Tahoma !important;
}
td, input {
font-family: Tahoma !important;
}
#inbdy {
direction: rtl !important;
/* ver4eng */
}
#g_body, #g_body p {
font-family: tahoma !important;
}
}
/* -------------------------------------------------- */
/* Youtube */
@-moz-document domain("youtube.com") {
/* EllCiii - To-Do: handle video title */
[dir="rtl"]{
direction: rtl !important;
text-align: right;
font-family: tahoma!important;
}
#watch-description-text p[dir="rtl"]{
font-size: 16px !important;
}
} | data/usercss/57906.user.css | * Name : Google Services Hopefully Cleaner RTL Contents
* Works on : Gmail, Google+, Chat, Reader, Search, Calendar, Groups, Youtube, Buzz...
* Author : EllCiii (<EMAIL>)
* Version : 0.1
* License : CC by-nc-sa - http://creativecommons.org/licenses/by-nc-sa/3.0/
* Homepage : http://twitter.com/EllCiii
*
* This userstyle:
* - Makes RTL (Right-to-Left scripts like Arabic, Hebrew and Persian) more readable on Google Services.
* - Adjust Font style, size and direction, especially usefull for users with Non RTL Browsers GUI.
* - Remove adverstisements and make the content like emails in Gmail start at the right, point.
*
* History
* GSHC-RTL follows-up great 25115 by 25284 which has been discontinued as of June 2010.
* Other brilliant authors' rulesets are tested, some selected, edited then added to this ruleset.
* As a rule, any selected userstyle and author is cited (usefull to follow them or add their style)
*
* To-Do list:
* - Clean-up code, e.g. deprecated style as of Google New ui (Summer 2011),
* - More testing on Google+
* - Test CSS3 properties for specifying block-progression flow and orientation.: 'block-progression' and 'writing-mode'
*
* Collaboration
* Any correction and other sort of collaboration effort to improve is totaly welcome.
*
* Changelog
* 0.1 - 09/12/2011:
* - Styles rulesets splitted between Google and Social Medias Services
* 0.0 - 01/12/2011:
* - Work started, release for personnal use and testing.
**/
@namespace url(http://www.w3.org/1999/xhtml);
/* -------------------------------------------------- */
/* A - Google Services */
/* -------------------------------------------------- */
/* google reader */
/* -------------------------------------------------- */
@-moz-document
url-prefix(http://www.google.com/reader),
url-prefix(https://www.google.com/reader),
url-prefix(http://www.google.com/reader/shared),
url-prefix(https://www.google.com/reader/shared) {
/* font-family */
* {font-family:tahoma;}
.entry-title-link {font-family:"Times New Roman";}
/* direction: rtl */
.add-comment-text-area {direction: rtl;}
.textarea {direction: rtl;}
input.title {direction: rtl;}
/* text-align */
.entry-snippet {text-align:justify!important;}
div.item-body p, div.item-body li {text-align:justify !important;}
.rtl {text-align:justify !important;}
.overview-metadata {text-align:justify;}
/* font-size */
#sub-tree-container ul {font-size:98%!important;}
.entry-secondary-snippet {font-size:7pt !important;}
#entries .entry-body {font-size:9pt !important;}
#sections {font-size:8pt;}
.sub-name-text {font-size:8pt !important;}
#chrome-title {font-size:10pt !important;}
.entry-title-link {font-size:14pt !important;}
.entry-source-title-parent, .entry-author-parent {font-size:8pt !important;}
.entry-title {font-size:8pt !important;}
/* line-height */
#entries .entry-body {line-height:15pt;}
/* text-decoration */
.item-body a {text-decoration: none !important;}
/* max-width */
#entries .entry-body,
#entries .entry-title {max-width: none !important;}
.entry-conversation .comments-container, .comment-entry-comments .entry-comments, .comment-entry .entry-snippet {max-width:none!important;}
.entry .entry-body, .entry .entry-title, .entry .entry-likers {max-width:none !important;}
.add-comment-text-area {width:99%!important;}
/* smart */
.unread-count {display: inline-block !important; margin-left: 2pt;}
span.title span.unread {display:inline-block !important;}
.entry-title-go-to {display:inline-block !important;}
.entry-main {overflow:hidden!important;}
/* fix from */
.entry-source-title {float: left!important; margin-right: 5px;}
.entry-source-title-parent {font-size: 0pt !important;}
a.entry-source-title-parent {font-size: 8pt !important;}
a.entry-source-title {font-size: 8pt !important;}
/* fix "Shared by" */
.entry-author-attribution-link {font-size: 9pt !important;}
.entry .entry-via {display: inline-block; margin-right: 5px!important; margin-bottom: 0px!important; margin-top: 0px!important;}
.entry-via {font-size: 0pt !important;}
/* snippet? */
#snippet-preview {font-size: 9pt !important;}
.annotation textarea {font-size: 8pt !important;}
/* fix */
.conversation-attribution {font-size: 0pt !important;}
.conversation-attribution a, .add-comment-link {font-size: 8pt !important;}
.conversation-attribution a {margin-right: 5px!important;}
/* other */
#entries .entry-body img {width:auto; height:auto; margin:0; padding:5px;}
#entries .entry-body img[align=right] {margin:0 0 0 10px;}
#entries .entry-body img[align=left] {margin:0 10px 0 0;}
#entries .entry-body img[align=center] {margin:10px;}
#entries .entry-body a,#entries .entry-body a:hover,#entries .entry-body a:visited {text-decoration:none;}
}
/* -------------------------------------------------- */
/* Gmail */
@-moz-document domain("mail.google.com") {
/* * {font-family:tahoma;} */
.iA, .y6, .y2, .editable {font-size: 12pt !important;}
/* EllCiii */
*[dir="rtl"] {
direction: rtl;
unicode-bidi: embed;
font-family: tahoma!important;
font-size: 12pt !important;
}
}
/* -------------------------------------------------- */
/* Chat Box */
@-moz-document domain("mail.google.com") {
.Df, .vG {font-size: 10pt !important;}
}
/* -------------------------------------------------- */
/* GTalk */
@-moz-document domain("mail.google.com") {
.ko, .kk, .kl, .kq, .kg {
font-size: 10pt !important;
text-align: justify !important; /* direction: rtl; */
}
.kq, .kg, .kn {direction: ltr;}
.kn {
padding-left: 1em;
float: right !important;
}
}
/* -------------------------------------------------- */
/* Buzz */
@-moz-document
domain("mail.google.com") {
/* font-family */
* {font-family:tahoma!important;}
/* font-size */
/* text-align */
.YJ {max-width:none !important; text-align: right !important;}
.H4 {max-width:none !important; text-align: right !important; direction: rtl;}
.G4 {display: inline-block !important; margin-right: 20pt;}
.O-L {float:right!important; margin-left:7px !important; margin-right: 25pt !important;}
}
/* -------------------------------------------------- */
/* جوجل بلس العربي Arabic Google+ (Thanks to Abdullah Obaid) */
@-moz-document domain('plus.google.com') {
/* GOOGLE DEFAULT BAR */
.hE,.CB,.wr,.Im .sy, .Im, .mp,.cd .gd, .Jd .gd, .Id .gd,.Vv,.Uv,.PM,.roster_row,.a-Tc-dD,.a-b-ld, .a-b-Fa-wc,.d-Ga-Ea,.a-b-D-G-za,.a-b-D-G-aa,.wackmsg_new_sender, .xL,.a-Y-k,.a-Uf-Dm-gb-Q, .CSS_CW_ENTRY_TEXT_AREA,.wackmsg_same_sender,.wackmsg_new_sender ,.h-je, .t-v-x-zj, .Yh,.RM,.roster_row,.a-Wj-Lh-e,.Et,.a-Sa-C-S-qd-gc, .a-Sa-C-S-Pa-gc, .a-Sa-m-S-qd-gc, .a-Sa-m-S-Pa-gc,.a-gb-vC,.NB,.cv ,.a-Uf-Dm-w,.a-m-mb-S,.a-gb-BA ,.a-gb-wC,.Ek, .a-c-dd,.Pxwknd .rYGqBc, .Pxwknd .kDbzlf,.a-Xa-A-T-If-oc, .a-Xa-A-T-vj-oc, .a-Xa-p-T-If-oc, .a-Xa-p-T-vj-oc, .a-f-i,.roster_row,.a-Lc-Sr,.a-kh-fs-Hc-R,.a-Lc-hm, .a-kh-fs-Hc-R , .a-kh-fs-G, .a-kh-fs-e, .a-St-R,.a-Ja-h,.a-p-la-T,.editable , .v-u-y-rb-p,.v-u-y-O,.a-Hc-ox,.d-h ,.a-eo-eg-eeg,.a-fi-O {
font-family: tahoma !important;
line-height: 1.8 !important;
}
#gb{font-family: tahoma !important;}
.ev {
color: #333333;
font-family: tahoma;
font-weight: bold;
white-space: nowrap;
}
body{font-family:tahoma !important;}
}
/* ---------------------------------------------------- */
/* Gmail Ads-block and Full-width */
/* Takku's hack which was inspired by great style "Gmail Cleaner and Tweaker" */
/* Source <http://userstyles.org/styles/22317>. */
/* Works with: new gmail UI (2011) */
/* Advice: For a real CLEAN Gmail interface, */
/* try ryanb userstyle, based on <NAME>'s Minimalist Gmail browser extension: */
/* http://userstyles.org/styles/35678/gmail-more-minimalist */
/* Really great on small devices like Netbooks. */
@-moz-document domain("mail.google.com") {
/* Block the ads table in the message window */
div.diLZtc td[class="Bu"]:first-child + div.diLZtc td[class="Bu"],
div.diLZtc td[class="Bu"]:last-child > div > div > div:not(:first-child) {
display: none !important;
}
/* Useful link, such as New window, Print all, Expand all, Collapse all, Foward all */
td[class="Bu"]:last-child > div.nH {
width: auto !important;
}
table.Bs div.hj {
position: absolute !important;
left: 0px !important;
margin-top: 5px !important;
width: 100% !important;
text-align: center !important;
height: 20px !important;
}
table.Bs div.hj > div.hk:not([style="display: none;"]) {
display: inline !important;
margin: 0 0.5em !important;
}
div .nH .if {
margin-top: 25px !important;
}
}
/* -------------------------------------------------- */
/* google search */
@-moz-document url-prefix(http://www.google.com/search) {
* {font-family:tahoma;}
.r {}
.s {font-size:11pt !important;}
}
/* -------------------------------------------------- */
/* google calendar */
@-moz-document
url-prefix(http://www.google.com/calendar),
url-prefix(https://www.google.com/calendar) {
/* http://www.google.com/calendar */
.chip dd {
font-family: Tahoma !important;
font-size: 10pt !important;
direction: rtl !important;
text-align: right !important;
}
.textbox-fill-mid,.textbox-fill-input {
font-family: Tahoma !important;
font-size: 8pt !important;
}
.eb-title, .rb-n, .lv-event-title {
font-family: Tahoma !important;
font-size: 10pt !important;
direction: rtl !important;
text-align: right !important;
}
.fieldinput {
font-family: Tahoma !important;
font-size: 10pt !important;
}
.mbox-cont {
font-family: Tahoma !important;
font-size: 10pt !important;
}
input, textarea, select {
font-family: Tahoma !important;
font-size: 10pt !important;
}
}
/* -------------------------------------------------- */
/* google groups */
@-moz-document domain("groups.google.com") {
tbody a {
font-family: Tahoma !important;
}
td, input {
font-family: Tahoma !important;
}
#inbdy {
direction: rtl !important;
/* ver4eng */
}
#g_body, #g_body p {
font-family: tahoma !important;
}
}
/* -------------------------------------------------- */
/* Youtube */
@-moz-document domain("youtube.com") {
/* EllCiii - To-Do: handle video title */
[dir="rtl"]{
direction: rtl !important;
text-align: right;
font-family: tahoma!important;
}
#watch-description-text p[dir="rtl"]{
font-size: 16px !important;
}
} | 0.270095 | 0.080538 |