/* 
    This CSS framework was made by Leandro Reschke. 
    Feel free to use it as you like and if you want to say thanks come and find me at my social
    Twitter - @leandroreschke 
    Website - leandroreschke.com

*/
/* Begin Constructor */

html {
    box-sizing: border-box;
}

body{
    height:100%;
    width:100%;
}

*, *::after, *::before {
    box-sizing: inherit;
}

/* remove default margin and padding from some elements elements */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    margin: 0;
}

a {
    text-decoration: none
}

/* prevent user click selection */
.delete, .modal-close, .is-unselectable, .button, .file, .breadcrumb, .pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis, .tabs {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* prevent outline on elements */
.button:focus,
.input:focus,
.textarea:focus,
.select select:focus,
.file-cta:focus,
.file-name:focus,
.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus,
.pagination-ellipsis:focus,
.focused.button,
.focused.input,
.focused.textarea,
.select select.is-focused,
.focused.file-cta,
.focused.file-name,
.focused.pagination-previous,
.focused.pagination-next,
.focused.pagination-link,
.focused.pagination-ellipsis,
.button:active,
.input:active,
.textarea:active,
.select select:active,
.file-cta:active,
.file-name:active,
.pagination-previous:active,
.pagination-next:active,
.pagination-link:active,
.pagination-ellipsis:active,
.active.button,
.active.input,
.active.textarea,
.select select.active,
.active.file-cta,
.active.file-name,
.active.pagination-previous,
.active.pagination-next,
.active.pagination-link,
.active.pagination-ellipsis {
    outline: none;
}

/* show user block icon on disabled elements */
.button[disabled],
.input[disabled],
.textarea[disabled],
.select select[disabled],
.file-cta[disabled],
.file-name[disabled],
.pagination-previous[disabled],
.pagination-next[disabled],
.pagination-link[disabled],
.pagination-ellipsis[disabled],
fieldset[disabled] .button,
fieldset[disabled] .input,
fieldset[disabled] .textarea,
fieldset[disabled] .select select,
.select fieldset[disabled] select,
fieldset[disabled] .file-cta,
fieldset[disabled] .file-name,
fieldset[disabled] .pagination-previous,
fieldset[disabled] .pagination-next,
fieldset[disabled] .pagination-link,
fieldset[disabled] .pagination-ellipsis {
    cursor: not-allowed;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none
}

button {
    background-color: unset;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

body,
button,
input,
select,
textarea {
    font-family: "Arial", BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

code,
pre {
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: auto;
    font-family: monospace;
}

/* End Constructor */

/* Begin Custom Elements */

.card {  
    position: relative;
    height: 21em;
    width: 15em;
}

.envelope {
    background: #cb231c;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.8);
    transform: rotate(-8deg);
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 2em;
}

.paper {
    position:relative;
    background: #fff;
    box-shadow: -1px 8px 3px 0 rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
}

.heart {
  bottom: 4em;
  position: absolute;
  right: 4em;
}

.heart::before,
.heart::after {
    background-color: #cd231b;
    border-radius: 50px 50px 0 0;
    content: "";
    height: 25px;
    left: 15px;
    position: absolute;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
    width: 15px;
}

.heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.rotate{
    animation: rotation 2s infinite linear;
}

.refresh{
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 2px solid #fff;
    border-left-color: transparent;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}
  
.refresh:after{
    content: "";
    position: absolute;
    bottom: -6px;
    width: 0px;
    height: 0px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
}  

/*End Custom Elements */

/* Begin Color / Background*/
.c-light {
    color: #FAFAFA !important;
}

.c-light:hover {
    color: #ffffff !important;
}

.c-lightdim {
    color: #eeeeee !important;
}

.c-dark {
    color: #1a1a1a !important;
}

.c-red{
    color:#feb9a9 !important;
}

.c-orange{
    color: #ffd064 !important;
}

.bg-light-25 {
    background-color: #FAFAFA40 !important;
}

.bg-light-50 {
    background-color: #FAFAFA80 !important;
}

.bg-light-75 {
    background-color: #FAFAFABF !important;
}

.bg-light {
    background-color: #FAFAFA !important;
}

.bg-lightdim {
    background-color: #eeeeee !important;
}

.bg-dark-25 {
    background-color: #1A1A1A40 !important;
}

.bg-dark-50 {
    background-color: #1A1A1A80 !important;
}

.bg-dark-75 {
    background-color: #1A1A1ABF !important;
}

.bg-dark {
    background-color: #1A1A1A !important;
}

.bg-blur-2 {
    backdrop-filter: blur(2px);
}

.bg-blur-4 {
    backdrop-filter: blur(4px);
}

.bg-blur-8 {
    backdrop-filter: blur(8px);
}

.bg-blur-16 {
    backdrop-filter: blur(16px);
}

/* End Color / Background*/

/* Begin helpers */

.block {
    display: block !important;
}

.inline {
    display: inline !important;
}  

.inline-block {
    display: inline-block !important;
}

.flex {
    display: -webkit-box !important; 
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important; 
    display: flex !important;
}

.inline-flex {
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
}

.pulled-left {
    float: left !important;
}

.pulled-right {
    float: right !important;
}

.clipped {
    overflow: hidden !important;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden !important;
}

.fixed {
    position: fixed !important;
}

.absolute {
    position: absolute !important;
}

.sticky {
    position: sticky !important;
}

.relative {
    position: relative !important;
}

.arrow {
    display: block;
    height: 12px;
    width: 12px;
    background-color: inherit;
    border: inherit;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
    border-radius: 0 0 0 0.10em;
    z-index:10;
}   
.arrow-left {
    left: -6px;
    bottom: calc(50% - 6px);
    transform: rotate(45deg);
} 
.arrow-right {
    right: -6px;
    bottom: calc(50% - 6px);             
    transform: rotate(-135deg);
}
.arrow-bottom {
    bottom: -6px;
    left: calc(50% - 6px);
    transform: rotate(-45deg);
}
.arrow-top {
    top: -6px;
    left: calc(50% - 6px);
    transform: rotate(135deg);                
}  

/* width helper */
.w-10 {
    width: 10%;
}

.wmin-10 {
    min-width: 10%;
}

.wmax-10 {
    max-width: 10%;
}

.w-20 {
    width: 20%;
}

.wmin-20 {
    min-width: 20%;
}

.wmax-20 {
    max-width: 20%;
}

.w-25 {
    width: 25%;
}

.wmin-25 {
    min-width: 25%;
}

.wmax-25 {
    max-width: 25%;
}

.w-30 {
    width: 30%;
}

.wmin-30 {
    min-width: 30%;
}

.wmax-30 {
    max-width: 30%;
}

.w-33 {
    width: 33%;
}

.wmin-33 {
    min-width: 33%;
}

.wmax-33 {
    max-width: 33%;
}

.w-40 {
    width: 40%;
}

.wmin-40 {
    min-width: 40%;
}

.wmax-40 {
    max-width: 40%;
}

.w-50 {
    width: 50%;
}

.wmin-50 {
    min-width: 50%;
}

.wmax-50 {
    max-width: 50%;
}

.w-60 {
    width: 60%;
}

.wmin-60 {
    min-width: 60%;
}

.wmax-60 {
    max-width: 60%;
}

.w-70 {
    width: 70%;
}

.wmin-70 {
    min-width: 70%;
}

.wmax-70 {
    max-width: 70%;
}

.w-75 {
    width: 75%;
}

.wmin-75 {
    min-width: 75%;
}

.wmax-75 {
    max-width: 75%;
}

.w-80 {
    width: 80%;
}

.wmin-80 {
    min-width: 80%;
}

.wmax-80 {
    max-width: 80%;
}

.w-90 {
    width: 90%;
}

.wmin-90 {
    min-width: 90%;
}

.wmax-90 {
    max-width: 90%;
}

.w-100 {
    width: 100%;
}

.wmin-100 {
    min-width: 100%;
}

.wmax-100 {
    max-width: 100%;
}

/* height helper */
.h-10 {
    height: 10%;
}

.hmin-10 {
    min-height: 10%;
}

.hmax-10 {
    max-height: 10%;
}

.h-20 {
    height: 20%;
}

.hmin-20 {
    min-height: 20%;
}

.hmax-20 {
    max-height: 20%;
}

.h-25 {
    height: 25%;
}

.hmin-25 {
    min-height: 25%;
}

.hmax-25 {
    max-height: 25%;
}

.h-30 {
    height: 30%;
}

.hmin-30 {
    min-height: 30%;
}

.hmax-30 {
    max-height: 30%;
}

.h-33 {
    height: 33%;
}

.hmin-33 {
    min-height: 33%;
}

.hmax-33 {
    max-height: 33%;
}

.h-40 {
    height: 40%;
}

.hmin-40 {
    min-height: 40%;
}

.hmax-40 {
    max-height: 40%;
}

.h-50 {
    height: 50%;
}

.hmin-50 {
    min-height: 50%;
}

.hmax-50 {
    max-height: 50%;
}

.h-60 {
    height: 60%;
}

.hmin-60 {
    min-height: 60%;
}

.hmax-60 {
    max-height: 60%;
}

.h-70 {
    height: 70%;
}

.hmin-70 {
    min-height: 70%;
}

.hmax-70 {
    max-height: 70%;
}

.h-75 {
    height: 75%;
}

.hmin-75 {
    min-height: 75%;
}

.hmax-75 {
    max-height: 75%;
}

.h-80 {
    height: 80%;
}

.hmin-80 {
    min-height: 80%;
}

.hmax-80 {
    max-height: 80%;
}

.h-90 {
    height: 90%;
}

.hmin-90 {
    min-height: 90%;
}

.hmax-90 {
    max-height: 90%;
}

.h-100 {
    height: 100%;
}

.hmin-100 {
    min-height: 100%;
}

.hmax-100 {
    max-height: 100%;
}

.va-super{
    vertical-align: super;
}

.va-baseline{
    vertical-align: baseline;
}

.va-bottom{
    vertical-align: bottom;
}

.va-text-sub{
    vertical-align: sub;
}

.va-middle{
    vertical-align: middle;
}

.va-text-bottom{
    vertical-align: text-bottom;
}



/* End helpers */

/* Begin media helpers */
.icon {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: center;
    justify-content: center;    
    height: 1.5rem;
    width: 1.5rem;
}

.icon.small {
    height: 1rem;
    width: 1rem;
}

.icon.medium {
    height: 2rem;
    width: 2rem;
}

.icon.large {
    height: 3rem;
    width: 3rem;
}

.image {
    display: block;
    position: relative;
}

.image img {
    display: block;
    height: auto;
    width: 100%;
}

.rounded {
    border-radius: 290486px;
}

.fullwidth {
    width: 100%;
}

.s-16 {
    height: 16px;
    width: 16px;
}

.sh-16 {
    height: 16px;
    width: auto;
}

.sw-16 {
    height: auto;
    width: 16px;
}

.s-24 {
    height: 24px;
    width: 24px;
}

.sh-24 {
    height: 24px;
    width: auto;
}

.sw-24 {
    height: auto;
    width: 24px;
}

.s-32 {
    height: 32px;
    width: 32px;
}

.sh-32 {
    height: 32px;
    width: auto;
}

.sw-32 {
    height: auto;
    width: 32px;
}

.s-48 {
    height: 48px;
    width: 48px;
}

.sh-48 {
    height: 48px;
    width: auto;
}

.sw-48 {
    height: auto;
    width: 48px;
}

.s-64 {
    height: 64px;
    width: 64px;
}

.sh-64 {
    height: 64px;
    width: auto;
}

.sw-64 {
    height: auto;
    width: 64px;
}

.s-96 {
    height: 96px;
    width: 96px;
}

.sh-96 {
    height: 96px;
    width: auto;
}

.sw-96 {
    height: auto;
    width: 96px;
}

.s-128 {
    height: 128px;
    width: 128px;
}

.sh-128 {
    height: 128px;
    width: auto;
}

.sw-128 {
    height: auto;
    width: 128px;
}

.s-256 {
    height: 256px;
    width: 256px;
}

.sh-256 {
    height: 256px;
    width: auto;
}

.sw-256 {
    height: auto;
    width: 256px;
}

.s-512 {
    height: 512px;
    width: 512px;
}

.sh-512 {
    height: 512px;
    width: auto;
}

.sw-512 {
    height: auto;
    width: 512px;
}

/* End media helpers*/

/* Begin typography helpers */

.fs-1 {
    font-size: 3rem !important;
}

.fs-2 {
    font-size: 2.5rem !important;
}

.fs-3 {
    font-size: 2rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.fs-7 {
    font-size: 0.75rem !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important
}

.capitalize {
    text-transform: capitalize !important;
}

.lowercase {
    text-transform: lowercase !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.italic {
    font-style: italic !important;
}

.text-weight-light {
    font-weight: 300 !important;
}

.text-weight-normal {
    font-weight: 400 !important;
}

.text-weight-medium {
    font-weight: 500 !important;
}

.text-weight-semibold {
    font-weight: 600 !important;
}

.text-weight-bold {
    font-weight: 700 !important;
}

.font-family-primary {
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.font-family-secondary {
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.font-family-sans-serif {
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.font-family-monospace {
    font-family: monospace !important;
}

.font-family-code {
    font-family: monospace !important;
}

/* End typography helpers */

/* Begin Animations */

/* To support old browsers */
/* @-webkit-keyframes filter-animation {
    0% {
        -webkit-filter: hue-rotate(0deg);
    }
    
    50% {
        -webkit-filter: hue-rotate(100deg);
    }
    
    100% {
        -webkit-filter: hue-rotate(0deg);
    }
} */

.fadeInBottom {
    -webkit-animation: fadeBottom 1s ease-out;
    animation: fadeBottom 1s ease-out;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    will-change: opacity;
}

.fadeOutBottom {
    -webkit-animation: fadeBottom 1s ease-out;
    animation: fadeBottom 1s ease-out;
    animation-direction: reverse;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    will-change: opacity;
}

@keyframes filter-animation {
    0% {
        filter: hue-rotate(0deg);
    }
    
    50% {
        filter: hue-rotate(100deg);
    }
    
    100% {
        filter: hue-rotate(0deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@keyframes revealRight {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes fadeTop {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes fadeBottom {
    0% {
        opacity: 0;
        transform: translateY(-20%);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

/* End Animations */

/* Begin shadow */

.shadow-box-top {
    box-shadow: 0 -2px 10px 0 #000;
}

.shadow-box-bottom {
    box-shadow: 0 2px 10px 0 #000;
}

.shadow-card-nohover {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
}

.shadow-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
}

.shadow-card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.shadow-elegant {
    color: #131313;
    background-color: #e7e5e4;
    letter-spacing: 0.15em;
    text-shadow: 1px -1px 0 #767676, -1px 2px 1px #737272, -2px 4px 1px #767474, -3px 6px 1px #787777, -4px 8px 1px #7b7a7a, -5px 10px 1px #7f7d7d, -6px 12px 1px #828181, -7px 14px 1px #868585, -8px 16px 1px #8b8a89, -9px 18px 1px #8f8e8d, -10px 20px 1px #949392, -11px 22px 1px #999897, -12px 24px 1px #9e9c9c, -13px 26px 1px #a3a1a1, -14px 28px 1px #a8a6a6, -15px 30px 1px #adabab, -16px 32px 1px #b2b1b0, -17px 34px 1px #b7b6b5, -18px 36px 1px #bcbbba, -19px 38px 1px #c1bfbf, -20px 40px 1px #c6c4c4, -21px 42px 1px #cbc9c8, -22px 44px 1px #cfcdcd, -23px 46px 1px #d4d2d1, -24px 48px 1px #d8d6d5, -25px 50px 1px #dbdad9, -26px 52px 1px #dfdddc, -27px 54px 1px #e2e0df, -28px 56px 1px #e4e3e2;
}

.shadow-deep {
    color: #e0dfdc;
    background-color: #333;
    letter-spacing: 0.1em;
    text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 12px 0 #181818, 0 13px 0 #161616, 0 14px 0 #141414, 0 15px 0 #121212, 0 22px 30px rgba(0, 0, 0, 0.9);
}

.shadow-inset {
    color: #202020;
    background-color: #2d2d2d;
    letter-spacing: 0.1em;
    text-shadow: -1px -1px 1px #111, 2px 2px 1px #363636;
}
.shadow-retro {
    color: #2c2c2c;
    background-color: #d5d5d5;
    letter-spacing: 0.05em;
    text-shadow: 4px 4px 0px #d5d5d5, 7px 7px 0px rgba(0, 0, 0, 0.2);
}  

/* .card-2 {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.card-3 {
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.card-4 {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-5 {
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
} */

/* End box-shadow */

/* Begin dropdown menu */

.dropdown {
    display: -webkit-inline-flex;
    position: relative;
    vertical-align: top;
}

.dropdown.is-active .dropdown-menu,
.dropdown.is-hoverable:hover .dropdown-menu {
    display: block;
}

.dropdown.is-right .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown.is-up .dropdown-menu {
    bottom: 100%;
    padding-bottom: 4px;
    padding-top: initial;
    top: auto;
}

.dropdown-menu {
    display: none;
    left: 0;
    min-width: 12rem;
    padding-top: 4px;
    position: absolute;
    top: 100%;
    z-index: 20;
}

.dropdown-content {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.dropdown-item {
    color: #4a4a4a;
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.375rem 1rem;
    position: relative;
}

a.dropdown-item,
button.dropdown-item {
    padding-right: 3rem;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

a.dropdown-item:hover,
button.dropdown-item:hover {
    background-color: whitesmoke;
    color: #0a0a0a;
}

a.dropdown-item.is-active,
button.dropdown-item.is-active {
    background-color: #3273dc;
    color: #fff;
}

.dropdown-divider {
    background-color: #ededed;
    border: none;
    display: block;
    height: 1px;
    margin: 0.5rem 0;
}

/* End dropdown menu */

/* Begin Row / Column / Flex Properties */

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; 
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; 
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; 
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; 
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; 
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; 
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; 
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; 
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; 
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; 
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; 
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; 
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; 
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; 
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; 
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; 
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; 
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; 
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; 
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; 
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; 
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; 
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; 
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; 
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; 
}

.flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; 
}

.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; 
}

.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; 
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; 
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; 
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; 
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; 
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; 
}

/* Flex Properties */

/* Begin Row / Column */

.galaxy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -12px;
    margin-left: -12px; 
}

.star-1, .star-2, .star-3, .star-4, .star-5, .star-6, .star-7, .star-8, .star-9, .star-10, .star-11, .star-12, .star,
.star-auto {
    position: relative;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px; 
}

.star {
    -ms-flex-preferred-size: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; 
}

.star-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; 
}

.star-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; 
}

.star-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; 
}

.star-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; 
}

.star-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; 
}

.star-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; 
}

.star-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%; }

.star-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; 
}

.star-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; 
}

.star-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; 
}

.star-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; 
}

.star-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; 
}

.star-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; 
}

.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.75rem;
}

.columns {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem;
}

.columns:last-child {
    margin-bottom: -0.75rem;
}

.columns:not(:last-child) {
    margin-bottom: calc(1.5rem - 0.75rem);
}

/* End Row / Column */

/* Begin Border */

.brd-0 {
    border-radius: 0 !important; 
}

.brd-1 {
    border-radius: 0.375rem !important; 
}

.brd-2 {
    border-radius: 0.75rem !important; 
}

.brd-3 {
    border-radius: 1.5rem !important; 
}

.brd-4 {
    border-radius: 2.25rem !important; 
}

.brd-5 {
    border-radius: 0.375rem !important; 
}

.bs-dashed {
    border-style: dashed;
}

.bst-dashed,
.bsy-dashed {
    border-top-style: dashed;
}

.bsr-dashed,
.bsx-dashed {
    border-right-style: dashed;
}

.bsb-dashed,
.bsy-dashed {
    border-bottom-style: dashed;
}

.bsl-dashed,
.bsx-dashed {
    border-left-style: dashed;
}

.bs-dotted {
    border-style: dotted;
}

.bst-dotted,
.bsy-dotted {
    border-top-style: dotted;
}

.bsr-dotted,
.bsx-dotted {
    border-right-style: dotted;
}

.bsb-dotted,
.bsy-dotted {
    border-bottom-style: dotted;
}

.bsl-dotted,
.bsx-dotted {
    border-left-style: dotted;
}

.bs-double {
    border-style: double;
}

.bst-double,
.bsy-double {
    border-top-style: double;
}

.bsr-double,
.bsx-double {
    border-right-style: double;
}

.bsb-double,
.bsy-double {
    border-bottom-style: double;
}

.bsl-double,
.bsx-double {
    border-left-style: double;
}

.bs-groove {
    border-style: groove;
}

.bst-groove,
.bsy-groove {
    border-top-style: groove;
}

.bsr-groove,
.bsx-groove {
    border-right-style: groove;
}

.bsb-groove,
.bsy-groove {
    border-bottom-style: groove;
}

.bsl-groove,
.bsx-groove {
    border-left-style: groove;
}

.bs-hidden {
    border-style: hidden;
}

.bst-hidden,
.bsy-hidden {
    border-top-style: hidden;
}

.bsr-hidden,
.bsx-hidden {
    border-right-style: hidden;
}

.bsb-hidden,
.bsy-hidden {
    border-bottom-style: hidden;
}

.bsl-hidden,
.bsx-hidden {
    border-left-style: hidden;
}

.bs-inset {
    border-style: inset;
}

.bst-inset,
.bsy-inset {
    border-top-style: inset;
}

.bsr-inset,
.bsx-inset {
    border-right-style: inset;
}

.bsb-inset,
.bsy-inset {
    border-bottom-style: inset;
}

.bsl-inset,
.bsx-inset {
    border-left-style: inset;
}

.bs-none {
    border-style: none;
}

.bst-none,
.bsy-none {
    border-top-style: none;
}

.bsr-none,
.bsx-none {
    border-right-style: none;
}

.bsb-none,
.bsy-none {
    border-bottom-style: none;
}

.bsl-none,
.bsx-none {
    border-left-style: none;
}

.bs-outset {
    border-style: outset;
}

.bst-outset,
.bsy-outset {
    border-top-style: outset;
}

.bsr-outset,
.bsx-outset {
    border-right-style: outset;
}

.bsb-outset,
.bsy-outset {
    border-bottom-style: outset;
}

.bsl-outset,
.bsx-outset {
    border-left-style: outset;
}

.bs-ridge {
    border-style: ridge;
}

.bst-ridge,
.bsy-ridge {
    border-top-style: ridge;
}

.bsr-ridge,
.bsx-ridge {
    border-right-style: ridge;
}

.bsb-ridge,
.bsy-ridge {
    border-bottom-style: ridge;
}

.bsl-ridge,
.bsx-ridge {
    border-left-style: ridge;
}

.bs-solid {
    border-style: solid;
}

.bst-solid,
.bsy-solid {
    border-top-style: solid;
}

.bsr-solid,
.bsx-solid {
    border-right-style: solid;
}

.bsb-solid,
.bsy-solid {
    border-bottom-style: solid;
}

.bsl-solid,
.bsx-solid {
    border-left-style: solid;
}

.bw-0 {
    border-width: 0 !important; 
}

.bwt-0,
.bwy-0 {
    border-top-width: 0 !important; 
}

.bwr-0,
.bwx-0 {
    border-right-width: 0 !important; 
}

.bwb-0,
.bwy-0 {
    border-bottom-width: 0 !important; 
}

.bwl-0,
.bwx-0 {
    border-left-width: 0 !important; 
}

.bw-1 {
    border-width: 0.375rem !important; 
}

.bwt-1,
.bwy-1 {
    border-top-width: 0.375rem !important; 
}

.bwr-1,
.bwx-1 {
    border-right-width: 0.375rem !important; 
}

.bwb-1,
.bwy-1 {
    border-bottom-width: 0.375rem !important; 
}

.bwl-1,
.bwx-1 {
    border-left-width: 0.375rem !important; 
}

.bw-2 {
    border-width: 0.75rem !important; 
}

.bwt-2,
.bwy-2 {
    border-top-width: 0.75rem !important; 
}

.bwr-2,
.bwx-2 {
    border-right-width: 0.75rem !important; 
}

.bwb-2,
.bwy-2 {
    border-bottom-width: 0.75rem !important; 
}

.bwl-2,
.bwx-2 {
    border-left-width: 0.75rem !important; 
}

.bw-3 {
    border-width: 1.5rem !important; 
}

.bwt-3,
.bwy-3 {
    border-top-width: 1.5rem !important; 
}

.bwr-3,
.bwx-3 {
    border-right-width: 1.5rem !important; 
}

.bwb-3,
.bwy-3 {
    border-bottom-width: 1.5rem !important; 
}

.bwl-3,
.bwx-3 {
    border-left-width: 1.5rem !important; 
}

.bw-4 {
    border-width: 2.25rem !important; 
}

.bwt-4,
.bwy-4 {
    border-top-width: 2.25rem !important; 
}

.bwr-4,
.bwx-4 {
    border-right-width: 2.25rem !important; 
}

.bwb-4,
.bwy-4 {
    border-bottom-width: 2.25rem !important; 
}

.bwl-4,
.bwx-4 {
    border-left-width: 2.25rem !important; 
}

.bw-5 {
    border-width: 4.5rem !important; 
}

.bwt-5,
.bwy-5 {
    border-top-width: 4.5rem !important; 
}

.bwr-5,
.bwx-5 {
    border-right-width: 4.5rem !important; 
}

.bwb-5,
.bwy-5 {
    border-bottom-width: 4.5rem !important; 
}

.bwl-5,
.bwx-5 {
    border-left-width: 4.5rem !important; 
}

.bc-light {
    border-color: #FAFAFA !important;
}

/* End Border*/

/* Begin Margin / Padding */
.void-0 {
    margin: 0 !important; 
}

.voidt-0,
.voidy-0 {
    margin-top: 0 !important; 
}

.voidr-0,
.voidx-0 {
    margin-right: 0 !important; 
}

.voidb-0,
.voidy-0 {
    margin-bottom: 0 !important; 
}

.voidl-0,
.voidx-0 {
    margin-left: 0 !important; 
}

.void-1 {
    margin: 0.375rem !important; 
}

.voidt-1,
.voidy-1 {
    margin-top: 0.375rem !important; 
}

.voidr-1,
.voidx-1 {
    margin-right: 0.375rem !important; 
}

.voidb-1,
.voidy-1 {
    margin-bottom: 0.375rem !important; 
}

.voidl-1,
.voidx-1 {
    margin-left: 0.375rem !important; 
}

.void-2 {
    margin: 0.75rem !important; 
}

.voidt-2,
.voidy-2 {
    margin-top: 0.75rem !important; 
}

.voidr-2,
.voidx-2 {
    margin-right: 0.75rem !important; 
}

.voidb-2,
.voidy-2 {
    margin-bottom: 0.75rem !important; 
}

.voidl-2,
.voidx-2 {
    margin-left: 0.75rem !important; 
}

.void-3 {
    margin: 1.5rem !important; 
}

.voidt-3,
.voidy-3 {
    margin-top: 1.5rem !important; 
}

.voidr-3,
.voidx-3 {
    margin-right: 1.5rem !important; 
}

.voidb-3,
.voidy-3 {
    margin-bottom: 1.5rem !important; 
}

.voidl-3,
.voidx-3 {
    margin-left: 1.5rem !important; 
}

.void-4 {
    margin: 2.25rem !important; 
}

.voidt-4,
.voidy-4 {
    margin-top: 2.25rem !important; 
}

.voidr-4,
.voidx-4 {
    margin-right: 2.25rem !important; 
}

.voidb-4,
.voidy-4 {
    margin-bottom: 2.25rem !important; 
}

.voidl-4,
.voidx-4 {
    margin-left: 2.25rem !important; 
}

.void-5 {
    margin: 4.5rem !important; 
}

.voidt-5,
.voidy-5 {
    margin-top: 4.5rem !important; 
}

.voidr-5,
.voidx-5 {
    margin-right: 4.5rem !important; 
}

.voidb-5,
.voidy-5 {
    margin-bottom: 4.5rem !important; 
}

.voidl-5,
.voidx-5 {
    margin-left: 4.5rem !important; 
}

.mass-0 {
    padding: 0 !important; 
}

.masst-0,
.massy-0 {
    padding-top: 0 !important; 
}

.massr-0,
.massx-0 {
    padding-right: 0 !important; 
}

.massb-0,
.massy-0 {
    padding-bottom: 0 !important; 
}

.massl-0,
.massx-0 {
    padding-left: 0 !important; 
}

.mass-1 {
    padding: 0.375rem !important; 
}

.masst-1,
.massy-1 {
    padding-top: 0.375rem !important; 
}

.massr-1,
.massx-1 {
    padding-right: 0.375rem !important; 
}

.massb-1,
.massy-1 {
    padding-bottom: 0.375rem !important; 
}

.massl-1,
.massx-1 {
    padding-left: 0.375rem !important; 
}

.mass-2 {
    padding: 0.75rem !important; 
}

.masst-2,
.massy-2 {
    padding-top: 0.75rem !important; 
}

.massr-2,
.massx-2 {
    padding-right: 0.75rem !important; 
}

.massb-2,
.massy-2 {
    padding-bottom: 0.75rem !important; 
}

.massl-2,
.massx-2 {
    padding-left: 0.75rem !important; 
}

.mass-3 {
    padding: 1.5rem !important; 
}

.masst-3,
.massy-3 {
    padding-top: 1.5rem !important; 
}

.massr-3,
.massx-3 {
    padding-right: 1.5rem !important; 
}

.massb-3,
.massy-3 {
    padding-bottom: 1.5rem !important; 
}

.massl-3,
.massx-3 {
    padding-left: 1.5rem !important; 
}

.mass-4 {
    padding: 2.25rem !important; 
}

.masst-4,
.massy-4 {
    padding-top: 2.25rem !important; 
}

.massr-4,
.massx-4 {
    padding-right: 2.25rem !important; 
}

.massb-4,
.massy-4 {
    padding-bottom: 2.25rem !important; 
}

.massl-4,
.massx-4 {
    padding-left: 2.25rem !important; 
}

.mass-5 {
    padding: 4.5rem !important; }

.masst-5,
.massy-5 {
    padding-top: 4.5rem !important; 
}

.massr-5,
.massx-5 {
    padding-right: 4.5rem !important; 
}

.massb-5,
.massy-5 {
    padding-bottom: 4.5rem !important; 
}

.massl-5,
.massx-5 {
    padding-left: 4.5rem !important; 
}

.void-n1 {
    margin: -0.375rem !important; 
}

.voidt-n1,
.voidy-n1 {
    margin-top: -0.375rem !important; 
}

.voidr-n1,
.voidx-n1 {
    margin-right: -0.375rem !important; 
}

.voidb-n1,
.voidy-n1 {
    margin-bottom: -0.375rem !important; 
}

.voidl-n1,
.voidx-n1 {
    margin-left: -0.375rem !important; 
}

.void-n2 {
    margin: -0.75rem !important; 
}

.voidt-n2,
.voidy-n2 {
    margin-top: -0.75rem !important; 
}

.voidr-n2,
.voidx-n2 {
    margin-right: -0.75rem !important; 
}

.voidb-n2,
.voidy-n2 {
    margin-bottom: -0.75rem !important; 
}

.voidl-n2,
.voidx-n2 {
    margin-left: -0.75rem !important; 
}

.void-n3 {
    margin: -1.5rem !important; 
}

.voidt-n3,
.voidy-n3 {
    margin-top: -1.5rem !important; 
}

.voidr-n3,
.voidx-n3 {
    margin-right: -1.5rem !important; 
}

.voidb-n3,
.voidy-n3 {
    margin-bottom: -1.5rem !important; 
}

.voidl-n3,
.voidx-n3 {
    margin-left: -1.5rem !important; 
}

.void-n4 {
    margin: -2.25rem !important; 
}

.voidt-n4,
.voidy-n4 {
    margin-top: -2.25rem !important; 
}

.voidr-n4,
.voidx-n4 {
    margin-right: -2.25rem !important; 
}

.voidb-n4,
.voidy-n4 {
    margin-bottom: -2.25rem !important; 
}

.voidl-n4,
.voidx-n4 {
    margin-left: -2.25rem !important; 
}

.void-n5 {
    margin: -4.5rem !important; 
}

.voidt-n5,
.voidy-n5 {
    margin-top: -4.5rem !important; 
}

.voidr-n5,
.voidx-n5 {
    margin-right: -4.5rem !important; 
}

.voidb-n5,
.voidy-n5 {
    margin-bottom: -4.5rem !important; 
}

.voidl-n5,
.voidx-n5 {
    margin-left: -4.5rem !important; 
}

.void-auto {
    margin: auto !important; 
}

.voidt-auto,
.voidy-auto {
    margin-top: auto !important; 
}

.voidr-auto,
.voidx-auto {
    margin-right: auto !important; 
}

.voidb-auto,
.voidy-auto {
    margin-bottom: auto !important; 
}

.voidl-auto,
.voidx-auto {
    margin-left: auto !important; 
}
/* End margin & padding */

/* Begin nav */

.navb {
    min-height: 3.25rem;
    position: relative;
    z-index: 30;
    width: 100%;
    transition: left .4s ease-in-out;
  }

.navb > .container {
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    min-height: 3.25rem;
    width: 100%;
}

.navb.navb-fixed-bottom,
.navb.navb-fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
}

.navb.navb-hidden {
    left: -100%;   
    transition: left .4s ease-in-out;
}

.navb.navb-fixed-bottom {
    bottom: 0;
}

.navb.navb-fixed-top {
    top: 0;
}

.navb-brand,
.navb-tabs {
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    min-height: 3.25rem;
}

.navb-brand a.navb-item:focus,
.navb-brand a.navb-item:hover {
    background-color: transparent;
}

.navb-item {
    display: block;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}  

/* End nav */

/* CUSTOM PART DONT REPLACE*/

.button.is-mcinfor {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
    background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    border-color: transparent;
    color: #fff;
}

.button.is-mcinfor:hover,
.button.is-mcinfor.is-hovered {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3174af), to(#2b679b));
    background: linear-gradient(to bottom, #3174af 0%, #2b679b 100%);
    border-color: transparent;
    color: #fff;
}

.button.is-mcinfor:focus,
.button.is-mcinfor.is-focused {
    border-color: transparent;
    color: #fff;
}

.button.is-mcinfor:focus:not(:active),
.button.is-mcinfor.is-focused:not(:active) {
    box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
}

.button.is-mcinfor:active,
.button.is-mcinfor.is-active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2e6fa8), to(#296193));
    background: linear-gradient(to bottom, #2e6fa8 0%, #296193 100%);
    border-color: transparent;
    color: #fff;
}

.button.is-mcinfor[disabled],
fieldset[disabled] .button.is-mcinfor {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
    background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    border-color: transparent;
    box-shadow: none;
}

.button.is-mcinfor.is-inverted {
    background-color: #fff;
    color: #00d1b2;
}

.button.is-mcinfor.is-inverted:hover,
.button.is-mcinfor.is-inverted.is-hovered {
    background-color: #f2f2f2;
}

.button.is-mcinfor.is-inverted[disabled],
fieldset[disabled] .button.is-mcinfor.is-inverted {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #00d1b2;
}

.button.is-mcinfor.is-loading::after {
    border-color: transparent transparent #fff #fff !important;
}

.button.is-mcinfor.is-outlined {
    background-color: transparent;
    border-color: #00d1b2;
    color: #00d1b2;
}

.button.is-mcinfor.is-outlined:hover,
.button.is-mcinfor.is-outlined.is-hovered,
.button.is-mcinfor.is-outlined:focus,
.button.is-mcinfor.is-outlined.is-focused {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
    background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    border-color: #00d1b2;
    color: #fff;
}

.button.is-mcinfor.is-outlined.is-loading::after {
    border-color: transparent transparent #00d1b2 #00d1b2 !important;
}

.button.is-mcinfor.is-outlined.is-loading:hover::after,
.button.is-mcinfor.is-outlined.is-loading.is-hovered::after,
.button.is-mcinfor.is-outlined.is-loading:focus::after,
.button.is-mcinfor.is-outlined.is-loading.is-focused::after {
    border-color: transparent transparent #fff #fff !important;
}

.button.is-mcinfor.is-outlined[disabled],
fieldset[disabled] .button.is-mcinfor.is-outlined {
    background-color: transparent;
    border-color: #00d1b2;
    box-shadow: none;
    color: #00d1b2;
}

.button.is-mcinfor.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.button.is-mcinfor.is-inverted.is-outlined:hover,
.button.is-mcinfor.is-inverted.is-outlined.is-hovered,
.button.is-mcinfor.is-inverted.is-outlined:focus,
.button.is-mcinfor.is-inverted.is-outlined.is-focused {
    background-color: #fff;
    color: #00d1b2;
}

.button.is-mcinfor.is-inverted.is-outlined.is-loading:hover::after,
.button.is-mcinfor.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-mcinfor.is-inverted.is-outlined.is-loading:focus::after,
.button.is-mcinfor.is-inverted.is-outlined.is-loading.is-focused::after {
    border-color: transparent transparent #00d1b2 #00d1b2 !important;
}

.button.is-mcinfor.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-mcinfor.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff;
}

.button.is-mcinfor.is-light {
    background-color: #ebfffc;
    color: #00947e;
}

.button.is-mcinfor.is-light:hover,
.button.is-mcinfor.is-light.is-hovered {
    background-color: #defffa;
    border-color: transparent;
    color: #00947e;
}

.button.is-mcinfor.is-light:active,
.button.is-mcinfor.is-light.is-active {
    background-color: #d1fff8;
    border-color: transparent;
    color: #00947e;
}

.select.is-mcinfor:not(:hover)::after {
    border-color: #2e6da4;
}

.select.is-mcinfor select {
    border-color: #2e6da4;
}

.select.is-mcinfor select:hover,
.select.is-mcinfor select.is-hovered {
    border-color: #3174af;
}

.select.is-mcinfor select:focus,
.select.is-mcinfor select.is-focused,
.select.is-mcinfor select:active,
.select.is-mcinfor select.is-active {
    box-shadow: 0 0 0 0.125em linear-gradient(to bottom, #3174af 0%, #2b679b 100%);
}



.navb.is-mcinfor {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
    background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    color: #fff;
}

.navb.is-mcinfor .navb-brand>.navb-item,
.navb.is-mcinfor .navb-brand .navb-link {
    color: #fff;
}

.navb.is-mcinfor .navb-brand>a.navb-item:focus,
.navb.is-mcinfor .navb-brand>a.navb-item:hover,
.navb.is-mcinfor .navb-brand>a.navb-item.is-active,
.navb.is-mcinfor .navb-brand .navb-link:focus,
.navb.is-mcinfor .navb-brand .navb-link:hover,
.navb.is-mcinfor .navb-brand .navb-link.is-active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
    background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    color: #fff;
}

.navb.is-mcinfor .navb-brand .navb-link::after {
    border-color: #fff;
}

.navb.is-mcinfor .navb-burger {
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .navb.is-mcinfor .navb-start>.navb-item,
    .navb.is-mcinfor .navb-start .navb-link,
    .navb.is-mcinfor .navb-end>.navb-item,
    .navb.is-mcinfor .navb-end .navb-link {
        color: #fff;
    }
    .navb.is-mcinfor .navb-start>a.navb-item:focus,
    .navb.is-mcinfor .navb-start>a.navb-item:hover,
    .navb.is-mcinfor .navb-start>a.navb-item.is-active,
    .navb.is-mcinfor .navb-start .navb-link:focus,
    .navb.is-mcinfor .navb-start .navb-link:hover,
    .navb.is-mcinfor .navb-start .navb-link.is-active,
    .navb.is-mcinfor .navb-end>a.navb-item:focus,
    .navb.is-mcinfor .navb-end>a.navb-item:hover,
    .navb.is-mcinfor .navb-end>a.navb-item.is-active,
    .navb.is-mcinfor .navb-end .navb-link:focus,
    .navb.is-mcinfor .navb-end .navb-link:hover,
    .navb.is-mcinfor .navb-end .navb-link.is-active {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
        background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
        color: #fff;
    }
    .navb.is-mcinfor .navb-start .navb-link::after,
    .navb.is-mcinfor .navb-end .navb-link::after {
        border-color: #fff;
    }
    .navb.is-mcinfor .navb-item.has-dropdown:focus .navb-link,
    .navb.is-mcinfor .navb-item.has-dropdown:hover .navb-link,
    .navb.is-mcinfor .navb-item.has-dropdown.is-active .navb-link {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
        background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
        color: #fff;
    }
    .navb.is-mcinfor .navb-dropdown a.navb-item.is-active {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
        background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
        color: #fff;
    }
}

.c-mcinfor {
    color: #337ab7 !important;
}

.bc-mcinfor {
    border-color: #337ab7 !important;
}

.bg-mcinfor {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)) !important;
    background: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%) !important;
}

.logo-overlay {
    position: fixed;
    bottom: 1em;
    right: 1em;
    display: inline;
    z-index: 100;
}