.container {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px){
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px){
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px){
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px){
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.text-uppercase {
    text-transform: uppercase!important;
}

h1,

h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}
/*
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

.h2,
h2 {
    font-size: 2rem;
}

.h3,
h3 {
    font-size: 1.75rem;
}

.h4,
h4 {
    font-size: 1.5rem;
}

.h5,
h5 {
    font-size: 1.25rem;
}
*/
code,
kbd,
pre,
samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

code {
    padding: .2rem .4rem;
    font-size: 90%;
    color: #bd4147;
    background-color: #f8f9fa;
    border-radius: .25rem;
}

a>code {
    padding: 0;
    color: inherit;
    background-color: inherit;
}

code,
kbd,
pre,
samp {
    font-family: monospace,monospace;
    font-size: 1em;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin-right: -15px;
    margin-left: -15px;*/
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.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-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}


@media (min-width: 768px){
	.col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
	
	.col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.card>hr {
    margin-right: 0;
    margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: .75rem;
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
	line-height: 30px;
}

.card-link:hover {
    text-decoration: none;
}

.card-link+.card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.card-header+.list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
}

.card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width:576px){
    .card-deck {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .card-deck .card {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group .card {
    margin-bottom: 15px;
}

@media (min-width:576px){
    .card-group {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .card-group .card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group .card+.card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group .card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group .card:first-child .card-img-top {
        border-top-right-radius: 0;
    }

    .card-group .card:first-child .card-img-bottom {
        border-bottom-right-radius: 0;
    }

    .card-group .card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group .card:last-child .card-img-top {
        border-top-left-radius: 0;
    }

    .card-group .card:last-child .card-img-bottom {
        border-bottom-left-radius: 0;
    }

    .card-group .card:only-child {
        border-radius: .25rem;
    }

    .card-group .card:only-child .card-img-top {
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
    }

    .card-group .card:only-child .card-img-bottom {
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem;
    }

    .card-group .card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }

    .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: .75rem;
}

@media (min-width:576px){
    .card-columns {
        -webkit-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }

    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.bg-primary {
    background-color: #007bff!important;
}

a.bg-primary:focus,
a.bg-primary:hover {
    background-color: #0062cc!important;
}

.rounded-0 {
    border-radius: 0!important;
}

.text-white {
    font-size: 20px;
    color: #fff!important;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

.bg-info {
    background-color: #17a2b8!important;
}

a.bg-info:focus,
a.bg-info:hover {
    background-color: #117a8b!important;
}

.bg-success {
    background-color: #28a745!important;
}

a.bg-success:focus,
a.bg-success:hover {
    background-color: #1e7e34!important;
}

.bg-warning {
    background-color: #ffc107!important;
}

a.bg-warning:focus,
a.bg-warning:hover {
    background-color: #d39e00!important;
}

.bg-danger {
    background-color: #dc3545!important;
}

a.bg-danger:focus,
a.bg-danger:hover {
    background-color: #bd2130!important;
}

.text-nowrap {
    white-space: nowrap!important;
}

.mt-0,
.my-0 {
    margin-top: 0!important;
}

.mb-0,
.my-0 {
    margin-bottom: 0!important;
}

@media (min-width: 0) {	
	.g-py-100 {
        padding-top: 7.14286rem !important;
        padding-bottom: 7.14286rem !important;
    }
	
	.g-mb-80 {
        margin-bottom: 5.71429rem !important;
    }
}

/*------------------------------------
  Heading-v6-1
------------------------------------*/
.u-heading-v6-2 .u-heading-v6__title,
.u-heading-v6-2 .u-heading-v6__subtitle {
    padding-left: 6.42857rem;
}

.u-heading-v6-2.text-center .u-heading-v6__title,
.u-heading-v6-2.text-right .u-heading-v6__title,
.u-heading-v6-2.text-center .u-heading-v6__subtitle,
.u-heading-v6-2.text-right .u-heading-v6__subtitle {
    padding-right: 6.42857rem;
}

.u-heading-v6-2.text-right .u-heading-v6__title,
.u-heading-v6-2.text-right .u-heading-v6__subtitle {
    padding-left: 0;
}

.u-heading-v6-2 .u-heading-v6__title::after {
    left: 0;
}

.u-heading-v6-2.text-center .u-heading-v6__title::before {
    right: 0;
}

.u-heading-v6-2.text-right .u-heading-v6__title::before {
    right: 0;
}

.u-heading-v6-2.text-right .u-heading-v6__title::after {
    display: none;
}

.g-font-weight-300 {
    font-weight: 300 !important;
}

/*------------------------------------
  Heading-v6
------------------------------------*/
.u-heading-v6__title {
    display: inline-block;
    position: relative;
}

.u-heading-v6-1 .u-heading-v6__title::after,
.u-heading-v6-1.text-center .u-heading-v6__title::before,
.u-heading-v6-1.text-right .u-heading-v6__title::before,
.u-heading-v6-2 .u-heading-v6__title::after,
.u-heading-v6-2.text-center .u-heading-v6__title::before,
.u-heading-v6-2.text-right .u-heading-v6__title::before {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 5rem;
    border-top-width: 1px;
    border-top-style: solid;
    border-color: inherit;
}

/*------------------------------------
  Heading-v6-1
------------------------------------*/
.u-heading-v6-1 .u-heading-v6__title,
.u-heading-v6-1 .u-heading-v6__subtitle {
    padding-right: 6.42857rem;
}

.u-heading-v6-1.text-center .u-heading-v6__title,
.u-heading-v6-1.text-right .u-heading-v6__title,
.u-heading-v6-1.text-center .u-heading-v6__subtitle,
.u-heading-v6-1.text-right .u-heading-v6__subtitle {
    padding-left: 6.42857rem;
}

.u-heading-v6-1.text-right .u-heading-v6__title,
.u-heading-v6-1.text-right .u-heading-v6__subtitle {
    padding-right: 0;
}

.u-heading-v6-1 .u-heading-v6__title::after {
    right: 0;
}

.u-heading-v6-1.text-center .u-heading-v6__title::before {
    left: 0;
}

.u-heading-v6-1.text-right .u-heading-v6__title::before {
    left: 0;
}

.u-heading-v6-1.text-right .u-heading-v6__title::after {
    display: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h7,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
}

.g-line-height-2 {
    line-height: 2 !important;
}

@media (min-width: 0) {	
	.g-pl-90 {
        padding-left: 6.42857rem !important;
    }
}

.rounded-0 {
    border-radius: 0 !important;
}

.card,
.card-header {
    border-color: #eee;
}

.card-header {
    padding: 0.71429rem 1.07143rem;
}

.card-block {
    padding: 2rem;
}

.g-font-size-default {
    font-size: 1.5rem !important;
}

@media (min-width: 0) {	
	.g-mr-5 {
        margin-right: 0.35714rem !important;
    }
	
	.g-pa-15 {
        padding: 1.07143rem !important;
    }
}

.g-brd-gray-light-v4 {
    border-color: #eee !important;
}

.g-brd-gray-light-v4--hover:hover,
.g-brd-gray-light-v4--active.active {
    border-color: #eee !important;
}

*:hover > .g-brd-gray-light-v4--hover-parent {
    border-color: #eee !important;
}

@media (min-width: 0) {	
	.g-my-50 {
        margin-top: 3.57143rem !important;
        margin-bottom: 3.57143rem !important;
    }
}

hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Primary Colors */
.g-bg-primary {
    background-color: #72c02c !important;
}

.g-bg-primary--hover:hover {
    background-color: #72c02c !important;
}

.u-block-hover:hover .g-bg-primary--hover {
    background-color: #72c02c;
}

.g-parent:hover .g-bg-primary--parent-hover {
    background-color: #72c02c !important;
}

.g-bg-primary--active.active,
.active .g-bg-primary--active {
    background-color: #72c02c !important;
}

.g-parent.active .g-bg-primary--parent-active {
    background-color: #72c02c !important;
}

.g-bg-primary--before::before,
.g-bg-primary--after::after {
    background-color: #72c02c !important;
}

.g-bg-primary-dark-v1 {
    background-color: #6db82a !important;
}

.g-bg-primary-dark-v2 {
    background-color: #66ab27 !important;
}

.g-bg-primary-dark-v3 {
    background-color: #599722 !important;
}

.g-bg-primary-opacity-0_1 {
    background-color: rgba(114, 192, 44, 0.1) !important;
}

.g-bg-primary-opacity-0_2 {
    background-color: rgba(114, 192, 44, 0.2) !important;
}

.g-bg-primary-opacity-0_2--hover:hover {
    background-color: rgba(114, 192, 44, 0.2) !important;
}

.g-bg-primary-opacity-0_2--hover--after:hover::after {
    background-color: rgba(114, 192, 44, 0.2) !important;
}

.active .g-bg-primary-opacity-0_2--active {
    background-color: rgba(114, 192, 44, 0.2) !important;
}

.g-bg-primary-opacity-0_2--before::before,
.g-bg-primary-opacity-0_2--after::after {
    background-color: rgba(114, 192, 44, 0.2) !important;
}

.g-bg-primary-opacity-0_3 {
    background-color: rgba(114, 192, 44, 0.3) !important;
}

.g-bg-primary-opacity-0_3--hover:hover {
    background-color: rgba(114, 192, 44, 0.3) !important;
}

.g-bg-primary-opacity-0_3--hover--after:hover::after {
    background-color: rgba(114, 192, 44, 0.3) !important;
}

.active .g-bg-primary-opacity-0_3--active {
    background-color: rgba(114, 192, 44, 0.3) !important;
}

.g-bg-primary-opacity-0_3--before::before,
.g-bg-primary-opacity-0_3--after::after {
    background-color: rgba(114, 192, 44, 0.3) !important;
}

.g-bg-primary-opacity-0_4 {
    background-color: rgba(114, 192, 44, 0.4) !important;
}

.g-bg-primary-opacity-0_4--hover:hover {
    background-color: rgba(114, 192, 44, 0.4) !important;
}

.g-bg-primary-opacity-0_4--hover--after:hover::after {
    background-color: rgba(114, 192, 44, 0.4) !important;
}

.g-bg-primary-opacity-0_4--after::after {
    background-color: rgba(114, 192, 44, 0.4) !important;
}

.g-bg-primary-opacity-0_6 {
    background-color: rgba(114, 192, 44, 0.6) !important;
}

.g-bg-primary-opacity-0_6--hover:hover {
    background-color: rgba(114, 192, 44, 0.6) !important;
}

.g-bg-primary-opacity-0_6--hover--after:hover::after {
    background-color: rgba(114, 192, 44, 0.6) !important;
}

.g-bg-primary-opacity-0_6--after::after {
    background-color: rgba(114, 192, 44, 0.6) !important;
}

.g-bg-primary-opacity-0_8 {
    background-color: rgba(114, 192, 44, 0.8) !important;
}

.g-bg-primary-opacity-0_8--hover:hover {
    background-color: rgba(114, 192, 44, 0.8) !important;
}

.g-bg-primary-opacity-0_8--hover--after:hover::after {
    background-color: rgba(114, 192, 44, 0.8) !important;
}

.g-bg-primary-opacity-0_8--before::after,
.g-bg-primary-opacity-0_8--after::after {
    background-color: rgba(114, 192, 44, 0.8) !important;
}

.g-bg-primary-opacity-0_8--before--hover:hover::after,
.g-bg-primary-opacity-0_8--after--hover:hover::after {
    background-color: rgba(114, 192, 44, 0.8) !important;
}

.g-bg-primary-opacity-0_9 {
    background-color: rgba(114, 192, 44, 0.9) !important;
}

.g-bg-primary-opacity-0_9--hover:hover {
    background-color: rgba(114, 192, 44, 0.9) !important;
}

.g-bg-primary-opacity-0_9--hover--after:hover::after {
    background-color: rgba(114, 192, 44, 0.9) !important;
}

.g-bg-primary-opacity-0_9--before::after,
.g-bg-primary-opacity-0_9--after::after {
    background-color: rgba(114, 192, 44, 0.9) !important;
}

.g-bg-primary-opacity-0_9--before--hover:hover::after,
.g-bg-primary-opacity-0_9--after--hover:hover::after {
    background-color: rgba(114, 192, 44, 0.9) !important;
}

/* Primary Colors */
.g-brd-primary {
    border-color: #72c02c !important;
}

.g-brd-primary--before::before {
    border-color: #72c02c !important;
}

.g-brd-primary--before--active.active::before {
    border-color: #72c02c !important;
}

.g-brd-primary--hover:hover,
.g-brd-primary--active.active {
    border-color: #72c02c !important;
}

.g-brd-primary--active.active,
.active .g-brd-primary--active {
    border-color: #72c02c !important;
}

*:hover > .g-brd-primary--hover-parent {
    border-color: #72c02c !important;
}

.g-brd-primary-opacity-0_3 {
    border-color: rgba(114, 192, 44, 0.3) !important;
}

.g-brd-primary-opacity-0_3--hover:hover,
.g-brd-primary-opacity-0_3--active.active {
    border-color: rgba(114, 192, 44, 0.3) !important;
}

*:hover > .g-brd-primary-opacity-0_3--hover-parent {
    border-color: rgba(114, 192, 44, 0.3) !important;
}

.g-brd-primary-dark-dark-v1 {
    border-color: #6db82a !important;
}

.g-brd-primary-dark-dark-v1--hover:hover,
.g-brd-primary-dark-dark-v1--active.active {
    border-color: #6db82a !important;
}

*:hover > .g-brd-primary-dark-dark-v1--hover-parent {
    border-color: #6db82a !important;
}

.g-brd-primary-dark-dark-v2 {
    border-color: #66ab27 !important;
}

.g-brd-primary-dark-dark-v2--hover:hover,
.g-brd-primary-dark-dark-v2--active.active {
    border-color: #66ab27 !important;
}

*:hover > .g-brd-primary-dark-dark-v2--hover-parent {
    border-color: #66ab27 !important;
}

.g-brd-primary-dark-dark-v3 {
    border-color: #599722 !important;
}

.g-brd-primary-dark-dark-v3--hover:hover,
.g-brd-primary-dark-dark-v3--active.active {
    border-color: #599722 !important;
}

*:hover > .g-brd-primary-dark-dark-v3--hover-parent {
    border-color: #599722 !important;
}

.g-brd-bottom-primary--hover:hover {
    border-bottom-color: #72c02c !important;
}

.g-bg-blue {
    background-color: #3398dc !important;
}

/* Color Blue */
.g-brd-blue {
    border-color: #3398dc !important;
}

.g-brd-blue--hover:hover,
.g-brd-blue--active.active {
    border-color: #3398dc !important;
}

*:hover > .g-brd-blue--hover-parent {
    border-color: #3398dc !important;
}

.g-brd-blue-opacity-0_1 {
    border-color: rgba(51, 152, 220, 0.1) !important;
}

/* Color Light Red */
.g-bg-lightred {
    background-color: #e64b3b !important;
}

.g-bg-lightred-opacity-0_1 {
    background-color: rgba(230, 75, 59, 0.1) !important;
}

.g-bg-lightred--hover:hover {
    background-color: #e64b3b !important;
}

/* Color Light Red */
.g-brd-lightred {
    border-color: #e64b3b !important;
}

.g-brd-lightred--hover:hover,
.g-brd-lightred--active.active {
    border-color: #e64b3b !important;
}

*:hover > .g-brd-lightred--hover-parent {
    border-color: #e64b3b !important;
}

/* Black Colors */
.g-bg-black {
    background-color: #000 !important;
}

.g-bg-black--hover:hover {
    background-color: #000 !important;
}

.g-bg-black--after::after {
    background-color: #000 !important;
}

.g-bg-black-opacity-0_1 {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.g-bg-black-opacity-0_1--after::after {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.g-bg-black-opacity-0_2 {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.g-bg-black-opacity-0_2--after::after {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.g-bg-black-opacity-0_3 {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.g-bg-black-opacity-0_3--hover:hover {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.g-bg-black-opacity-0_3--after::after,
.g-bg-black-opacity-0_3--before::before {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.g-bg-black-opacity-0_3--hover--after:hover::after {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.g-bg-black-opacity-0_4 {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.g-bg-black-opacity-0_4--after::after {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.g-bg-black-opacity-0_5 {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.g-bg-black-opacity-0_5--hover:hover {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.g-bg-black-opacity-0_5--after::after {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.g-bg-black-opacity-0_6 {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.g-bg-black-opacity-0_6--hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_6--after::after {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.g-bg-black-opacity-0_7 {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_7--hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_7--after::after {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_8 {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.g-bg-black-opacity-0_8--after::after {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.g-bg-black-opacity-0_8--hover:hover {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.g-bg-black-opacity-0_9 {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.g-bg-black-opacity-0_9--after::after {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.g-bg-black-opacity-0_9--hover:hover {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.u-block-hover:hover .g-bg-black--hover {
    background-color: #000 !important;
}

/* Black Colors */
.g-brd-black {
    border-color: #000 !important;
}

.g-brd-black--hover:hover,
.g-brd-black--active.active {
    border-color: #000 !important;
}

*:hover > .g-brd-black--hover-parent {
    border-color: #000 !important;
}

.g-brd-black-opacity-0_4 {
    border-color: rgba(0, 0, 0, 0.4) !important;
}

/* Color Teal */
.g-bg-teal {
    background-color: #18ba9b !important;
}

.g-bg-teal-opacity-0_1 {
    background-color: rgba(24, 186, 155, 0.1) !important;
}

.g-bg-teal-opacity-0_9 {
    background-color: rgba(24, 186, 155, 0.9) !important;
}

.g-bg-teal-opacity-0_9--after::after {
    background-color: rgba(24, 186, 155, 0.9) !important;
}

.g-bg-teal--hover:hover {
    background-color: #18ba9b !important;
}

/* Color Teal */
.g-brd-teal {
    border-color: #18ba9b !important;
}

.g-brd-teal--hover:hover,
.g-brd-teal--active.active {
    border-color: #18ba9b !important;
}

*:hover > .g-brd-teal--hover-parent {
    border-color: #18ba9b !important;
}

/* Color Purple */
.g-bg-purple {
    background-color: #9a69cb !important;
}

.g-bg-purple-opacity-0_1 {
    background-color: rgba(154, 105, 203, 0.1) !important;
}

.g-bg-purple-opacity-0_7 {
    background-color: rgba(154, 105, 203, 0.7) !important;
}

.g-bg-purple-opacity-0_9 {
    background-color: rgba(154, 105, 203, 0.9) !important;
}

.g-bg-purple-opacity-0_9--after::after {
    background-color: rgba(154, 105, 203, 0.9) !important;
}

.g-bg-purple--hover:hover {
    background-color: #9a69cb !important;
}

/* Color Purple */
.g-brd-purple {
    border-color: #9a69cb !important;
}

.g-brd-purple--hover:hover,
.g-brd-purple--active.active {
    border-color: #9a69cb !important;
}

*:hover > .g-brd-purple--hover-parent {
    border-color: #9a69cb !important;
}

.g-brd-purple-opacity-0_1 {
    border-color: rgba(154, 105, 203, 0.1) !important;
}

/* Color Cyan */
.g-bg-cyan {
    background-color: #00a0e9 !important;
}

.g-bg-cyan-opacity-0_1 {
    background-color: rgba(0, 190, 214, 0.1) !important;
}

.g-bg-cyan-opacity-0_9 {
    background-color: rgba(0, 190, 214, 0.9) !important;
}

.g-bg-cyan-opacity-0_9--after::after {
    background-color: rgba(0, 190, 214, 0.9) !important;
}

.g-bg-cyan--hover:hover {
    background-color: #00bed6 !important;
}

/* Color Cyan */
.g-brd-cyan {
    border-color: #00a0e9 !important;
}

.g-brd-cyan--hover:hover,
.g-brd-cyan--active.active {
    border-color: #00bed6 !important;
}

*:hover > .g-brd-cyan--hover-parent {
    border-color: #00bed6 !important;
}

/* Color Dark Blue */
.g-bg-darkblue {
    background-color: #009 !important;
}

.g-bg-darkblue-opacity-0_1 {
    background-color: rgba(0, 0, 153, 0.1) !important;
}

/* Color Dark Blue */
.g-brd-darkblue {
    border-color: #009 !important;
}

.g-brd-darkblue--hover:hover,
.g-brd-darkblue--active.active {
    border-color: #009 !important;
}

*:hover > .g-brd-darkblue--hover-parent {
    border-color: #009 !important;
}

/* Color Pink */
.g-bg-pink {
    background-color: #e81c62 !important;
}

.g-bg-pink-opacity-0_1 {
    background-color: rgba(232, 28, 98, 0.1) !important;
}

.g-bg-pink-opacity-0_9 {
    background-color: rgba(232, 28, 98, 0.9) !important;
}

.g-bg-pink--hover:hover {
    background-color: #e81c62 !important;
}

.g-bg-pink--before::after,
.g-bg-pink--after::after {
    background-color: #e81c62 !important;
}

.g-bg-pink--before--hover:hover::after,
.g-bg-pink--after--hover:hover::after {
    background-color: #e81c62 !important;
}

/* Color Pink */
.g-brd-pink {
    border-color: #e81c62 !important;
}

.g-brd-pink--hover:hover,
.g-brd-pink--active.active {
    border-color: #e81c62 !important;
}

*:hover > .g-brd-pink--hover-parent {
    border-color: #e81c62 !important;
}

/* Transparent */
.g-brd-transparent-top {
    border-top-color: transparent !important;
}

.g-brd-transparent-bottom {
    border-bottom-color: transparent !important;
}

.g-brd-transparent-left {
    border-left-color: transparent !important;
}

.g-brd-transparent-right {
    border-right-color: transparent !important;
}

/* Transparent */
.g-brd-transparent {
    border-color: transparent !important;
}

.g-brd-transparent--before::before {
    border-color: transparent !important;
}

.g-brd-transparent--after::after {
    border-color: transparent !important;
}

.g-brd-transparent--hover:hover,
.g-brd-transparent--active.active {
    border-color: transparent !important;
}

*:hover > .g-brd-transparent--hover-parent {
    border-color: transparent !important;
}

