@charset "UTF-8";
body {
color: var(--content);
margin-top: var(--header-height);
}
input {
color: var(--title);
}
header {
height: var(--header-height);
position: fixed;
z-index: 5;
top: 0;
left: 0;
width: 100%;
backdrop-filter: blur(8px);
background-color: rgba(255, 255, 255, 0.85);
}
h1 {
font-size: 36px;
}
.btn-empty {
border: 1px solid var(--primary);
padding: 0.7rem 1rem;
border-radius: 10px;
transition: 0.2s;
}
.btn-empty:hover {
border: 1px solid var(--primary);
color: white;
background-color: var(--primary);
}
.main-logo-container > picture > img {
width: auto;
height: var(--main-logo-height);
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
-webkit-appearance: none;
}
::placeholder {
color: var(--content);
vertical-align: middle;
}
input:focus::placeholder {
color: transparent;
}
.hamburger-menu-btn {
height: 30px;
width: 40px;
}
.hamburger-menu-line {
height: 5px;
width: 40px;
background-color: #000;
border-radius: 20px;
position: absolute;
transform: rotate(0);
transition: 0.25s ease-in-out;
}
.hamburger-menu-btn .hamburger-menu-line:nth-child(1) {
transform-origin: left center;
}
.hamburger-menu-btn .hamburger-menu-line:nth-child(2) {
margin-top: 12px;
transform-origin: left center;
}
.hamburger-menu-btn .hamburger-menu-line:nth-child(3) {
margin-top: 24px;
transform-origin: left center;
}
.hamburger-menu-btn.open .hamburger-menu-line:nth-child(1) {
transform: rotate(45deg);
margin-left: 7px;
margin-top: -1px;
}
.hamburger-menu-btn.open .hamburger-menu-line:nth-child(2) {
width: 0%;
opacity: 0;
}
.hamburger-menu-btn.open .hamburger-menu-line:nth-child(3) {
transform: rotate(-45deg);
margin-top: 27px;
margin-left: 7px;
}
nav {
display: none;
background-color: white;
}
.main-menu-mobile {
display: flex !important;
position: absolute;
top: calc(46px + var(--header-height));
left: 0;
width: 100%;
height: 100vh;
overflow: auto;
flex-direction: column;
}
.sub-menu {
display: none;
width: 100%;
left: 0;
top: 0;
backdrop-filter: blur(2px);
background-color: rgba(255, 255, 255, 0.9);
min-height: 100%;
}
#main-navigation li {
transition: 0.2s;
font-size: 18px;
padding-left: 0;
padding-right: 0;
}
#main-navigation > li:last-child {
user-select: none;
}
#main-navigation > li:last-child > a {
position: relative!important; }	
#main-navigation > li:last-child > a > img {
position: absolute;
right: 1rem;
transition: 0.2s;
top: 50%; transform: translateY(-50%); }
#main-navigation li:hover {
color: var(--primary);
}
#main-navigation .sub-menu li:last-child {
height: 240px !important;
}
#main-navigation .sub-menu li:last-child a {
height: auto;
}
#main-navigation li a {
width: 100%;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
padding-left: 1rem;
}
#main-navigation li .sub-menu li a {
padding-top: 0;
padding-left: 0;
padding-bottom: 0;
}
#search-box {
display: none;
position: absolute;
top: var(--header-height);
left: 0;
width: 100%;
}
#search-box > #search {
width: 100%;
}
#search-box > button {
right: 1rem;
top: 50%;
width: 20px;
height: 20px;
transform: translateY(-50%);
background-image: url(//blog.mutbex.com/wp-content/themes/mutbex-blog/assets/icons/icon-search.svg);
background-repeat: no-repeat;
background-size: cover;
transition: 0.3s;
}
#search:focus ~ #search-button {
background-image: url(//blog.mutbex.com/wp-content/themes/mutbex-blog/assets/icons/icon-search-green.svg);
}
.sub-menu > .row.container li a {
position: relative;
display: block;
height: 100%;
}
.sub-menu > .row.container li a span {
position: absolute;
color: white;
max-width: 120px;
top: 16%;
left: 6%;
}
.sub-menu > .row.container li a img {
display: block;
width: 100%; border-radius: 20px;
}
.card {
background-color: #fff;
border-top-right-radius: 20px;
border-top-left-radius: 20px;
}
.badge {
padding: 0.3rem 1rem;
border: 2px solid var(--primary);
border-radius: 10px;
}
.card h4 {
font-size: 18px;
min-height: 54px;
line-height: 1.4;
}
.card .read-more-btn {
top: 8px;
}
.blog-card-thumbnail {  min-height: 185px; height: auto; border-bottom-right-radius: 20px;
border-bottom-left-radius: 20px;
width: 100%;
object-fit: cover;
}
.trend-span {
line-height: 0.8;
}
.read-more-btn {
border-radius: 10px;
padding-top: 0.5rem;
padding-right: 2.8rem;
padding-bottom: 0.5rem;
padding-left: 1.2rem;
border: 1px solid var(--primary);
transition: 0.2s;
}
.read-more-btn::before {
content: '';
position: absolute;
width: 14px;
border-top: 2px solid white;
right: 22px;
top: 50%;
transform: translateY(-50%);
transition: 0.2s;
}
.read-more-btn::after {
content: '';
position: absolute;
width: 12px;
height: 12px;
border-top: 2px solid white;
border-right: 2px solid white;
right: 22px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
transition: 0.2s;
}
.read-more-btn:hover {
background-color: var(--white);
color: var(--primary);
}
.read-more-btn:hover::before {
border-top: 2px solid var(--primary);
}
.read-more-btn:hover::after {
border-top: 2px solid var(--primary);
border-right: 2px solid var(--primary);
} #footer-subscription form {
position: relative;
}
#footer-subscription form input[type='email'] {
width: 100%;
height: 60px;
padding-left: 1rem;
border-radius: 10px;
}
#footer-subscription form input[type='submit'] {
position: absolute;
top: 50%;
right: 0.6rem;
transform: translateY(-50%);
background-color: var(--primary);
color: white;
height: 40px;
border-radius: 8px;
padding: 0.9rem 2rem;
cursor: pointer;
border: 1px solid var(--primary);
transition: 0.2s;
}
#footer-subscription form input[type='submit']:hover {
color: var(--primary);
background-color: white;
border: 1px solid var(--primary);
}
#footer-links a:nth-child(2) {
border-left: 1px solid var(--border);
border-right: 1px solid var(--border);
height: 40px;
}
#footer-bot label {
font-size: 13px;
}
#footer-social-icons img {
width: 36px;
display: block;
}
#archive-showcase h4 {
font-size: 18px;
}
#archive-load-more {
color: var(--primary);
font-size: inherit;
border: 1px solid var(--primary);
padding: 1.1rem 1.8rem;
border-radius: 10px;
position: relative;
left: 50%;
transform: translateX(-50%);
transition: 0.3s;
}
#archive-load-more:hover {
color: white;
background-color: var(--primary);
}   #text-content > ul {
list-style-type: disc !important; 
line-height: normal !important; 
margin-left: 45px !important;  
}
#text-content > ul > li {
list-style:disc !important;
margin: 1px; 
line-height:28px;
}
@media (min-width: 992px) {
h1 {
font-size: 42px;
}
}
@media (min-width: 992px) {
nav {
display: block;
background-color: transparent;
}
#search-box {
display: block;
position: relative;
top: auto;
left: auto;
width: auto;
}
#search-box > #search {
width: 220px;
border-radius: 10px;
}
#main-navigation li {
font-size: inherit;
padding-left: inherit;
padding-right: inherit;
padding-bottom: inherit;
}
#main-navigation > li:last-child:hover {
padding-bottom: 2rem;
margin-top: 2rem;
}
#main-navigation li a {
padding: 0;
}
#main-navigation > li:last-child:hover .sub-menu {
display: block;
}
.sub-menu {
top: var(--header-height);
}
#main-navigation .sub-menu li:last-child {
height: 100% !important;
}
}
@media (min-width: 992px) and (max-width: 1200px) {
.excerpt-wrapper {
min-height: 120px;
}
}
@media (min-width: 1200px) {
.main-logo-container > picture > img {
height: var(--main-logo-height-xl);
}
#search-box > #search {
width: 250px;
}
}
:root {
--primary: #198d00;
--title: #181818;
--content: #707070;
--white: #ffffff;
--background: #fafafa;
--hover: #e7f3e5;
--border: #b8b8b8;
--detail: #007f8d;
--header-height: 90px;
--main-logo-height: 42px;
--main-logo-height-xl: 46px;
}
.primary-bg {
background-color: var(--primary);
}
.primary-text {
color: var(--primary);
}
.title-text {
color: var(--title);
}
.content-text {
color: var(--content);
}
.white-bg {
background-color: var(--white);
}
.white-text {
color: var(--white);
}
.background {
background-color: var(--background);
}
.detail-bg {
background-color: var(--detail);
}
.detail-text {
color: var(--detail);
}

@font-face {
font-family: Poppins-Light;
src: url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-light-webfont.eot);
src: url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-light-webfont.eot?#iefix)
format('embedded-opentype'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-light-webfont.woff2) format('woff2'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-light-webfont.woff) format('woff'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-light-webfont.ttf) format('truetype'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-light-webfont.svg#webfontregular) format('svg');
font-weight: 400;
font-style: normal;
font-display: swap; }
@font-face {
font-family: Poppins-Regular;
src: url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-regular-webfont.eot);
src: url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-regular-webfont.eot?#iefix)
format('embedded-opentype'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-regular-webfont.woff2) format('woff2'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-regular-webfont.woff) format('woff'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-regular-webfont.ttf) format('truetype'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-regular-webfont.svg#webfontregular) format('svg');
font-weight: 400;
font-style: normal;
font-display: swap; }
@font-face {
font-family: Poppins-Bold;
src: url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-bold-webfont.eot);
src: url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-bold-webfont.eot?#iefix)
format('embedded-opentype'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-bold-webfont.woff2) format('woff2'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-bold-webfont.woff) format('woff'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-bold-webfont.ttf) format('truetype'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-bold-webfont.svg#webfontregular) format('svg');
font-weight: 400;
font-style: normal;
font-display: swap; }
@font-face {
font-family: Poppins-Black;
src: url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-black-webfont.eot);
src: url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-black-webfont.eot?#iefix)
format('embedded-opentype'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-black-webfont.woff2) format('woff2'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-black-webfont.woff) format('woff'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-black-webfont.ttf) format('truetype'),
url(https://blog.mutbex.com/wp-content/themes/mutbex-blog/assets/fonts/poppins-black-webfont.svg#webfontregular) format('svg');
font-weight: 400;
font-style: normal;
font-display: swap; }
.light {
font-family: Poppins-Light;
}
.regular {
font-family: Poppins-Regular;
}
.bold {
font-family: Poppins-Bold;
}
.black {
font-family: Poppins-Black;
}
*,
::after,
::before {
box-sizing: border-box;
padding: 0;
border: 0;
line-height: 1;
font-family: inherit;
}
html {
font-size: 16px;
font-family: Poppins-Regular !important;
scroll-behavior: smooth;
font-display: swap; }
body {
font-size: 1rem;
font-weight: 400;
}
a {
color: inherit;
text-decoration: none;
}
p {
line-height: 1.5;
}
button {
background-color: transparent;
cursor: pointer;
outline: 0;
}
input {
outline: 0;
}
button,
ul {
padding: 0;
} ul {
list-style-type: none;
}
ul li {
list-style:none;
}
b,
strong {
font-weight: bolder;
}  img {
display: block; }
.img-fluid {
max-width: 100%;
height: auto;
display: block; }
.object-cover {
object-fit: cover;
}
.rotateX-180 {
transform: rotateX(180deg);
}
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
width: 100%;
padding-right: 15px;
padding-left: 15px;
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 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.no-gutters {
margin-right: 0;
margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*='col-'] {
padding-right: 0;
padding-left: 0;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto,
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl,
.col-xxl-auto {
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
.col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-1 > * {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-2 > * {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-3 > * {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.row-cols-4 > * {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-5 > * {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-6 > * {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-first {
-ms-flex-order: -1;
order: -1;
}
.order-last {
-ms-flex-order: 13;
order: 13;
}
.order-0 {
-ms-flex-order: 0;
order: 0;
}
.order-1 {
-ms-flex-order: 1;
order: 1;
}
.order-2 {
-ms-flex-order: 2;
order: 2;
}
.order-3 {
-ms-flex-order: 3;
order: 3;
}
.order-4 {
-ms-flex-order: 4;
order: 4;
}
.order-5 {
-ms-flex-order: 5;
order: 5;
}
.order-6 {
-ms-flex-order: 6;
order: 6;
}
.order-7 {
-ms-flex-order: 7;
order: 7;
}
.order-8 {
-ms-flex-order: 8;
order: 8;
}
.order-9 {
-ms-flex-order: 9;
order: 9;
}
.order-10 {
-ms-flex-order: 10;
order: 10;
}
.order-11 {
-ms-flex-order: 11;
order: 11;
}
.order-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-1 {
margin-left: 8.333333%;
}
.offset-2 {
margin-left: 16.666667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.333333%;
}
.offset-5 {
margin-left: 41.666667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.333333%;
}
.offset-8 {
margin-left: 66.666667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.333333%;
}
.offset-11 {
margin-left: 91.666667%;
}
@media (min-width: 576px) {
.col-sm {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-sm-1 > * {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-sm-2 > * {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-sm-3 > * {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.row-cols-sm-4 > * {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-sm-5 > * {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-sm-6 > * {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-sm-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-sm-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-sm-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-sm-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-sm-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-sm-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-sm-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-sm-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-sm-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-sm-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-sm-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-sm-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-sm-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-sm-first {
-ms-flex-order: -1;
order: -1;
}
.order-sm-last {
-ms-flex-order: 13;
order: 13;
}
.order-sm-0 {
-ms-flex-order: 0;
order: 0;
}
.order-sm-1 {
-ms-flex-order: 1;
order: 1;
}
.order-sm-2 {
-ms-flex-order: 2;
order: 2;
}
.order-sm-3 {
-ms-flex-order: 3;
order: 3;
}
.order-sm-4 {
-ms-flex-order: 4;
order: 4;
}
.order-sm-5 {
-ms-flex-order: 5;
order: 5;
}
.order-sm-6 {
-ms-flex-order: 6;
order: 6;
}
.order-sm-7 {
-ms-flex-order: 7;
order: 7;
}
.order-sm-8 {
-ms-flex-order: 8;
order: 8;
}
.order-sm-9 {
-ms-flex-order: 9;
order: 9;
}
.order-sm-10 {
-ms-flex-order: 10;
order: 10;
}
.order-sm-11 {
-ms-flex-order: 11;
order: 11;
}
.order-sm-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.333333%;
}
.offset-sm-2 {
margin-left: 16.666667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.333333%;
}
.offset-sm-5 {
margin-left: 41.666667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.333333%;
}
.offset-sm-8 {
margin-left: 66.666667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.333333%;
}
.offset-sm-11 {
margin-left: 91.666667%;
}
}
@media (min-width: 768px) {
.col-md {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-md-1 > * {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-md-2 > * {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-md-3 > * {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.row-cols-md-4 > * {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-md-5 > * {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-md-6 > * {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-md-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-md-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-md-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-md-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-md-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-md-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-md-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-md-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-md-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-md-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-md-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-md-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-md-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-md-first {
-ms-flex-order: -1;
order: -1;
}
.order-md-last {
-ms-flex-order: 13;
order: 13;
}
.order-md-0 {
-ms-flex-order: 0;
order: 0;
}
.order-md-1 {
-ms-flex-order: 1;
order: 1;
}
.order-md-2 {
-ms-flex-order: 2;
order: 2;
}
.order-md-3 {
-ms-flex-order: 3;
order: 3;
}
.order-md-4 {
-ms-flex-order: 4;
order: 4;
}
.order-md-5 {
-ms-flex-order: 5;
order: 5;
}
.order-md-6 {
-ms-flex-order: 6;
order: 6;
}
.order-md-7 {
-ms-flex-order: 7;
order: 7;
}
.order-md-8 {
-ms-flex-order: 8;
order: 8;
}
.order-md-9 {
-ms-flex-order: 9;
order: 9;
}
.order-md-10 {
-ms-flex-order: 10;
order: 10;
}
.order-md-11 {
-ms-flex-order: 11;
order: 11;
}
.order-md-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.333333%;
}
.offset-md-2 {
margin-left: 16.666667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.333333%;
}
.offset-md-5 {
margin-left: 41.666667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.333333%;
}
.offset-md-8 {
margin-left: 66.666667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.333333%;
}
.offset-md-11 {
margin-left: 91.666667%;
}
}
@media (min-width: 992px) {
.row-lg {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.col-lg {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-lg-1 > * {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-lg-2 > * {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-lg-3 > * {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.row-cols-lg-4 > * {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-lg-5 > * {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-lg-6 > * {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-lg-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-lg-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-lg-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-lg-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-lg-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-lg-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-lg-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-lg-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-lg-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-lg-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-lg-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-lg-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-lg-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-lg-first {
-ms-flex-order: -1;
order: -1;
}
.order-lg-last {
-ms-flex-order: 13;
order: 13;
}
.order-lg-0 {
-ms-flex-order: 0;
order: 0;
}
.order-lg-1 {
-ms-flex-order: 1;
order: 1;
}
.order-lg-2 {
-ms-flex-order: 2;
order: 2;
}
.order-lg-3 {
-ms-flex-order: 3;
order: 3;
}
.order-lg-4 {
-ms-flex-order: 4;
order: 4;
}
.order-lg-5 {
-ms-flex-order: 5;
order: 5;
}
.order-lg-6 {
-ms-flex-order: 6;
order: 6;
}
.order-lg-7 {
-ms-flex-order: 7;
order: 7;
}
.order-lg-8 {
-ms-flex-order: 8;
order: 8;
}
.order-lg-9 {
-ms-flex-order: 9;
order: 9;
}
.order-lg-10 {
-ms-flex-order: 10;
order: 10;
}
.order-lg-11 {
-ms-flex-order: 11;
order: 11;
}
.order-lg-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.333333%;
}
.offset-lg-2 {
margin-left: 16.666667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.333333%;
}
.offset-lg-5 {
margin-left: 41.666667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.333333%;
}
.offset-lg-8 {
margin-left: 66.666667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.333333%;
}
.offset-lg-11 {
margin-left: 91.666667%;
}
}
@media (min-width: 1200px) {
.col-xl {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-xl-1 > * {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-xl-2 > * {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-xl-3 > * {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.row-cols-xl-4 > * {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-xl-5 > * {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-xl-6 > * {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-xl-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-xl-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-xl-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-xl-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-xl-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-xl-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-xl-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-xl-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-xl-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-xl-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-xl-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-xl-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-xl-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-xl-first {
-ms-flex-order: -1;
order: -1;
}
.order-xl-last {
-ms-flex-order: 13;
order: 13;
}
.order-xl-0 {
-ms-flex-order: 0;
order: 0;
}
.order-xl-1 {
-ms-flex-order: 1;
order: 1;
}
.order-xl-2 {
-ms-flex-order: 2;
order: 2;
}
.order-xl-3 {
-ms-flex-order: 3;
order: 3;
}
.order-xl-4 {
-ms-flex-order: 4;
order: 4;
}
.order-xl-5 {
-ms-flex-order: 5;
order: 5;
}
.order-xl-6 {
-ms-flex-order: 6;
order: 6;
}
.order-xl-7 {
-ms-flex-order: 7;
order: 7;
}
.order-xl-8 {
-ms-flex-order: 8;
order: 8;
}
.order-xl-9 {
-ms-flex-order: 9;
order: 9;
}
.order-xl-10 {
-ms-flex-order: 10;
order: 10;
}
.order-xl-11 {
-ms-flex-order: 11;
order: 11;
}
.order-xl-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.333333%;
}
.offset-xl-2 {
margin-left: 16.666667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.333333%;
}
.offset-xl-5 {
margin-left: 41.666667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.333333%;
}
.offset-xl-8 {
margin-left: 66.666667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.333333%;
}
.offset-xl-11 {
margin-left: 91.666667%;
}
}
@media (min-width: 1400px) {
.col-xxl {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-xxl-1 > * {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-xxl-2 > * {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-xxl-3 > * {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.row-cols-xxl-4 > * {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-xxl-5 > * {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-xxl-6 > * {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-xxl-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-xxl-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-xxl-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-xxl-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-xxl-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-xxl-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-xxl-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-xxl-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-xxl-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-xxl-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-xxl-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-xxl-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-xxl-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-xxl-first {
-ms-flex-order: -1;
order: -1;
}
.order-xxl-last {
-ms-flex-order: 13;
order: 13;
}
.order-xxl-0 {
-ms-flex-order: 0;
order: 0;
}
.order-xxl-1 {
-ms-flex-order: 1;
order: 1;
}
.order-xxl-2 {
-ms-flex-order: 2;
order: 2;
}
.order-xxl-3 {
-ms-flex-order: 3;
order: 3;
}
.order-xxl-4 {
-ms-flex-order: 4;
order: 4;
}
.order-xxl-5 {
-ms-flex-order: 5;
order: 5;
}
.order-xxl-6 {
-ms-flex-order: 6;
order: 6;
}
.order-xxl-7 {
-ms-flex-order: 7;
order: 7;
}
.order-xxl-8 {
-ms-flex-order: 8;
order: 8;
}
.order-xxl-9 {
-ms-flex-order: 9;
order: 9;
}
.order-xxl-10 {
-ms-flex-order: 10;
order: 10;
}
.order-xxl-11 {
-ms-flex-order: 11;
order: 11;
}
.order-xxl-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.333333%;
}
.offset-xxl-2 {
margin-left: 16.666667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.333333%;
}
.offset-xxl-5 {
margin-left: 41.666667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.333333%;
}
.offset-xxl-8 {
margin-left: 66.666667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.333333%;
}
.offset-xxl-11 {
margin-left: 91.666667%;
}
}
.overflow-auto {
overflow: auto !important;
}
.overflow-hidden {
overflow: hidden !important;
}
.d-inline-block {
display: inline-block !important;
} .d-inline-flex {
display: inline-flex !important;
}
.d-block {
display: block !important;
}
.d-flex {
display: flex !important;
}
.d-inherit {
display: inherit !important;
}
.d-none {
display: none !important;
}
.position-static {
position: static !important;
}
.position-relative {
position: relative !important;
}
.position-fixed {
position: fixed !important;
}
.position-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.position-absolute {
position: absolute !important;
}
.abs-center {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.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;
}
.left-0 {
left: 0 !important;
}
.left-50 {
left: 50% !important;
}
.left-100 {
left: 100% !important;
}
.right-0 {
right: 0 !important;
}
.right-50 {
right: 50% !important;
}
.right-100 {
right: 100% !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-row {
flex-direction: row !important;
}
.flex-column {
flex-direction: column !important;
}
.flex-row-reverse {
flex-direction: row-reverse !important;
}
.flex-column-reverse {
flex-direction: column-reverse !important;
}
.flex-wrap {
flex-wrap: wrap !important;
}
.flex-nowrap {
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-left {
justify-content: flex-start !important;
}
.justify-content-right {
justify-content: flex-end !important;
}
.justify-content-center {
justify-content: center !important;
}
.justify-content-between {
justify-content: space-between !important;
}
.justify-content-around {
justify-content: space-around !important;
}
.justify-content-evenly {
justify-content: space-evenly !important;
}
.align-items-left {
align-items: flex-start !important;
}
.align-items-right {
align-items: flex-end !important;
}
.align-items-center {
align-items: center !important;
}
.align-items-end {
align-items: end !important;
}
.align-items-stretch {
align-items: stretch !important;
}
.m-0 {
margin: 0 !important;
}
.m-auto {
margin: auto !important;
}
.m-0-25 {
margin: 0.25rem !important;
}
.m-0-5 {
margin: 0.5rem !important;
}
.m-0-75 {
margin: 0.75rem !important;
}
.m-1 {
margin: 1rem !important;
}
.m-1-5 {
margin: 1.5rem !important;
}
.m-2 {
margin: 2rem !important;
}
.m-2-5 {
margin: 2.5rem !important;
}
.m-3 {
margin: 3rem !important;
}
.m-3-5 {
margin: 3.5rem !important;
}
.m-4 {
margin: 4rem !important;
}
.m-4-5 {
margin: 4.5rem !important;
}
.m-5 {
margin: 5rem !important;
}
.mx-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.mx-0-25 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-0-5 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-0-75 {
margin-right: 0.75rem !important;
margin-left: 0.75rem !important;
}
.mx-1 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-1-5 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-2 {
margin-right: 2rem !important;
margin-left: 2rem !important;
}
.mx-2-5 {
margin-right: 2.5rem !important;
margin-left: 2.5rem !important;
}
.mx-3 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-3-5 {
margin-right: 3.5rem !important;
margin-left: 3.5rem !important;
}
.mx-4 {
margin-right: 4rem !important;
margin-left: 4rem !important;
}
.mx-4-5 {
margin-right: 4.5rem !important;
margin-left: 4.5rem !important;
}
.mx-5 {
margin-right: 5rem !important;
margin-left: 5rem !important;
}
.my-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.my-0-25 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-0-5 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-0-75 {
margin-top: 0.75rem !important;
margin-bottom: 0.75rem !important;
}
.my-1 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-1-5 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-2 {
margin-top: 2rem !important;
margin-bottom: 2rem !important;
}
.my-2-5 {
margin-top: 2.5rem !important;
margin-bottom: 2.5rem !important;
}
.my-3 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-3-5 {
margin-top: 3.5rem !important;
margin-bottom: 3.5rem !important;
}
.my-4 {
margin-top: 4rem !important;
margin-bottom: 4rem !important;
}
.my-4-5 {
margin-top: 4.5rem !important;
margin-bottom: 4.5rem !important;
}
.my-5 {
margin-top: 5rem !important;
margin-bottom: 5rem !important;
}
.mt-0 {
margin-top: 0 !important;
}
.mt-auto {
margin-top: auto !important;
}
.mt-0-25 {
margin-top: 0.25rem !important;
}
.mt-0-5 {
margin-top: 0.5rem !important;
}
.mt-0-75 {
margin-top: 0.75rem !important;
}
.mt-1 {
margin-top: 1rem !important;
}
.mt-1-5 {
margin-top: 1.5rem !important;
}
.mt-2 {
margin-top: 2rem !important;
}
.mt-2-5 {
margin-top: 2.5rem !important;
}
.mt-3 {
margin-top: 3rem !important;
}
.mt-3-5 {
margin-top: 3.5rem !important;
}
.mt-4 {
margin-top: 4rem !important;
}
.mt-4-5 {
margin-top: 4.5rem !important;
}
.mt-5 {
margin-top: 5rem !important;
}
.mr-0 {
margin-right: 0 !important;
}
.mr-auto {
margin-right: auto !important;
}
.mr-0-25 {
margin-right: 0.25rem !important;
}
.mr-0-5 {
margin-right: 0.5rem !important;
}
.mr-0-75 {
margin-right: 0.75rem !important;
}
.mr-1 {
margin-right: 1rem !important;
}
.mr-1-5 {
margin-right: 1.5rem !important;
}
.mr-2 {
margin-right: 2rem !important;
}
.mr-2-5 {
margin-right: 2.5rem !important;
}
.mr-3 {
margin-right: 3rem !important;
}
.mr-3-5 {
margin-right: 3.5rem !important;
}
.mr-4 {
margin-right: 4rem !important;
}
.mr-4-5 {
margin-right: 4.5rem !important;
}
.mr-5 {
margin-right: 5rem !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-auto {
margin-bottom: auto !important;
}
.mb-0-25 {
margin-bottom: 0.25rem !important;
}
.mb-0-5 {
margin-bottom: 0.5rem !important;
}
.mb-0-75 {
margin-bottom: 0.75rem !important;
}
.mb-1 {
margin-bottom: 1rem !important;
}
.mb-1-5 {
margin-bottom: 1.5rem !important;
}
.mb-2 {
margin-bottom: 2rem !important;
}
.mb-2-5 {
margin-bottom: 2.5rem !important;
}
.mb-3 {
margin-bottom: 3rem !important;
}
.mb-3-5 {
margin-bottom: 3.5rem !important;
}
.mb-4 {
margin-bottom: 4rem !important;
}
.mb-4-5 {
margin-bottom: 4.5rem !important;
}
.mb-5 {
margin-bottom: 5rem !important;
}
.ml-0 {
margin-left: 0 !important;
}
.ml-auto {
margin-left: auto !important;
}
.ml-0-25 {
margin-left: 0.25rem !important;
}
.ml-0-5 {
margin-left: 0.5rem !important;
}
.ml-0-75 {
margin-left: 0.75rem !important;
}
.ml-1 {
margin-left: 1rem !important;
}
.ml-1-5 {
margin-left: 1.5rem !important;
}
.ml-2 {
margin-left: 2rem !important;
}
.ml-2-5 {
margin-left: 2.5rem !important;
}
.ml-3 {
margin-left: 3rem !important;
}
.ml-3-5 {
margin-left: 3.5rem !important;
}
.ml-4 {
margin-left: 4rem !important;
}
.ml-4-5 {
margin-left: 4.5rem !important;
}
.ml-5 {
margin-left: 5rem !important;
}
.p-0 {
padding: 0 !important;
}
.p-0-25 {
padding: 0.25rem !important;
}
.p-0-5 {
padding: 0.5rem !important;
}
.p-0-75 {
padding: 0.75rem !important;
}
.p-1 {
padding: 1rem !important;
}
.p-1-5 {
padding: 1.5rem !important;
}
.p-2 {
padding: 2rem !important;
}
.p-2-5 {
padding: 2.5rem !important;
}
.p-3 {
padding: 3rem !important;
}
.p-3-5 {
padding: 3.5rem !important;
}
.p-4 {
padding: 4rem !important;
}
.p-4-5 {
padding: 4.5rem !important;
}
.p-5 {
padding: 5rem !important;
}
.px-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-0-25 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-0-5 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-0-75 {
padding-right: 0.75rem !important;
padding-left: 0.75rem !important;
}
.px-1 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-1-5 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-2 {
padding-right: 2rem !important;
padding-left: 2rem !important;
}
.px-2-5 {
padding-right: 2.5rem !important;
padding-left: 2.5rem !important;
}
.px-3 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.px-3-5 {
padding-right: 3.5rem !important;
padding-left: 3.5rem !important;
}
.px-4 {
padding-right: 4rem !important;
padding-left: 4rem !important;
}
.px-4-5 {
padding-right: 4.5rem !important;
padding-left: 4.5rem !important;
}
.px-5 {
padding-right: 5rem !important;
padding-left: 5rem !important;
}
.py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-0-25 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-0-5 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-0-75 {
padding-top: 0.75rem !important;
padding-bottom: 0.75rem !important;
}
.py-1 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-1-5 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-2 {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
.py-2-5 {
padding-top: 2.5rem !important;
padding-bottom: 2.5rem !important;
}
.py-3 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.py-3-5 {
padding-top: 3.5rem !important;
padding-bottom: 3.5rem !important;
}
.py-4 {
padding-top: 4rem !important;
padding-bottom: 4rem !important;
}
.py-4-5 {
padding-top: 4.5rem !important;
padding-bottom: 4.5rem !important;
}
.py-5 {
padding-top: 5rem !important;
padding-bottom: 5rem !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pt-0-25 {
padding-top: 0.25rem !important;
}
.pt-0-5 {
padding-top: 0.5rem !important;
}
.pt-0-75 {
padding-top: 0.75rem !important;
}
.pt-1 {
padding-top: 1rem !important;
}
.pt-1-5 {
padding-top: 1.5rem !important;
}
.pt-2 {
padding-top: 2rem !important;
}
.pt-2-5 {
padding-top: 2.5rem !important;
}
.pt-3 {
padding-top: 3rem !important;
}
.pt-3-5 {
padding-top: 3.5rem !important;
}
.pt-4 {
padding-top: 4rem !important;
}
.pt-4-5 {
padding-top: 4.5rem !important;
}
.pt-5 {
padding-top: 5rem !important;
}
.pr-0 {
padding-right: 0 !important;
}
.pr-0-25 {
padding-right: 0.25rem !important;
}
.pr-0-5 {
padding-right: 0.5rem !important;
}
.pr-0-75 {
padding-right: 0.75rem !important;
}
.pr-1 {
padding-right: 1rem !important;
}
.pr-1-5 {
padding-right: 1.5rem !important;
}
.pr-2 {
padding-right: 2rem !important;
}
.pr-2-5 {
padding-right: 2.5rem !important;
}
.pr-3 {
padding-right: 3rem !important;
}
.pr-3-5 {
padding-right: 3.5rem !important;
}
.pr-4 {
padding-right: 4rem !important;
}
.pr-4-5 {
padding-right: 4.5rem !important;
}
.pr-5 {
padding-right: 5rem !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.pb-0-25 {
padding-bottom: 0.25rem !important;
}
.pb-0-5 {
padding-bottom: 0.5rem !important;
}
.pb-0-75 {
padding-bottom: 0.75rem !important;
}
.pb-1 {
padding-bottom: 1rem !important;
}
.pb-1-5 {
padding-bottom: 1.5rem !important;
}
.pb-2 {
padding-bottom: 2rem !important;
}
.pb-2-5 {
padding-bottom: 2.5rem !important;
}
.pb-3 {
padding-bottom: 3rem !important;
}
.pb-3-5 {
padding-bottom: 3.5rem !important;
}
.pb-4 {
padding-bottom: 4rem !important;
}
.pb-4-5 {
padding-bottom: 4.5rem !important;
}
.pb-5 {
padding-bottom: 5rem !important;
}
.pl-0 {
padding-left: 0 !important;
}
.pl-0-25 {
padding-left: 0.25rem !important;
}
.pl-0-5 {
padding-left: 0.5rem !important;
}
.pl-0-75 {
padding-left: 0.75rem !important;
}
.pl-1 {
padding-left: 1rem !important;
}
.pl-1-5 {
padding-left: 1.5rem !important;
}
.pl-2 {
padding-left: 2rem !important;
}
.pl-2-5 {
padding-left: 2.5rem !important;
}
.pl-3 {
padding-left: 3rem !important;
}
.pl-3-5 {
padding-left: 3.5rem !important;
}
.pl-4 {
padding-left: 4rem !important;
}
.pl-4-5 {
padding-left: 4.5rem !important;
}
.pl-5 {
padding-left: 5rem !important;
}
.text-left {
text-align: left !important;
}
.text-right {
text-align: right !important;
}
.text-center {
text-align: center !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;
}
@media (min-width: 768px) {
.overflow-md-auto {
overflow: auto !important;
}
.overflow-md-hidden {
overflow: hidden !important;
}
.d-md-inline-block {
display: inline-block !important;
}
.d-md-block {
display: block !important;
}
.d-md-flex {
display: flex !important;
}
.d-md-inherit {
display: inherit !important;
}
.d-md-none {
display: none !important;
}
.position-md-static {
position: static !important;
}
.position-md-relative {
position: relative !important;
}
.position-md-fixed {
position: fixed !important;
}
.position-md-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.position-md-absolute {
position: absolute !important;
}
.abs-md-center {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.top-md-0 {
top: 0 !important;
}
.top-md-50 {
top: 50% !important;
}
.top-md-100 {
top: 100% !important;
}
.bottom-md-0 {
bottom: 0 !important;
}
.bottom-md-50 {
bottom: 50% !important;
}
.bottom-md-100 {
bottom: 100% !important;
}
.left-md-0 {
left: 0 !important;
}
.left-md-50 {
left: 50% !important;
}
.left-md-100 {
left: 100% !important;
}
.right-md-0 {
right: 0 !important;
}
.right-md-50 {
right: 50% !important;
}
.right-md-100 {
right: 100% !important;
}
.w-md-25 {
width: 25% !important;
}
.w-md-50 {
width: 50% !important;
}
.w-md-75 {
width: 75% !important;
}
.w-md-100 {
width: 100% !important;
}
.w-md-auto {
width: auto !important;
}
.mw-md-100 {
max-width: 100% !important;
}
.vw-md-100 {
width: 100vw !important;
}
.min-md-vw-100 {
min-width: 100vw !important;
}
.h-md-25 {
height: 25% !important;
}
.h-md-50 {
height: 50% !important;
}
.h-md-75 {
height: 75% !important;
}
.h-md-100 {
height: 100% !important;
}
.h-md-auto {
height: auto !important;
}
.mh-md-100 {
max-height: 100% !important;
}
.vh-md-100 {
height: 100vh !important;
}
.min-md-vh-100 {
min-height: 100vh !important;
}
.flex-md-row {
flex-direction: row !important;
}
.flex-md-column {
flex-direction: column !important;
}
.flex-md-row-reverse {
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
flex-direction: column-reverse !important;
}
.flex-md-wrap {
flex-wrap: wrap !important;
}
.flex-md-nowrap {
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-md-left {
justify-content: flex-start !important;
}
.justify-content-md-right {
justify-content: flex-end !important;
}
.justify-content-md-center {
justify-content: center !important;
}
.justify-content-md-between {
justify-content: space-between !important;
}
.justify-content-md-around {
justify-content: space-around !important;
}
.justify-content-md-evenly {
justify-content: space-evenly !important;
}
.align-items-md-left {
align-items: flex-start !important;
}
.align-items-md-right {
align-items: flex-end !important;
}
.align-items-md-center {
align-items: center !important;
}
.align-items-md-end {
align-items: end !important;
}
.align-items-md-stretch {
align-items: stretch !important;
}
.m-md-0 {
margin: 0 !important;
}
.m-md-auto {
margin: auto !important;
}
.m-md-0-25 {
margin: 0.25rem !important;
}
.m-md-0-5 {
margin: 0.5rem !important;
}
.m-md-0-75 {
margin: 0.75rem !important;
}
.m-md-1 {
margin: 1rem !important;
}
.m-md-1-5 {
margin: 1.5rem !important;
}
.m-md-2 {
margin: 2rem !important;
}
.m-md-2-5 {
margin: 2.5rem !important;
}
.m-md-3 {
margin: 3rem !important;
}
.m-md-3-5 {
margin: 3.5rem !important;
}
.m-md-4 {
margin: 4rem !important;
}
.m-md-4-5 {
margin: 4.5rem !important;
}
.m-md-5 {
margin: 5rem !important;
}
.mx-md-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-md-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.mx-md-0-25 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-md-0-5 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-md-0-75 {
margin-right: 0.75rem !important;
margin-left: 0.75rem !important;
}
.mx-md-1 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-md-1-5 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-md-2 {
margin-right: 2rem !important;
margin-left: 2rem !important;
}
.mx-md-2-5 {
margin-right: 2.5rem !important;
margin-left: 2.5rem !important;
}
.mx-md-3 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-md-3-5 {
margin-right: 3.5rem !important;
margin-left: 3.5rem !important;
}
.mx-md-4 {
margin-right: 4rem !important;
margin-left: 4rem !important;
}
.mx-md-4-5 {
margin-right: 4.5rem !important;
margin-left: 4.5rem !important;
}
.mx-md-5 {
margin-right: 5rem !important;
margin-left: 5rem !important;
}
.my-md-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-md-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.my-md-0-25 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-md-0-5 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-md-0-75 {
margin-top: 0.75rem !important;
margin-bottom: 0.75rem !important;
}
.my-md-1 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-md-1-5 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-md-2 {
margin-top: 2rem !important;
margin-bottom: 2rem !important;
}
.my-md-2-5 {
margin-top: 2.5rem !important;
margin-bottom: 2.5rem !important;
}
.my-md-3 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-md-3-5 {
margin-top: 3.5rem !important;
margin-bottom: 3.5rem !important;
}
.my-md-4 {
margin-top: 4rem !important;
margin-bottom: 4rem !important;
}
.my-md-4-5 {
margin-top: 4.5rem !important;
margin-bottom: 4.5rem !important;
}
.my-md-5 {
margin-top: 5rem !important;
margin-bottom: 5rem !important;
}
.mt-md-0 {
margin-top: 0 !important;
}
.mt-md-auto {
margin-top: auto !important;
}
.mt-md-0-25 {
margin-top: 0.25rem !important;
}
.mt-md-0-5 {
margin-top: 0.5rem !important;
}
.mt-md-0-75 {
margin-top: 0.75rem !important;
}
.mt-md-1 {
margin-top: 1rem !important;
}
.mt-md-1-5 {
margin-top: 1.5rem !important;
}
.mt-md-2 {
margin-top: 2rem !important;
}
.mt-md-2-5 {
margin-top: 2.5rem !important;
}
.mt-md-3 {
margin-top: 3rem !important;
}
.mt-md-3-5 {
margin-top: 3.5rem !important;
}
.mt-md-4 {
margin-top: 4rem !important;
}
.mt-md-4-5 {
margin-top: 4.5rem !important;
}
.mt-md-5 {
margin-top: 5rem !important;
}
.mr-md-0 {
margin-right: 0 !important;
}
.mr-md-auto {
margin-right: auto !important;
}
.mr-md-0-25 {
margin-right: 0.25rem !important;
}
.mr-md-0-5 {
margin-right: 0.5rem !important;
}
.mr-md-0-75 {
margin-right: 0.75rem !important;
}
.mr-md-1 {
margin-right: 1rem !important;
}
.mr-md-1-5 {
margin-right: 1.5rem !important;
}
.mr-md-2 {
margin-right: 2rem !important;
}
.mr-md-2-5 {
margin-right: 2.5rem !important;
}
.mr-md-3 {
margin-right: 3rem !important;
}
.mr-md-3-5 {
margin-right: 3.5rem !important;
}
.mr-md-4 {
margin-right: 4rem !important;
}
.mr-md-4-5 {
margin-right: 4.5rem !important;
}
.mr-md-5 {
margin-right: 5rem !important;
}
.mb-md-0 {
margin-bottom: 0 !important;
}
.mb-md-auto {
margin-bottom: auto !important;
}
.mb-md-0-25 {
margin-bottom: 0.25rem !important;
}
.mb-md-0-5 {
margin-bottom: 0.5rem !important;
}
.mb-md-0-75 {
margin-bottom: 0.75rem !important;
}
.mb-md-1 {
margin-bottom: 1rem !important;
}
.mb-md-1-5 {
margin-bottom: 1.5rem !important;
}
.mb-md-2 {
margin-bottom: 2rem !important;
}
.mb-md-2-5 {
margin-bottom: 2.5rem !important;
}
.mb-md-3 {
margin-bottom: 3rem !important;
}
.mb-md-3-5 {
margin-bottom: 3.5rem !important;
}
.mb-md-4 {
margin-bottom: 4rem !important;
}
.mb-md-4-5 {
margin-bottom: 4.5rem !important;
}
.mb-md-5 {
margin-bottom: 5rem !important;
}
.ml-md-0 {
margin-left: 0 !important;
}
.ml-md-auto {
margin-left: auto !important;
}
.ml-md-0-25 {
margin-left: 0.25rem !important;
}
.ml-md-0-5 {
margin-left: 0.5rem !important;
}
.ml-md-0-75 {
margin-left: 0.75rem !important;
}
.ml-md-1 {
margin-left: 1rem !important;
}
.ml-md-1-5 {
margin-left: 1.5rem !important;
}
.ml-md-2 {
margin-left: 2rem !important;
}
.ml-md-2-5 {
margin-left: 2.5rem !important;
}
.ml-md-3 {
margin-left: 3rem !important;
}
.ml-md-3-5 {
margin-left: 3.5rem !important;
}
.ml-md-4 {
margin-left: 4rem !important;
}
.ml-md-4-5 {
margin-left: 4.5rem !important;
}
.ml-md-5 {
margin-left: 5rem !important;
}
.p-md-0 {
padding: 0 !important;
}
.p-md-0-25 {
padding: 0.25rem !important;
}
.p-md-0-5 {
padding: 0.5rem !important;
}
.p-md-0-75 {
padding: 0.75rem !important;
}
.p-md-0-75 {
padding: 0.75rem !important;
}
.p-md-1 {
padding: 1rem !important;
}
.p-md-1-5 {
padding: 1.5rem !important;
}
.p-md-2 {
padding: 2rem !important;
}
.p-md-2-5 {
padding: 2.5rem !important;
}
.p-md-3 {
padding: 3rem !important;
}
.p-md-3-5 {
padding: 3.5rem !important;
}
.p-md-4 {
padding: 4rem !important;
}
.p-md-4-5 {
padding: 4.5rem !important;
}
.p-md-5 {
padding: 5rem !important;
}
.px-md-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-md-0-25 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-md-0-5 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-md-0-75 {
padding-right: 0.75rem !important;
padding-left: 0.75rem !important;
}
.px-md-1 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-md-1-5 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-md-2 {
padding-right: 2rem !important;
padding-left: 2rem !important;
}
.px-md-2-5 {
padding-right: 2.5rem !important;
padding-left: 2.5rem !important;
}
.px-md-3 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.px-md-3-5 {
padding-right: 3.5rem !important;
padding-left: 3.5rem !important;
}
.px-md-4 {
padding-right: 4rem !important;
padding-left: 4rem !important;
}
.px-md-4-5 {
padding-right: 4.5rem !important;
padding-left: 4.5rem !important;
}
.px-md-5 {
padding-right: 5rem !important;
padding-left: 5rem !important;
}
.py-md-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-md-0-25 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-md-0-5 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-md-0-75 {
padding-top: 0.75rem !important;
padding-bottom: 0.75rem !important;
}
.py-md-1 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-md-1-5 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-md-2 {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
.py-md-2-5 {
padding-top: 2.5rem !important;
padding-bottom: 2.5rem !important;
}
.py-md-3 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.py-md-3-5 {
padding-top: 3.5rem !important;
padding-bottom: 3.5rem !important;
}
.py-md-4 {
padding-top: 4rem !important;
padding-bottom: 4rem !important;
}
.py-md-4-5 {
padding-top: 4.5rem !important;
padding-bottom: 4.5rem !important;
}
.py-md-5 {
padding-top: 5rem !important;
padding-bottom: 5rem !important;
}
.pt-md-0 {
padding-top: 0 !important;
}
.pt-md-0-25 {
padding-top: 0.25rem !important;
}
.pt-md-0-5 {
padding-top: 0.5rem !important;
}
.pt-md-0-75 {
padding-top: 0.75rem !important;
}
.pt-md-1 {
padding-top: 1rem !important;
}
.pt-md-1-5 {
padding-top: 1.5rem !important;
}
.pt-md-2 {
padding-top: 2rem !important;
}
.pt-md-2-5 {
padding-top: 2.5rem !important;
}
.pt-md-3 {
padding-top: 3rem !important;
}
.pt-md-3-5 {
padding-top: 3.5rem !important;
}
.pt-md-4 {
padding-top: 4rem !important;
}
.pt-md-4-5 {
padding-top: 4.5rem !important;
}
.pt-md-5 {
padding-top: 5rem !important;
}
.pr-md-0 {
padding-right: 0 !important;
}
.pr-md-0-25 {
padding-right: 0.25rem !important;
}
.pr-md-0-5 {
padding-right: 0.5rem !important;
}
.pr-md-0-75 {
padding-right: 0.75rem !important;
}
.pr-md-1 {
padding-right: 1rem !important;
}
.pr-md-1-5 {
padding-right: 1.5rem !important;
}
.pr-md-2 {
padding-right: 2rem !important;
}
.pr-md-2-5 {
padding-right: 2.5rem !important;
}
.pr-md-3 {
padding-right: 3rem !important;
}
.pr-md-3-5 {
padding-right: 3.5rem !important;
}
.pr-md-4 {
padding-right: 4rem !important;
}
.pr-md-4-5 {
padding-right: 4.5rem !important;
}
.pr-md-5 {
padding-right: 5rem !important;
}
.pb-md-0 {
padding-bottom: 0 !important;
}
.pb-md-0-25 {
padding-bottom: 0.25rem !important;
}
.pb-md-0-5 {
padding-bottom: 0.5rem !important;
}
.pb-md-0-75 {
padding-bottom: 0.75rem !important;
}
.pb-md-1 {
padding-bottom: 1rem !important;
}
.pb-md-1-5 {
padding-bottom: 1.5rem !important;
}
.pb-md-2 {
padding-bottom: 2rem !important;
}
.pb-md-2-5 {
padding-bottom: 2.5rem !important;
}
.pb-md-3 {
padding-bottom: 3rem !important;
}
.pb-md-3-5 {
padding-bottom: 3.5rem !important;
}
.pb-md-4 {
padding-bottom: 4rem !important;
}
.pb-md-4-5 {
padding-bottom: 4.5rem !important;
}
.pb-md-5 {
padding-bottom: 5rem !important;
}
.pl-md-0 {
padding-left: 0 !important;
}
.pl-md-0-25 {
padding-left: 0.25rem !important;
}
.pl-md-0-5 {
padding-left: 0.5rem !important;
}
.pl-md-0-75 {
padding-left: 0.75rem !important;
}
.pl-md-1 {
padding-left: 1rem !important;
}
.pl-md-1-5 {
padding-left: 1.5rem !important;
}
.pl-md-2 {
padding-left: 2rem !important;
}
.pl-md-2-5 {
padding-left: 2.5rem !important;
}
.pl-md-3 {
padding-left: 3rem !important;
}
.pl-md-3-5 {
padding-left: 3.5rem !important;
}
.pl-md-4 {
padding-left: 4rem !important;
}
.pl-md-4-5 {
padding-left: 4.5rem !important;
}
.pl-md-5 {
padding-left: 5rem !important;
}
.text-md-left {
text-align: left !important;
}
.text-md-right {
text-align: right !important;
}
.text-md-center {
text-align: center !important;
}
.text-md-lowercase {
text-transform: lowercase !important;
}
.text-md-uppercase {
text-transform: uppercase !important;
}
.text-md-capitalize {
text-transform: capitalize !important;
}
.text-md-wrap {
white-space: normal !important;
}
.text-md-nowrap {
white-space: nowrap !important;
}
}
@media (min-width: 992px) {
.overflow-lg-auto {
overflow: auto !important;
}
.overflow-lg-hidden {
overflow: hidden !important;
}
.d-lg-inline-block {
display: inline-block !important;
}
.d-lg-block {
display: block !important;
}
.d-lg-flex {
display: flex !important;
}
.d-lg-inherit {
display: inherit !important;
}
.d-lg-none {
display: none !important;
}
.position-lg-static {
position: static !important;
}
.position-lg-relative {
position: relative !important;
}
.position-lg-fixed {
position: fixed !important;
}
.position-lg-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.position-lg-absolute {
position: absolute !important;
}
.abs-lg-center {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.top-lg-0 {
top: 0 !important;
}
.top-lg-50 {
top: 50% !important;
}
.top-lg-100 {
top: 100% !important;
}
.bottom-lg-0 {
bottom: 0 !important;
}
.bottom-lg-50 {
bottom: 50% !important;
}
.bottom-lg-100 {
bottom: 100% !important;
}
.left-lg-0 {
left: 0 !important;
}
.left-lg-50 {
left: 50% !important;
}
.left-lg-100 {
left: 100% !important;
}
.right-lg-0 {
right: 0 !important;
}
.right-lg-50 {
right: 50% !important;
}
.right-lg-100 {
right: 100% !important;
}
.w-lg-25 {
width: 25% !important;
}
.w-lg-50 {
width: 50% !important;
}
.w-lg-75 {
width: 75% !important;
}
.w-lg-100 {
width: 100% !important;
}
.w-lg-auto {
width: auto !important;
}
.mw-lg-100 {
max-width: 100% !important;
}
.vw-lg-100 {
width: 100vw !important;
}
.min-lg-vw-100 {
min-width: 100vw !important;
}
.h-lg-25 {
height: 25% !important;
}
.h-lg-50 {
height: 50% !important;
}
.h-lg-75 {
height: 75% !important;
}
.h-lg-100 {
height: 100% !important;
}
.h-lg-auto {
height: auto !important;
}
.mh-lg-100 {
max-height: 100% !important;
}
.vh-lg-100 {
height: 100vh !important;
}
.min-lg-vh-100 {
min-height: 100vh !important;
}
.flex-lg-row {
flex-direction: row !important;
}
.flex-lg-column {
flex-direction: column !important;
}
.flex-lg-row-reverse {
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
flex-direction: column-reverse !important;
}
.flex-lg-wrap {
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-lg-left {
justify-content: flex-start !important;
}
.justify-content-lg-right {
justify-content: flex-end !important;
}
.justify-content-lg-center {
justify-content: center !important;
}
.justify-content-lg-between {
justify-content: space-between !important;
}
.justify-content-lg-around {
justify-content: space-around !important;
}
.justify-content-lg-evenly {
justify-content: space-evenly !important;
}
.align-items-lg-left {
align-items: flex-start !important;
}
.align-items-lg-right {
align-items: flex-end !important;
}
.align-items-lg-center {
align-items: center !important;
}
.align-items-lg-end {
align-items: end !important;
}
.align-items-lg-stretch {
align-items: stretch !important;
}
.m-lg-0 {
margin: 0 !important;
}
.m-lg-auto {
margin: auto !important;
}
.m-lg-0-25 {
margin: 0.25rem !important;
}
.m-lg-0-5 {
margin: 0.5rem !important;
}
.m-lg-0-75 {
margin: 0.75rem !important;
}
.m-lg-1 {
margin: 1rem !important;
}
.m-lg-1-5 {
margin: 1.5rem !important;
}
.m-lg-2 {
margin: 2rem !important;
}
.m-lg-2-5 {
margin: 2.5rem !important;
}
.m-lg-3 {
margin: 3rem !important;
}
.m-lg-3-5 {
margin: 3.5rem !important;
}
.m-lg-4 {
margin: 4rem !important;
}
.m-lg-4-5 {
margin: 4.5rem !important;
}
.m-lg-5 {
margin: 5rem !important;
}
.mx-lg-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-lg-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.mx-lg-0-25 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-lg-0-5 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-lg-0-75 {
margin-right: 0.75rem !important;
margin-left: 0.75rem !important;
}
.mx-lg-1 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-lg-1-5 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-lg-2 {
margin-right: 2rem !important;
margin-left: 2rem !important;
}
.mx-lg-2-5 {
margin-right: 2.5rem !important;
margin-left: 2.5rem !important;
}
.mx-lg-3 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-lg-3-5 {
margin-right: 3.5rem !important;
margin-left: 3.5rem !important;
}
.mx-lg-4 {
margin-right: 4rem !important;
margin-left: 4rem !important;
}
.mx-lg-4-5 {
margin-right: 4.5rem !important;
margin-left: 4.5rem !important;
}
.mx-lg-5 {
margin-right: 5rem !important;
margin-left: 5rem !important;
}
.my-lg-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-lg-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.my-lg-0-25 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-lg-0-5 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-lg-0-75 {
margin-top: 0.75rem !important;
margin-bottom: 0.75rem !important;
}
.my-lg-1 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-lg-1-5 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-lg-2 {
margin-top: 2rem !important;
margin-bottom: 2rem !important;
}
.my-lg-2-5 {
margin-top: 2.5rem !important;
margin-bottom: 2.5rem !important;
}
.my-lg-3 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-lg-3-5 {
margin-top: 3.5rem !important;
margin-bottom: 3.5rem !important;
}
.my-lg-4 {
margin-top: 4rem !important;
margin-bottom: 4rem !important;
}
.my-lg-4-5 {
margin-top: 4.5rem !important;
margin-bottom: 4.5rem !important;
}
.my-lg-5 {
margin-top: 5rem !important;
margin-bottom: 5rem !important;
}
.mt-lg-0 {
margin-top: 0 !important;
}
.mt-lg-auto {
margin-top: auto !important;
}
.mt-lg-0-25 {
margin-top: 0.25rem !important;
}
.mt-lg-0-5 {
margin-top: 0.5rem !important;
}
.mt-lg-0-75 {
margin-top: 0.75rem !important;
}
.mt-lg-1 {
margin-top: 1rem !important;
}
.mt-lg-1-5 {
margin-top: 1.5rem !important;
}
.mt-lg-2 {
margin-top: 2rem !important;
}
.mt-lg-2-5 {
margin-top: 2.5rem !important;
}
.mt-lg-3 {
margin-top: 3rem !important;
}
.mt-lg-3-5 {
margin-top: 3.5rem !important;
}
.mt-lg-4 {
margin-top: 4rem !important;
}
.mt-lg-4-5 {
margin-top: 4.5rem !important;
}
.mt-lg-5 {
margin-top: 5rem !important;
}
.mr-lg-0 {
margin-right: 0 !important;
}
.mr-lg-auto {
margin-right: auto !important;
}
.mr-lg-0-25 {
margin-right: 0.25rem !important;
}
.mr-lg-0-5 {
margin-right: 0.5rem !important;
}
.mr-lg-0-75 {
margin-right: 0.75rem !important;
}
.mr-lg-1 {
margin-right: 1rem !important;
}
.mr-lg-1-5 {
margin-right: 1.5rem !important;
}
.mr-lg-2 {
margin-right: 2rem !important;
}
.mr-lg-2-5 {
margin-right: 2.5rem !important;
}
.mr-lg-3 {
margin-right: 3rem !important;
}
.mr-lg-3-5 {
margin-right: 3.5rem !important;
}
.mr-lg-4 {
margin-right: 4rem !important;
}
.mr-lg-4-5 {
margin-right: 4.5rem !important;
}
.mr-lg-5 {
margin-right: 5rem !important;
}
.mb-lg-0 {
margin-bottom: 0 !important;
}
.mb-lg-auto {
margin-bottom: auto !important;
}
.mb-lg-0-25 {
margin-bottom: 0.25rem !important;
}
.mb-lg-0-5 {
margin-bottom: 0.5rem !important;
}
.mb-lg-0-75 {
margin-bottom: 0.75rem !important;
}
.mb-lg-1 {
margin-bottom: 1rem !important;
}
.mb-lg-1-5 {
margin-bottom: 1.5rem !important;
}
.mb-lg-2 {
margin-bottom: 2rem !important;
}
.mb-lg-2-5 {
margin-bottom: 2.5rem !important;
}
.mb-lg-3 {
margin-bottom: 3rem !important;
}
.mb-lg-3-5 {
margin-bottom: 3.5rem !important;
}
.mb-lg-4 {
margin-bottom: 4rem !important;
}
.mb-lg-4-5 {
margin-bottom: 4.5rem !important;
}
.mb-lg-5 {
margin-bottom: 5rem !important;
}
.ml-lg-0 {
margin-left: 0 !important;
}
.ml-lg-auto {
margin-left: auto !important;
}
.ml-lg-0-25 {
margin-left: 0.25rem !important;
}
.ml-lg-0-5 {
margin-left: 0.5rem !important;
}
.ml-lg-0-75 {
margin-left: 0.75rem !important;
}
.ml-lg-1 {
margin-left: 1rem !important;
}
.ml-lg-1-5 {
margin-left: 1.5rem !important;
}
.ml-lg-2 {
margin-left: 2rem !important;
}
.ml-lg-2-5 {
margin-left: 2.5rem !important;
}
.ml-lg-3 {
margin-left: 3rem !important;
}
.ml-lg-3-5 {
margin-left: 3.5rem !important;
}
.ml-lg-4 {
margin-left: 4rem !important;
}
.ml-lg-4-5 {
margin-left: 4.5rem !important;
}
.ml-lg-5 {
margin-left: 5rem !important;
}
.p-lg-0 {
padding: 0 !important;
}
.p-lg-0-25 {
padding: 0.25rem !important;
}
.p-lg-0-5 {
padding: 0.5rem !important;
}
.p-lg-0-75 {
padding: 0.75rem !important;
}
.p-lg-1 {
padding: 1rem !important;
}
.p-lg-1-5 {
padding: 1.5rem !important;
}
.p-lg-2 {
padding: 2rem !important;
}
.p-lg-2-5 {
padding: 2.5rem !important;
}
.p-lg-3 {
padding: 3rem !important;
}
.p-lg-3-5 {
padding: 3.5rem !important;
}
.p-lg-4 {
padding: 4rem !important;
}
.p-lg-4-5 {
padding: 4.5rem !important;
}
.p-lg-5 {
padding: 5rem !important;
}
.px-lg-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-lg-0-25 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-lg-0-5 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-lg-0-75 {
padding-right: 0.75rem !important;
padding-left: 0.75rem !important;
}
.px-lg-1 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-lg-1-5 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-lg-2 {
padding-right: 2rem !important;
padding-left: 2rem !important;
}
.px-lg-2-5 {
padding-right: 2.5rem !important;
padding-left: 2.5rem !important;
}
.px-lg-3 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.px-lg-3-5 {
padding-right: 3.5rem !important;
padding-left: 3.5rem !important;
}
.px-lg-4 {
padding-right: 4rem !important;
padding-left: 4rem !important;
}
.px-lg-4-5 {
padding-right: 4.5rem !important;
padding-left: 4.5rem !important;
}
.px-lg-5 {
padding-right: 5rem !important;
padding-left: 5rem !important;
}
.py-lg-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-lg-0-25 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-lg-0-5 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-lg-0-75 {
padding-top: 0.75rem !important;
padding-bottom: 0.75rem !important;
}
.py-lg-1 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-lg-1-5 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-lg-2 {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
.py-lg-2-5 {
padding-top: 2.5rem !important;
padding-bottom: 2.5rem !important;
}
.py-lg-3 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.py-lg-3-5 {
padding-top: 3.5rem !important;
padding-bottom: 3.5rem !important;
}
.py-lg-4 {
padding-top: 4rem !important;
padding-bottom: 4rem !important;
}
.py-lg-4-5 {
padding-top: 4.5rem !important;
padding-bottom: 4.5rem !important;
}
.py-lg-5 {
padding-top: 5rem !important;
padding-bottom: 5rem !important;
}
.pt-lg-0 {
padding-top: 0 !important;
}
.pt-lg-0-25 {
padding-top: 0.25rem !important;
}
.pt-lg-0-5 {
padding-top: 0.5rem !important;
}
.pt-lg-0-75 {
padding-top: 0.75rem !important;
}
.pt-lg-1 {
padding-top: 1rem !important;
}
.pt-lg-1-5 {
padding-top: 1.5rem !important;
}
.pt-lg-2 {
padding-top: 2rem !important;
}
.pt-lg-2-5 {
padding-top: 2.5rem !important;
}
.pt-lg-3 {
padding-top: 3rem !important;
}
.pt-lg-3-5 {
padding-top: 3.5rem !important;
}
.pt-lg-4 {
padding-top: 4rem !important;
}
.pt-lg-4-5 {
padding-top: 4.5rem !important;
}
.pt-lg-5 {
padding-top: 5rem !important;
}
.pr-lg-0 {
padding-right: 0 !important;
}
.pr-lg-0-25 {
padding-right: 0.25rem !important;
}
.pr-lg-0-5 {
padding-right: 0.5rem !important;
}
.pr-lg-0-75 {
padding-right: 0.75rem !important;
}
.pr-lg-1 {
padding-right: 1rem !important;
}
.pr-lg-1-5 {
padding-right: 1.5rem !important;
}
.pr-lg-2 {
padding-right: 2rem !important;
}
.pr-lg-2-5 {
padding-right: 2.5rem !important;
}
.pr-lg-3 {
padding-right: 3rem !important;
}
.pr-lg-3-5 {
padding-right: 3.5rem !important;
}
.pr-lg-4 {
padding-right: 4rem !important;
}
.pr-lg-4-5 {
padding-right: 4.5rem !important;
}
.pr-lg-5 {
padding-right: 5rem !important;
}
.pb-lg-0 {
padding-bottom: 0 !important;
}
.pb-lg-0-25 {
padding-bottom: 0.25rem !important;
}
.pb-lg-0-5 {
padding-bottom: 0.5rem !important;
}
.pb-lg-0-75 {
padding-bottom: 0.75rem !important;
}
.pb-lg-1 {
padding-bottom: 1rem !important;
}
.pb-lg-1-5 {
padding-bottom: 1.5rem !important;
}
.pb-lg-2 {
padding-bottom: 2rem !important;
}
.pb-lg-2-5 {
padding-bottom: 2.5rem !important;
}
.pb-lg-3 {
padding-bottom: 3rem !important;
}
.pb-lg-3-5 {
padding-bottom: 3.5rem !important;
}
.pb-lg-4 {
padding-bottom: 4rem !important;
}
.pb-lg-4-5 {
padding-bottom: 4.5rem !important;
}
.pb-lg-5 {
padding-bottom: 5rem !important;
}
.pl-lg-0 {
padding-left: 0 !important;
}
.pl-lg-0-25 {
padding-left: 0.25rem !important;
}
.pl-lg-0-5 {
padding-left: 0.5rem !important;
}
.pl-lg-0-75 {
padding-left: 0.75rem !important;
}
.pl-lg-1 {
padding-left: 1rem !important;
}
.pl-lg-1-5 {
padding-left: 1.5rem !important;
}
.pl-lg-2 {
padding-left: 2rem !important;
}
.pl-lg-2-5 {
padding-left: 2.5rem !important;
}
.pl-lg-3 {
padding-left: 3rem !important;
}
.pl-lg-3-5 {
padding-left: 3.5rem !important;
}
.pl-lg-4 {
padding-left: 4rem !important;
}
.pl-lg-4-5 {
padding-left: 4.5rem !important;
}
.pl-lg-5 {
padding-left: 5rem !important;
}
.text-lg-left {
text-align: left !important;
}
.text-lg-right {
text-align: right !important;
}
.text-lg-center {
text-align: center !important;
}
.text-lg-lowercase {
text-transform: lowercase !important;
}
.text-lg-uppercase {
text-transform: uppercase !important;
}
.text-lg-capitalize {
text-transform: capitalize !important;
}
.text-lg-wrap {
white-space: normal !important;
}
.text-lg-nowrap {
white-space: nowrap !important;
}
}
@media (min-width: 1200px) {
.overflow-xl-auto {
overflow: auto !important;
}
.overflow-xl-hidden {
overflow: hidden !important;
}
.d-xl-inline-block {
display: inline-block !important;
}
.d-xl-block {
display: block !important;
}
.d-xl-flex {
display: flex !important;
}
.d-xl-inherit {
display: inherit !important;
}
.d-xl-none {
display: none !important;
}
.position-xl-static {
position: static !important;
}
.position-xl-relative {
position: relative !important;
}
.position-xl-fixed {
position: fixed !important;
}
.position-xl-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.position-xl-absolute {
position: absolute !important;
}
.abs-xl-center {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.top-xl-0 {
top: 0 !important;
}
.top-xl-50 {
top: 50% !important;
}
.top-xl-100 {
top: 100% !important;
}
.bottom-xl-0 {
bottom: 0 !important;
}
.bottom-xl-50 {
bottom: 50% !important;
}
.bottom-xl-100 {
bottom: 100% !important;
}
.left-xl-0 {
left: 0 !important;
}
.left-xl-50 {
left: 50% !important;
}
.left-xl-100 {
left: 100% !important;
}
.right-xl-0 {
right: 0 !important;
}
.right-xl-50 {
right: 50% !important;
}
.right-xl-100 {
right: 100% !important;
}
.w-xl-25 {
width: 25% !important;
}
.w-xl-50 {
width: 50% !important;
}
.w-xl-75 {
width: 75% !important;
}
.w-xl-100 {
width: 100% !important;
}
.w-xl-auto {
width: auto !important;
}
.mw-xl-100 {
max-width: 100% !important;
}
.vw-xl-100 {
width: 100vw !important;
}
.min-xl-vw-100 {
min-width: 100vw !important;
}
.h-xl-25 {
height: 25% !important;
}
.h-xl-50 {
height: 50% !important;
}
.h-xl-75 {
height: 75% !important;
}
.h-xl-100 {
height: 100% !important;
}
.h-xl-auto {
height: auto !important;
}
.mh-xl-100 {
max-height: 100% !important;
}
.vh-xl-100 {
height: 100vh !important;
}
.min-xl-vh-100 {
min-height: 100vh !important;
}
.flex-xl-row {
flex-direction: row !important;
}
.flex-xl-column {
flex-direction: column !important;
}
.flex-xl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xl-wrap {
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-xl-left {
justify-content: flex-start !important;
}
.justify-content-xl-right {
justify-content: flex-end !important;
}
.justify-content-xl-center {
justify-content: center !important;
}
.justify-content-xl-between {
justify-content: space-between !important;
}
.justify-content-xl-around {
justify-content: space-around !important;
}
.justify-content-xl-evenly {
justify-content: space-evenly !important;
}
.align-items-xl-left {
align-items: flex-start !important;
}
.align-items-xl-right {
align-items: flex-end !important;
}
.align-items-xl-center {
align-items: center !important;
}
.align-items-xl-end {
align-items: end !important;
}
.align-items-xl-stretch {
align-items: stretch !important;
}
.m-xl-0 {
margin: 0 !important;
}
.m-xl-auto {
margin: auto !important;
}
.m-xl-0-25 {
margin: 0.25rem !important;
}
.m-xl-0-5 {
margin: 0.5rem !important;
}
.m-xl-0-75 {
margin: 0.75rem !important;
}
.m-xl-1 {
margin: 1rem !important;
}
.m-xl-1-5 {
margin: 1.5rem !important;
}
.m-xl-2 {
margin: 2rem !important;
}
.m-xl-2-5 {
margin: 2.5rem !important;
}
.m-xl-3 {
margin: 3rem !important;
}
.m-xl-3-5 {
margin: 3.5rem !important;
}
.m-xl-4 {
margin: 4rem !important;
}
.m-xl-4-5 {
margin: 4.5rem !important;
}
.m-xl-5 {
margin: 5rem !important;
}
.mx-xl-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-xl-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.mx-xl-0-25 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-xl-0-5 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-xl-0-75 {
margin-right: 0.75rem !important;
margin-left: 0.75rem !important;
}
.mx-xl-1 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-xl-1-5 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-xl-2 {
margin-right: 2rem !important;
margin-left: 2rem !important;
}
.mx-xl-2-5 {
margin-right: 2.5rem !important;
margin-left: 2.5rem !important;
}
.mx-xl-3 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-xl-3-5 {
margin-right: 3.5rem !important;
margin-left: 3.5rem !important;
}
.mx-xl-4 {
margin-right: 4rem !important;
margin-left: 4rem !important;
}
.mx-xl-4-5 {
margin-right: 4.5rem !important;
margin-left: 4.5rem !important;
}
.mx-xl-5 {
margin-right: 5rem !important;
margin-left: 5rem !important;
}
.my-xl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.my-xl-0-25 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xl-0-5 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xl-0-75 {
margin-top: 0.75rem !important;
margin-bottom: 0.75rem !important;
}
.my-xl-1 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xl-1-5 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xl-2 {
margin-top: 2rem !important;
margin-bottom: 2rem !important;
}
.my-xl-2-5 {
margin-top: 2.5rem !important;
margin-bottom: 2.5rem !important;
}
.my-xl-3 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xl-3-5 {
margin-top: 3.5rem !important;
margin-bottom: 3.5rem !important;
}
.my-xl-4 {
margin-top: 4rem !important;
margin-bottom: 4rem !important;
}
.my-xl-4-5 {
margin-top: 4.5rem !important;
margin-bottom: 4.5rem !important;
}
.my-xl-5 {
margin-top: 5rem !important;
margin-bottom: 5rem !important;
}
.mt-xl-0 {
margin-top: 0 !important;
}
.mt-xl-auto {
margin-top: auto !important;
}
.mt-xl-0-25 {
margin-top: 0.25rem !important;
}
.mt-xl-0-5 {
margin-top: 0.5rem !important;
}
.mt-xl-0-75 {
margin-top: 0.75rem !important;
}
.mt-xl-1 {
margin-top: 1rem !important;
}
.mt-xl-1-5 {
margin-top: 1.5rem !important;
}
.mt-xl-2 {
margin-top: 2rem !important;
}
.mt-xl-2-5 {
margin-top: 2.5rem !important;
}
.mt-xl-3 {
margin-top: 3rem !important;
}
.mt-xl-3-5 {
margin-top: 3.5rem !important;
}
.mt-xl-4 {
margin-top: 4rem !important;
}
.mt-xl-4-5 {
margin-top: 4.5rem !important;
}
.mt-xl-5 {
margin-top: 5rem !important;
}
.mr-xl-0 {
margin-right: 0 !important;
}
.mr-xl-auto {
margin-right: auto !important;
}
.mr-xl-0-25 {
margin-right: 0.25rem !important;
}
.mr-xl-0-5 {
margin-right: 0.5rem !important;
}
.mr-xl-0-75 {
margin-right: 0.75rem !important;
}
.mr-xl-1 {
margin-right: 1rem !important;
}
.mr-xl-1-5 {
margin-right: 1.5rem !important;
}
.mr-xl-2 {
margin-right: 2rem !important;
}
.mr-xl-2-5 {
margin-right: 2.5rem !important;
}
.mr-xl-3 {
margin-right: 3rem !important;
}
.mr-xl-3-5 {
margin-right: 3.5rem !important;
}
.mr-xl-4 {
margin-right: 4rem !important;
}
.mr-xl-4-5 {
margin-right: 4.5rem !important;
}
.mr-xl-5 {
margin-right: 5rem !important;
}
.mb-xl-0 {
margin-bottom: 0 !important;
}
.mb-xl-auto {
margin-bottom: auto !important;
}
.mb-xl-0-25 {
margin-bottom: 0.25rem !important;
}
.mb-xl-0-5 {
margin-bottom: 0.5rem !important;
}
.mb-xl-0-75 {
margin-bottom: 0.75rem !important;
}
.mb-xl-1 {
margin-bottom: 1rem !important;
}
.mb-xl-1-5 {
margin-bottom: 1.5rem !important;
}
.mb-xl-2 {
margin-bottom: 2rem !important;
}
.mb-xl-2-5 {
margin-bottom: 2.5rem !important;
}
.mb-xl-3 {
margin-bottom: 3rem !important;
}
.mb-xl-3-5 {
margin-bottom: 3.5rem !important;
}
.mb-xl-4 {
margin-bottom: 4rem !important;
}
.mb-xl-4-5 {
margin-bottom: 4.5rem !important;
}
.mb-xl-5 {
margin-bottom: 5rem !important;
}
.ml-xl-0 {
margin-left: 0 !important;
}
.ml-xl-auto {
margin-left: auto !important;
}
.ml-xl-0-25 {
margin-left: 0.25rem !important;
}
.ml-xl-0-5 {
margin-left: 0.5rem !important;
}
.ml-xl-0-75 {
margin-left: 0.75rem !important;
}
.ml-xl-1 {
margin-left: 1rem !important;
}
.ml-xl-1-5 {
margin-left: 1.5rem !important;
}
.ml-xl-2 {
margin-left: 2rem !important;
}
.ml-xl-2-5 {
margin-left: 2.5rem !important;
}
.ml-xl-3 {
margin-left: 3rem !important;
}
.ml-xl-3-5 {
margin-left: 3.5rem !important;
}
.ml-xl-4 {
margin-left: 4rem !important;
}
.ml-xl-4-5 {
margin-left: 4.5rem !important;
}
.ml-xl-5 {
margin-left: 5rem !important;
}
.p-xl-0 {
padding: 0 !important;
}
.p-xl-0-25 {
padding: 0.25rem !important;
}
.p-xl-0-5 {
padding: 0.5rem !important;
}
.p-xl-0-75 {
padding: 0.75rem !important;
}
.p-xl-1 {
padding: 1rem !important;
}
.p-xl-1-5 {
padding: 1.5rem !important;
}
.p-xl-2 {
padding: 2rem !important;
}
.p-xl-2-5 {
padding: 2.5rem !important;
}
.p-xl-3 {
padding: 3rem !important;
}
.p-xl-3-5 {
padding: 3.5rem !important;
}
.p-xl-4 {
padding: 4rem !important;
}
.p-xl-4-5 {
padding: 4.5rem !important;
}
.p-xl-5 {
padding: 5rem !important;
}
.px-xl-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-xl-0-25 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-xl-0-5 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-xl-0-75 {
padding-right: 0.75rem !important;
padding-left: 0.75rem !important;
}
.px-xl-1 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-xl-1-5 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-xl-2 {
padding-right: 2rem !important;
padding-left: 2rem !important;
}
.px-xl-2-5 {
padding-right: 2.5rem !important;
padding-left: 2.5rem !important;
}
.px-xl-3 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.px-xl-3-5 {
padding-right: 3.5rem !important;
padding-left: 3.5rem !important;
}
.px-xl-4 {
padding-right: 4rem !important;
padding-left: 4rem !important;
}
.px-xl-4-5 {
padding-right: 4.5rem !important;
padding-left: 4.5rem !important;
}
.px-xl-5 {
padding-right: 5rem !important;
padding-left: 5rem !important;
}
.py-xl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xl-0-25 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xl-0-5 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xl-0-75 {
padding-top: 0.75rem !important;
padding-bottom: 0.75rem !important;
}
.py-xl-1 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xl-1-5 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xl-2 {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
.py-xl-2-5 {
padding-top: 2.5rem !important;
padding-bottom: 2.5rem !important;
}
.py-xl-3 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.py-xl-3-5 {
padding-top: 3.5rem !important;
padding-bottom: 3.5rem !important;
}
.py-xl-4 {
padding-top: 4rem !important;
padding-bottom: 4rem !important;
}
.py-xl-4-5 {
padding-top: 4.5rem !important;
padding-bottom: 4.5rem !important;
}
.py-xl-5 {
padding-top: 5rem !important;
padding-bottom: 5rem !important;
}
.pt-xl-0 {
padding-top: 0 !important;
}
.pt-xl-0-25 {
padding-top: 0.25rem !important;
}
.pt-xl-0-5 {
padding-top: 0.5rem !important;
}
.pt-xl-0-75 {
padding-top: 0.75rem !important;
}
.pt-xl-1 {
padding-top: 1rem !important;
}
.pt-xl-1-5 {
padding-top: 1.5rem !important;
}
.pt-xl-2 {
padding-top: 2rem !important;
}
.pt-xl-2-5 {
padding-top: 2.5rem !important;
}
.pt-xl-3 {
padding-top: 3rem !important;
}
.pt-xl-3-5 {
padding-top: 3.5rem !important;
}
.pt-xl-4 {
padding-top: 4rem !important;
}
.pt-xl-4-5 {
padding-top: 4.5rem !important;
}
.pt-xl-5 {
padding-top: 5rem !important;
}
.pr-xl-0 {
padding-right: 0 !important;
}
.pr-xl-0-25 {
padding-right: 0.25rem !important;
}
.pr-xl-0-5 {
padding-right: 0.5rem !important;
}
.pr-xl-0-75 {
padding-right: 0.75rem !important;
}
.pr-xl-1 {
padding-right: 1rem !important;
}
.pr-xl-1-5 {
padding-right: 1.5rem !important;
}
.pr-xl-2 {
padding-right: 2rem !important;
}
.pr-xl-2-5 {
padding-right: 2.5rem !important;
}
.pr-xl-3 {
padding-right: 3rem !important;
}
.pr-xl-3-5 {
padding-right: 3.5rem !important;
}
.pr-xl-4 {
padding-right: 4rem !important;
}
.pr-xl-4-5 {
padding-right: 4.5rem !important;
}
.pr-xl-5 {
padding-right: 5rem !important;
}
.pb-xl-0 {
padding-bottom: 0 !important;
}
.pb-xl-0-25 {
padding-bottom: 0.25rem !important;
}
.pb-xl-0-5 {
padding-bottom: 0.5rem !important;
}
.pb-xl-0-75 {
padding-bottom: 0.75rem !important;
}
.pb-xl-1 {
padding-bottom: 1rem !important;
}
.pb-xl-1-5 {
padding-bottom: 1.5rem !important;
}
.pb-xl-2 {
padding-bottom: 2rem !important;
}
.pb-xl-2-5 {
padding-bottom: 2.5rem !important;
}
.pb-xl-3 {
padding-bottom: 3rem !important;
}
.pb-xl-3-5 {
padding-bottom: 3.5rem !important;
}
.pb-xl-4 {
padding-bottom: 4rem !important;
}
.pb-xl-4-5 {
padding-bottom: 4.5rem !important;
}
.pb-xl-5 {
padding-bottom: 5rem !important;
}
.pl-xl-0 {
padding-left: 0 !important;
}
.pl-xl-0-25 {
padding-left: 0.25rem !important;
}
.pl-xl-0-5 {
padding-left: 0.5rem !important;
}
.pl-xl-0-75 {
padding-left: 0.75rem !important;
}
.pl-xl-1 {
padding-left: 1rem !important;
}
.pl-xl-1-5 {
padding-left: 1.5rem !important;
}
.pl-xl-2 {
padding-left: 2rem !important;
}
.pl-xl-2-5 {
padding-left: 2.5rem !important;
}
.pl-xl-3 {
padding-left: 3rem !important;
}
.pl-xl-3-5 {
padding-left: 3.5rem !important;
}
.pl-xl-4 {
padding-left: 4rem !important;
}
.pl-xl-4-5 {
padding-left: 4.5rem !important;
}
.pl-xl-5 {
padding-left: 5rem !important;
}
.text-xl-left {
text-align: left !important;
}
.text-xl-right {
text-align: right !important;
}
.text-xl-center {
text-align: center !important;
}
.text-xl-lowercase {
text-transform: lowercase !important;
}
.text-xl-uppercase {
text-transform: uppercase !important;
}
.text-xl-capitalize {
text-transform: capitalize !important;
}
.text-xl-wrap {
white-space: normal !important;
}
.text-xl-nowrap {
white-space: nowrap !important;
}
}
@media (min-width: 1400px) {
.overflow-xxl-auto {
overflow: auto !important;
}
.overflow-xxl-hidden {
overflow: hidden !important;
}
.d-xxl-inline-block {
display: inline-block !important;
}
.d-xxl-block {
display: block !important;
}
.d-xxl-flex {
display: flex !important;
}
.d-xxl-inherit {
display: inherit !important;
}
.d-xxl-none {
display: none !important;
}
.position-xxl-static {
position: static !important;
}
.position-xxl-relative {
position: relative !important;
}
.position-xxl-fixed {
position: fixed !important;
}
.position-xxl-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.position-xxl-absolute {
position: absolute !important;
}
.abs-xxl-center {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.top-xxl-0 {
top: 0 !important;
}
.top-xxl-50 {
top: 50% !important;
}
.top-xxl-100 {
top: 100% !important;
}
.bottom-xxl-0 {
bottom: 0 !important;
}
.bottom-xxl-50 {
bottom: 50% !important;
}
.bottom-xxl-100 {
bottom: 100% !important;
}
.left-xxl-0 {
left: 0 !important;
}
.left-xxl-50 {
left: 50% !important;
}
.left-xxl-100 {
left: 100% !important;
}
.right-xxl-0 {
right: 0 !important;
}
.right-xxl-50 {
right: 50% !important;
}
.right-xxl-100 {
right: 100% !important;
}
.w-xxl-25 {
width: 25% !important;
}
.w-xxl-50 {
width: 50% !important;
}
.w-xxl-75 {
width: 75% !important;
}
.w-xxl-100 {
width: 100% !important;
}
.w-xxl-auto {
width: auto !important;
}
.mw-xxl-100 {
max-width: 100% !important;
}
.vw-xxl-100 {
width: 100vw !important;
}
.min-xxl-vw-100 {
min-width: 100vw !important;
}
.h-xxl-25 {
height: 25% !important;
}
.h-xxl-50 {
height: 50% !important;
}
.h-xxl-75 {
height: 75% !important;
}
.h-xxl-100 {
height: 100% !important;
}
.h-xxl-auto {
height: auto !important;
}
.mh-xxl-100 {
max-height: 100% !important;
}
.vh-xxl-100 {
height: 100vh !important;
}
.min-xxl-vh-100 {
min-height: 100vh !important;
}
.flex-xxl-row {
flex-direction: row !important;
}
.flex-xxl-column {
flex-direction: column !important;
}
.flex-xxl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xxl-wrap {
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-xxl-left {
justify-content: flex-start !important;
}
.justify-content-xxl-right {
justify-content: flex-end !important;
}
.justify-content-xxl-center {
justify-content: center !important;
}
.justify-content-xxl-between {
justify-content: space-between !important;
}
.justify-content-xxl-around {
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
justify-content: space-evenly !important;
}
.align-items-xxl-left {
align-items: flex-start !important;
}
.align-items-xxl-right {
align-items: flex-end !important;
}
.align-items-xxl-center {
align-items: center !important;
}
.align-items-xxl-end {
align-items: end !important;
}
.align-items-xxl-stretch {
align-items: stretch !important;
}
.m-xxl-0 {
margin: 0 !important;
}
.m-xxl-auto {
margin: auto !important;
}
.m-xxl-0-25 {
margin: 0.25rem !important;
}
.m-xxl-0-5 {
margin: 0.5rem !important;
}
.m-xxl-0-75 {
margin: 0.75rem !important;
}
.m-xxl-1 {
margin: 1rem !important;
}
.m-xxl-1-5 {
margin: 1.5rem !important;
}
.m-xxl-2 {
margin: 2rem !important;
}
.m-xxl-2-5 {
margin: 2.5rem !important;
}
.m-xxl-3 {
margin: 3rem !important;
}
.m-xxl-3-5 {
margin: 3.5rem !important;
}
.m-xxl-4 {
margin: 4rem !important;
}
.m-xxl-4-5 {
margin: 4.5rem !important;
}
.m-xxl-5 {
margin: 5rem !important;
}
.mx-xxl-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-xxl-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.mx-xxl-0-25 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-xxl-0-5 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-xxl-0-75 {
margin-right: 0.75rem !important;
margin-left: 0.75rem !important;
}
.mx-xxl-1 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-xxl-1-5 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-xxl-2 {
margin-right: 2rem !important;
margin-left: 2rem !important;
}
.mx-xxl-2-5 {
margin-right: 2.5rem !important;
margin-left: 2.5rem !important;
}
.mx-xxl-3 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-xxl-3-5 {
margin-right: 3.5rem !important;
margin-left: 3.5rem !important;
}
.mx-xxl-4 {
margin-right: 4rem !important;
margin-left: 4rem !important;
}
.mx-xxl-4-5 {
margin-right: 4.5rem !important;
margin-left: 4.5rem !important;
}
.mx-xxl-5 {
margin-right: 5rem !important;
margin-left: 5rem !important;
}
.my-xxl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xxl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.my-xxl-0-25 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xxl-0-5 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xxl-0-75 {
margin-top: 0.75rem !important;
margin-bottom: 0.75rem !important;
}
.my-xxl-1 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xxl-1-5 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xxl-2 {
margin-top: 2rem !important;
margin-bottom: 2rem !important;
}
.my-xxl-2-5 {
margin-top: 2.5rem !important;
margin-bottom: 2.5rem !important;
}
.my-xxl-3 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xxl-3-5 {
margin-top: 3.5rem !important;
margin-bottom: 3.5rem !important;
}
.my-xxl-4 {
margin-top: 4rem !important;
margin-bottom: 4rem !important;
}
.my-xxl-4-5 {
margin-top: 4.5rem !important;
margin-bottom: 4.5rem !important;
}
.my-xxl-5 {
margin-top: 5rem !important;
margin-bottom: 5rem !important;
}
.mt-xxl-0 {
margin-top: 0 !important;
}
.mt-xxl-auto {
margin-top: auto !important;
}
.mt-xxl-0-25 {
margin-top: 0.25rem !important;
}
.mt-xxl-0-5 {
margin-top: 0.5rem !important;
}
.mt-xxl-0-75 {
margin-top: 0.75rem !important;
}
.mt-xxl-1 {
margin-top: 1rem !important;
}
.mt-xxl-1-5 {
margin-top: 1.5rem !important;
}
.mt-xxl-2 {
margin-top: 2rem !important;
}
.mt-xxl-2-5 {
margin-top: 2.5rem !important;
}
.mt-xxl-3 {
margin-top: 3rem !important;
}
.mt-xxl-3-5 {
margin-top: 3.5rem !important;
}
.mt-xxl-4 {
margin-top: 4rem !important;
}
.mt-xxl-4-5 {
margin-top: 4.5rem !important;
}
.mt-xxl-5 {
margin-top: 5rem !important;
}
.mr-xxl-0 {
margin-right: 0 !important;
}
.mr-xxl-auto {
margin-right: auto !important;
}
.mr-xxl-0-25 {
margin-right: 0.25rem !important;
}
.mr-xxl-0-5 {
margin-right: 0.5rem !important;
}
.mr-xxl-0-75 {
margin-right: 0.75rem !important;
}
.mr-xxl-1 {
margin-right: 1rem !important;
}
.mr-xxl-1-5 {
margin-right: 1.5rem !important;
}
.mr-xxl-2 {
margin-right: 2rem !important;
}
.mr-xxl-2-5 {
margin-right: 2.5rem !important;
}
.mr-xxl-3 {
margin-right: 3rem !important;
}
.mr-xxl-3-5 {
margin-right: 3.5rem !important;
}
.mr-xxl-4 {
margin-right: 4rem !important;
}
.mr-xxl-4-5 {
margin-right: 4.5rem !important;
}
.mr-xxl-5 {
margin-right: 5rem !important;
}
.mb-xxl-0 {
margin-bottom: 0 !important;
}
.mb-xxl-auto {
margin-bottom: auto !important;
}
.mb-xxl-0-25 {
margin-bottom: 0.25rem !important;
}
.mb-xxl-0-5 {
margin-bottom: 0.5rem !important;
}
.mb-xxl-0-75 {
margin-bottom: 0.75rem !important;
}
.mb-xxl-1 {
margin-bottom: 1rem !important;
}
.mb-xxl-1-5 {
margin-bottom: 1.5rem !important;
}
.mb-xxl-2 {
margin-bottom: 2rem !important;
}
.mb-xxl-2-5 {
margin-bottom: 2.5rem !important;
}
.mb-xxl-3 {
margin-bottom: 3rem !important;
}
.mb-xxl-3-5 {
margin-bottom: 3.5rem !important;
}
.mb-xxl-4 {
margin-bottom: 4rem !important;
}
.mb-xxl-4-5 {
margin-bottom: 4.5rem !important;
}
.mb-xxl-5 {
margin-bottom: 5rem !important;
}
.ml-xxl-0 {
margin-left: 0 !important;
}
.ml-xxl-auto {
margin-left: auto !important;
}
.ml-xxl-0-25 {
margin-left: 0.25rem !important;
}
.ml-xxl-0-5 {
margin-left: 0.5rem !important;
}
.ml-xxl-0-75 {
margin-left: 0.75rem !important;
}
.ml-xxl-1 {
margin-left: 1rem !important;
}
.ml-xxl-1-5 {
margin-left: 1.5rem !important;
}
.ml-xxl-2 {
margin-left: 2rem !important;
}
.ml-xxl-2-5 {
margin-left: 2.5rem !important;
}
.ml-xxl-3 {
margin-left: 3rem !important;
}
.ml-xxl-3-5 {
margin-left: 3.5rem !important;
}
.ml-xxl-4 {
margin-left: 4rem !important;
}
.ml-xxl-4-5 {
margin-left: 4.5rem !important;
}
.ml-xxl-5 {
margin-left: 5rem !important;
}
.p-xxl-0 {
padding: 0 !important;
}
.p-xxl-0-25 {
padding: 0.25rem !important;
}
.p-xxl-0-5 {
padding: 0.5rem !important;
}
.p-xxl-0-75 {
padding: 0.75rem !important;
}
.p-xxl-1 {
padding: 1rem !important;
}
.p-xxl-1-5 {
padding: 1.5rem !important;
}
.p-xxl-2 {
padding: 2rem !important;
}
.p-xxl-2-5 {
padding: 2.5rem !important;
}
.p-xxl-3 {
padding: 3rem !important;
}
.p-xxl-3-5 {
padding: 3.5rem !important;
}
.p-xxl-4 {
padding: 4rem !important;
}
.p-xxl-4-5 {
padding: 4.5rem !important;
}
.p-xxl-5 {
padding: 5rem !important;
}
.px-xxl-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-xxl-0-25 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-xxl-0-5 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-xxl-0-75 {
padding-right: 0.75rem !important;
padding-left: 0.75rem !important;
}
.px-xxl-1 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-xxl-1-5 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-xxl-2 {
padding-right: 2rem !important;
padding-left: 2rem !important;
}
.px-xxl-2-5 {
padding-right: 2.5rem !important;
padding-left: 2.5rem !important;
}
.px-xxl-3 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.px-xxl-3-5 {
padding-right: 3.5rem !important;
padding-left: 3.5rem !important;
}
.px-xxl-4 {
padding-right: 4rem !important;
padding-left: 4rem !important;
}
.px-xxl-4-5 {
padding-right: 4.5rem !important;
padding-left: 4.5rem !important;
}
.px-xxl-5 {
padding-right: 5rem !important;
padding-left: 5rem !important;
}
.py-xxl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xxl-0-25 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xxl-0-5 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xxl-0-75 {
padding-top: 0.75rem !important;
padding-bottom: 0.75rem !important;
}
.py-xxl-1 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xxl-1-5 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xxl-2 {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
.py-xxl-2-5 {
padding-top: 2.5rem !important;
padding-bottom: 2.5rem !important;
}
.py-xxl-3 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.py-xxl-3-5 {
padding-top: 3.5rem !important;
padding-bottom: 3.5rem !important;
}
.py-xxl-4 {
padding-top: 4rem !important;
padding-bottom: 4rem !important;
}
.py-xxl-4-5 {
padding-top: 4.5rem !important;
padding-bottom: 4.5rem !important;
}
.py-xxl-5 {
padding-top: 5rem !important;
padding-bottom: 5rem !important;
}
.pt-xxl-0 {
padding-top: 0 !important;
}
.pt-xxl-0-25 {
padding-top: 0.25rem !important;
}
.pt-xxl-0-5 {
padding-top: 0.5rem !important;
}
.pt-xxl-0-75 {
padding-top: 0.75rem !important;
}
.pt-xxl-1 {
padding-top: 1rem !important;
}
.pt-xxl-1-5 {
padding-top: 1.5rem !important;
}
.pt-xxl-2 {
padding-top: 2rem !important;
}
.pt-xxl-2-5 {
padding-top: 2.5rem !important;
}
.pt-xxl-3 {
padding-top: 3rem !important;
}
.pt-xxl-3-5 {
padding-top: 3.5rem !important;
}
.pt-xxl-4 {
padding-top: 4rem !important;
}
.pt-xxl-4-5 {
padding-top: 4.5rem !important;
}
.pt-xxl-5 {
padding-top: 5rem !important;
}
.pr-xxl-0 {
padding-right: 0 !important;
}
.pr-xxl-0-25 {
padding-right: 0.25rem !important;
}
.pr-xxl-0-5 {
padding-right: 0.5rem !important;
}
.pr-xxl-0-75 {
padding-right: 0.75rem !important;
}
.pr-xxl-1 {
padding-right: 1rem !important;
}
.pr-xxl-1-5 {
padding-right: 1.5rem !important;
}
.pr-xxl-2 {
padding-right: 2rem !important;
}
.pr-xxl-2-5 {
padding-right: 2.5rem !important;
}
.pr-xxl-3 {
padding-right: 3rem !important;
}
.pr-xxl-3-5 {
padding-right: 3.5rem !important;
}
.pr-xxl-4 {
padding-right: 4rem !important;
}
.pr-xxl-4-5 {
padding-right: 4.5rem !important;
}
.pr-xxl-5 {
padding-right: 5rem !important;
}
.pb-xxl-0 {
padding-bottom: 0 !important;
}
.pb-xxl-0-25 {
padding-bottom: 0.25rem !important;
}
.pb-xxl-0-5 {
padding-bottom: 0.5rem !important;
}
.pb-xxl-0-75 {
padding-bottom: 0.75rem !important;
}
.pb-xxl-1 {
padding-bottom: 1rem !important;
}
.pb-xxl-1-5 {
padding-bottom: 1.5rem !important;
}
.pb-xxl-2 {
padding-bottom: 2rem !important;
}
.pb-xxl-2-5 {
padding-bottom: 2.5rem !important;
}
.pb-xxl-3 {
padding-bottom: 3rem !important;
}
.pb-xxl-3-5 {
padding-bottom: 3.5rem !important;
}
.pb-xxl-4 {
padding-bottom: 4rem !important;
}
.pb-xxl-4-5 {
padding-bottom: 4.5rem !important;
}
.pb-xxl-5 {
padding-bottom: 5rem !important;
}
.pl-xxl-0 {
padding-left: 0 !important;
}
.pl-xxl-0-25 {
padding-left: 0.25rem !important;
}
.pl-xxl-0-5 {
padding-left: 0.5rem !important;
}
.pl-xxl-0-75 {
padding-left: 0.75rem !important;
}
.pl-xxl-1 {
padding-left: 1rem !important;
}
.pl-xxl-1-5 {
padding-left: 1.5rem !important;
}
.pl-xxl-2 {
padding-left: 2rem !important;
}
.pl-xxl-2-5 {
padding-left: 2.5rem !important;
}
.pl-xxl-3 {
padding-left: 3rem !important;
}
.pl-xxl-3-5 {
padding-left: 3.5rem !important;
}
.pl-xxl-4 {
padding-left: 4rem !important;
}
.pl-xxl-4-5 {
padding-left: 4.5rem !important;
}
.pl-xxl-5 {
padding-left: 5rem !important;
}
.text-xxl-left {
text-align: left !important;
}
.text-xxl-right {
text-align: right !important;
}
.text-xxl-center {
text-align: center !important;
}
.text-xxl-lowercase {
text-transform: lowercase !important;
}
.text-xxl-uppercase {
text-transform: uppercase !important;
}
.text-xxl-capitalize {
text-transform: capitalize !important;
}
.text-xxl-wrap {
white-space: normal !important;
}
.text-xxl-nowrap {
white-space: nowrap !important;
}
} .breadcrumbs {
margin-bottom: 2rem;
transform: translateY(-100%);
line-height: 1.5;
} #text-content > ol > li {
line-height: 28px;
} .grecaptcha-badge {
display: none !important;
}