@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --color-1: #ffffff;
    --color-2: #000000;
    --color-3: #c8102e;
    --background: #ffffff;
    --background-secondary: #fafafa;
    --font-primary: "Montserrat", "Roboto", "sans-serif";
}

.text-brand-red{
    color: var(--color-3);
}
*, ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}
body {
    color: #212529;
    background-color: #fafafa;
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
li {
    list-style: none;
}

.disabled-link {
    pointer-events: none !important;
    background: gray !important;
    border-color: gray !important;
}
.clearfix:after, .clearfix:before {
    display: table;
    content: ""}
.clearfix:after {
    clear: both;
}
.gutter-0 {
    padding: 1px 1px 0 0;
    margin-left: 0;
    margin-right: 0;
}
.gutter-0>* {
    padding: 0;
    margin: -1px -1px 0 0!important;
}
.gutter-1 {
    margin: -5px;
}
.gutter-1>* {
    margin-bottom: 0!important;
    padding: 5px;
}
.gutter-2 {
    margin: -10px;
}
.gutter-2>* {
    margin-bottom: 0!important;
    padding: 10px;
}
.gutter-3 {
    margin: -15px;
}
.gutter-3>* {
    margin-bottom: 0!important;
    padding: 15px;
}
.gutter-4 {
    margin: -20px;
}
.gutter-4>* {
    margin-bottom: 0!important;
    padding: 20px;
}
.gutter-5 {
    margin: -25px;
}
.gutter-5>* {
    margin-bottom: 0!important;
    padding: 25px;
}


@media screen and (min-width:1200px) {
    .grid-wide {
    max-width: 100%;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
}
}.object-position-1 {
    object-fit: cover;
    object-position: center center!important;
}
.object-position-2 {
    object-fit: cover;
    object-position: top center!important;
}
.object-position-3 {
    object-fit: cover;
    object-position: bottom center!important;
}
.custom-aspect-ratio-1 {
    --aspect-ratio: 1/1;
    position: relative;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
}
.custom-aspect-ratio-1>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.custom-aspect-ratio-2 {
    --aspect-ratio: 3/2;
    position: relative;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
}
.custom-aspect-ratio-2>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.custom-aspect-ratio-3 {
    --aspect-ratio: 4/3;
    position: relative;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
}
.custom-aspect-ratio-3>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.custom-aspect-ratio-4 {
    --aspect-ratio: 16/9;
    position: relative;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
}


.custom-aspect-ratio-4>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-aspect-ratio-5 {
    --aspect-ratio: 16/9;
    position: relative;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
}

.custom-aspect-ratio-5>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.full-width {
    width: 100%!important;
}
.top-left {
    top: 0;
    left: 0;
    position: absolute;
}
.top-center {
    top: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}
.top-right {
    top: 0;
    right: 0;
    position: absolute;
}
.mid-left {
    top: 50%;
    left: 0;
    position: absolute;
    transform: translateY(-50%);
}
.mid-center {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
}
.mid-right {
    top: 50%;
    right: 0;
    position: absolute;
    transform: translateY(-50%);
}
.bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
}
.bottom-center {
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}
.bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}
.rounded {
    border-radius: .25rem!important;
}
.rounded-sm {
    border-radius: .2rem!important;
}
.rounded-lg {
    border-radius: .75rem!important;
}
.rounded-0 {
    border-radius: 0!important;
}
.border-top {
    border-top: 1px solid #fafafa!important;
}
.border-bottom {
    border-bottom: 1px solid #fafafa!important;
}
.opacity-0 {
    opacity: 0;
}
.opacity-10 {
    opacity: .1;
}
.opacity-20 {
    opacity: .2;
}
.opacity-30 {
    opacity: .3;
}
.opacity-40 {
    opacity: .4;
}
.opacity-50 {
    opacity: .5;
}
.opacity-60 {
    opacity: .6;
}
.opacity-70 {
    opacity: .7;
}
.opacity-80 {
    opacity: .8;
}
.opacity-90 {
    opacity: .9;
}
.h-0 {
    height: 0;
}
.min-vh-10 {
    min-height: 10vh;
}
.min-vh-15 {
    min-height: 15vh;
}
.min-vh-20 {
    min-height: 20vh;
}
.min-vh-25 {
    min-height: 25vh;
}
.min-vh-30 {
    min-height: 30vh;
}
.min-vh-35 {
    min-height: 35vh;
}
.min-vh-40 {
    min-height: 40vh;
}
.min-vh-45 {
    min-height: 45vh;
}
.min-vh-50 {
    min-height: 50vh;
}
.min-vh-55 {
    min-height: 55vh;
}
.min-vh-60 {
    min-height: 60vh;
}
.min-vh-65 {
    min-height: 65vh;
}
.min-vh-70 {
    min-height: 70vh;
}
.min-vh-75 {
    min-height: 75vh;
}
.min-vh-80 {
    min-height: 80vh;
}
.min-vh-85 {
    min-height: 85vh;
}
.min-vh-90 {
    min-height: 90vh;
}
.min-vh-95 {
    min-height: 95vh;
}
.min-vh-100 {
    min-height: 100vh;
}




@media (max-width:767px) {
    .min-vh-sm-35 {
    min-height: 40vh !important;
}
}

@media (max-width:575px) {
    .min-vh-sm-35 {
    min-height: 30vh !important;
}
}

@media (max-width:450px) {
    .min-vh-sm-35 {
    min-height: 20vh !important;
}
}






@media (min-width:768px) {
    .min-vh-md-10 {
    min-height: 10vh;
}

.min-vh-md-20 {
    min-height: 20vh;
}
.min-vh-md-30 {
    min-height: 30vh;
}
.min-vh-md-40 {
    min-height: 40vh;
}
.min-vh-md-50 {
    min-height: 50vh;
}
.min-vh-md-60 {
    min-height: 60vh;
}
.min-vh-md-70 {
    min-height: 70vh;
}
.min-vh-md-80 {
    min-height: 80vh;
}
.min-vh-md-90 {
    min-height: 90vh;
}
.min-vh-md-100 {
    min-height: 100vh;
}
}@media (min-width:992px) {
    .min-vh-lg-10 {
    min-height: 10vh;
}
.min-vh-lg-20 {
    min-height: 20vh;
}
.min-vh-lg-30 {
    min-height: 30vh;
}
.min-vh-lg-40 {
    min-height: 40vh;
}
.min-vh-lg-50 {
    min-height: 50vh;
}
.min-vh-lg-60 {
    min-height: 60vh;
}
.min-vh-lg-70 {
    min-height: 70vh;
}
.min-vh-lg-80 {
    min-height: 80vh;
}
.min-vh-lg-90 {
    min-height: 90vh;
}
.min-vh-lg-100 {
    min-height: 100vh;
}
}.w-5 {
    width: 5%!important;
}
.w-10 {
    width: 10%!important;
}
.w-15 {
    width: 15%!important;
}
.w-20 {
    width: 20%!important;
}
.w-25 {
    width: 25%!important;
}
.w-30 {
    width: 30%!important;
}
.w-35 {
    width: 35%!important;
}
.w-40 {
    width: 40%!important;
}
.w-45 {
    width: 45%!important;
}
.w-50 {
    width: 50%!important;
}
.w-55 {
    width: 55%!important;
}
.w-60 {
    width: 60%!important;
}
.w-65 {
    width: 65%!important;
}
.w-70 {
    width: 70%!important;
}
.w-75 {
    width: 75%!important;
}
.w-80 {
    width: 80%!important;
}
.w-85 {
    width: 85%!important;
}
.w-90 {
    width: 90%!important;
}
.w-95 {
    width: 95%!important;
}
.w-100 {
    width: 100%!important;
}

.w-150 {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

@media (min-width:1200px) {
    .w-lg-5 {
    width: 5%!important;
}
.w-lg-10 {
    width: 10%!important;
}
.w-lg-15 {
    width: 15%!important;
}
.w-lg-20 {
    width: 20%!important;
}
.w-lg-25 {
    width: 25%!important;
}
.w-lg-35 {
    width: 35%!important;
}
.w-lg-40 {
    width: 40%!important;
}
.w-lg-45 {
    width: 45%!important;
}
.w-lg-50 {
    width: 50%!important;
}
.w-lg-55 {
    width: 55%!important;
}
.w-lg-60 {
    width: 60%!important;
}
.w-lg-65 {
    width: 65%!important;
}
.w-lg-70 {
    width: 70%!important;
}
.w-lg-75 {
    width: 75%!important;
}
.w-lg-80 {
    width: 80%!important;
}
.w-lg-85 {
    width: 85%!important;
}
.w-lg-90 {
    width: 90%!important;
}
.w-lg-95 {
    width: 95%!important;
}
.w-lg-100 {
    width: 100%!important;
}
}@media (min-width:991px) {
    .w-md-5 {
    width: 5%!important;
}
.w-md-10 {
    width: 10%!important;
}
.w-md-15 {
    width: 15%!important;
}
.w-md-20 {
    width: 20%!important;
}
.w-md-25 {
    width: 25%!important;
}
.w-md-35 {
    width: 35%!important;
}
.w-md-40 {
    width: 40%!important;
}
.w-md-45 {
    width: 45%!important;
}
.w-md-50 {
    width: 50%!important;
}
.w-md-55 {
    width: 55%!important;
}
.w-md-60 {
    width: 60%!important;
}
.w-md-65 {
    width: 65%!important;
}
.w-md-70 {
    width: 70%!important;
}
.w-md-75 {
    width: 75%!important;
}
.w-md-80 {
    width: 80%!important;
}
.w-md-85 {
    width: 85%!important;
}
.w-md-90 {
    width: 90%!important;
}
.w-md-95 {
    width: 95%!important;
}
.w-md-100 {
    width: 100%!important;
}
}@media (max-width:768px) {
    .w-sm-100 {
    width: 100%!important;
}
}.min-vw-10 {
    min-width: 10vw;
}
.min-vw-20 {
    min-width: 20vw;
}
.min-vw-30 {
    min-width: 30vw;
}
.min-vw-40 {
    min-width: 40vw;
}
.min-vw-50 {
    min-width: 50vw;
}
.min-vw-60 {
    min-width: 60vw;
}
.min-vw-70 {
    min-width: 70vw;
}
.min-vw-80 {
    min-width: 80vw;
}
.min-vw-90 {
    min-width: 90vw;
}
.min-vw-100 {
    min-width: 100vw;
}
a {
    color: inherit;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}
a:hover {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid inherit;
}
a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}
dl, ol, ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}
.list-numbers ol {
    list-style-position: inside;
    padding-left: 0;
}
.list-numbers ol li {
    margin-bottom: .75rem;
}
.list-numbers ol li:last-child {
    margin-bottom: 0;
}
.pt-05 {
    padding-top: 4rem;
}
.pb-05 {
    padding-bottom: 4rem;
}
.p-6 {
    padding: 4rem!important;
}
.py-6 {
    padding: 4rem 0!important;
}
.px-6 {
    padding: 0 4rem!important;
}
.pt-6 {
    padding-top: 4rem!important;
}
.pl-6 {
    padding-left: 4rem!important;
}
.pr-6 {
    padding-right: 3rem!important;
}
.pb-6 {
    padding-bottom: 4rem!important;
}
.p-15 {
    padding: .938rem;
}
.py-15 {
    padding: .938rem 0;
}
.px-15 {
    padding: 0 .938rem;
}
.pt-15 {
    padding-top: .938rem;
}
.pl-15 {
    padding-left: .938rem;
}
.pr-15 {
    padding-right: .938rem;
}
.pb-15 {
    padding-bottom: .938rem;
}
.p-50 {
    padding: 2.5rem;
}
.py-50 {
    padding: 2.5rem 0;
}
.px-50 {
    padding: 0 2.5rem;
}
.pt-50 {
    padding-top: 2.5rem;
}
.pl-50 {
    padding-left: 2.5rem;
}
.pr-50 {
    padding-right: 2.5rem;
}
.pb-50 {
    padding-bottom: 2.5rem;
}
@media (min-width:1200px) {
    .p-xl-50 {
    padding: 2rem;
}
.py-xl-50 {
    padding: 2rem 0;
}
.px-xl-50 {
    padding: 0 2rem;
}
.pt-xl-50 {
    padding-top: 2rem;
}
.pl-xl-50 {
    padding-left: 2rem;
}
.pr-xl-50 {
    padding-right: 2rem;
}
.pb-xl-50 {
    padding-bottom: 2rem;
}
.p-xl-15 {
    padding: .938rem;
}
.py-xl-15 {
    padding: .938rem 0;
}
.px-xl-15 {
    padding: 0 .938rem;
}
.pt-xl-15 {
    padding-top: .938rem;
}
.pl-xl-15 {
    padding-left: .938rem;
}
.pr-xl-15 {
    padding-right: .938rem;
}
.pb-xl-15 {
    padding-bottom: .938rem;
}
}@media (max-width:768px) {
    .py-6 {
    padding: 3rem 0!important;
}
.pt-6 {
    padding-top: 3rem!important;
}
.pb-6 {
    padding-bottom: 3rem!important;
}
.px-6 {
    padding: 0 3rem!important;
}
}@media (min-width:1200px) {
    .pb-lg-15 {
    padding-bottom: 15px;
}
.pb-lg-50 {
    padding-bottom: 50px;
}
}@media (min-width:769px) {
    .pt-lg-04 {
    padding-top: 1.5rem!important;
}
}@media (min-width:991px) {
    .pt-lg-0 {
    padding-top: 0!important;
}
.pb-lg-0 {
    padding-bottom: 0!important;
}
.pt-lg-6 {
    padding-top: 3rem!important;
}
.p-lg-6 {
    padding: 3rem!important;
}
.pl-lg-6 {
    padding-left: 3rem!important;
}
.pr-lg-6 {
    padding-right: 3rem!important;
}
}@media (max-width:991px) {
    .pb-6 {
    padding-bottom: 3rem;
}
.py-6 {
    padding: 3rem 0;
}
.mb-6 {
    margin-bottom: 3rem;
}
}.m-6 {
    margin: 3rem!important;
}
.my-6 {
    margin: 3rem 0!important;
}
.mx-6 {
    margin: 0 3rem!important;
}
.mt-6 {
    margin-top: 3rem!important;
}
.ml-6 {
    margin-left: 3rem!important;
}
.mr-6 {
    margin-right: 3rem!important;
}
.mb-6 {
    margin-bottom: 3rem!important;
}
.right-element {
    position: absolute;
    right: 20px;
}
.left-element {
    position: absolute;
    left: 20px;
}
.show-element {
    display: block!important;
}
.hide-element {
    display: none!important;
}
.show-sm-element {
    display: none!important;
}
.show-xs-element {
    display: none!important;
}
@media (max-width:767px) {
    .show-xs-element {
    display: block!important;
}
}@media (max-width:990px) {
    .show-sm-element {
    display: block!important;
}
.hide-sm-element {
    display: none!important;
}
}@media (max-width:1200px) {
    .show-lg-element {
    display: block!important;
}
.hide-lg-element {
    display: none!important;
}
}.hide-menu {
    display: none!important;
}
.show-menu {
    display: block!important;
}
.show-nav-text {
    display: inline-block!important;
}
@media (max-width:991px) {
    .hide-buttons-menu {
    display: none!important;
}
.hide-element-menu {
    display: none!important;
}
.show-nav-text {
    display: none!important;
}
}.text-valid {
    color: #28a746!important;
}
.bg-valid {
    background-color: rgba(40, 167, 70, .08)!important;
}
.text-invalid {
    color: #dc3546!important;
}
.bg-invalid {
    background-color: rgba(220, 53, 70, .08)!important;
}
.bg-white {
    background-color: #fff!important;
}
.bg-canon-red {
    background-color: #c8102e!important;
}
.bg-black-100 {
    background-color: #0c0c0c!important;
}
.bg-light {
    background-color: #fafafa!important;
}
.bg-white {
    background-color: #fff!important;
}
.bg-dark-teal {
    background-color: #27bc80!important;
}
.bg-deep-aqua {
    background-color: #00b7ad!important;
}
.bg-aqua {
    background-color: #4fabe5!important;
}
.bg-deep-blue {
    background-color: #00007e!important;
}
.bg-yellow {
    background-color: #ffca28!important;
}
.bg-orange {
    background-color: #ffa000!important;
}
.bg-deep-orange {
    background-color: #ef6c00!important;
}
.bg-deep-lilac {
    background-color: #cc156a!important;
}
.bg-image {
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 550px}
.bg-image:not([class*=absolute]) {
    position: absolute;
}
.bg-image+.card-body {
    position: relative;
    z-index: 1;
}
img.bg-image {
    object-fit: cover;
}
body, p {
    font-size: 1rem;
    line-height: 1.8;
}
.p-events p {
    white-space: pre-line;
}
p a {
    color: #c8102e;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
p a:focus, p a:hover {
    color: #c40701;
    text-decoration: none;
    border-bottom: 1px solid #c40701;
}
@media (max-width:991px) {
    h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br {
    display: none!important;
}
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family:var(--font-primary);
    line-height: 1.2;
    padding: 0;
    margin: 0;
    font-weight: 500;
    color: #212529;
}
.h1, h1 {
    font-size: 1.5rem;
}
.h2, h2 {
    font-size: 1.5rem;
}
.h3, h3 {
    font-size: 1.25rem;
}
h4 {
    font-size: 1.2rem;
}
.h5, h5 {
    font-size: 1.15rem;
}
.h6, h6 {
    font-size: 1rem;
}

.fs-14 {
    font-size: 14px!important;
}


.bg-black-100 .h1, .bg-black-100 .h2, .bg-black-100 .h3, .bg-black-100 .h4, .bg-black-100 .h5, .bg-black-100 .h6, .bg-black-100 h1, .bg-black-100 h2, .bg-black-100 h3, .bg-black-100 h4, .bg-black-100 h5, .bg-black-100 h6 {
    color: #fff;
}
.display-1 {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
}
.display-2 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
}
.display-3 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
}
.display-4 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
}
.display-5 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.display-6 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.title-gallery{
    font-size: 2.1rem;
}

@media (max-width:991px) {
    .display-3 {
    font-size: 2.5rem;
    line-height: 1.2;
}
.display-4 {
    font-size: 1.5rem;
    line-height: 1.2;
}
.display-6 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.tittle-gallery{
    font-size: 2.1rem;
}



}
@media (max-width:768px) {
    .display-3 {
    font-size: 2rem;
    line-height: 1.2;
}
.display-4 {
    font-size: 1.5rem;
    line-height: 1.2;
}
.display-6 {
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1.2;
}

.tittle-gallery{
    font-size: 2.1rem;
}


.calendar h3 {
    font-size: 1.25rem;
}
}
.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
}
.small, small {
    font-size: .9rem;
    font-weight: 400;
}
strong {
    font-weight: 600;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
.text-center {
    text-align: center;
}
.text-white {
    color: #fff!important;
}
.text-light {
    color: #f8f9fa!important;
}
.p-hr {
    position: relative;
    text-align: center;
}
.p-hr:before {
    border-top: solid 1px #efefef;
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    z-index: -1;
    top: 50%}
.p-hr span {
    background: #fafafa;
    position: relative;
    padding: 0 1rem;
    z-index: 1;
}
.text-underline {
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid inherit;
}
.text-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    border: 2px solid #efefef;
}
.text-white {
    color: #fff!important;
}
.text-canon-red {
    color: #c8102e!important;
}
.text-black-100 {
    color: #0c0c0c!important;
}
.text-dark {
    color: #212529!important;
}
.text-muted {
    color: #212529!important;
}

.text-seguidores {
    color: #494949!important;
    font-size: 14px !important;
    font-weight:400;
}

.newIconCourseX {
    font-size: 25px;
    color: #c8102e;
    cursor: pointer;
    margin-top: -6px;
}
.text-blue {
    color: #4fabe5!important;
}
.text-red {
    color: #c8102e!important;
}
.text-dark-teal {
    color: #27bc80!important;
}
.text-deep-aqua {
    color: #2e9597!important;
}
.text-aqua {
    color: #4fabe5!important;
}
.text-deep-blue {
    color: #00007e!important;
}
.text-yellow {
    color: #ffca28!important;
}
.text-orange {
    color: #ffa000!important;
}
.text-deep-orange {
    color: #ef6c00!important;
}
.text-deep-lilac {
    color: #cc156a!important;
}
.hidden-h1, .hidden-h2, .hidden-h3, .hidden-h4, .hidden-h5, .hidden-h6 {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    clip: rect(1px, 1px, 1px, 1px);
    clip: rect(1px 1px 1px 1px);
}
.navbar-light {
    font-family: var(--font-primary);
    font-size: 1rem;
}
.navbar-light .navbar-brand {
    color: inherit;
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: #c8102e;
}
.navbar-light .navbar-nav .nav-link {
    color: #484d51;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #c8102e;
}
.navbar-light .navbar-nav .nav-link.disabled {
    color: #484d51;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: #c8102e;
}
.navbar-light .navbar-toggler {
    color: inherit;
    border-color: inherit;
}
.navbar-light .navbar-text {
    color: inherit;
}
.navbar-light .navbar-text a {
    color: inherit;
}
.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {
    color: #c8102e;
}
.navbar-brand {
    padding-top: 0!important;
    padding-bottom: 0!important;
}
.navbar-brand img {
    width: 130px;
}
@media (min-width:1200px) {
    .navbar-brand img {
    margin: 0;
    width: 160px;
}
}@media (max-width:1200px) {
    .navbar-collapse .navbar-nav {
    margin-top: 1rem;
    margin-bottom: 1.75rem;
}


.navbar-collapse .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-family: var(--font-primary);
}
.navbar-collapse .navbar-nav .nav-link.active, .navbar-collapse .navbar-nav .nav-link:focus, .navbar-collapse .navbar-nav .nav-link:hover {
    outline: 0;
    box-shadow: 0;
}
.navbar-collapse .dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
.profile .dropdown-menu {
    border: none!important;
}
.navbar-collapse .dropdown-item {
    font-family: var(--font-primary);
    padding: .25rem 0;
    font-size: 1.1rem;
    margin: 0;
}
.navbar-collapse .dropdown-item:focus, .navbar-collapse .dropdown-item:hover {
    color: #c8102e;
    text-decoration: none;
    background-color: transparent;
}
.navbar-collapse .dropdown-item.active, .navbar-collapse .dropdown-item:active {
    color: #c8102e;
    text-decoration: none;
    background-color: transparent;
}
.navbar-collapse .dropdown-toggle::after {
    float: right;
    margin: 0;
}
.navbar .hide {
    display: none!important;
}
.navbar .show-sm {
    display: block!important;
}
}@media (max-width:1200px) {
    .offcanvas-collapse {
    position: fixed;
    top: 70px;
    bottom: 0;
    right: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #fff;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
}
.offcanvas-collapse.open {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
}
}.navbar .btns {
    display: flex;
    flex-direction: row;
}
@media only screen and (max-width:1200px) {
    .navbar .btns {
    flex-direction: column;
}
.navbar .btn {
    margin: .5rem 0!important;
}
.navbar .btns .btn {
    padding: 1rem 1rem;
    font-size: 1.1rem;
    line-height: 1.1;
}
}.navbar .hide-sm {
    display: block!important;
}
.navbar .show-sm {
    display: none!important;
}
@media (max-width:1200px) {
    .navbar .hide-sm {
    display: none!important;
}
.navbar .show-sm {
    display: block!important;
}
}.navbar-toggler:focus, .navbar-toggler:hover {
    outline: 0;
    box-shadow: 0;
}
.animated-icon2 {
    margin: 0;
    width: 30px;
    height: 1.5rem;
    position: relative;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.animated-icon2 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.animated-icon2 span {
    background-color: #6c757d;
}
.animated-icon2:hover span {
    background-color: #c8102e;
}
.animated-icon2 span:nth-child(1) {
    top: 0;
}
.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
    top: 10px;
}
.animated-icon2 span:nth-child(4) {
    top: 20px;
}
.animated-icon2.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%}
.animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.animated-icon2.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%}
.visuallyhidden {
    clip: rect(0 0 0 0);
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}
.button, .input {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    line-height: normal;
    max-width: 100%;
    outline: 0;
    border: none;
}
.button {
    color: #6c757d;
    cursor: pointer;
    transition: .3s ease-out;
}
.button-open {
    font-size: 1.75rem;
    color: #6c757d;
}
.button-open:focus, .button-open:hover {
    color: #c8102e;
}
.button-close {
    position: absolute;
    padding: 20px 30px;
    right: 0;
    top: 0;
    font-size: 1.75rem;
    color: #6c757d;
}
@media (max-width:991px) {
    .button-close {
    padding: 15px;
}
}.form-search {
    position: relative;
    width: 100%}
@media (min-width:768px) {
    .form-search {
    max-width: 720px;
}
}.button-search {
    background-color: transparent;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 1.8rem;
    padding: 1.75rem 1.75rem;
}
.button-search:focus, .button-search:hover {
    outline: 0;
    box-shadow: 0;
}
@media (max-width:768px) {
    .button-search {
    font-size: 1rem;
    padding: 1rem 1rem;
}
}.input-search {
    width: 100%;
    display: block;
    padding: 1.75rem 5rem 1.75rem 1.75rem;
    border: 1px solid transparent;
    background-color: #fff;
    font-size: 1.8rem;
    color: #212529;
    border-radius: .25rem;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
@media (max-width:768px) {
    .input-search {
    font-size: 1rem!important;
    padding: 1rem 2.5rem 1rem 1rem!important;
}
}.input-search::-webkit-input-placeholder {
    color: #9aa4ac;
    opacity: 1;
}
.input-search::-moz-placeholder {
    color: #9aa4ac;
    opacity: 1;
}
.input-search:-ms-input-placeholder {
    color: #9aa4ac;
    opacity: 1;
}
.input-search:disabled, .input-search[readonly] {
    opacity: 1;
    color: #9aa4ac;
    background-color: rgba(154, 164, 172, .2);
}
.overlay-search {
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    position: fixed;
    display: flex;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #fafafa;
}
@media (max-width:768px) {
    .overlay-search {
    justify-content: flex-end;
    align-content: flex-end;
    align-items: flex-end;
}
}.hiding {
    max-height: 0;
    opacity: 0;
    bottom: 0;
}
.hiding .button-search, .hiding .input-search {
    opacity: 0;
}
.showing {
    top: 0;
    max-height: 100vh;
}
.stand-out-text {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 600;
}
.profile .dropdown-toggle::after {
    font-family: unicons-line;
    content: "\eb3a";
    vertical-align: middle;
    display: inline-block;
    margin-left: .255em;
    margin-right: 0;
    border: none;
}
.profile .dropdown-menu {
    padding: 0;
    margin: 0;
    top: 50px;
    border-radius: 0;
    border: 1px solid #f0f0f0;
}
.profile .dropdown-toggle.focus, .profile .dropdown-toggle:focus, .profile .dropdown-toggle:hover {
    color: #c8102e;
}
.profile .dropdown-item {
    padding: .5rem .75rem;
}
.profile .dropdown-item:focus, .profile .dropdown-item:hover {
    color: #c8102e;
    text-decoration: none;
    background-color: rgba(200, 16, 46, .075);
}
.profile .dropdown-item.active, .profile .dropdown-item:active {
    color: #c8102e;
    text-decoration: none;
    background-color: rgba(200, 16, 46, .075);
}
.profile .dropdown-item.disabled, .profile .dropdown-item:disabled {
    color: inherit;
    pointer-events: none;
    background-color: transparent;
}
.notifications .drop-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: -10px;
}
.notifications .drop-wrapper>.drop-col {
    flex: 1 0 0 0;
    margin: 10px;
}
.notifications .drop-wrapper>.drop-col p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
.notifications .drop-wrapper>.drop-col p strong {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    border-bottom: none;
}
.notifications .drop-wrapper>.drop-col p strong:focus, .notifications .drop-wrapper>.drop-col p strong:hover {
    color: #4fabe5;
    text-decoration: underline;
}
.notifications .drop-wrapper>.drop-col .time {
    color: #789;
}
.notifications .dropdown-toggle::after {
    border: none;
    margin-left: 0;
    vertical-align: 0;
}
.notifications .dropdown-menu {
    min-width: 25rem;
    padding: 0;
    margin: 0;
    top: 50px;
    border-radius: 0;
    border: 1px solid #f0f0f0;
}
.notifications .notification-list {
    max-height: 60vh;
    overflow-x: auto;
}
.notifications .dropdown-title {
    padding: 1rem 1rem;
}
.notifications .dropdown-title .h3 {
    line-height: 1.5;
}
.notifications .dropdown-title .btn-link {
    color: #73797d;
    cursor: pointer;
    line-height: 1.5;
    border-bottom: none;
    text-decoration: underline;
}
.notifications .dropdown-title .btn-link:focus, .notifications .dropdown-title .btn-link:hover {
    color: #484d51;
    text-decoration: none;
}
.notifications .dropdown-title .btn-link.disabled {
    color: #a2a8ac;
    text-decoration: none;
}
.notifications .empty {
    padding: 5rem 1rem;
    color: #73797d;
}
.notifications .empty i {
    font-size: 24px;
}
.notifications .empty p {
    margin: 0;
    padding: 0;
}
.notifications .dropdown-item {
    padding: 1rem 1rem;
    white-space: normal;
}
.notifications .dropdown-item:focus, .notifications .dropdown-item:hover {
    color: inherit;
    text-decoration: none;
    background-color: #fafafa;
}
.notifications .dropdown-item.active, .notifications .dropdown-item:active {
    color: inherit;
    text-decoration: none;
    background-color: #e3f2fd;
}
.notifications .dropdown-item.disabled, .notifications .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}
.notifications .dropdown-divider {
    border-top: 1px solid #f0f0f0;
    margin: 0;
}
.notifications .rounded-img {
    border-radius: 50%}
.item {
    padding-top: 6px;
    margin: 0;
    position: relative;
    display: inline-block;
}
.notifications .dropdown-toggle {
    color: #212529;
    font-size: 30px;
    line-height: 30px;
}
.notifications .dropdown-toggle.focus, .notifications .dropdown-toggle:focus, .notifications .dropdown-toggle:hover {
    color: #c8102e;
}
.notify-badge {
    background-color: #c8102e;
    position: absolute;
    text-align: center;
    color: #fff;
    width: 12px;
    height: 12px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 12px;
    border-radius: 100%;
    right: 1px;
    top: 6px;
}
#notification .card {
    border: none;
    border-radius: .25rem;
    margin-bottom: 1rem;
}
#notification .card:last-child {
    margin-bottom: 0;
}
#notification .card:focus, #notification .card:hover {
    color: inherit;
    text-decoration: none;
    background-color: #e3f2fd;
}
#notification .card.active, #notification .card:active {
    color: inherit;
    text-decoration: none;
    background-color: #e3f2fd;
}
#notification .btn-link {
    color: #73797d;
    cursor: pointer;
    line-height: 1.5;
    border-bottom: none;
    text-decoration: underline;
}
#notification .btn-link:focus, #notification .btn-link:hover {
    color: #484d51;
    text-decoration: none;
}
#notification .btn-link.disabled {
    color: #a2a8ac;
    text-decoration: none;
}
.n-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: -10px;
    padding: 1rem 1rem;
}
.n-wrapper>.n-col {
    flex: 1 0 0 0;
    margin: 10px;
}
.n-wrapper>.n-col p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
.n-wrapper>.n-col p strong {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    border-bottom: none;
}
.n-wrapper>.n-col p strong:focus, .n-wrapper>.n-col p strong:hover {
    color: #c8102e;
    text-decoration: underline;
}
.n-wrapper>.n-col .time {
    color: #789;
}
.jumbotron {
    padding: 3rem 0;
    margin-bottom: 0;
    background-color: #fff;
}
.jumbotron p:last-child {
    margin-bottom: 0;
}
.jumbotron h1 {
    font-weight: 600;
    margin-bottom: 1.25rem;
}
@media (min-width:768px) {
    .jumbotron {
    padding: 6rem 0;
}

.h1 {
    font-size: 2.1rem;
}


}.table td, .table th {
    padding: 1rem;
    border-top: none;
    vertical-align: middle;
}
.table thead th {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    color: #212529;
    vertical-align: middle;
    border-bottom: 2px solid rgba(150, 150, 150, 0.5);
}
.table tbody+tbody {
    border-top: none;
}
table .custom-control-label::before {
    top: .65rem;
}
table .custom-control-label::after {
    top: .65rem;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(33, 37, 41, .1);
}
.table-hover tbody tr:hover {
    color: #c8102e;
    background-color: rgba(200, 16, 46, .075);
}
.table-form .table th {
    border-top: 1px solid #fafafa;
}
.table-form .table td {
    padding: 1rem;
    border-top: none;
    vertical-align: middle;
}
.table-form .table td:last-child {
    text-align: center;
}
.table-form .table td i {
    font-size: 1.05rem;
    cursor: pointer;
    color: #212529;
}
.table-form .table td i:hover {
    color: #ef5350;
}
.table-form .table thead th {
    font-weight: 500;
    font-size: 1.05rem;
    color: inherit;
    vertical-align: middle;
    border-bottom: 2px solid #212529;
}
.form-table .table tbody+tbody {
    border-top: none;
}
.table-form .table-bordered {
    border: 1px solid rgba(33, 37, 41, .1);
}
.table-form .table-bordered th {
    border-top: 1px solid rgba(33, 37, 41, .1);
}
.table-form .table-bordered thead th {
    border-bottom: 3px solid #212529;
}
.table-bordered thead th {
    border-top: 1px solid rgba(33, 37, 41, .1);
}
#responsive-table td {
    vertical-align: middle;
}
@media only screen and (max-width:768px) {
    #responsive-table .hide-avatar {
    display: none!important;
}
#responsive-table table, #responsive-table tbody, #responsive-table td, #responsive-table th, #responsive-table thead, #responsive-table tr {
    display: block;
}
#responsive-table thead tr {
    vertical-align: middle;
    position: absolute;
    top: -9999px;
    left: -9999px;
}
#responsive-table tr {
    vertical-align: middle;
    border: 1px solid rgba(33, 37, 41, .1);
    margin-bottom: 1rem;
}
#responsive-table td {
    border: none;
    border-bottom: 1px solid rgba(33, 37, 41, .1);
    position: relative;
    padding-left: 50%;
    white-space: normal;
    text-align: left;
    vertical-align: middle;
}
#responsive-table td:last-child {
    border-bottom: none;
}
#responsive-table td:before {
    vertical-align: middle;
    position: absolute;
    left: 1rem;
    top: auto;
    width: 45%;
    padding-right: 10px;
    white-space: wrap;
    text-align: left;
    font-weight: 600;
    line-height: 1.4;
}
#responsive-table td:before {
    content: attr(data-title);
    vertical-align: middle;
}
}@media only screen and (max-width:374px) {
    #responsive-table td: last-child:before {
    top: 6px;
}
}.tableTwo {
    width: 100%;
    border-collapse: collapse;
}
.tableTwo td, .tableTwo th {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}
.tableTwo th {
    background-color: #c8102e;
    color: #fff;
}
@media (max-width:991px) {
    .tableTwo thead {
    display: none;
}
.tableTwo, .tableTwo tbody, .tableTwo td, .tableTwo tr {
    display: block;
    width: 100%}
.tableTwo tr {
    margin-bottom: 15px;
}
.tableTwo td {
    padding-left: 50%;
    text-align: left;
    position: relative;
}
.tableTwo td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
}
}#responsive-winners-table td {
    vertical-align: middle;
}
@media only screen and (max-width:991px) {
    #responsive-winners-table .hide-avatar {
    display: none!important;
}
#responsive-winners-table table, #responsive-winners-table tbody, #responsive-winners-table td, #responsive-winners-table th, #responsive-winners-table thead, #responsive-winners-table tr {
    display: block;
}
#responsive-winners-table thead tr {
    vertical-align: middle;
    position: absolute;
    top: -9999px;
    left: -9999px;
}
#responsive-winners-table tr {
    vertical-align: middle;
    border: 1px solid rgba(33, 37, 41, .1);
    margin-bottom: 1rem;
}
#responsive-winners-table td {
    border: none;
    border-bottom: 1px solid rgba(33, 37, 41, .1);
    position: relative;
    padding-left: 1rem;
    white-space: normal;
    text-align: left;
    vertical-align: middle;
}
#responsive-winners-table td:last-child {
    border-bottom: none;
}
#responsive-winners-table td:before {
    position: relative;
    display: block;
    margin-bottom: 1rem;
    left: 0;
    top: 0;
    width: 100%;
    padding-right: 0;
    white-space: wrap;
    text-align: left;
    font-weight: 600;
    line-height: 1.4;
}
#responsive-winners-table td:before {
    content: attr(data-title);
    vertical-align: middle;
}
table .custom-control-label::before {
    top: .2rem;
}
table .custom-control-label::after {
    top: .2rem;
}
}@media only screen and (max-width:374px) {
    #responsive-winners-table td: last-child:before {
    top: 6px;
}
}.btn {
    border: 1px solid transparent;
    font-family: var(--font-primary);
    border-radius: .25rem;
    letter-spacing: .01rem;
    font-size: 1.02rem;

}
.btn-icon-left {
    position: relative;
}
.btn-icon-left [class*=icon] {
    position: absolute;
    text-align: center;
    top: -1px;
    left: -1px;
    background-color: rgba(0, 0, 0, .09);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    line-height: 2.35;
    font-size: 1.5rem;
    height: 3.45rem;
    width: 3.45rem;
}
.btn-icon-left img {
    width: 1.2rem;
    height: 1.2rem;
}
.btn-icon-right {
    position: relative;
}
.btn-icon-right [class*=icon] {
    position: absolute;
    text-align: center;
    top: -1px;
    right: -1px;
    background-color: rgba(74, 168, 110, 0.09);
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    line-height: 2.35;
    font-size: 1.5rem;
    height: 3.45rem;
    width: 3.45rem;
}
.btn-facebook {
    color: #fff;
    border-color: #1778f2;
    background-color: #1778f2;
    font-weight: 500;
}
.btn-facebook:hover {
    color: #fff;
    border-color: #004dbe;
    background-color: #C8102E;
}
.btn-facebook.focus, .btn-facebook:focus {
    color: #fff;
    border-color: #1778f2;
    background-color: #1778f2;
    box-shadow: 0 0 0 .2rem rgba(23, 120, 242, .5);
}
.btn-facebook.disabled, .btn-facebook:disabled {
    color: #fff;
    border-color: #9aa4ac;
    background-color: #9aa4ac;
}
.btn-facebook:not(:disabled):not(.disabled).active, .btn-facebook:not(:disabled):not(.disabled):active, .show>.btn-facebook.dropdown-toggle {
    color: #fff;
    border-color: #1778f2;
    background-color: #1778f2;
}
.btn-facebook:not(:disabled):not(.disabled).active:focus, .btn-facebook:not(:disabled):not(.disabled):active:focus, .show>.btn-facebook.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 120, 242, .5);
}
.btn-tiktok {
    color: #fff;
    border-color: #363636;
    background-color: #363636;
    font-weight: 500;
}
.btn-tiktok:hover {
    color: #fff;
    border-color: #212121;
    background-color: #212121;
}
.btn-tiktok.focus, .btn-tiktok:focus {
    color: #fff;
    border-color: #363636;
    background-color: #363636;
    box-shadow: 0 0 0 .2rem rgba(54, 54, 54, .5);
}
.btn-tiktok.disabled, .btn-tiktok:disabled {
    color: #fff;
    border-color: #9aa4ac;
    background-color: #9aa4ac;
}
.btn-tiktok:not(:disabled):not(.disabled).active, .btn-tiktok:not(:disabled):not(.disabled):active, .show>.btn-tiktok.dropdown-toggle {
    color: #fff;
    border-color: #363636;
    background-color: #363636;
}
.btn-tiktok:not(:disabled):not(.disabled).active:focus, .btn-tiktok:not(:disabled):not(.disabled):active:focus, .show>.btn-tiktok.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(54, 54, 54, .5);
}
.single-center-btn a.btn-facebook, .single-center-btn a.btn-tiktok {
    padding: .75rem 0 .75rem 3rem!important;
    width: 300px;
}
.btn-primary {
    font-weight: 500;
    color: #fff;
    border-color: #c8102e;
    background-color: #c8102e;
}
.btn-primary:hover {
    color: #fff;
    border-color: #ef5350;
    background-color: #ef5350;
}
.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #c8102e;
    border-color: #c8102e;
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .5);
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #c8102e;
    border-color: #c8102e;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .5);
}
.btn-outline-primary {
    font-weight: 500;
    color: #c8102e;
    border-color: #c8102e;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #c8102e;
    border-color: #c8102e;
}
.btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #9aa4ac;
    border-color: #9aa4ac;
    background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #c8102e;
    border-color: #c8102e;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .5);
}
.btn-outline-light {
    font-weight: 500;
    color: #fff;
    border-color: #fff;
}
.btn-outline-light:hover {
    color: #c8102e;
    background-color: #fff;
    border-color: #fff;
}
.btn-outline-light.focus, .btn-outline-light:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #9aa4ac;
    border-color: #9aa4ac;
    background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle {
    color: #c8102e;
    background-color: #fff;
    border-color: #fff;
}
.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .5);
}
.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}
.btn-dark:hover {
    color: #fff;
    background-color: #73797d;
    border-color: #73797d;
}
.btn-dark.focus, .btn-dark:focus {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
    box-shadow: 0 0 0 .2rem rgba(33, 37, 41, .5);
}
.btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}
.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(33, 37, 41, .5);
}
.btn-outline-dark {
    color: #212529;
    border-color: rgba(33, 37, 41, .2);
}
.btn-outline-dark:hover {
    color: #fff;
    background-color: #3e464e !important;
    border-color: #212529;
}
.btn-outline-dark.focus, .btn-outline-dark:focus {
    box-shadow: none!important;
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #9aa4ac;
    background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(33, 37, 41, .5);
}

.btn-outline-dark:not(.collapse) {
    color: #212529;
    background-color: #FAFAFA;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.btn-outline-dark:not(.collapsed) {
    color: white;
    background-color: #212529;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


.btn-link {
    color: #c8102e;
    font-weight: 400;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.btn-link:hover {
    color: #c8102e;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.btn-link.focus, .btn-link:focus {
    color: #c8102e;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.btn-link.disabled, .btn-link:disabled {
    color: #9aa4ac;
    pointer-events: none;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.btn-link-white {
    color: #fff;
    font-weight: 600;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}
.btn-link-white:hover {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}
.btn-link-white.focus, .btn-link-white:focus {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}
.btn-link-white.disabled, .btn-link-white:disabled {
    color: #fff;
    pointer-events: none;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.top-link {
    color: #fff;
    font-weight: 600;
    transition: .3s;
    border-bottom: none;
    text-decoration: none;
}
.top-link:hover {
    opacity: .6;
    border-bottom: none;
    text-decoration: none;
}
.top-link.focus, .top-link:focus {
    color: #fff;
    border-bottom: none;
    text-decoration: none;
}
.top-link.disabled, .top-link:disabled {
    color: #9aa4ac;
    border-bottom: none;
    pointer-events: none;
    text-decoration: none;
}
.top-link i {
    font-size: 1.2rem!important;
}
.btn-reply {
    color: #212529;
    font-weight: 600;
    transition: .3s;
    text-decoration: none;
    border-bottom: none;
}
.btn-reply:hover {
    color: #212529;
    transition: .3s;
    text-decoration: none;
    border-bottom: none;
}
.btn-reply.focus, .btn-reply:focus {
    color: #212529;
    transition: .3s;
    text-decoration: none;
    border-bottom: none;
}
.btn-reply.disabled, .btn-reply:disabled {
    color: #9aa4ac;
    pointer-events: none;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.btn-dark-teal {
    font-weight: 500;
    color: #fff;
    border-color: #27bc80;
    background-color: #27bc80;
}
.btn-dark-teal:hover {
    color: #fff;
    border-color: #249e6b;
    background-color: #249e6b;
}
.btn-dark-teal.focus, .btn-dark-teal:focus {
    color: #fff;
    background-color: #27bc80;
    border-color: #27bc80;
    box-shadow: 0 0 0 .2rem rgba(51, 170, 116, .5);
}
.btn-dark-teal.disabled, .btn-dark-teal:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-dark-teal:not(:disabled):not(.disabled).active, .btn-dark-teal:not(:disabled):not(.disabled):active, .show>.btn-dark-teal.dropdown-toggle {
    color: #fff;
    background-color: #27bc80;
    border-color: #27bc80;
}
.btn-dark-teal:not(:disabled):not(.disabled).active:focus, .btn-dark-teal:not(:disabled):not(.disabled):active:focus, .show>.btn-dark-teal.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(51, 170, 116, .5);
}
.btn-deep-aqua {
    font-weight: 500;
    color: #fff;
    border-color: #00b7ad;
    background-color: #00b7ad;
}
.btn-deep-aqua:hover {
    color: #fff;
    border-color: #00968f;
    background-color: #00968f;
}
.btn-deep-aqua.focus, .btn-deep-aqua:focus {
    color: #fff;
    background-color: #00b7ad;
    border-color: #00b7ad;
    box-shadow: 0 0 0 .2rem rgba(0, 183, 173, .5);
}
.btn-deep-aqua.disabled, .btn-deep-aqua:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-deep-aqua:not(:disabled):not(.disabled).active, .btn-deep-aqua:not(:disabled):not(.disabled):active, .show>.btn-deep-aqua.dropdown-toggle {
    color: #fff;
    background-color: #00b7ad;
    border-color: #00b7ad;
}
.btn-deep-aqua:not(:disabled):not(.disabled).active:focus, .btn-deep-aqua:not(:disabled):not(.disabled):active:focus, .show>.btn-deep-aqua.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 183, 173, .5);
}
.btn-aqua {
    font-weight: 500;
    color: #fff;
    border-color: #4fabe5;
    background-color: #4fabe5;
}
.btn-aqua:hover {
    color: #fff;
    border-color: #4698ca;
    background-color: #4698ca;
}
.btn-aqua.focus, .btn-aqua:focus {
    color: #fff;
    background-color: #4fabe5;
    border-color: #4fabe5;
    box-shadow: 0 0 0 .2rem rgba(79, 171, 229, .5);
}
.btn-aqua.disabled, .btn-aqua:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-aqua:not(:disabled):not(.disabled).active, .btn-aqua:not(:disabled):not(.disabled):active, .show>.btn-aqua.dropdown-toggle {
    color: #fff;
    background-color: #4fabe5;
    border-color: #4fabe5;
}
.btn-aqua:not(:disabled):not(.disabled).active:focus, .btn-aqua:not(:disabled):not(.disabled):active:focus, .show>.btn-aqua.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(79, 171, 229, .5);
}
.btn-deep-blue {
    font-weight: 500;
    color: #fff;
    border-color: #00007e;
    background-color: #00007e;
}
.btn-deep-blue:hover {
    color: #fff;
    border-color: #00005e;
    background-color: #00005e;
}
.btn-deep-blue.focus, .btn-deep-blue:focus {
    color: #fff;
    background-color: #00007e;
    border-color: #00007e;
    box-shadow: 0 0 0 .2rem rgba(0, 0, 126, .5);
}
.btn-deep-blue.disabled, .btn-deep-blue:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-deep-blue:not(:disabled):not(.disabled).active, .btn-deep-blue:not(:disabled):not(.disabled):active, .show>.btn-deep-blue.dropdown-toggle {
    color: #fff;
    background-color: #00007e;
    border-color: #00007e;
}
.btn-deep-blue:not(:disabled):not(.disabled).active:focus, .btn-deep-blue:not(:disabled):not(.disabled):active:focus, .show>.btn-deep-blue.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 0, 126, .5);
}
.btn-yellow {
    font-weight: 500;
    color: #212529;
    border-color: #ffca28;
    background-color: #ffca28;
}
.btn-yellow:hover {
    color: #212529;
    border-color: #f1be48;
    background-color: #f1be48;
}
.btn-yellow.focus, .btn-yellow:focus {
    color: #212529;
    background-color: #ffca28;
    border-color: #ffca28;
    box-shadow: 0 0 0 .2rem rgba(255, 202, 40, .5);
}
.btn-yellow.disabled, .btn-yellow:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-yellow:not(:disabled):not(.disabled).active, .btn-yellow:not(:disabled):not(.disabled):active, .show>.btn-yellow.dropdown-toggle {
    color: #212529;
    background-color: #ffca28;
    border-color: #ffca28;
}
.btn-yellow:not(:disabled):not(.disabled).active:focus, .btn-yellow:not(:disabled):not(.disabled):active:focus, .show>.btn-yellow.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 202, 40, .5);
}
.btn-orange {
    font-weight: 500;
    color: #fff;
    border-color: #ffa000;
    background-color: #ffa000;
}
.btn-orange:hover {
    color: #fff;
    border-color: #f2a900;
    background-color: #f2a900;
}
.btn-orange.focus, .btn-orange:focus {
    color: #fff;
    background-color: #ffa000;
    border-color: #ffa000;
    box-shadow: 0 0 0 .2rem rgba(255, 160, 0, .5);
}
.btn-orange.disabled, .btn-orange:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-orange:not(:disabled):not(.disabled).active, .btn-orange:not(:disabled):not(.disabled):active, .show>.btn-orange.dropdown-toggle {
    color: #fff;
    background-color: #ffa000;
    border-color: #ffa000;
}
.btn-orange:not(:disabled):not(.disabled).active:focus, .btn-orange:not(:disabled):not(.disabled):active:focus, .show>.btn-orange.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 160, 0, .5);
}
.btn-deep-orange {
    font-weight: 500;
    color: #fff;
    border-color: #ef6c00;
    background-color: #ef6c00;
}
.btn-deep-orange:hover {
    color: #fff;
    border-color: #d86018;
    background-color: #d86018;
}
.btn-deep-orange.focus, .btn-deep-orange:focus {
    color: #fff;
    background-color: #ef6c00;
    border-color: #ef6c00;
    box-shadow: 0 0 0 .2rem rgba(239, 108, 0, .5);
}
.btn-deep-orange.disabled, .btn-deep-orange:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-deep-orange:not(:disabled):not(.disabled).active, .btn-deep-orange:not(:disabled):not(.disabled):active, .show>.btn-deep--orange.dropdown-toggle {
    color: #fff;
    background-color: #ef6c00;
    border-color: #ef6c00;
}
.btn-deep-orange:not(:disabled):not(.disabled).active:focus, .btn-deep-orange:not(:disabled):not(.disabled):active:focus, .show>.btn-deep-orange.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(239, 108, 0, .5);
}
.btn-deep-lilac {
    font-weight: 500;
    color: #fff;
    border-color: #cc156a;
    background-color: #cc156a;
}
.btn-deep-lilac:hover {
    color: #fff;
    border-color: #ac145a;
    background-color: #ac145a;
}
.btn-deep-lilac.focus, .btn-deep-lilac:focus {
    color: #fff;
    background-color: #cc156a;
    border-color: #cc156a;
    box-shadow: 0 0 0 .2rem rgba(204, 21, 106, .5);
}
.btn-deep-lilac.disabled, .btn-deep-lilac:disabled {
    color: #fff;
    background-color: #9aa4ac;
    border-color: #9aa4ac;
}
.btn-deep-lilac:not(:disabled):not(.disabled).active, .btn-deep-lilac:not(:disabled):not(.disabled):active, .show>.btn-deep--lilac.dropdown-toggle {
    color: #fff;
    background-color: #cc156a;
    border-color: #cc156a;
}
.btn-deep-lilac:not(:disabled):not(.disabled).active:focus, .btn-deep-lilac:not(:disabled):not(.disabled):active:focus, .show>.btn-deep-lilac.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(204, 21, 106, .5);
}
.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}
.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-success.focus, .btn-outline-success:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info.focus, .btn-outline-info:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning.focus, .btn-outline-warning:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show>.btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger.focus, .btn-outline-danger:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.single-left-btn, .single-left-btn-2, .single-left-btn-3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.single-center-btn, .single-center-btn-2, .single-center-btn-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-right-btn-3, .single-rigth-btn, .single-rigth-btn-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.single-center-btn a.btn-block, .single-left-btn a.btn-block, .single-right-btn a.btn-block {
    width: 100%}
.single-center-btn button.btn-block, .single-left-btn button.btn-block, .single-right-btn button.btn-block {
    width: 100%}
.single-center-btn button, .single-left-btn button, .single-right-btn button {
    width: 260px;
}
.single-center-btn a, .single-left-btn a, .single-right-btn a {
    width: 260px;
}
.single-center-btn-2 a, .single-left-btn-2 a, .single-right-btn-2 a {
    width: 360px;
}
.single-center-btn-3 a, .single-left-btn-3 a, .single-left-btn-4 a, .single-right-btn-3 a {
    width: 260px;
}
@media (max-width:768px) {
    .single-center-btn-3 a, .single-left-btn-3 a, .single-left-btn-4 a, .single-right-btn-3 a {
    width: 100%}
}@media (max-width:991px) {
    .single-center-btn a, .single-left-btn a, .single-right-btn a {
    width: 100%}
.single-center-btn button, .single-left-btn button, .single-right-btn button {
    width: 100%}
}.single-center-btn .btn, .single-left-btn .btn, .single-right-btn .btn {
    padding: .55rem .55rem;
}
.single-center-btn-2 .btn, .single-left-btn-2 .btn, .single-right-btn-2 .btn {
    padding: .55rem .55rem;
}
.single-center-btn-3 .btn, .single-left-btn-3 .btn, .single-right-btn-3 .btn {
    padding: .55rem .55rem;
}
.sign-up .btns .btn {
    padding: .75rem 1rem;
}
.profile .btn-sm {
    line-height: 1.8;
    padding: .375rem .75rem;
}
.btns a {
    margin: 0 .25rem;
}
.btns a+a {
    margin: 0 .25rem;
}
.btns .btn-sm {
    padding: .4rem .75rem .4rem 3.4rem;
    font-size: 1rem;
}
.btns .btn-sm .btn-icon-left {
    position: relative;
}
.btns .btn-icon-left [class*=icon] {
    position: absolute;
    text-align: center;
    top: -1px;
    left: -1px;
    background-color: rgba(0, 0, 0, .09);
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    line-height: 2.8;
    font-size: 1rem;
    height: 2.72rem;
    width: 2.72rem;
}
@media (max-width:767px) {
    .btns a {
    display: block;
}
.btns .btn-sm {
    padding: .4rem .75rem .4rem .75rem;
}
.btns a {
    margin: 0 0 .75rem 0;
}
.btns a+a {
    margin: 0 0 .75rem 0!important;
}
.btns a+a:last-child {
    margin: 0!important;
}
.btns .btn-group {
    width: 100%}
.btns .btn-group {
    margin: 0!important;
}
}.btns .btn-group {
    margin-left: .25rem;
}
.btns .btn-group .btn-sm {
    padding: .4rem .75rem;
    font-size: 1rem;
}
.btns-2 a {
    margin-left: 0!important;
    margin-bottom: 0!important;
    margin-right: .5rem!important;
}
.btns-2 a:last-child {
    margin-left: 0!important;
    margin-right: 0!important;
    margin-bottom: 0!important;
}
.btns-2 .btn-sm {
    padding: .4rem .75rem .4rem 3.4rem;
    font-size: 1rem;
}
.btns-2 .btn-sm .btn-icon-left {
    position: relative;
}
.btns-2 .btn-icon-left [class*=icon] {
    position: absolute;
    text-align: center;
    top: -1px;
    left: -1px;
    background-color: rgba(0, 0, 0, .09);
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    line-height: 2.8;
    font-size: 1rem;
    height: 2.72rem;
    width: 2.72rem;
}

.btn-seguidores {
    font-size: 0.7rem;
    border-color: #fdb1bd !important;
    width: 84px;
}

.btn-seguidores:hover{
    color: white;
    background-color: #C8102E;
}

.btn-siguiendo:focus{
    border: #fdb1bd;
    background-color: transparent;
    color: #C8102E;
}

.btn-seguir:focus{
    border: #fdb1bd;
    background-color: #C8102E;
    color: white;
}



@media (max-width:576px) {
    .btns-2 a {
    display: block;
    width: 100%;
    margin-left: 0!important;
    margin-bottom: .5rem!important;
    margin-right: 0!important;
}
.btns-2 a:last-child {
    margin-left: 0!important;
    margin-right: 0!important;
    margin-bottom: 0!important;
}
.btns-2 .btn-sm {
    padding: .4rem .75rem .4rem .75rem;
}
}.form-single-left-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}
.group-center-btns {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}
.form-single-left-btn button+button, .group-center-btns a+a {
    margin: 0 .5rem;
}
.div-info div+div {
    margin: .5rem 0;
}
.div-info .badge-light {
    text-transform: none;
    letter-spacing: .025rem;
}
.div-info .single-btn-3 a, .single-btn-3 a {
    width: 260px;
}
.div-info .single-btn-3 .btn, .single-btn-3 .btn {
    padding: .55rem .55rem;
}
@media (max-width:991px) {
    .form-single-left-btn, .group-center-btns {
    flex-direction: column;
}
.form-single-left-btn button+button, .group-center-btns a+a {
    margin: .5rem 0;
}
.div-info {
    flex-direction: column;
}
.div-info div+div {
    margin: .5rem 0;
}
}@media (max-width:768px) {
    .div-info .single-btn-3 a, .single-btn-3 a {
    width: 100%}
.div-info .badge {
    width: 100%}
}.btn-edit-group {
    width: 260px;
}
@media (max-width:768px) {
    .btn-edit-group {
    width: 100%}
}.gallery .btn-lg {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    font-family: var(--font-primary);
    border-radius: .25rem;
    border-style: dashed;
    border-width: 1px;
    line-height: 1.5;
    font-size: 1.05rem;
}
.gallery .btn-lg i {
    padding: 0;
    display: block;
    margin-bottom: 0;
    font-size: 2rem;
}
.btn-big {
    cursor: pointer;
    height: 55px;
    padding: .75rem 1rem .75rem 1rem;
    border-radius: .25rem;
}
@media (max-width:991px) {
    .btn-big {
    height: auto;
}
}.tab-content .btn-lg {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    font-weight: 400;
    font-family: var(--font-primary);
    border-radius: .25rem;
    border-style: dashed;
    border-width: 1px;
    line-height: 1.5;
    font-size: 1.05rem;
}
.tab-content .btn-lg i {
    padding: 0;
    display: block;
    margin-bottom: 0;
    font-size: 2rem;
}
.tab-content .form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
}
.tab-content .form-inline .custom-select {
    height: 40px;
    line-height: 1;
    width: 140px;
    padding: 0 .75rem;
}
@media only screen and (max-width:991px) {
    .tab-content .form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
.tab-content .form-inline label {
    margin-bottom: .75rem;
}
.tab-content .form-inline .custom-select {
    height: 55px;
    width: 100%;
    padding: .75rem .75rem;
}
}.btn-dashed {
    color: #212529;
    border-color: #212529;
    background-color: transparent;
}
.btn-dashed:hover {
    color: #c8102e;
    border-color: #c8102e;
    background-color: rgba(200, 16, 46, .025);
}
.btn-dashed.focus, .btn-dashed:focus {
    color: #c8102e;
    border-color: #c8102e;
    background-color: rgba(200, 16, 46, .025);
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .2);
}
.btn-dashed.disabled, .btn-dashed:disabled {
    color: #9aa4ac;
    border-color: #9aa4ac;
    background-color: rgba(154, 164, 172, .025);
}
.btn-dashed:not(:disabled):not(.disabled).active, .btn-dashed:not(:disabled):not(.disabled):active, .show>.btn-dashed.dropdown-toggle {
    color: #c8102e;
    border-color: #c8102e;
    background-color: rgba(200, 16, 46, .025);
}
.btn-dashed:not(:disabled):not(.disabled).active:focus, .btn-dashed:not(:disabled):not(.disabled):active:focus, .show>.btn-dashed.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .2);
}
.breadcrumb {
    margin: 0;
    padding: 2rem 0;
    font-weight: 400;
    font-size: .9rem;
    border-radius: 0;
    letter-spacing: .01em;
    background-color: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.breadcrumb-item a {
    color: inherit;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.breadcrumb-item a:focus, .breadcrumb-item a:hover {
    color: #4fabe5;
    text-decoration: none;
    border-bottom: 1px solid rgba(3, 154, 229, .5);
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem;
}
.breadcrumb-item+.breadcrumb-item::before {
    font-family: unicons-line;
    content: "\eb43";
    color: inherit;
    padding-right: .5rem;
}
.breadcrumb-item .active {
    color: #4fabe5;
    border-bottom: 1px solid rgba(3, 154, 229, .5);
}
@media (max-width:768px) {
    .breadcrumb {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
}.breadcrumb-over-image {
    margin: 0;
    padding: 2rem 0;
    font-weight: 600;
    font-size: .9rem;
    border-radius: 0;
    letter-spacing: .01em;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.breadcrumb-over-image .breadcrumb-item a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.breadcrumb-over-image .breadcrumb-item a:focus, .breadcrumb-over-image .breadcrumb-item a:hover {
    opacity: .5;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.breadcrumb-over-image .breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem;
}
.breadcrumb-over-image .breadcrumb-item+.breadcrumb-item::before {
    font-family: unicons-line;
    content: "\eb43";
    color: #fff;
    padding-right: .5rem;
}
.breadcrumb-over-image .breadcrumb-item .active {
    color: #fff;
    border-bottom: 1px solid #fff;
}
@media (max-width:768px) {
    .breadcrumb-over-image {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
}@media (max-width:768px) {
    .hide-breadcrumbs {
    display: none;
}
}aside {
    color: inherit;
    padding: 4rem 0;
    background-color: #fff;
}
aside h5 {
    margin-bottom: 1.25rem;
}
@media (max-width:991px) {
    aside {
    padding: 2rem 0!important;
}
}aside a {
    color: inherit;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
aside a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 16, 46, .5);
}
aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
aside ul li {
    display: block;
    padding: .25rem 0;
    margin: 0;
}
@media (min-width:768px) {
    aside ul li {
    display: block;
    padding: .25rem 0;
    margin: 0;
}
aside ul li:first-child {
    padding-top: 0;
}
aside ul li:last-child {
    padding-bottom: 0;
}
}aside .social-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
aside .social-icons ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 3rem;
    height: 3rem;
    line-height: 2;
    text-align: center;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5rem;
    border: 1px solid transparent;
    background-color: transparent;
}
aside .social-icons ul li a {
    border: 1px solid transparent;
}
aside .social-icons ul li .uil {
    color: inherit;
}
aside .social-icons ul li:hover.facebook {
    background-color: #1778f2;
}
aside .social-icons ul li:hover .uil-facebook-f {
    color: #fff;
}
aside .social-icons ul li:hover.instagram {
    background-color: #c13584;
}
aside .social-icons ul li:hover .uil-instagram {
    color: #fff;
}
aside .social-icons ul li:hover.twitter {
    background-color: #1da1f2;
}
aside .social-icons ul li:hover .uil-twitter {
    color: #fff;
}
aside .accordion {
    overflow-anchor: none;
}
aside .accordion>.card {
    overflow: hidden;
}
aside .accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
aside .accordion>.card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
aside .accordion>.card>.card-header {
    border-radius: 0;
    margin-bottom: 0;
}
aside .card {
    background-color: transparent;
    border-radius: 0;
    border: none;
}
aside .card-header {
    border: none;
    margin-bottom: 0;
    padding: .75rem 0;
    background-color: transparent;
}
aside .card-header a, aside .card-header a:focus, aside .card-header a:hover {
    text-decoration: none;
    border: none;
}
aside .card-header:first-child {
    border-radius: 0;
}
aside .card-body {
    min-height: 0;
    padding: 1.25rem 0;
}
aside .card-body p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
aside .icons>a {
    display: block;
    position: relative;
}
aside .icons>a:after {
    font-family: unicons-line;
    position: absolute;
    content: "\eb3a";
    right: 0;
}
aside .icons>a[aria-expanded=true]:after {
    content: "\eb56"}
.show-aside {
    display: block;
}
.hide-aside {
    display: none;
}
@media (max-width:991px) {
    .show-aside {
    display: none!important;
}
.hide-aside {
    display: block!important;
}
}footer {
    color: inherit;
    padding: 1.5rem 0;
    background-color: #fff;
    font-size: .9rem;
}
footer p {
    margin-bottom: 0;
    padding-bottom: 0;
}
.footer {
    font-size: .9rem;
}
footer a {
    color: inherit;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
footer a:hover {
    color: #c8102e;
    text-decoration: none;
}
footer a.text-muted:hover {
    color: #c8102e!important;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li {
    display: block;
    padding: .15rem 0;
    margin: 0;
}
@media (min-width:768px) {
    footer ul li {
    display: inline-block;
    padding: 0 .25rem;
}
footer ul li:first-child {
    padding-left: 0;
}
footer ul li:last-child {
    padding-right: 0;
}
}@media (min-width:990px) {
    footer p {
    margin-bottom: 0;
    padding-bottom: 0;
}
}@media (min-width:1200px) {
    footer p {
    margin-bottom: 0;
    padding-bottom: 0;
}
}.powered-by img {
    margin: 0 auto;
    height: 18px!important;
}
.powered-by:hover {
    border: none!important;
}
@media (min-width:768px) {
    .powered-by img {
    margin: 0;
    width: auto;
    display: inline-block;
}
}.copyright {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
.copyright img {
    width: 130px;
    margin-right: 0;
    margin-bottom: 1rem;
}
.footer-brand {
    font-size: .9rem;
    margin-bottom: .25rem;
}
@media only screen and (min-width:1200px) {
    .copyright {
    flex-direction: row;
}
.copyright img {
    width: 160px;
    margin-right: 1rem;
}
.footer-brand {
    margin-bottom: 0;
}
}footer .hide {
    display: none;
}
@media (max-width:991px) {
    .footer img {
    display: none!important;
}
}@media (min-width:768px) {
    footer .hide {
    display: inline-block;
}
}#back-to-top-btn {
    color: #4fabe5;
    display: block;
}
#back-to-top-btn:focus, #back-to-top-btn:hover {
    color: #006db3;
}
.back-to-page {
    color: #4fabe5;
    display: block;
}
.back-to-page:focus, .back-to-page:hover {
    color: #006db3;
}
.back-btn, .top-btn {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 0;
    margin: 0;
}
.back-btn, .top-btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.top-btn i {
    margin-left: .75rem;
    font-size: 1.75rem;
}
.back-btn i {
    margin-right: .25rem;
    font-size: 1.5rem;
}
body>div.loader {
    position: fixed;
    background: rgba(255, 255, 255, .5);
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity .5s ease;
    overflow: hidden;
    display: flex;
    pointer-events: none;
    align-items: center;
    justify-content: center;
}
body:not(.loaded)>div.loader {
    opacity: 1;
}
body:not(.loaded) {
    overflow: hidden;
}
body.loaded>div.loader {
    animation: hideLoader .5s linear .5s forwards;
}
.loader-animation {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48.2842712474619px;
    height: 48.2842712474619px;
    margin-left: -24.14213562373095px;
    margin-top: -24.14213562373095px;
    border-radius: 100%;
    -webkit-animation-name: loader;
    animation-name: loader;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
}
.loader-animation .side {
    display: block;
    width: 6px;
    height: 20px;
    background-color: #c8102e;
    margin: 2px;
    position: absolute;
    border-radius: 50%;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-duration: 1.5s;
}
.loader-animation .side:nth-child(1), .loader-animation .side:nth-child(5) {
    -webkit-transform: rotate(0);
    -webkit-animation-name: rotate0;
    animation-name: rotate0;
    transform: rotate(0);
}
.loader-animation .side:nth-child(3), .loader-animation .side:nth-child(7) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-name: rotate90;
    animation-name: rotate90;
}
.loader-animation .side:nth-child(2), .loader-animation .side:nth-child(6) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation-name: rotate45;
    animation-name: rotate45;
}
.loader-animation .side:nth-child(4), .loader-animation .side:nth-child(8) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-animation-name: rotate135;
    animation-name: rotate135;
}
.loader-animation .side:nth-child(1) {
    top: 24.14213562373095px;
    left: 48.2842712474619px;
    margin-left: -3px;
    margin-top: -10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.loader-animation .side:nth-child(2) {
    top: 41.21320343109277px;
    left: 41.21320343109277px;
    margin-left: -3px;
    margin-top: -10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.loader-animation .side:nth-child(3) {
    top: 48.2842712474619px;
    left: 24.14213562373095px;
    margin-left: -3px;
    margin-top: -10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.loader-animation .side:nth-child(4) {
    top: 41.21320343109277px;
    left: 7.07106781636913px;
    margin-left: -3px;
    margin-top: -10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.loader-animation .side:nth-child(5) {
    top: 24.14213562373095px;
    left: 0;
    margin-left: -3px;
    margin-top: -10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.loader-animation .side:nth-child(6) {
    top: 7.07106781636913px;
    left: 7.07106781636913px;
    margin-left: -3px;
    margin-top: -10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.loader-animation .side:nth-child(7) {
    top: 0;
    left: 24.14213562373095px;
    margin-left: -3px;
    margin-top: -10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.loader-animation .side:nth-child(8) {
    top: 7.07106781636913px;
    left: 41.21320343109277px;
    margin-left: -3px;
    margin-top: -10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
@-webkit-keyframes rotate0 {
    0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
60% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
}@keyframes rotate0 {
    0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
60% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
}@-webkit-keyframes rotate90 {
    0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
60% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
}@keyframes rotate90 {
    0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
60% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
}@-webkit-keyframes rotate45 {
    0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
60% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
}@keyframes rotate45 {
    0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
60% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
}@-webkit-keyframes rotate135 {
    0% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
60% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
100% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
}@keyframes rotate135 {
    0% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
60% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
100% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
}@-webkit-keyframes loader {
    0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}@keyframes loader {
    0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}.alert-lg {
    padding: 2rem 2rem;
}
.alert-md {
    padding: 1.5rem 1.5rem;
}
@media (max-width:991px) {
    .alert-lg {
    padding: 1.25rem 1.25rem!important;
}
.alert-md {
    padding: 1.25rem 1.25rem!important;
}
}@media (max-width:640px) {
    .alert .show-icon {
    display: block!important;
}
.alert .hide-icon {
    display: none!important;
}
}.alert-success {
    color: #155724;
    border-color: #c3e6cb;
    background-color: #d4edda;
}
.alert-success .h1, .alert-success .h2, .alert-success .h3, .alert-success .h4, .alert-success .h5, .alert-success h1, .alert-success h2, .alert-success h3, .alert-success h4, .alert-success h5, .alert-success h6 {
    color: #155724;
}
.alert-success hr {
    border-top-color: #b1dfbb;
}
.alert-success .alert-link {
    color: #0b2e13;
}
.alert-info {
    color: #0c5460;
    border-color: #bee5eb;
    background-color: #d1ecf1;
}
.alert-info .h1, .alert-info .h2, .alert-info .h3, .alert-info .h4, .alert-info .h5, .alert-info h1, .alert-info h2, .alert-info h3, .alert-info h4, .alert-info h5, .alert-info h6 {
    color: #0c5460;
}
.alert-info hr {
    border-top-color: #abdde5;
}
.alert-info .alert-link {
    color: #062c33;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-warning .h1, .alert-warning .h2, .alert-warning .h3, .alert-warning .h4, .alert-warning .h5, .alert-warning h1, .alert-warning h2, .alert-warning h3, .alert-warning h4, .alert-warning h5, .alert-warning h6 {
    color: #856404;
}
.alert-warning hr {
    border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
    color: #533f03;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-danger .h1, .alert-danger .h2, .alert-danger .h3, .alert-danger .h4, .alert-danger .h5, .alert-danger h1, .alert-danger h2, .alert-danger h3, .alert-danger h4, .alert-danger h5, .alert-danger h6 {
    color: #721c24;
}
.alert-danger hr {
    border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
    color: #491217;
}
.alert-light {
    color: #818182;
    border-color: #fdfdfe;
    background-color: #fefefe;
}
.alert-light .h1, .alert-light .h2, .alert-light .h3, .alert-light .h4, .alert-light .h5, .alert-light h1, .alert-light h2, .alert-light h3, .alert-light h4, .alert-light h5, .alert-light h6 {
    color: #818182;
}
.alert-light hr {
    border-top-color: #ececf6;
}
.alert-light .alert-link {
    color: #686868;
}
.alert-dark {
    color: #1b1e21;
    border-color: #c6c8ca;
    background-color: #d6d8d9;
}
.alert-dark .h1, .alert-dark .h2, .alert-dark .h3, .alert-dark .h4, .alert-dark .h5, .alert-dark h1, .alert-dark h2, .alert-dark h3, .alert-dark h4, .alert-dark h5, .alert-dark h6 {
    color: #1b1e21;
}
.alert-dark hr {
    border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
    color: #040505;
}
@-webkit-keyframes progress-bar-stripes {
    from {
    background-position: 1rem 0;
}
to {
    background-position: 0 0;
}
}@keyframes progress-bar-stripes {
    from {
    background-position: 1rem 0;
}
to {
    background-position: 0 0;
}
}.bs-stepper .step-trigger {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -ms-flex-pack: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    color: inherit;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    border-radius: .25rem;
    background-color: transparent;
    transition: background-color .15s ease-out, color .15s ease-out;
}
.bs-stepper .step-trigger:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.bs-stepper .step-trigger.disabled, .bs-stepper .step-trigger:disabled {
    pointer-events: none;
    opacity: .2;
}
.bs-stepper .step-trigger:focus {
    color: #212529;
    outline: 0;
}
.bs-stepper .step-trigger:hover {
    text-decoration: none;
    background-color: transparent;
}
@media (max-width:520px) {
    .bs-stepper .step-trigger {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
}
}.bs-stepper-label {
    display: inline-block;
    margin: .25rem;
}
.bs-stepper-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width:520px) {
    .bs-stepper-header {
    margin: 0;
    text-align: center;
}
}.bs-stepper .line, .bs-stepper-line {
    -ms-flex: 1 0 32px;
    flex: 1 0 32px;
    min-height: 1px;
    min-width: 1px;
    margin: auto;
    background-color: rgba(33, 37, 41, .075);
}
@media (max-width:400px) {
    .bs-stepper .line, .bs-stepper-line {
    -ms-flex-preferred-size: 20px;
    flex-basis: 20px;
}
}.bs-stepper-circle {
    display: -ms-inline-flexbox;
    -ms-flex-line-pack: center;
    -ms-flex-pack: center;
    display: inline-flex;
    align-content: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: .8rem 0;
    margin: 0;
    color: #fff;
    line-height: 1em;
    border-radius: 100%;
    background-color: #212529;
    cursor: pointer;
}
.bs-stepper-circle:hover {
    color: #fff;
    background-color: #c8102e;
}
.active .bs-stepper-circle {
    color: #fff;
    background-color: #c8102e;
}
.active .bs-stepper-circle:hover {
    color: #fff;
    background-color: #ef5350;
}
.bs-stepper-content {
    padding: 0;
}
.bs-stepper.vertical {
    display: -ms-flexbox;
    display: flex;
}
.bs-stepper.vertical .bs-stepper-header {
    -ms-flex-direction: column;
    -ms-flex-align: stretch;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
}
.bs-stepper.vertical .bs-stepper-pane, .bs-stepper.vertical .content {
    display: block;
}
.bs-stepper.vertical .bs-stepper-pane:not(.fade), .bs-stepper.vertical .content:not(.fade) {
    display: block;
    visibility: hidden;
}
.bs-stepper .content:not(.fade), .bs-stepper-pane:not(.fade) {
    display: none;
}
.bs-stepper .content.fade, .bs-stepper-pane.fade {
    visibility: hidden;
    transition-duration: .3s;
    transition-property: opacity;
}
.bs-stepper .content.fade.active, .bs-stepper-pane.fade.active {
    visibility: visible;
    opacity: 1;
}
.bs-stepper .content.active:not(.fade), .bs-stepper-pane.active:not(.fade) {
    display: block;
    visibility: visible;
}
.bs-stepper .content.dstepper-block, .bs-stepper-pane.dstepper-block {
    display: block;
}
.bs-stepper:not(.vertical) .bs-stepper-pane.dstepper-none, .bs-stepper:not(.vertical) .content.dstepper-none {
    display: none;
}
.vertical .bs-stepper-pane.fade.dstepper-none, .vertical .content.fade.dstepper-none {
    visibility: hidden;
}
.icon {
    flex-shrink: 0;
    width: 100%;
    height: 1.5rem;
}
.icon.icon-md {
    height: 2.25rem;
}
.icon.icon-lg {
    height: 3rem;
}
.icon.icon-sm {
    height: .75rem;
}
.icon-round {
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-round>.icon {
    height: 2.25rem;
}
.icon-round.icon-round-xs {
    width: 2.25rem;
    height: 2.25rem;
}
.icon-round.icon-round-xs>.icon {
    height: 1.5rem;
}
.icon-round.icon-round-sm {
    width: 3rem;
    height: 3rem;
}
.icon-round.icon-round-sm>.icon {
    height: 1.5rem;
}
.icon-round.icon-round-xs {
    width: 1.5rem;
    height: 1.5rem;
}
.icon-round.icon-round-xs>.icon {
    height: 1rem;
}
@media (min-width:992px) {
    .icon-round.icon-round-lg {
    width: 6rem;
    height: 6rem;
}
.icon-round.icon-round-lg>.icon {
    height: 3rem;
}
}.icon-heart {
    background-image: url(../img/icons/heart.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1rem;
}
.icon-heart-fill {
    background-image: url(../img/icons/heart-fill.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1rem;
}
.icon-comment {
    background-image: url(../img/icons/comment.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1rem;
}
.icon-comment-fill {
    background-image: url(../img/icons/comment-fill.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1rem;
}
.modal-content {
    background-color: #fff;
    border-radius: .75rem;
    border: none;
}
.modal-backdrop {
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: .65;
}
.modal-header {
    padding: 2rem 2rem 0 2rem;
    border: none;
}
.modal-body {
    padding: 0 2rem 2rem 2rem;
}
.modal-footer {
    display: inline-block;
    padding: 0 2rem 2rem 2rem;
    border-radius: 0;
    border: none;
}
.expandImg {
    width: 1280px;
    height: 720px;
}
.btn-close:hover {
    color: #c8102e!important;
    text-decoration: none;
}
@media (min-width:320px) and (max-width:480px) {
    .expandImg {
    width: 359px;
    height: 295px;
}
}@media (min-width:481px) and (max-width:767px) {
    .expandImg {
    width: 448px;
    height: 368px;
}
}@media (min-width:768px) and (max-width:1024px) {
    .expandImg {
    width: 610px;
    height: 461px;
}
}@media (min-width:1025px) and (max-width:1280px) {
    .expandImg {
    width: 1125px;
}
}@media (max-width:767px) {
    .modal-header {
    padding: 1rem 1rem 0 1rem;
    border: none;
}
.modal-body {
    padding: 0 1rem 1rem 1rem;
}
.modal-footer {
    padding: 0 1rem 1rem 1rem;
}
}.profile p {
    margin-bottom: 0;
    padding-bottom: 0;
}
.user-info {
    font-size: .95rem;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    list-style: none;
}
.user-info-item {
    display: -ms-flexbox;
    display: flex;
}
.user-info-item+.user-info-item {
    padding-left: .45rem;
}
.user-info-item+.user-info-item::before {
    display: inline-block;
    padding-right: .45rem;
    color: #212529;
    content: "\00B7"}
.user-info-item+.user-info-item:hover::before {
    text-decoration: underline;
}
.user-info-item+.user-info-item:hover::before {
    text-decoration: none;
}
.user-info-item.active {
    color: #212529;
}
.social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.social ul li {
    display: inline-block;
    padding: 0;
    margin: 0 .05rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    line-height: 2.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 5rem;
    background-color: rgba(33, 37, 41, .1);
}
.social ul li:first-child {
    margin-left: 0;
}
.social ul li:last-child {
    margin-right: 0;
}
.social ul li .uil {
    color: #212529;
}
.social ul li:hover.facebook {
    background-color: #1778f2;
}
.social ul li:hover .uil-facebook-f {
    color: #fff;
}
.social ul li:hover.twitter {
    background-color: #1da1f2;
}
.social ul li:hover .uil-twitter {
    color: #fff;
}
.social ul li:hover.instagram {
    background-color: #c13584;
}
.social ul li:hover .uil-instagram {
    color: #fff;
}
.social ul li:hover.envelope-alt {
    background-color: #c8102e;
}
.social ul li:hover .uil-envelope-alt {
    color: #fff;
}
.social ul li:hover.globe {
    background-color: #212529;
}
.social ul li:hover .uil-browser, .social ul li:hover .uil-globe, .social ul li:hover .uil-window {
    color: #fff;
}
.social ul li:hover.tiktok {
    background-color: rgba(33, 37, 41, .2);
}
.social ul li.tiktok img {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: -.25rem;
}
.hide-social {
    display: block;
}
.show-social {
    display: none;
}
@media (max-width:767px) {
    .hide-social {
    display: none!important;
}
.show-social {
    display: inline-block!important;
}
}.badge {
    font-family: var(--font-primary);
    letter-spacing: .05rem;
    text-transform: uppercase;
    font-size: .6rem;
    font-weight: 400;
    display: inline-block;
    border-radius: .25rem;
    padding: .65em 1em;
    line-height: 1;
}
@media (prefers-reduced-motion:reduce) {
    .badge {
    transition: none;
}
}a.badge:focus, a.badge:hover {
    text-decoration: none;
}
.badge:empty {
    display: none;
}
.badges {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin: -3px;
}
.badges>a {
    margin: 3px;
}
.badges>span {
    margin: 3px;
}
.badge-light {
    font-weight: 400;
    color: #212529;
    background-color: rgba(33, 37, 41, .1);
}



.badge-light.disabled {
    color: rgba(33, 37, 41, .8);
    background-color: rgba(154, 164, 172, .2);
}
a.badge-light:focus, a.badge-light:hover {
    color: #212529;
    background-color: rgba(154, 164, 172, .3);
}
a.badge-light.focus, a.badge-light:focus {
    color: #212529;
    background-color: rgba(154, 164, 172, .3);
    box-shadow: 0 0 0 .2rem rgba(33, 37, 41, .1);
}
.badge-dark-teal {
    font-weight: 500;
    color: #fff;
    border-color: #27bc80;
    background-color: #27bc80;
}
a.badge-dark-teal:hover {
    color: #fff;
    border-color: #249e6b;
    background-color: #249e6b;
}
a.badge-dark-teal.focus, a.badge-dark-teal:focus {
    color: #fff;
    background-color: #27bc80;
    border-color: #27bc80;
    box-shadow: 0 0 0 .2rem rgba(51, 170, 116, .5);
}
.badge-deep-aqua {
    font-weight: 500;
    color: #fff;
    border-color: #00b7ad;
    background-color: #00b7ad;
}
a.badge-deep-aqua:hover {
    color: #fff;
    border-color: #00968f;
    background-color: #00968f;
}
a.badge-deep-aqua.focus, a.badge-deep-aqua:focus {
    color: #fff;
    background-color: #00b7ad;
    border-color: #00b7ad;
    box-shadow: 0 0 0 .2rem rgba(0, 183, 173, .5);
}
.badge-aqua {
    font-weight: 500;
    color: #fff;
    border-color: #4fabe5;
    background-color: #4fabe5;
}
a.badge-aqua:hover {
    color: #fff;
    border-color: #4698ca;
    background-color: #4698ca;
}
a.badge-aqua.focus, a.badge-aqua:focus {
    color: #fff;
    background-color: #4fabe5;
    border-color: #4fabe5;
    box-shadow: 0 0 0 .2rem rgba(79, 171, 229, .5);
}
.badge-deep-blue {
    font-weight: 500;
    color: #fff;
    border-color: #00007e;
    background-color: #00007e;
}
a.badge-deep-blue:hover {
    color: #fff;
    border-color: #00005e;
    background-color: #00005e;
}
a.badge-deep-blue.focus, a.badge-deep-blue:focus {
    color: #fff;
    background-color: #00007e;
    border-color: #00007e;
    box-shadow: 0 0 0 .2rem rgba(0, 0, 126, .5);
}
.badge-yellow {
    font-weight: 500;
    color: #212529;
    border-color: #ffca28;
    background-color: #ffca28;
}
a.badge-yellow:hover {
    color: #212529;
    border-color: #f1be48;
    background-color: #f1be48;
}
a.badge-yellow.focus, a.badge-yellow:focus {
    color: #212529;
    background-color: #ffca28;
    border-color: #ffca28;
    box-shadow: 0 0 0 .2rem rgba(255, 202, 40, .5);
}
.badge-orange {
    font-weight: 500;
    color: #fff;
    border-color: #ffa000;
    background-color: #ffa000;
}
a.badge-orange:hover {
    color: #fff;
    border-color: #f2a900;
    background-color: #f2a900;
}
a.badge-orange.focus, a.badge-orange:focus {
    color: #fff;
    background-color: #ffa000;
    border-color: #ffa000;
    box-shadow: 0 0 0 .2rem rgba(255, 160, 0, .5);
}
.badge-deep-orange {
    font-weight: 500;
    color: #fff;
    border-color: #ef6c00;
    background-color: #ef6c00;
}
a.badge-deep-orange:hover {
    color: #fff;
    border-color: #d86018;
    background-color: #d86018;
}
a.badge-deep-orange.focus, a.badge-deep-orange:focus {
    color: #fff;
    background-color: #ef6c00;
    border-color: #ef6c00;
    box-shadow: 0 0 0 .2rem rgba(239, 108, 0, .5);
}
.badge-deep-lilac {
    font-weight: 500;
    color: #fff;
    border-color: #cc156a;
    background-color: #cc156a;
}
a.badge-deep-lilac:hover {
    color: #fff;
    border-color: #ac145a;
    background-color: #ac145a;
}
a.badge-deep-lilac.focus, a.badge-deep-lilac:focus {
    color: #fff;
    background-color: #cc156a;
    border-color: #cc156a;
    box-shadow: 0 0 0 .2rem rgba(204, 21, 106, .5);
}
.badge-canon-red {
    font-weight: 500;
    color: #fff;
    border-color: #c8102e;
    background-color: #c8102e;
}
a.badge-canon-red:hover {
    color: #fff;
    border-color: #ef5350;
    background-color: #ef5350;
}
a.badge-canon-red.focus, a.badge-canon-red:focus {
    color: #fff;
    background-color: #c8102e;
    border-color: #c8102e;
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .5);
}
.badge-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}
a.badge-dark:hover {
    color: #fff;
    background-color: #73797d;
    border-color: #73797d;
}
a.badge-dark.focus, a.badge-dark:focus {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
    box-shadow: 0 0 0 .2rem rgba(33, 37, 41, .5);
}
.badge-light-aqua {
    background-color: rgba(79, 171, 229, .1);
    border-color: transparent;
    color: #484D51;
}
.badge-light-aqua:hover {
    background-color: #4fabe5;
    border-color: transparent;
    color: #fff;
}
a.badge-light-aqua.focus, a.badge-light-aqua:focus {
    background-color: #4fabe5;
    border-color: transparent;
    color: #fff;
}


.badge-image {
    position: relative;
    display: inline-block;
}
.badge-image .ambassador {
    right: 0;
    bottom: 0;
    z-index: 1;
    position: absolute;
}
.badge-image .sm-ambassador {
    position: absolute;
    bottom: -7px;
    z-index: 1;
    right: -3px;
}
.badge-image .md-ambassador {
    position: absolute;
    bottom: -4px;
    z-index: 1;
    right: -3px;
}
.badge-image .ambassador img {
    width: 2rem;
    height: 2rem;
}
.badge-image .sm-ambassador img {
    width: .85rem;
    height: .85rem;
}
.badge-image .md-ambassador img {
    width: 1.1rem;
    height: 1.1rem;
}
.badge-image .lg-ambassador img {
    width: 2.5rem;
    height: 2.5rem;
}
.badge-image .xl-ambassador img {
    width: 3rem;
    height: 3rem;
}


.badge-image-2 {
    position: relative;
    display: inline-block;
}
.badge-image-2 .ambassador {
    right: 0;
    bottom: 0;
    z-index: 1;
    position: absolute;
}
.badge-image-2 .sm-ambassador {
    position: absolute;
    bottom: -7px;
    z-index: 1;
    right: -3px;
}
.badge-image-2 .md-ambassador {
    position: absolute;
    bottom: -4px;
    z-index: 1;
    right: -3px;
}
.badge-image-2 .ambassador img {
    width: 2rem;
    height: 2rem;
}
.badge-image-2 .sm-ambassador img {
    width: .85rem;
    height: .85rem;
}
.badge-image-2 .md-ambassador img {
    width: 1.1rem;
    height: 1.1rem;
}
.badge-image-2 .lg-ambassador img {
    width: 5rem;
    height: 5rem;
}




.avatar {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
}
.avatar img {
    width: 100%;
    object-fit: cover;
    vertical-align: middle;
    object-position: center;
}
.avatars {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    border-radius: 5rem;
}
.avatars>li {
    position: relative;
}
.avatars>li:not(:last-child) {
    margin-right: -.75rem;
}
.avatar-xs {
    width: 24px;
    height: 24px;
}
.avatar-sm {
    width: 2.25rem;
    height: 2.25rem;
}
.avatar-md {
    width: 3rem;
    height: 3rem;
}
.avatar-lg {
    width: 8rem;
    height: 8rem;
}
.avatar-xl {
    width: 10rem;
    height: 10rem;
}
.avatar-xxl {
    width: 12rem;
    height: 12rem;
}
.avatar-author {
    z-index: 1;
    position: relative;
    /* bottom: 80px; */
}
.avatar-author-right {
    text-align: right;
}
.avatar-author-left {
    text-align: left;
}
.avatar-author p {
    font-family: var(--font-primary);
    letter-spacing: .03rem;
    font-weight: 500;
    font-size: .85rem;
    line-height: 1.4;
    color: #fff;
    padding: 0;
    margin: 0;
}
.avatar-author p a {
    border-bottom: 1px solid transparent;
    text-decoration: none;
    color: #fff;
}
.avatar-author p a:focus, .avatar-author p a:hover {
    border-bottom: 1px solid #fff;
    text-decoration: none;
    color: #fff;
}
.avatar-gallery {
    margin: 0;
    z-index: 1;
    padding: 0;
    display: flex;
    border-radius: 5rem;
}
.avatar-gallery img {
    border-radius: 5rem;
}
.avatar-gallery-right {
    text-align: right;
}
.avatar-gallery-left {
    text-align: left;
}
.avatar-gallery p {
    line-height: 1.2;
    color: inherit;
    margin: 0;
    padding: 0;
}
.avatar-gallery p a {
    color: inherit;
    transition: .3s;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.avatar-gallery p a:focus, .avatar-gallery p a:hover {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid inherit;
}
.avatar-gallery h6 {
    line-height: 1.2;
    font-weight: 500;
}
.avatar-gallery h6 a {
    color: #212529;
}
.avatar-gallery h6 a:focus, .avatar-gallery h6 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.avatar-gallery .small {
    font-size: .9rem;
}
.bg-black-100 .avatar-gallery h6, .bg-black-100 .avatar-gallery p {
    line-height: 1.3;
    color: #fff;
    margin: 0;
    padding: 0;
}
.bg-black-100 .avatar-gallery h6 a, .bg-black-100 .avatar-gallery p a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.bg-black-100 .avatar-gallery h6 a:focus, .bg-black-100 .avatar-gallery h6 a:hover, .bg-black-100 .avatar-gallery p a:focus, .bg-black-100 .avatar-gallery p a:hover {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.avatar-blog {
    display: flex;
    z-index: 1;
    padding: 0;
    margin: 0;
}
.avatar-blog img {
    border-radius: 5rem;
}
.avatar-blog-right {
    text-align: right;
}
.avatar-blog-left {
    text-align: left;
}
.avatar-blog p {
    font-family: var(--font-primary);
    letter-spacing: .03rem;
    font-weight: 500;
    font-size: .9rem;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    padding: 0;
}
.avatar-blog p a {
    color: #fff;
    text-align: right;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.avatar-blog p a:focus, .avatar-blog p a:hover {
    border-bottom: 1px solid #fff;
    text-decoration: none;
    color: #fff;
}
.avatar-contest {
    display: flex;
    z-index: 1;
    padding: 0;
    margin: 0;
}
.avatar-contest img {
    border-radius: 5rem;
}
.avatar-contest-right {
    text-align: right;
}
.avatar-contest-left {
    text-align: left;
}
.avatar-contest p {
    font-family: var(--font-primary);
    letter-spacing: .03rem;
    font-weight: 500;
    font-size: .9rem;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    padding: 0;
}
.avatar-contest p a {
    color: #fff;
    text-align: right;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.avatar-contest p a:focus, .avatar-contest p a:hover {
    border-bottom: 1px solid #fff;
    text-decoration: none;
    color: #fff;
}
.avatar-comments {
    display: flex;
    z-index: 1;
    margin: 0;
    padding: 0;
}
.avatar-comments-right {
    text-align: right;
}
.avatar-comments-left {
    text-align: left;
}
.avatar-comments p {
    font-family: var(--font-primary);
    font-size: .9rem;
    line-height: 1.3;
    color: inherit;
    margin: 0;
    padding: 0;
}


.avatar-comments p a {
    color: #212529;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    font-size: 1rem;
}
.avatar-comments p a:focus, .avatar-comments p a:hover {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid #212529;
}
.avatar-comments h6 {
    line-height: 1.5;
    font-weight: 500;
}
.avatar-comments h6 a {
    color: #212529;
}
.avatar-comments h6 a:focus, .avatar-comments h6 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.avatar-podcast {
    display: flex;
    z-index: 1;
    padding: 0;
    margin: 0;
}
.avatar-podcast img {
    border-radius: 5rem;
}
.avatar-podcast-right {
    text-align: right;
}
.avatar-podcast-left {
    text-align: left;
}
.avatar-podcast p {
    letter-spacing: .03rem;
    font-weight: 500;
    font-size: .9rem;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    padding: 0;
}
.avatar-podcast p a {
    color: #fff;
    text-align: right;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.avatar-podcast p a:focus, .avatar-podcast p a:hover {
    border-bottom: 1px solid #fff;
    text-decoration: none;
    color: #fff;
}
.gallery figure {
    margin: 0;
    padding: 0;
}
.gallery .overlay, .gallery img {
    border-radius: .25rem;
}
.gallery ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gallery li {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.gallery .card-body h5 a:hover {
    color: var(--color-3);
    border-bottom: 1px solid var(--color-3);
}
.gallery .image-box {
    width: 100%;
    position: relative;
}
.gallery .image-box:hover .overlay {
    opacity: 1;
    cursor: url("../img/icons/custom-cursor.svg") 32 32, pointer;
}
.custom-cursor {
    cursor: url("../img/icons/custom-cursor.svg") 32 32, pointer;
}
.gallery .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background: #000;
    background: -moz-linear-gradient(360deg, #000 0, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(360deg, #000 0, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(360deg, #000 0, rgba(0, 0, 0, 0) 100%);
}

@media (max-width:991px) {
    .gallery .overlay {
    opacity: 1;
}
}

.play-podcast {
    width: 50px;
}


.gallery .play-icon {
    display: flex;
    justify-content: center;
    width: 100%;
    color: #fff;   
}


.gallery .text {
    bottom: 0;
    width: 100%;
    color: #fff;
    position: absolute;
    padding: 1.5rem 1.5rem;
}
.gallery .text h6 {
    letter-spacing: .02rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
    color: #fff;
}
.gallery .text p {
    letter-spacing: .02rem;
    font-weight: 600;
    color: #fff;
}
.gallery .text p a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.gallery .text p a:hover {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
@media (max-width:991px) {
    .gallery .text h6 {
    margin-bottom: .1rem;
}
}.gallery h6, .gallery p {
    color: inherit;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
.gallery h6 a, .gallery p a {
    color: inherit;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    font-size: 1rem;
}
.gallery h6 a:focus, .gallery h6 a:hover, .gallery p a:focus, .gallery p a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 16, 46, .5);
}
.insignia-image img {
    width: 5rem;
    height: 5rem;
}
.insignia-image {
    text-align: center;
    margin-bottom: 1rem;
    margin-right: 0;
}
@media (max-width:767px) {
    .insignia-image img {
    width: 4rem;
    height: 4rem;
}
.insignia-image {
    text-align: left;
    margin-bottom: 0;
}
}.insignia-text {
    text-align: center;
    margin-left: 0;
   
}
.insignia-text h6 {
    font-size: 1.05rem;
}
@media (max-width:767px) {
    .insignia-text {
    text-align: center;
}
}@media (min-width:991px) {
    [class*=rising] {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}
[class*=rising]:hover {
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    transform: translate(0, -10px);
    position: relative;
    z-index: 50;
}
}.profile-picture {
    border: 1px solid #c9d3dc;
    border-radius: 100%;
    margin-right: 1rem;
    padding: .45rem;
}
@media (max-width:768px) {
    .profile-picture {
    margin-bottom: 1rem;
    margin-right: 0;
}
}.page-navigation a i {
    color: #212529;
}
.page-navigation a i:hover {
    color: #c8102e;
}
.page-navigation .arrow-right::after {
    font-family: unicons-line;
    margin-left: .75rem;
    content: "\ebb5";
    float: right;
    color: #212529;
    -webkit-transition: -webkit-transform .3s ease-out;
    -webkit-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}
.page-navigation .arrow-right:hover::after {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
    color: #c8102e;
}
.page-navigation .arrow-left::after {
    font-family: unicons-line;
    margin-right: .75rem;
    content: "\ebb4";
    float: left;
    color: #212529;
    -webkit-transition: -webkit-transform .3s ease-out;
    -webkit-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}
.page-navigation .arrow-left:hover::after {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    color: #c8102e;
}
.page-navigation .btn {
    font-size: 2rem;
    line-height: 1;
}
.text-ocultar {
    display: inline;
}
.text-mostrar {
    display: none;
}
.sidebar-btn.active .text-ocultar {
    display: none;
}
.sidebar-btn.active .text-mostrar {
    display: inline;
}
.product-category {
    overflow: hidden;
    position: relative;
    text-align: center;
    border-radius: .25rem;
    background-color: #000;
}
.product-category * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    border-radius: .25rem;
}
.product-category img {
    border-radius: .25rem;
    opacity: .5;
}
.product-category figcaption {
    border-radius: .25rem!important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.product-category.hover img, .product-category:hover img {
    border-radius: .25rem;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.product-category h2 {
    color: #fff;
}
.legal .card {
    border: none;
    border-radius: .25rem;
    background-color: #fff;
}
.legal .card-body {
    padding: 1.75rem 1.75rem;
}
.legal .card-body h6 {
    line-height: 1.5;
}
.legal .card-body h6 a {
    color: inherit;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.legal .card-body h6 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 16, 46, .5);
}
.legal .card-body p {
    color: inherit;
}
#timer .card, .countdown .card {
    border-radius: .25rem;
    border: 1px solid transparent;
    background-color: rgba(33, 37, 41, .075);
}
#timer .card-body, .countdown .card-body {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 600;
    color: #212529;
    text-transform: capitalize;
    padding: 1rem .25rem;
    margin-bottom: 0;
}
#days span, #hours span, #minutes span, #seconds span, .countdown .card-text {
    font-size: .9rem;
    font-weight: 400;
    color: #212529;
}
.product-reviews .rating {
    text-align: center;
}
.product-reviews .rating h2 {
    font-family: var(--font-primary);
    font-weight: 800;
    margin: 0;
    padding: 0;
}
.product-reviews .rating p {
    margin: 0;
    padding: 0;
    font-weight: 500;
}
.product-reviews .rating p i {
    margin-right: .5rem;
}
.rating-stars {
    margin: 0;
    padding: 0;
}
.rating-stars i {
    font-size: 1.5rem;
    line-height: 1.5;
    color: rgba(33, 37, 41, .2);
}
.rating-stars i.checked {
    color: #ffca28;
}
.product-reviews .progress-star h5 {
    color: #212529;
}
.product-reviews .progress-star h5 i {
    color: #212529;
}
.product-reviews .progress {
    background-color: rgba(33, 37, 41, .1);
    border-radius: .25rem;
    font-size: .75rem;
}
.product-reviews .progress-bar {
    color: #fff;
    border-radius: 0;
    background-color: #c8102e;
}
.css-star-rating {
    position: relative;
    display: inline-block;
    border: none;
    padding: 0;
    margin: 0;
}
.css-star-rating label, .css-star-rating label span, .css-star-rating label:before {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    margin: 0;
}
.css-star-rating label {
    position: relative;
    cursor: pointer;
    float: right;
    color: rgba(33, 37, 41, .2);
    padding: 0;
    margin: 0;
}
.css-star-rating input {
    display: none;
}
.css-star-rating label:before {
    margin: 0;
    font-size: 2.75rem;
    line-height: 1;
    display: inline-block;
    font-family: unicons-solid;
    content: "\e88e"}
.css-star-rating .star-half:before {
    font-family: unicons-solid;
    position: absolute;
    content: "\e896"}
.css-star-rating input:checked~label, .css-star-rating:hover label:hover, .css-star-rating:hover label:hover~label {
    color: #ffca28;
}
.css-star-rating:hover label:hover~label {
    color: rgba(255, 202, 40, .2);
}
.css-star-rating label, .css-star-rating:hover input~label, .css-star-rating:hover label {
    color: rgba(33, 37, 41, .2);
}
.css-star-rating label span {
    left: 50%;
    top: -55%;
    transform: translateX(-50%) translateY(50%);
    opacity: 0;
    z-index: 1;
    display: block;
    position: absolute;
    font-size: 80%;
    padding: .25rem 1rem;
    color: #fff;
    background: rgba(0, 0, 0, .8);
    white-space: nowrap;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    -webkit-transition: margin .6s, opacity .6s;
    -moz-transition: margin .6s, opacity .6s;
    transition: margin .6s, opacity .6s;
}
.css-star-rating label:hover span {
    opacity: 1;
}
.css-star-rating label span:before {
    content: "";
    position: absolute;
    border-top: 5px solid rgba(0, 0, 0, .8);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    left: 50%;
    top: 90%;
    transform: translateX(-50%) translateY(50%);
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .css-star-rating {
    animation: bugfix infinite 1s;
    -webkit-animation: bugfix infinite 1s;
}
@keyframes bugfix {
    from {
    padding: 0;
}
to {
    padding: 0;
}
}@-webkit-keyframes bugfix {
    from {
    padding: 0;
}
to {
    padding: 0;
}
}}.product-carousel .text-uppercase {
    font-family: var(--font-primary);
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: #4fabe5;
}
.product-carousel .carousel {
    margin-bottom: .75rem;
}
.product-carousel .carousel:last-child {
    margin-bottom: 0;
}
.product-carousel .carousel img {
    width: 100%;
    height: 100%}
.product-carousel .carousel-cell {
    width: 100%;
    height: 400px;
    margin-right: .75rem;
    background-color: #fff;
}
.product-carousel .carousel-nav .carousel-cell {
    height: 80px;
    width: 20%}
.product-carousel .carousel-nav .carousel-cell.is-nav-selected {
    opacity: .5;
}
@media (max-width:767px) {
    .product-carousel .carousel-cell {
    width: 100%;
    height: 300px;
    margin-right: .5rem;
    background-color: #fff;
}
.product-carousel .carousel-nav .carousel-cell {
    height: 80px;
    width: 40%}
}.color-palette ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.color-palette ul li {
    display: inline-block;
    margin-right: 1rem;
}
.color-palette ul li:last-child {
    margin-right: 0;
}
.color-palette ul li>* {
    display: inline-block;
    vertical-align: middle;
}
.color-palette span {
    margin-right: .5rem;
}
.color-palette .black {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: inline-block;
    background-color: #000;
}
.color-palette .white {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: inline-block;
    background-color: #fff;
    border: 1px solid rgba(33, 37, 41, .2);
}
.blog-content p {
    white-space: pre-line;
}
.blog-content figure {
    margin: 0;
    padding: 0;
}
.blog-content .image-box {
    width: 100%;
    position: relative;
}
.blog-content .image-box:hover .overlay {
    opacity: 1;
    cursor: pointer;
}
.blog-content .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
}
.blog-content .text {
    bottom: 0;
    width: 100%;
    position: absolute;
    padding: 1.5rem 1.5rem;
}
.blog-content .text p {
    text-align: right!important;
}
.blog-content h5 {
    margin-bottom: 2rem;
    padding: 0;
}
@media (max-width:767px) {
    .blog-content .text {
    display: none!important;
}
}.about-contest p {
    white-space: pre-line;
}
.about-contest .contest-jury .card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    border: none;
    border-radius: .25rem;
    background-color: transparent;
}
.about-contest .contest-jury .card .img-rounded {
    border-radius: 25rem;
    height: 180px;
    width: 180px;
}
.about-contest .contest-jury .card-body {
    text-align: center;
    padding: 1.75rem 1rem 1rem 1rem;
}
.about-contest .contest-jury .card-body h5, .about-contest .contest-jury .card-body h6 {
    padding: 0;
    margin: 0;
}
.about-contest .contest-jury .card-body p {
    padding: 0;
    margin: 0;
}
.about-contest .contest-jury .btns {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.about-contest .contest-jury .btns a {
    margin-bottom: 2rem;
}
.about-contest .contest-jury .btns a:last-child {
    margin-bottom: 0;
}
.about-contest .contest-prize .card {
    border: none;
    border-radius: .25rem;
    background-color: #fff;
}
.about-contest .contest-prize .card-body {
    padding: 1.75rem 1rem;
}
.about-contest .contest-prize .card-body h5 {
    padding: 0;
    margin: 0 0 .25rem 0;
}
.about-contest .contest-prize .card-body p {
    padding: 0;
    margin: 0;
}
.about-contest .contest-prize .img-card-top {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
@media (max-width:991px) {
    .about-contest .contest-jury .card {
    flex-direction: row;
    align-items: center;
}
.about-contest .contest-jury .card .img-rounded {
    height: 80px!important;
    width: 80px!important;
}
.about-contest .contest-jury .card-body {
    text-align: left!important;
    padding: .75rem 1rem!important;
}
.about-contest .contest-comments .btn-outline-dark, .about-contest .contest-jury .btn-outline-dark {
    width: 100%!important;
}
}.about-contest .jarallax {
    min-height: 450px;
}
.about-contest .demo-table {
    display: table;
    height: 450px;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}
.about-contest .mid-center {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.about-contest .headline {
    text-align: center;
}
.about-contest .headline h2 {
    margin: 0;
    padding: 0;
}
@media (max-width:769px) {
    .about-contest .headline h2 br {
    display: none!important;
}
}.about-contest .bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}
.winners-col .col-12 {
    margin-bottom: 0;
}
.winners-col .col-12:last-child {
    margin-bottom: 0;
}
@media (max-width:991px) {
    .winners-col .col-12: last-child {
    margin-bottom: 0;
}
}.winners-contest p {
    white-space: pre-line;
}
.winners-contest .winner-title {
    margin-bottom: .6rem;
    padding: 0;
    font-family: var(--font-primary);
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: #4fabe5;
}
.winners-contest h4, .winners-contest h5 {
    font-weight: 400;
    padding: 0;
    margin: 0;
}
.winners-contest figure {
    padding: 0;
    margin: 0;
}
.winners-contest .blockquote {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    text-align: center;
}
.winners-contest .blockquote-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
}
.winners-contest .blockquote-footer::before {
    content: ""}
.winners-contest .winners-comments .row {
    margin-bottom: 2rem!important;
}
.winners-contest .winners-comments .row:last-child {
    margin-bottom: 0!important;
}
.winners-contest .jury {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 50%}
.winners-contest .jury-avatar {
    margin: 0;
    padding: 0;
    z-index: 1;
    display: flex;
}
.winners-contest .jury-avatar-left {
    text-align: left;
}
.winners-contest .jury-avatar h6 {
    margin: 0;
    padding: 0;
}
.winners-contest .jury-avatar p {
    margin: 0;
    padding: 0;
}
.winner-photo figure {
    margin: 0;
    padding: 0;
}
.winner-photo .image-box {
    width: 100%;
    position: relative;
}
.winner-photo .image-box:hover .overlay {
    opacity: 1;
    cursor: zoom-in;
}
.winner-photo .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
}
.winner-photo .text {
    bottom: 0;
    width: 100%;
    position: absolute;
    padding: 1.5rem 1.5rem;
}
@media (max-width:767px) {
    .winner-photo .text {
    display: none!important;
}
}.jarallax-keep-img {
    position: relative;
    z-index: -999;
}
.jarallax-keep-img>.jarallax-img {
    position: relative;
    display: block;
    z-index: -100;
    height: auto;
    width: 100%}
.jarallax h1, .jarallax h2, .jarallax h3, .jarallax h4, .jarallax h5, .jarallax h6 {
    color: #fff;
}
.jarallax-keep-img.demo-float-left {
    margin-right: 15px;
    margin-left: -60px;
}
.jarallax-keep-img.demo-float-right {
    margin-left: 15px;
    margin-right: -60px;
}
@media screen and (max-width:600px) {
    .jarallax-keep-img.demo-float-left, .jarallax-keep-img.demo-float-right {
    margin-right: 0;
    margin-left: 0;
    float: none;
}
}.demo-table, .demo-table-1 {
    display: table;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}
.demo-table-2 {
    display: table;
    height: 600px;
    width: 100%;
    background: #fff;
    background: -moz-linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
}
.demo-table-3 {
    display: table;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}
.demo-table-cell, .demo-table-cell-1, .demo-table-cell-2 {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.jarallax-body {
    height: 360px;
}
.jarallax-body-2 {
    height: 480px;
}
.jarallax-body h2, .jarallax-body-2 h2 {
    margin-bottom: .25rem;
}
.jarallax-body-6 {
    height: 540px;
}
@media (min-width:768px) {
    .jarallax-body, .jarallax-body-2, .jarallax-body-3, .jarallax-body-4, .jarallax-body-5, .jarallax-body-6 {
    height: 540px;
}
}@media (max-width:991px) {
    .jarallax-body-4 {
    height: 640px;
}
}@media (max-width:768px) {
    .jarallax-body-3 .mid-left {
    position: relative;
    top: 35%}
.jarallax-body-3 .bottom-left {
    position: relative;
    top: 20%}
.jarallax-body-3 {
    height: 540px;
}
.jarallax-body-3 .btn-group, .jarallax-body-6 .btn-group {
    width: 100%}
.jarallax-body-4 .mid-left {
    position: relative;
    top: 38%}
.jarallax-body-4 {
    height: 740px;
}
.jarallax-body-5 .mid-left {
    position: relative;
    top: 35%}
.jarallax-body-5 .bottom-left {
    position: relative;
    top: 20%}
.jarallax-body-5 {
    height: 540px;
}
.jarallax-body-5 .btn-group {
    width: 100%}
}.jarallax-body .btns, .jarallax-body-2 .btns {
    display: flex;
    flex-direction: row;
}
.jarallax-body .btns a, .jarallax-body-2 .btns a {
    margin-right: .75rem;
}
.jarallax-body .btns a:last-child, .jarallax-body-2 .btns a:last-child {
    margin-right: 0;
}
@media (max-width:768px) {
    .jarallax-body .btns, .jarallax-body-2 .btns {
    display: flex;
    flex-direction: column;
}
.jarallax-body .btns a, .jarallax-body-2 .btns a {
    margin-right: 0!important;
    margin-bottom: .75rem;
}
.jarallax-body .btns a:last-child, .jarallax-body-2 .btns a:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
}.jarallax-body .card, .jarallax-body-2 .card {
    border: none;
    border-radius: .25rem;
    background-color: #fff;
}
.jarallax-body .card .card-body, .jarallax-body .card-2 .card-body {
    padding: 2rem 2rem;
}
.jarallax-body .card-body p, .jarallax-body-2 .card-body p {
    margin: 0;
    display: table;
    vertical-align: middle;
    padding: 0 0 .25rem 0;
}
.jarallax-body .card-body a, .jarallax-body-2 .card-body a {
    margin-top: 1rem;
}
.jarallax-body .card-body p i, .jarallax-body-2 .card-body p i {
    margin-right: .75rem;
    font-size: 1.25rem;
    opacity: .5;
}
.carousel {
    background-color: transparent;
}
.home-carousel-cell {
    width: 100%;
    margin-right: 0;
    border-radius: 0;
    background-color: #000;
    height: 550px;
}
.carousel-cell-1, .carousel-cell-2, .carousel-cell-3 {
    background: #000;
}
.carousel-cell-1 {
    margin: 0;
    width: 100%;
    border-radius: 0;
}
.carousel-cell-2 {
    width: 66%;
    height: 200px;
    border-radius: 0;
    margin-right: .625rem;
}
.carousel-cell-3 {
    margin: 0;
    width: 100%;
    border-radius: 0;
}
.carousel-cell-4 {
    margin: 0;
    width: 100%;
    height: 605px;
    border-radius: 0;
}
.carousel-cell-4 img {
    width: 100%;
    height: 100%}
@media (max-width:768px) {
    .carousel-cell-4 {
    height: 420px;
}
}.carousel-body-1 {
    height: 480px;
}
.carousel-body-2 {
    height: 200px;
}
.carousel-body-1 h1, .carousel-body-1 h2, .carousel-body-1 h3, .carousel-body-1 h4, .carousel-body-1 h5, .carousel-body-1 h6 {
    margin-bottom: 1rem;
    color: #fff;
    padding: 0;
}
.carousel-body-1 p {
    margin-bottom: 2rem;
    color: #fff;
    padding: 0;
}
@media (min-width:768px) {
    .carousel-body-1 {
    height: 640px;
}
.carousel-body-2 {
    height: 500px;
}
}.main-carousel .carousel {
    background: #f8f9fa;
}
.main-carousel .carousel-cell {
    width: 66%;
    height: 200px;
    margin-right: 10px;
    border-radius: 0;
}
.main-carousel .carousel-cell img {
    width: 100%;
    height: 100%;
}
@media (min-width:768px) {
    .main-carousel .carousel-cell {
    width: 66%;
    height: 300px;
    margin-right: 10px;
    border-radius: 0;
}
.carousel-cell-2 {
    width: 66%;
    height: 500px;
    border-radius: 0;
    margin-right: .625rem;
}
}@media (min-width:991px) {
    .main-carousel .carousel-cell {
    width: 66%;
    height: 500px;
    margin-right: 10px;
    border-radius: 0;
}
}.flickity-enabled {
    position: relative;
}
.flickity-enabled:focus {
    outline: 0;
}
.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%}
.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%}
.flickity-button {
    background: rgba(200, 16, 46, .5);
    position: absolute;
    color: #fff;
    border: none;
}
.flickity-button:hover {
    background: #ef5350;
    cursor: pointer;
}
.flickity-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #212529;
}
.flickity-button:active {
    opacity: .6;
}
.flickity-button:disabled {
    opacity: .3;
    cursor: auto;
    pointer-events: none;
}
.flickity-button-icon {
    fill: currentColor;
}
.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%);
}
.flickity-prev-next-button.previous {
    left: 10px;
}
.flickity-prev-next-button.next {
    right: 10px;
}
.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}
.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%}
.controls-light .flickity-prev-next-button, [data-flickity].controls-light .flickity-prev-next-button {
    background-color:transparent;
}
.controls-light .flickity-prev-next-button:hover, [data-flickity].controls-light .flickity-prev-next-button:hover {
    background-color: transparent;
    opacity: .8;
}
.flickity-prev-next-button {
    padding: 0;
    background: transparent;
    border: 1px solid transparent;
    width: 3rem;
    height: 3rem;
    transition: opacity .2s linear, box-shadow .2s linear;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flickity-prev-next-button:after {
    background-image: url("../img/icons/angle-left.svg");
    content: "";
    width: 2rem;
    height: 2rem;
    display: block;
    background-size: cover;
}
.flickity-prev-next-button.previous {
    left: -4.5rem;
}
.flickity-prev-next-button.next {
    right: -4.5rem;
}
.flickity-prev-next-button.next:after {
    transform: rotateZ(180deg);
}
.flickity-prev-next-button:hover {
    box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .05);
}
.flickity-button-icon {
    display: none;
}
@media (max-width:1199.98px) {
    .flickity-prev-next-button {
    display: none;
}
}.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}
.flickity-rtl .flickity-page-dots {
    direction: rtl;
}
.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #fff;
    border-radius: 50%;
    opacity: .25;
    cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
    opacity: 1;
}
.controls-light:not(.flickity-enabled), [data-flickity]:not(.flickity-enabled) {
    opacity: 0;
}
.flickity-page-dots {
    bottom: -2.125rem;
}
.flickity-page-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 10rem;
    margin: 0 5px;
    background: #fff;
    opacity: .2;
    transition: transform .2s linear, opacity .2s linear;
}
.flickity-page-dots .dot.is-selected {
    transform: scale(1.33333);
}
.controls-light .flickity-page-dots .dot, [data-flickity].controls-light .flickity-page-dots .dot {
    background: #c8102e;
}
.controls-inside:not(:hover) .flickity-prev-next-button {
    opacity: 0;
}
.controls-inside .flickity-page-dots {
    position: absolute;
    bottom: 1.5rem;
}
.arrows-inside .flickity-prev-next-button.previous, .controls-inside .flickity-prev-next-button.previous {
    left: 1.5rem;
}
.arrows-inside .flickity-prev-next-button.next, .controls-inside .flickity-prev-next-button.next {
    right: 1.5rem;
}
.carousel .content-box {
    border: none;
    min-height: 420px;
    max-width: 700px;
    border-radius: .25rem;
    background-color: transparent;
}
.carousel .content-box-body {
    -ms-flex: 1 1 auto;
    padding: 1.25rem 0;
    min-height: 1px;
    flex: 1 1 auto;
}
@media screen and (min-width:640px) and (max-width:990px) {
    .flexgrid .flex-contanier {
    display: -webkit-box;
    flex-wrap: wrap;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.flexgrid .flex-contanier:after {
    -webkit-box-flex: 1;
    flex: auto;
    margin: 0 auto;
    content: ""}
.flexgrid .flex-contanier>* {
    width: calc(50% - .5rem);
    margin-left: .5rem;
    margin-right: .5rem;
}
.flexgrid .flex-contanier>:nth-child(1) {
    margin-left: 0;
}
.flexgrid .flex-contanier>:nth-child(2n) {
    margin-right: 0;
}
.flexgrid .flex-contanier>:nth-child(2n+1) {
    margin-left: 0;
}


}@media screen and (min-width:991px) and (max-width:1299px) {
    .flexgrid .flex-contanier {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.flexgrid .flex-contanier:after {
    -webkit-box-flex: 1;
    flex: auto;
    margin: 0 auto;
    content: ""}
.flexgrid .flex-contanier>* {
    width: calc(50% - .5rem);
    margin-left: .5rem;
    margin-right: .5rem;
}
.flexgrid .flex-contanier>:nth-child(1) {
    margin-left: 0;
}
.flexgrid .flex-contanier>:nth-child(2n) {
    margin-right: 0;
}
.flexgrid .flex-contanier>:nth-child(2n+1) {
    margin-left: 0;
}
}@media screen and (min-width:1300px) {
    .flexgrid .flex-contanier {
    display: -webkit-box;
    flex-wrap: wrap;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.flexgrid .flex-contanier:after {
    -webkit-box-flex: 1;
    margin: 0 auto;
    content: "";
    flex: auto;
}
.flexgrid .flex-contanier>* {
    width: calc(25% - .2rem);
    margin-left: .1rem;
    margin-right: .1rem;
}
.flexgrid .flex-contanier>:nth-child(1) {
    margin-left: 0;
}
.flexgrid .flex-contanier>:nth-child(4n) {
    margin-right: 0;
}
.flexgrid .flex-contanier>:nth-child(4n+1) {
    margin-left: 0;
}
}.loyalty .card {
    background-color: #fff;
    border-radius: .25rem;
    border: none;
}
.loyalty .card-transparent {
    background-color: transparent;
}
.loyalty .rounded-img {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.loyalty .card-body {
    padding: 1.75rem 1.75rem;
}
@media (max-width:991px) {
    .loyalty .card-body {
    padding: 1.25rem 1.25rem;
}
}.loyalty .card-body h5 {
    line-height: 1.5;
    color: #212529;
}
.loyalty .card-body h5 a {
    color: inherit;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.loyalty .card-body h5 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px #c8102e;
}
.loyalty .card-body p {
    color: #212529;
}
.bg-black-100 .loyalty .card-body p {
    color: #212529;
}
.events .card {
    background-color: #fff;
    border-radius: .25rem;
    border: none;
}
.events .card-transparent {
    background-color: transparent;
}
.events .rounded-img {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.events .card-body h5 {
    line-height: 1.5;
}
.events .card-body h5 a {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.events .card-body h5 a:focus, .events .card-body h5 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.events .card-body p {
    color: #212529;
}
.events .card-body small {
    font-size: .85rem;
}
@media (max-width:991px) {
    .events .card-body {
    padding: 1.25rem 1.25rem;
}
}.events .events-badges {
    position: relative;
    display: inline-block;
}
.events .date-badge {
    text-align:  center;
     color:  #fff;
     padding:  0.75rem 1.25rem;
     border-radius:  0.25rem;
     position:  absolute;
     z-index:  1;
     left: 1rem;
    top: 1rem;
    background-color: #c8102e;
}

.category-badge {
    text-align:  center;
    color: #fff;
    padding:  0.75rem 1.25rem;
    border-radius:  0.25rem;
    position:  absolute;
    z-index:  1;
    left: 1rem;
    top: 1rem;
}


.gallery .date-badge {
    text-align:  center;
     color:  #fff;
     padding:  0.75rem 1.25rem;
     border-radius:  0.25rem;
     position:  absolute;
     z-index:  1;
     left: 1rem;
    top: 1rem;
     background-color: #c8102e;
}

.date-badge h4,
.date-badge h6 {
     color:  #fff;
}

.events .ribbon-winner {
    text-align:  center;
     color:  #fff;
     padding:  0.75rem 1.25rem;
     border-radius:  0.25rem;
     position:  absolute;
     z-index:  1;
     right:  -13px;
     top:  0px;
     width:  115px;
}
.events .type-badge {
    background-color: rgba(100,100,100, 0.2);
    text-align: center;
    color: white;
    padding: .15rem 1rem;
    border-radius: .25rem;
    position: absolute;
    z-index: 1;
    right: 1rem;
    bottom: 1rem;
    width: 120px;
}

.nombre-concurso{
    color: white;
    padding: .15rem 1rem;
    border-radius: .25rem;
    position: absolute;
    z-index: 1;
    left: 1rem;
    bottom: 1rem;
}

.status-badge-1 {
    background-color: #4fabe5;
    text-align: center;
    color: #fff;
    padding: .15rem 1rem;
    border-radius: .25rem;
    position: absolute;
    width: 120px;
    z-index: 3;
    right: 1rem;
    bottom: 1rem;
}
.status-badge-2 {
    background-color: #4fabe5;
    text-align: center;
    color: #484d51;
    padding: .15rem 1rem;
    border-radius: .25rem;
    position: absolute;
    z-index: 3;
    right: 1rem;
    bottom: 1rem;
    width: 120px;
}
.status-badge-3 {
    background-color: #4fabe5;
    text-align: center;
    color: #fff;
    padding: .15rem .75rem;
    border-radius: .25rem;
    position: absolute;
    width: 120px;
    z-index: 3;
    right: 9rem;
    bottom: 1rem;
}
@media only screen and (max-width:768px) {
    .status-badge-2 {
    position: relative;
    width: 120px;
    bottom: 0;
    right: 0;
    margin-top: 1.2rem;
}
}.bg-black-100 .events .card-body h5 a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.bg-black-100 .events .card-body h5 a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.bg-black-100 .events .card-body p {
    color: #fff;
}
.wide-events .card {
    background-color: #fff;
    border-radius: .25rem;
    border: none;
}
.wide-events .card-transparent {
    background-color: transparent;
}
.wide-events .card-body h5 {
    line-height: 1.5;
}
.wide-events .card-body h5 a {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.wide-events .card-body h5 a:focus, .wide-events .card-body h5 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.wide-events .card-body p {
    color: #212529;
}
.wide-events .card-body small {
    font-size: .85rem;
}
@media (max-width:991px) {
    .wide-events .card-body {
    padding: 1.25rem 1.25rem;
}
}.wide-events .card-img {
    border-top-right-radius: 0;
    border-top-left-radius: .25rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: .25rem;
}
@media (max-width:768px) {
    .wide-events .card-img {
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
}.wide-events .badges {
    position: relative;
    display: inline-block;
}
.wide-events .badges {
    margin: 0;
    position: relative;
    display: inline-block;
}
.wide-events .badges>a {
    margin: 0;
}
.wide-events .badges>span {
    margin: 0;
}
.wide-events .date-badge {
    background-color: #c8102e;
    text-align: center;
    color: #fff;
    padding: .75rem 1.25rem;
    border-radius: .25rem;
    position: absolute;
    z-index: 1;
    left: 1rem;
    top: 1rem;
}
.wide-events .date-badge h4, .wide-events .date-badge h5, .wide-events .date-badge h6 {
    line-height: 1;
    color: #fff;
}
.wide-events .type-badge {
    background-color: rgba(100,100,100, 0.2);
    text-align: center;
    color: white;
    padding: .25rem 1.25rem;
    border-radius: .25rem;
    position: absolute;
    z-index: 1;
    right: 1rem;
    bottom: 1rem;
}
.contest .wide-card {
    border-radius: .25rem;
    position: relative;
    z-index: 0;
}
.contest .wide-card>.wide-card-img {
    border-radius: .25rem;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contest .wide-card-2 {
    border-radius: .25rem;
    position: relative;
    z-index: 0;
}
.contest .wide-card-2>.wide-card-img {
    border-radius: .25rem;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



.contest .wide-card .content-table {
    display: table;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    border-radius: .25rem;
}
.contest .wide-card .content-table-cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border-radius: .25rem;
}

.contest .wide-card-2 .content-table {
    display: table;
    width: 100%;
    height: 350px;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    border-radius: .25rem;
}
.contest .wide-card-2 .content-table-cell {
    display: table-cell;
    text-align: center;
    height: 300px;
    vertical-align: middle;
    border-radius: .25rem;
}

.contest h3 {
    line-height: 1.5;
}
.contest h3 a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.contest h3 a:hover {
    opacity: .5;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.contest p {
    color: #fff;
}
.contest .badge {
    display: inline-block;
    padding: .75rem .75rem;
    font-size: .9rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
    white-space: normal;
    vertical-align: middle;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.contest .badge-light {
    background-color: rgba(255, 255, 255, .15);
    color: #fff;
}
@media (max-width:991px) {
    #page-content-wrapper .contest .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
}.podcast .card {
    background-color: #fff;
    border-radius: .25rem;
    border: none;
}
.podcast .card-transparent {
    background-color: transparent!important;
}
.podcast .rounded-img {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.podcast .card-body h5 {
    line-height: 1.5;
}
.podcast .card-body h5 a {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.podcast .card-body h5 a:focus, .podcast .card-body h5 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.podcast .card-body small {
    font-size: .85rem;
}
@media (max-width:991px) {
    .podcast .card-body {
    padding: 1.25rem 1.25rem;
}
}.podcast .badges {
    position: relative;
    display: inline-block;
}
.podcast .badges {
    margin: 0;
}
.podcast .badges>a {
    margin: 0;
}
.podcast .badges>span {
    margin: 0;
}
.podcast .badges .audio-badge {
    background: #27bc80;
    text-align: center;
    color: #fff;
    width: 4rem;
    height: 4rem;
    line-height: 1;
    font-size: 2rem;
    margin: 0;
    border-radius: 25rem;
    padding: 1rem 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    opacity: 0;
}

.podcast .badges .audio-badge {
    background: #27bc80;
    text-align: center;
    color: #fff;
    width: 4rem;
    height: 4rem;
    line-height: 1;
    font-size: 2rem;
    margin: 0;
    border-radius: 25rem;
    padding: 1rem 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    opacity: 1;
}
.bg-black-100 .podcast .card-body h5 a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.blog .card {
    background-color: #fff;
    border-radius: .25rem;
    border: none;
}
.blog .card-transparent {
    background-color: transparent;
}
.blog .rounded-img {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.card-body .category, .categories-card .category, .group-tags .category {
    background-color: #E4E5E5;
    color: black;
    transition: .3s;
    text-decoration: none;
    border-bottom: none;
    font-family: var(--font-primary);
    letter-spacing: .05rem;
    text-transform: uppercase;
    font-size: .6rem;
    font-weight: 500;
    border-radius: .25rem;
    padding: .4rem;
}
.card-body .category:focus, .card-body .category:hover, .categories-card .category:focus, .categories-card .category:hover, .group-tags .category:focus, .group-tags .category:hover {
    background-color: #4fabe5;
    color: #fff;
    font-size: .6rem;
    text-decoration: none;
    border-bottom: none;
}

.card-body .category-2:focus, .card-body .category-2:hover, .categories-card .category-2:focus, .categories-card .category-2:hover, .group-tags .category-2:focus, .group-tags .category-2:hover {
    color: #fff;
    font-size: .6rem;
    text-decoration: none;
    border-bottom: none;
}

.card-body-1 .category-1, .categories-card-1 .category-1, .group-tags-1 .category-1 {
    background-color: rgba(79, 171, 229, .1);
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: none;
    font-family: var(--font-primary);
    letter-spacing: .05rem;
    text-transform: uppercase;
    font-size: .6rem;
    font-weight: 500;
    border-radius: .25rem;
    padding: .5rem;
}
.card-body-1 .category-1:focus, .card-body-1 .category-1:hover, .categories-card-1 .category-1:focus, .categories-card-1 .category-1:hover, .group-tags-1 .category-1:focus, .group-tags-1 .category-1:hover {
    color: #fff;
    font-size: .6rem;
    text-decoration: none;
    border-bottom: none;
}

.categories-card {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin: -5px;
    padding-bottom: .75rem;
}
.categories-card>.category {
    margin: 5px;
}

.group-tags {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin: -3px;
}
.group-tags>a {
    margin: 3px;
}
.group-tags>span {
    margin: 3px;
}
.blog .card-body h5 {
    line-height: 1.5;
}
.blog .card-body h5 a {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.blog .card-body h5 a:focus, .blog .card-body h5 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.blog .card-body small {
    font-size: .85rem;
}
@media (max-width:991px) {
    .blog .card-body {
    padding: 1.25rem 1.25rem;
}
}.blog .badges {
    position: relative;
    display: inline-block;
}
.blog .badges .audio-badge {
    background: #27bc80;
    text-align: center;
    color: #fff;
    width: 4rem;
    height: 4rem;
    line-height: 1;
    font-size: 2rem;
    margin: 0;
    border-radius: 25rem;
    padding: 1rem 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
}
.blog .badges .video-badge {
    background: #ffa000;
    text-align: center;
    color: #fff;
    width: 4rem;
    height: 4rem;
    line-height: 1;
    font-size: 2rem;
    border-radius: 25rem;
    padding: 1rem 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
}
.bg-black-100 .blog .card-body h5 a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.bg-black-100 .card-body h5 a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.bg-black-100 .card-body p {
    color: #fff;
}
.bg-black-100 .gallery h6 a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.bg-black-100 .gallery h6 a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.webinar .card {
    background-color: #fff;
    border-radius: .25rem;
    border: none;
}
.webinar .card-transparent {
    background-color: transparent;
}
.webinar .rounded-img {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.webinar .card-body h5 {
    line-height: 1.5;
}
.webinar .card-body h5 a {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.webinar .card-body h5 a:focus, .webinar .card-body h5 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.webinar .card-body small {
    font-size: .85rem;
}
@media (max-width:991px) {
    .webinar .card-body {
    padding: 1.25rem 1.25rem;
}
}.webinar .badges {
    position: relative;
    display: inline-block;
}
.webinar .badges {
    margin: 0;
}
.webinar .badges>a {
    margin: 0;
}
.webinar .badges>span {
    margin: 0;
}
.webinar .badges .video-badge {
    background: #ffa000;
    text-align: center;
    color: #fff;
    width: 4rem;
    height: 4rem;
    line-height: 1;
    font-size: 2rem;
    border-radius: 25rem;
    padding: 1rem 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
}
.bg-black-100 .webinar .card-body h5 a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.wide-cards .card {
    background-color: #fff;
    border-radius: .25rem;
    border: none;
}
.wide-cards .card-transparent {
    background-color: transparent;
}
.wide-cards .card-body h5 {
    line-height: 1.5;
}
.wide-cards .card-body h5 a {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.wide-cards .card-body h5 a:focus, .wide-cards .card-body h5 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
}
.wide-cards .card-body p {
    line-height: 1.4;
}
.wide-cards .card-body small {
    font-size: .95rem;
}
@media (max-width:991px) {
    .wide-cards .card-body {
    padding: 1.25rem 1.25rem;
}
}.wide-cards .card-img {
    border-top-right-radius: 0;
    border-top-left-radius: .25rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: .25rem;
}
@media (max-width:768px) {
    .wide-cards .card-img {
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
}.wide-cards .badges {
    margin: 0;
    position: relative;
    display: inline-block;
}
.wide-cards .badges>a {
    margin: 0;
}
.wide-cards .badges>span {
    margin: 0;
}
.wide-cards .badges .video-badge {
    background: #ffa000;
    text-align: center;
    color: #fff;
    width: 4rem;
    height: 4rem;
    line-height: 1;
    font-size: 2rem;
    border-radius: 25rem;
    padding: 1rem 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
}
.wide-cards .badges .audio-badge {
    background: #27bc80;
    text-align: center;
    color: #fff;
    width: 4rem;
    height: 4rem;
    line-height: 1;
    font-size: 2rem;
    border-radius: 25rem;
    padding: 1rem 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
}
#wrapper {
    overflow-y: hidden;
    overflow-x: hidden;
}
#sidebar-wrapper {
    margin-left: -15rem;
    -webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;
}
#sidebar-wrapper .list-group {
    width: 15rem;
}
#page-content-wrapper {
    width: 100%}
#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}
@media (min-width:768px) {
    #sidebar-wrapper {
    margin-left: 0;
}
#page-content-wrapper {
    width: 100%}
#wrapper.toggled #sidebar-wrapper {
    margin-left: -17rem;
}
}@media (max-width:991px) {
    #page-content-wrapper .container-fluid {
    margin: 0;
    padding: 0;
}
}#wrapper .box-2 {
    width: 100%;
    height: 160px;
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
    padding: 0 .25rem;
}
#wrapper .box-2::-webkit-scrollbar {
    width: 4px;
}
#wrapper .box-2 {
    scrollbar-width: thin;
    scrollbar-color: #212529 rgba(33, 37, 41, 0.1);
}
#wrapper .box-2::-webkit-scrollbar-track {
    background: rgba(33, 37, 41, .1);
}
#wrapper .box-2::-webkit-scrollbar-thumb {
    background-color: rgba(33, 37, 41, .1);
    border: 0 solid #212529;
    border-radius: 5rem;
}
#wrapper .box-1 {
    padding: 0 .25rem;
}
.buttons-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width:992px) {
    .buttons-group, .filters-group {
    align-items: center;
    justify-content: left;
}
}.buttons-group .view-layout a i {
    margin-right: .25rem;
}
.buttons-group .view-layout a.active, .buttons-group .view-layout a:hover {
    color: #c8102e;
}
.filters-group .active{
    color: #c8102e;
}
.buttons-group .view-layout a+a {
    margin: 0 0 0 1rem;
}
.show-filters {
    display: block!important;
}
.hide-filters {
    display: none!important;
}
@media (max-width:991px) {
    .show-filters {
    display: none!important;
}
.hide-filters {
    display: block!important;
}
}.show-tags-contest {
    display: flex!important;
    flex-direction: row;
}
.hide-tags-contest {
    display: none!important;
}
@media (max-width:991px) {
    .show-tags-contest {
    display: none!important;
}
.hide-tags-contest {
    display: flex!important;
    flex-direction: row;
}
}.filter-search {
    position: relative;
}
.filter-search .uil-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 1.2rem;
    color: #212529;
}
.filter-search span {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 1.2rem;
    color: #212529;
}
.filter-search .form-control {
    height: 55px;
    color: #212529;
    background-color: #fff;
    border: 1px solid rgba(33, 37, 41, .2);
    padding: .75rem 1rem .75rem 2.8rem;
    border-radius: .25rem;
}
.filter-search .form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 inherit;
}
.filter-search .form-control:focus {
    color: #212529;
    border-color: #212529;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
}
.filter-search .form-control::-webkit-input-placeholder {
    color: #212529;
    opacity: 1;
}
.filter-search .form-control::-moz-placeholder {
    color: #212529;
    opacity: 1;
}
.filter-search .form-control:-ms-input-placeholder {
    color: #212529;
    opacity: 1;
}
.filter-search .form-control::-ms-input-placeholder {
    color: #212529;
    opacity: 1;
}
.filter-search .form-control::placeholder {
    color: #212529;
    opacity: 1;
}
.filter-search .form-control:disabled, .filter-search .form-control[readonly] {
    opacity: 1;
    color: inherit;
    border: 1px solid #b9b9b9;
    background-color: rgba(185, 185, 185, .2);
}
.products .card {
    background-color: #fff;
    border-radius: .25rem;
    border: none;
}
.products .card-transparent {
    background-color: transparent;
}
.products .card-body {
    padding: 1.75rem 1.75rem;
}
.products .img-card-top {
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
}
.products .image-hover {
    position: relative;
    width: 100%}
.products .image-hover .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
    background-color: rgba(255, 255, 255, .9);
}
.products .image-hover:hover .overlay {
    opacity: 1;
}
.products .image-hover .overlay i {
    color: #c8102e;
    font-size: 3rem;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.products .hide-button {
    display: none!important;
}
@media (max-width:991px) {
    .products .image-hover .overlay {
    display: none!important;
}
.products .hide-button {
    display: block!important;
}
}.general-comments .row {
    margin-bottom: 1rem!important;
}
.general-comments .row:last-child {
    margin-bottom: 0!important;
}
.comments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comments li {
    display: inline-block;
}
.comments-item+.comments-item {
    padding-left: .5rem;
}
.comments-item+.comments-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #212529;
    content: "â€¢"}
.general-comments .text-muted {
    color: #73797d!important;
    font-weight: 400!important;
}
.ambassador .card {
    border: none;
    border-radius: .25rem;
    background-color: #fff;
}
.ambassador .card-transparent {
    background-color: transparent;
}
.ambassador .card h5 a {
    color: #212529;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.ambassador .card h5 a:hover {
    color: #c8102e;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 16, 46, .5);
}
.ambassador .card-light {
    border: none;
    border-radius: .25rem;
    background-color: #fff;
}
.ambassador .ambassador-badges {
    position: relative;
    display: inline-block;
}
.ambassador .new-badge {
    background-color: #4fabe5;
    text-align: center;
    color: inherit;
    padding: .65rem 1rem;
    border-radius: .25rem;
    position: absolute;
    z-index: 1;
    top: 1rem;
    left: 1rem;
}
.ambassador .new-badge h6 {
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .05rem;
    text-transform: uppercase;
}
.bg-black-100 .ambassador .card h5 a {
    color: #fff;
}
.bg-black-100 .ambassador .card h5 a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.inline-form {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}
.inline-form .form-group {
    margin-right: .75rem;
    margin-bottom: 0;
}
.inline-form .form-group:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
.inline-form .form-control {
    width: 360px;
}
.inline-form .form-group button {
    width: 260px;
}
@media (max-width:992px) {
    .inline-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.inline-form .form-group {
    width: 100%;
    margin-right: 0;
    margin-bottom: .75rem;
}
.inline-form .form-control {
    width: 100%}
.inline-form .form-group button {
    width: 100%}
}.tags label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid transparent;
    color: #212529;
    border-radius: .25rem;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
    padding: 0 1.5rem 0 1rem;
    vertical-align: middle;
    cursor: pointer;
}
.tags label::before {
    font-family: unicons-line;
    font-size: 1.75rem;
    line-height: 1.8;
    content: "\e9c1";
    font-weight: 400;
    margin-right: .75rem;
    display: inline-block;
    transition: transform .3s ease-in-out;
}
.tags input[type=checkbox]:checked+label::before {
    opacity: 1;
    font-weight: 400;
    content: "\e9c2";
    transform: rotate(360deg);
    transition: transform .3s ease-in-out;
}
.tags input[type=checkbox]:checked+label {
    border: 1px solid #c8102e;
    background-color: #c8102e;
    transition: all .2s;
    font-weight: 600;
    color: #fff;
}
.tags input[type=checkbox] {
    display: absolute;
}
.tags input[type=checkbox] {
    position: absolute;
    opacity: 0;
}
.tag-form .form-check-inline {
    padding: 0;
    margin: .25rem .25rem .25rem 0;
}
label a {
    opacity: 1;
    font-size: .9rem;
}
label a:focus, label a:hover {
    opacity: .5;
}
.form-control {
    height: 55px;
    color: inherit;
    background-color: #fff;
    border: 1px solid rgba(33, 37, 41, .2);
    padding: .75rem .75rem;
    border-radius: .25rem;
}
.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 inherit;
}
.form-control:focus {
    color: #212529;
    border-color: #212529;
    background-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(33, 37, 41, .25);
}
.form-control::-webkit-input-placeholder {
    color: #212529;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #212529;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #212529;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #212529;
    opacity: 1;
}
.form-control::placeholder {
    color: #212529;
    opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
    opacity: 1;
    color: #212529;
    border: 1px solid rgba(33, 37, 41, .3);
    background-color: rgba(33, 37, 41, .1);
}
select.form-control:focus::-ms-value {
    color: inherit;
    background-color: #fff;
    border: 1px solid rgba(33, 37, 41, .3);
}
.custom-select {
    height: 55px;
    color: inherit;
    border: 1px solid rgba(33, 37, 41, .2);
    padding: .75rem .75rem;
    border-radius: .25rem;
    background: #fff url("../img/icons/angle-down.svg") no-repeat right .75rem center/24px 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-select:focus {
    color: #212529;
    border-color: #212529;
    background-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(33, 37, 41, .25);
}
.custom-select::-webkit-input-placeholder {
    color: #212529;
    opacity: 1;
}
.custom-select::-moz-placeholder {
    color: #212529;
    opacity: 1;
}
.custom-select:-ms-input-placeholder {
    color: #212529;
    opacity: 1;
}
.custom-select::-ms-input-placeholder {
    color: #212529;
    opacity: 1;
}
.custom-select::placeholder {
    color: #212529;
    opacity: 1;
}
.custom-select:disabled, .custom-select[readonly] {
    opacity: 1;
    color: #212529;
    border: 1px solid rgba(33, 37, 41, .3);
    background-color: rgba(33, 37, 41, .1);
}
.custom-select:focus::-ms-value {
    color: #212529;
    border-color: #212529;
    background-color: transparent;
}
.custom-select::-ms-expand {
    display: none;
}
.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 inherit;
}
.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #c8102e;
    background-color: #c8102e;
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .25);
}
.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #ef5350;
}
.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #ef5350;
    border-color: #ef5350;
}
.custom-control-input:disabled~.custom-control-label, .custom-control-input[disabled]~.custom-control-label {
    color: #212529;
}
.custom-control-input:disabled~.custom-control-label::before, .custom-control-input[disabled]~.custom-control-label::before {
    background-color: rgba(33, 37, 41, .1);
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    line-height: 1.5;
    font-size: 1rem;
}
.custom-control-label .btn-link {
    font-size: 1rem;
}
.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: rgba(33, 37, 41, .3);
    border: 1px solid transparent;
}
.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%}
.custom-checkbox .custom-control-label::before {
    border-radius: .25rem;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #c8102e;
    background-color: #c8102e;
}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(200, 16, 46, .5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(200, 16, 46, .5);
}
.custom-radio .custom-control-label::before {
    border-radius: 50%}
.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(200, 16, 46, .5);
}
.rs-radio {
    margin-right: 1rem;
}
@media (max-width:540px) {
    .rs-radio {
    margin-right: 0;
}
}.custom-file-input~.custom-file-label::after {
    content: "Elegir"}
.custom-file {
    height: 55px;
}
.custom-file-input {
    height: 55px;
}
.custom-file-input:focus~.custom-file-label {
    color: #212529;
    border-color: #212529;
    background-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(33, 37, 41, .25);
}
.custom-file-input:disabled~.custom-file-label, .custom-file-input[disabled]~.custom-file-label {
    opacity: 1;
    color: #212529;
    border: 1px solid rgba(33, 37, 41, .3);
    background-color: rgba(33, 37, 41, .1);
}
.custom-file-label {
    font-weight: 400;
    line-height: 1.8;
    height: 55px;
    color: inherit;
    background-color: #fff;
    border: 1px solid rgba(33, 37, 41, .2);
    padding: .75rem .75rem;
    border-radius: .25rem;
    white-space: nowrap;
    overflow: hidden;
}
.custom-file-label::after {
    font-weight: 600;
    line-height: 1.8;
    height: 55px;
    color: #fff;
    background-color: #c8102e;
    border: none;
    padding: .75rem .75rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: 0;
}
.text-counter {
    color: #212529;
    float: right;
}
.search-form {
    position: relative;
}
.search-form .uil-search {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 1.2rem;
    color: #212529;
}

@media only screen and (min-width: 768px) {
    .search-form .uil-search {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 1.2rem;
        color: #212529;
    }
  }

.search-form span {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 1.2rem;
    color: #212529;
}
.search-form .form-control {
    height: 55px;
    color: #212529;
    background-color: #fff;
    border: 1px solid transparent;
    padding: .75rem 3rem;
    border-radius: .25rem;
}
.search-form .form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 inherit;
}
.search-form .form-control:focus {
    color: #212529;
    border-color: #fff;
    background-color: #fff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}
.search-form .form-control::-webkit-input-placeholder {
    color: #b9b9b9;
    opacity: 1;
}
.search-form .form-control::-moz-placeholder {
    color: #212529;
    opacity: 1;
}
.search-form .form-control:-ms-input-placeholder {
    color: #212529;
    opacity: 1;
}
.search-form .form-control::-ms-input-placeholder {
    color: #212529;
    opacity: 1;
}
.search-form .form-control::placeholder {
    color: #212529;
    opacity: 1;
}
.search-form .form-control:disabled, .search-form .form-control[readonly] {
    opacity: 1;
    color: inherit;
    border: 1px solid #b9b9b9;
    background-color: rgba(185, 185, 185, .2);
}
.search-text {
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
}
.search-text a+a {
    margin: 0 .25rem;
}
.search-text a:first-child {
    margin-left: .25rem;
}
.search-text a:last-child {
    margin-right: 0;
}
.search-text a {
    opacity: .7;
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}
.search-text a:hover {
    opacity: 1;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.tower-file input[type=file] {
    opacity: 0;
    height: 0;
    width: 0;
}
.tower-file label {
    margin-bottom: 0;
}
.tower-file .tower-file-clear:not(:disabled), .tower-file label {
    cursor: pointer!important;
}
.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding: .75rem .75rem;
    width: 55px;
    height: 55px;
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    color: inherit;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(33, 37, 41, .075);
    border: 1px solid rgba(33, 37, 41, .2);
    border-radius: .25rem;
}
.input-group-text img {
    width: 1.2rem;
    height: 1.2rem;
}
.valid-feedback {
    color: #00c853;
    font-size: .95rem;
}
.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #00c853;
    padding-right: calc(1.5em + .75rem);
    background-image: url("../img/icons/valid.svg");
    background-repeat: no-repeat;
    background-position: right calc(1em + .1875rem) center;
    background-size: 20px 20px;
}
.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    border-color: #00c853;
    box-shadow: 0 0 0 .2rem rgba(0, 200, 83, .25);
}
.custom-select.is-valid, .was-validated .custom-select:valid {
    border-color: #00c853;
    padding-right: calc(.75em + 2.3125rem);
    background: url("../img/icons/angle-down.svg") no-repeat right .75rem center/24px 24px, url("../img/icons/valid.svg") #fff no-repeat center right 2.5rem/calc(.75em + .375rem) calc(.75em + .375rem);
}
.custom-select.is-valid:focus, .was-validated .custom-select:valid:focus {
    border-color: #00c853;
    box-shadow: 0 0 0 .2rem rgba(0, 200, 83, .25);
}
.form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label {
    color: white;
}
.custom-control-input.is-valid~.custom-control-label, .was-validated .custom-control-input:valid~.custom-control-label {
    color: #212529;
}
.custom-control-input.is-valid~.custom-control-label::before, .was-validated .custom-control-input:valid~.custom-control-label::before {
    border-color: transparent;
}
.custom-control-input.is-valid:checked~.custom-control-label::before, .was-validated .custom-control-input:valid:checked~.custom-control-label::before {
    border-color: var(--color-3);
    background-color: var(--color-3);
}
.custom-control-input.is-valid:focus~.custom-control-label::before, .was-validated .custom-control-input:valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(0, 200, 83, .25);
}
.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before, .was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before {
    border-color: #00c853;
}
.custom-file-input.is-valid~.custom-file-label, .was-validated .custom-file-input:valid~.custom-file-label {
    border-color: #00c853;
}
.custom-file-input.is-valid:focus~.custom-file-label, .was-validated .custom-file-input:valid:focus~.custom-file-label {
    border-color: #00c853;
    box-shadow: 0 0 0 .2rem rgba(0, 200, 83, .25);
}
.invalid-feedback {
    color: #f44336;
    font-size: .95rem;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #f44336;
    padding-right: calc(1.5em + .75rem);
    background-image: url("../img/icons/invalid.svg");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: 20px 20px;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #f44336;
    box-shadow: 0 0 0 .2rem rgba(244, 67, 54, .25);
}
.custom-select.is-invalid, .was-validated .custom-select:invalid {
    border-color: #f44336;
    background: url("../img/icons/angle-down.svg") no-repeat right .75rem center/24px 24px, url("../img/icons/invalid.svg") #fff no-repeat center right 2.5rem/calc(.75em + .375rem) calc(.75em + .375rem);
}
.custom-select.is-invalid:focus, .was-validated .custom-select:invalid:focus {
    border-color: #f44336;
    box-shadow: 0 0 0 .2rem rgba(244, 67, 54, .25);
}
.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label {
    color: #f44336;
}
.custom-control-input.is-invalid~.custom-control-label, .was-validated .custom-control-input:invalid~.custom-control-label {
    color: #f44336;
}
.custom-control-input.is-invalid~.custom-control-label::before, .was-validated .custom-control-input:invalid~.custom-control-label::before {
    border-color: #f44336;
}
.custom-control-input.is-invalid:checked~.custom-control-label::before, .was-validated .custom-control-input:invalid:checked~.custom-control-label::before {
    border-color: #f44336;
    background-color: #f44336;
}
.custom-control-input.is-invalid:focus~.custom-control-label::before, .was-validated .custom-control-input:invalid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(2244, 67, 54, .25);
}
.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before, .was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before {
    border-color: #f44336;
}
.custom-file-input.is-invalid~.custom-file-label, .was-validated .custom-file-input:invalid~.custom-file-label {
    border-color: #f44336;
}
.custom-file-input.is-invalid:focus~.custom-file-label, .was-validated .custom-file-input:invalid:focus~.custom-file-label {
    border-color: #f44336;
    box-shadow: 0 0 0 .2rem rgba(244, 67, 54, .25);
}
.custom-control.image-checkbox {
    position: relative;
    padding-left: 0;
}
.custom-control.image-checkbox .custom-control-input:checked~.custom-control-label:after, .custom-control.image-checkbox .custom-control-input:checked~.custom-control-label:before {
    opacity: 1;
}
.custom-control.image-checkbox label {
    cursor: pointer;
}
.custom-control.image-checkbox label:before {
    border-color: #c8102e;
    background-color: #c8102e;
}
.custom-control.image-checkbox label:after, .custom-control.image-checkbox label:before {
    transition: opacity .3s ease;
    opacity: 0;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.custom-control.image-checkbox label:focus, .custom-control.image-checkbox label:hover {
    opacity: .8;
}
.custom-control.image-checkbox label .outer-box {
    border-radius: .25rem;
}
.custom-control.image-checkbox label {
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
    display: block;
    padding: 0;
    margin: 0;
    border-radius: .25rem;
}
.custom-control.image-checkbox label img {
    height: 100%;
    width: 100%;
    transition-duration: .2s;
    transform-origin: 50% 50%}
.custom-control.image-checkbox:checked+label {
    border-color: transparent;
    border: 2px solid #fff;
}
.custom-control.image-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("../img/icons/check-white.svg");
}
.custom-control.image-checkbox .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #c8102e;
    background-color: #c8102e;
}
.custom-control.image-checkbox .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .25);
}
.custom-control.image-checkbox .custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #c8102e;
}
.custom-control.image-checkbox .custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #c8102e;
    border-color: #c8102e;
}
.custom-control.image-checkbox .custom-control-input:disabled~.custom-control-label, .custom-control.image-checkbox .custom-control-input[disabled]~.custom-control-label {
    color: #c8102e;
}
.custom-control.image-checkbox .custom-control-input:disabled~.custom-control-label::before, .custom-control.image-checkbox .custom-control-input[disabled]~.custom-control-label::before {
    background-color: #c8102e;
}
.custom-control.image-checkbox figure {
    margin: 0;
    padding: 0;
}
.custom-control.image-checkbox figure.with-text {
    overflow: hidden;
    position: relative;
    border-radius: .25rem;
    background-color: #212529;
}
.custom-control.image-checkbox figure.with-text * {
    -webkit-transition: all .35s ease;
    -webkit-box-sizing: border-box;
    transition: all .35s ease;
    box-sizing: border-box;
    border-radius: .25rem;
}
.custom-control.image-checkbox figure.with-text img {
    width: 100%;
    opacity: .4;
    object-fit: cover;
    vertical-align: middle;
    border-radius: .25rem;
}
.custom-control.image-checkbox figure.with-text figcaption {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    color: #fff;
    font-weight: 600;
    letter-spacing: .05rem;
    text-transform: uppercase;
    font-size: 1rem;
    font-family: var(--font-primary);
    transform: translate(-50%, -50%);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.imageuploadify {
    border-radius: .25rem;
    position: relative;
    min-height: 280px;
    min-width: 100%;
    max-width: 100%;
    margin: auto;
    display: flex;
    padding: 1rem 1rem;
    flex-direction: column;
    text-align: center;
    color: inherit;
    background-color: transparent;
    border: 1px dashed rgba(33, 37, 41, .3);
}
.imageuploadify .imageuploadify-overlay {
    z-index: 10;
    width: 100%;
    height: 100%;
    position: absolute;
    flex-direction: column;
    top: 0;
    left: 0;
    display: none;
    border: 1px solid #c8102e;
    background-color: rgba(200, 16, 46, .5);
    text-align: center;
    pointer-events: none;
}
.imageuploadify .imageuploadify-overlay i {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.imageuploadify .imageuploadify-images-list {
    display: inline-block;
}
.imageuploadify .imageuploadify-images-list i {
    display: block;
    font-size: 5rem;
    line-height: 1;
    text-align: center;
    margin: 1.5rem 0 0 0;
    padding: 0;
    color: #212529;
    opacity: .5;
}
.imageuploadify .imageuploadify-images-list span.imageuploadify-message {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.imageuploadify .imageuploadify-images-list button.btn-default {
    display: block;
    color: #fff;
    border-color: transparent;
    background-color: #c8102e;
    border-radius: .25rem;
    margin: 1rem auto;
    width: 100%;
    max-width: 300px;
    padding: .75rem .5rem;
    font-size: 1rem;
    line-height: 1.2;
}
.imageuploadify .imageuploadify-images-list button.btn-default.focus, .imageuploadify .imageuploadify-images-list button.btn-default:focus {
    color: #fff;
    background-color: #c8102e;
    border-color: transparent;
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .5);
}
.imageuploadify .imageuploadify-images-list .imageuploadify-container {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1em;
    float: left;
    border-radius: .25rem;
}
.imageuploadify .imageuploadify-images-list .imageuploadify-container button.btn-danger {
    position: absolute;
    top: .25rem;
    right: .25rem;
    width: 20px;
    height: 20px;
    border-radius: 5rem;
    font-size: 10px;
    line-height: .85;
    font-size: 1rem;
    padding: 2px 0;
    text-align: center;
    z-index: 3;
    background-color: #c8102e;
}
.imageuploadify .imageuploadify-images-list .imageuploadify-container img {
    height: 100px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}
.imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details {
    position: absolute;
    top: 0;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    background: rgba(33, 37, 41, .5);
    color: #fff;
    z-index: 2;
    opacity: 0;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.5;
}
.imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details span {
    display: block;
}
.custom-switch {
    padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: .5rem;
}
.custom-switch .custom-control-label::after {
    top: calc(.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #fff;
    border-radius: .5rem;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out;
    transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out;
}
@media (prefers-reduced-motion:reduce) {
    .custom-switch .custom-control-label: :after {
    transition: none;
}
}.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(.75rem);
    transform: translateX(.75rem);
}
.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5);
}
.rs-circle-steps {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.progress-circle {
    position: relative;
    font-size: 1rem;
    width: 5em;
    height: 5em;
    background-color: rgba(33, 37, 41, .25);
    border-radius: 50%;
    line-height: 5em;
}
.progress-circle:after {
    border: none;
    position: absolute;
    top: .35em;
    left: .35em;
    text-align: center;
    display: block;
    border-radius: 50%;
    width: 4.3em;
    height: 4.3em;
    background-color: #fafafa;
    content: " "}
.progress-circle span {
    position: absolute;
    line-height: 5em;
    width: 5em;
    text-align: center;
    display: block;
    color: inherit;
    z-index: 2;
}
.left-half-clipper {
    border-radius: 50%;
    width: 5em;
    height: 5em;
    position: absolute;
    clip: rect(0, 5em, 5em, 2.5em);
}
.progress-circle.over50 .left-half-clipper {
    clip: rect(auto, auto, auto, auto);
}
.value-bar {
    position: absolute;
    clip: rect(0, 2.5em, 5em, 0);
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: .45em solid #c8102e;
    box-sizing: border-box;
}
.progress-circle.over50 .first50-bar {
    position: absolute;
    clip: rect(0, 5em, 5em, 2.5em);
    background-color: #c8102e;
    border-radius: 50%;
    width: 5em;
    height: 5em;
}
.progress-circle:not(.over50) .first50-bar {
    display: none;
}
.progress-circle.p0 .value-bar {
    display: none;
}
.progress-circle.p25 .value-bar {
    transform: rotate(90deg);
}
.progress-circle.p50 .value-bar {
    transform: rotate(180deg);
}
.progress-circle.p75 .value-bar {
    transform: rotate(270deg);
}
.progress-circle.p100 .value-bar {
    transform: rotate(360deg);
}
#pnProductNav .nav, #pnProductNav2 .nav {
    display: inherit;
    flex-wrap: inherit;
    padding-left: inherit;
    margin-bottom: inherit;
    list-style: inherit;
}
.pn-ProductNav_Wrapper {
    position: relative;
    padding: 0;
    box-sizing: border-box;
    scroll-margin-top: 5rem;
}
.pn-ProductNav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    position: relative;
    font-size: 0;
}
.js .pn-ProductNav {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.js .pn-ProductNav::-webkit-scrollbar {
    display: none;
}
.pn-ProductNav_Contents {
    float: left;
    transition: transform .2s ease-in-out;
    position: relative;
}
.pn-ProductNav_Contents-no-transition {
    transition: none;
}
.pn-ProductNav_Link {
    color: inherit;
    text-decoration: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1rem;
    display: table-cell;
    vertical-align: middle;
}


.pn-ProductNav_Link:last-child {
    padding: 0!important;
}

.pn-ProductNav_Link:focus, .pn-ProductNav_Link:hover {
    color: #c8102e;
    text-decoration: none;

}
.pn-ProductNav_Link.active, .pn-ProductNav_Link:active {
    color: #c8102e;
    text-decoration: none;
    border-top: 1px solid #C8102E;
    border-bottom: 1px solid #C8102E;
}

.pn-ProductNav_Indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 100px;
    background-color: transparent;
    transform-origin: 0 0;
    transition: transform .2s ease-in-out, background-color .2s ease-in-out;
}

.nav-tabs {
    border-color: #C8102E;
}

@media (max-width:767px) {
    .hide-arrows {
    display: none!important;
}
}.category-box {
    margin: 0 .25rem;
    width: 100%}
.category-box:first-child {
    margin-left: 0;
}
.category-box:last-child {
    margin-right: 0;
}
figure.category {
    overflow: hidden;
    position: relative;
    border-radius: .25rem;
    background-color: #212529;
    width: 200px;
    height: 60px;
}
@media only screen and (min-width:1200px) {
    figure.category {
    overflow: hidden;
    position: relative;
    border-radius: .25rem;
    background-color: #212529;
    width: 225px;
    height: 80px;
}
}figure.category * {
    -webkit-transition: all .35s ease;
    -webkit-box-sizing: border-box;
    transition: all .35s ease;
    box-sizing: border-box;
    border-radius: .25rem;
}
figure.category img {
    width: 100%;
    opacity: .5;
    object-fit: cover;
    vertical-align: middle;
    border-radius: .25rem;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
figure.category figcaption {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    color: #fff;
    font-weight: 600;
    letter-spacing: .05rem;
    text-transform: uppercase;
    line-height: 1.4;
    font-size: 1rem!important;
    font-family: var(--font-primary);
    transform: translate(-50%, -50%);
}
figure.category.bg-dark {
    background-color: inherit;
}
figure.category.active, figure.category.hover, figure.category:hover {
    background-color: #c8102e;
}
figure.category.active img, figure.category.hover img, figure.category:hover img {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.nav-scroller, .nav-scroller-wrapper {
    display: flex;
    background-color: transparent;
}
.nav-scroller {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.nav-scroller-nav {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    align-self: center;
    padding-bottom: 30px;
    margin-bottom: -30px;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.nav-scroller-content, .nav-scroller-items {
    display: inline-flex;
    align-items: center;
    white-space: normal;
}
.nav-scroller-content {
    min-height: 44px;
    will-change: transform;
}
.nav-scroller-content:not(.no-transition) {
    transition: transform .25s cubic-bezier(.645, .045, .355, 1);
}
ul.nav-scroller-content {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-scroller-group-title, .nav-scroller-item {
    padding: .25rem 0;
    margin: 0 .25rem;
}
.nav-scroller-item {
    flex: 1;
    display: block;
    font-size: 1.125rem;
    text-align: center;
    border-left: none;
    border-right: none;
}
.nav-scroller-item:last-child {
    border-right-color: transparent;
}
.nav-scroller-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    min-height: 45px;
    font-weight: 400;
    height: 45px;
    padding: 0;
    color: #fff;
    background: #ef5350;
    border: none;
    border-radius: 5rem;
    transition: color .3s, opacity .3s;
    text-align: center;
    cursor: pointer;
}
.nav-scroller-btn:hover {
    color: #fff;
    background-color: #c8102e;
}
.nav-scroller-btn:focus {
    outline: 0;
}
.nav-scroller-btn:not(.active) {
    opacity: 0;
    pointer-events: none;
}
.nav-scroller-icon {
    display: inline-block;
    position: relative;
    font-size: 1.5rem;
    line-height: 1.8;
    vertical-align: middle;
}
.nav-scroller-btn--left {
    left: 0;
}
.nav-scroller-btn--right {
    right: 0;
}
.nav-scroller-logo {
    display: inline-block;
    padding: .5rem;
    margin-right: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}
.nav-scroller--controls-inline .nav-scroller-content {
    padding: 0;
}
@media only screen and (min-width:1200px) {
    .nav-scroller--controls-inline .nav-scroller-content {
    padding: 0 60px;
}
}.nav-scroller--controls-inline .nav-scroller-btn:not(.active) {
    color: #484d51;
    background-color: #e8ecef;
    opacity: 1;
}
.nav-scroller--expand .nav-scroller-content, .nav-scroller--expand .nav-scroller-nav {
    width: 100%}
.nav-scroller--right .nav-scroller-nav {
    margin-left: auto;
}
.nav-scroller--snap .nav-scroller-nav {
    -ms-scroll-snap-type: x proximity;
    scroll-snap-type: x proximity;
    scroll-padding: 0 60px;
}
.nav-scroller--snap .nav-scroller-content:not(.no-transition) .nav-scroller-item {
    scroll-snap-align: start;
}
.nav-scroller--snap .nav-scroller-content:not(.no-transition).snap-align-end .nav-scroller-item {
    scroll-snap-align: end;
}
.nav-scroller-group {
    flex-direction: column;
    align-items: flex-start;
}
.nav-scroller-group:not(:first-child) {
    border-left: none;
    margin-left: .5rem;
}
.nav-scroller-group-title {
    font-weight: 700;
}
.nav-scroller-items .nav-scroller-item {
    text-align: center;
    min-width: 80px;
}
.podcast-content p {
    margin-bottom: 2rem;
}
.podcast-contentt p:last-child {
    margin-bottom: 0;
}
.podcast-contentt figure {
    margin: 0;
    padding: 0;
}
.podcast-contentt h5 {
    margin-bottom: 2rem;
    padding: 0;
}
.podcast-contentt .image-box {
    width: 100%;
    position: relative;
}
.podcast-contentt .image-box:hover .overlay {
    opacity: 1;
    cursor: pointer;
}
.podcast-contentt .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
}
.podcast-contentt .text {
    bottom: 0;
    width: 100%;
    position: absolute;
    padding: 1.5rem 1.5rem;
}
.podcast-contentt .text p {
    text-align: right!important;
}
audio {
    width: 100%}
.iru-tiny-player {
    position: relative;
    border: 1px solid transparent;
    background-color: #fff;
}
.iru-tiny-player .song-main-info {
    margin: 1.5rem 1.5rem;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    display: flex;
}
@media screen and (max-width:480px) {
    .iru-tiny-player .song-main-info {
    margin: 1rem 1rem;
    font-size: 1rem;
}
}.iru-tiny-player .icon {
    margin-right: 1ex;
    min-width: 1.5rem;
    flex-basis: 1.5rem;
    text-decoration: none;
    border-bottom: none;
    position: relative;
    cursor: pointer;
}
.iru-tiny-player .icon:hover {
    color: #c8102e;
}
@media screen and (max-width:480px) {
    .iru-tiny-player .icon {
    margin-right: .75rem;
    min-width: 1rem;
    flex-basis: 1rem;
}
}.iru-tiny-player .icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    text-transform: none!important;
}
.iru-tiny-player .song-main-info .icon.fa-stop {
    margin-right: 2rem;
}
@media screen and (max-width:480px) {
    .iru-tiny-player .song-main-info .icon.fa-stop {
    margin-right: .5rem;
}
}.iru-tiny-player .song-main-info .song-timer {
    margin: 0 1rem;
    white-space: nowrap;
}
.iru-tiny-player .song-main-info .song-title {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
}
.iru-tiny-player .song-seek {
    position: absolute;
    width: 100%;
    height: 100%}
.iru-tiny-player .song-progress {
    position: absolute;
    border: 1px solid transparent;
    background-color: rgba(200, 16, 46, .1);
    width: 0%;
    height: 100%}
.iru-tiny-player .song-volume-control {
    position: absolute;
    background-color: rgba(245, 245, 245, .85);
    width: 100%;
    height: 100%;
    top: 0;
}
.iru-tiny-player .song-volume-bar {
    z-index: 5;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 20%;
    height: 10px;
    margin: 0 auto;
    width: 80%;
    background-color: rgba(200, 16, 46, .9);
}
.iru-tiny-player .song-volume-bar#fg {
    height: 5px;
    margin: -2.5px auto;
    width: 60%}
.iru-tiny-player .song-volume-bar#fgg {
    height: 10px;
    margin: -5px auto;
    background-color: rgba(255, 255, 255, 0);
    width: 60%}
.iru-tiny-player .song-volume-bar#bg {
    height: 1.5px;
    margin: -.75px auto;
    background-color: rgba(200, 16, 46, .75);
    width: 60%}
.iru-tiny-player .song-volume-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    left: 80%;
    margin: -7.5px auto;
    background-color: rgba(200, 16, 46, .9);
    border-radius: 7.5px;
    cursor: pointer;
}
.iru-tiny-player .song-volume-dot:hover {
    background-color: #c8102e;
}
.iru-tiny-player .icon.fa-times {
    margin: 2ex 2.5ex;
    position: absolute;
    font-size: 1.25rem;
    right: 0;
    top: 0;
}
.btnWa {
    position: fixed;
    color: #fff;
    text-align: center;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    line-height: 55px;
    border-radius: 50px;
    font-size: 30px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .3);
    background-color: #25D366;
    z-index: 2000;
}
.btnWa:hover {
    text-decoration: none;
    color: #0df053;
    background-color: #fff;
}
@media screen and (max-width:480px) {
    .iru-tiny-player .icon.fa-times {
    margin: 2ex 1.5ex;
    font-size: 1rem;
}
}.webinar-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%
}

    .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: .25rem;
}
.vertical-video {
    display: grid;
    place-items: center;
    --aspect-ratio: 1080/1920;
}
.fitVids-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.fitVids-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%}

.center-video {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.streamyard {
    max-width:900px;
    min-width:340px;
}

.tiktok-emebed {
    padding: 0!important;
    width: inherit!important;
    margin: 0 auto!important;
}
@media screen and (max-width:640px) {
    .tiktok-emebed {
    margin: 0 auto!important;
    min-width: 0!important;
    padding: 0!important;
}
.instagram-media {
    min-width: 0!important;
}
}.tiktok-emebed>iframe {
    background-color: transparent!important;
    margin: 0 auto!important;
}
.calendar-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%}
.calendar-col {
    display: flex;
    flex-direction: column;
    width: 100%}
.box {
    border-bottom: 1px solid tomato;
}
@media (min-width:480px) {
    .calendar-col {
    width: 100%}
}@media (min-width:1024px) {
    .calendar-col {
    width: 14.2857%}
}.flexible {
    flex-grow: 1;
}
.calendar .border, .calendar .border-md {
    border: 1px solid rgba(33, 37, 41, .2)!important;
}
.calendar .border-top {
    border-top: 1px solid rgba(33, 37, 41, .2)!important;
}
.calendar .border-left {
    border-left: 1px solid rgba(33, 37, 41, .2)!important;
}
.calendar .border-right {
    border-right: 1px solid rgba(33, 37, 41, .2)!important;
}
.calendar .border-bottom {
    border-bottom: 1px solid rgba(33, 37, 41, .2)!important;
}
.calendar .border-top-0 {
    border-top: none!important;
}
.calendar .border-left-0 {
    border-left: none!important;
}
.calendar .border-right-0 {
    border-right: none!important;
}
.calendar .border-bottom-0 {
    border-bottom: none!important;
}
@media (max-width:992px) {
    .calendar .border-md {
    border: none!important;
}
.calendar .border-right {
    border-right: none!important;
}
.calendar .border-sm-bottom {
    border-bottom: 1px solid rgba(33, 37, 41, .2)!important;
}
}.calendar .day {
    min-height: 120px;
    padding: .75rem .75rem;
}
.calendar .active {
    color: #c8102e;
}
.calendar h5 {
    font-size: 1rem;
}
.calendar .badge {
    display: inline-block;
    padding: .75rem .75rem;
    font-size: .9rem;
    line-height: 1.3;
    font-weight: 500;
    text-align: left;
    white-space: normal;
    vertical-align: middle;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.calendar .btn {
    border-width: 1px;
}
.file-info p {
    line-height: 1.2;
}
.file-info img {
    width: 100px;
    height: 100px;
}
.file-info .red-link {
    color: inherit;
    font-weight: 400;
}
.file-info .red-link:hover {
    color: #c8102e;
}
.file-info .red-link.focus, .file-info .red-link:focus {
    color: #c8102e;
}
.file-info .red-link.disabled, .file-info .red-link:disabled {
    color: #9aa4ac;
}
@media (max-width:767px) {
    .file-info img {
    width: 50px;
    height: 50px;
}
}form .dropdown .form-control {
    text-align: left;
}
form .dropdown-toggle::after {
    font-family: unicons-line;
    content: "\eb3a";
    float: right;
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
    margin-left: 0;
    margin-right: 0;
    border: none;
}
form .dropdown-menu {
    border: 1px solid #f8f9fa;
    cursor: pointer!important;
    width: 100%;
    height: 250px;
    overflow: auto;
}
form .show-invalid-feedback, form .show-valid-feedback {
    display: block;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0;
    list-style: none;
    border-radius: 0;
}
@media (max-width:992px) {
    .pagination {
    justify-content: center;
}
}.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    font-weight: 600;
    color: #c8102e;
    background-color: transparent;
    border-color: rgba(33, 37, 41, .08);
}
.select-filter {
    border: none;
    padding: 5px 30px;
    border-radius: 0.25rem;
}
.page-link:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #c8102e;
    border-color: #c8102e;
}
.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(200, 16, 46, .25);
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #c8102e;
    border-color: #c8102e;
}
.page-item.disabled .page-link {
    color: rgba(33, 37, 41, .3);
    pointer-events: none;
    cursor: auto;
    background-color: transparent;
    border-color: rgba(33, 37, 41, .08);
}
.card {
    width: 100%}
.message-center {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    height: 50vh;
}

.sin-episodio{
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
   
}

.img-medium {
    width: 36px;
    height: 36px;
}
.inline-form {
    position: relative;
}
.inline-form .invalid-feedback {
    position: absolute;
    margin: 0;
    padding: .25rem 0 0 0;
    left: 0;
    right: 0;
}
.inline-disclamer {
    margin-top: 2.2rem;
}
@media only screen and (max-width:992px) {
    .inline-form .invalid-feedback {
    position: relative;
}
}.content {
    border-radius: .25rem;
    -moz-border-radius: .25rem;
    -webkit-border-radius: 0.25rem;
    position: relative;
    width: 100%;
    margin: 0 auto;
    cursor: zoom-in;
    overflow: hidden;
}
.content .content-overlay {
    cursor: zoom-in;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    padding: 0;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    background: #000;
    background: -moz-linear-gradient(360deg, #000 0, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(360deg, #000 0, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(360deg, #000 0, rgba(0, 0, 0, 0) 100%);
}
.content:hover .content-overlay {
    opacity: 1;
}
.content-image {
    width: 100%}
.content-details {
    position: absolute;
    text-align: left;
    padding: .75rem 1.5rem;
    width: 100%;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
@media only screen and (max-width:991px) {
    .content .content-overlay, .content-details {
    opacity: 1;
}
.content-details h6 {
    margin-bottom: .1rem;
}
}.content:hover .content-details {
    bottom: 0;
    left: 0;
    opacity: 1;
}
.fadeIn-bottom {
    top: 80%}
.content-details h6 {
    letter-spacing: .02rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
    color: #fff;
}
.content-details p {
    letter-spacing: .02rem;
    font-weight: 600;
    color: #fff;
}
.content-details p a {
    color: #fff;
    transition: .3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.content-details p a:hover {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
body {
    font-size: 1rem;
}
input, select {
    font-size: 100%}
@media screen and (device-aspect-ratio:2/3) {
    input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {
    font-size: 16px;
}
}@media screen and (device-aspect-ratio:40/71) {
    input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {
    font-size: 16px;
}
}@media screen and (device-aspect-ratio:375/667) {
    input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {
    font-size: 16px;
}
}@media screen and (device-aspect-ratio:9/16) {
    input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {
    font-size: 16px;
}
}.terms-wrapper article {
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
    padding-right: 1rem;
    margin: 0;
    height: 36vh;
}

.terms-wrapper-seguidores{
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
    padding-right: 1rem;
    margin: 0;
    height: 80vh;
}

.terms-wrapper article::-webkit-scrollbar {
    width: 8px;
}
.terms-wrapper article {
    scrollbar-width: thin;
    scrollbar-color: #212529 rgba(33, 37, 41, 0.1);
}
.terms-wrapper article::-webkit-scrollbar-track {
    background: rgba(33, 37, 41, .1);
}
.terms-wrapper article::-webkit-scrollbar-thumb {
    background-color: rgba(33, 37, 41, .1);
    border: 0 solid #212529;
    border-radius: 10rem;
}
@media only screen and (max-width:768px) {
    .terms-wrapper article {
    padding-right: 0;
    margin: 0;
    height: auto;
    overflow-y: hidden;
}
}.form-tooltip {
    margin-left: .25rem;
    position: relative;
    display: inline-block;
}
.form-tooltip i {
    font-size: 1.5rem;
    color: #4fabe5;
    line-height: 0;
    padding: 0;
    margin: 0;
}
.form-tooltip .tooltiptext {
    visibility: hidden;
    width: 320px;
    background-color: #4fabe5;
    color: #fff;
    text-align: left;
    border-radius: .25rem;
    padding: 1rem 1rem;
    position: absolute;
    z-index: 5;
    top: 105%;
    left: 50%;
    font-weight: 600;
    font-size: .9rem;
    line-height: 1.5;
    margin-left: -60px;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, .2);
}
.form-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 18%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #4fabe5 transparent;
}
.form-tooltip:hover .tooltiptext {
    visibility: visible;
}
.serial-number .card-body {
    padding: 1rem 0 0 0;
}
.imga-blog, .imga-blog img {
    text-align: center!important;
    width: 100%!important;
}
.image-blog, .image-blog img {
    text-align: center!important;
    width: 100%!important;
}
.icon-big {
    line-height: 1.5;
    font-size: 1.25rem;
    margin-right: .5rem;
}
.card-reply {
    margin-top: 1rem;
    border: 3px solid transparent;
    border-left: 3px solid rgba(33, 37, 41, .2);
}
.card-reply .card-body {
    padding: 0 1rem;
}
.btn-help {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    line-height: 1.3;
}
.btn-help.focus, .btn-help:focus {
    outline: 0;
    box-shadow: none;
}
.btn-help i {
    font-size: 1.5rem;
}
.btn-help.btn-link, .btn-help.btn-link:hover {
    border-bottom: none;
}
.btn-close {
    text-shadow: none;
    font-size: 2rem;
    color: #fff;
    opacity: 1;
}

button.btn-close-form {
    width: 36px;
    height: 36px;
    border-radius: 25rem;
    border: 0;
}

button.btn-close-form:hover {
    background-color: #c8102e;
    color:white;
}

button.btn-close {
    width: 36px;
    height: 36px;
    border-radius: 25rem;
    background-color: #c8102e;
    border: 0;
}
button.btn-close:hover {
    background-color: #fff;
}
.btn-close:hover {
    color: #c8102e;
    text-decoration: none;
}
.btn-close:not(:disabled):not(.disabled):focus, .btn-close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    outline: 0;
    box-shadow: none;
}

.btn-close-float{
    position: absolute;
    top: 15px;
    right: 15px;
}
@media only screen and (max-width:767px) {
    .pt-md-0 {
    padding-top: 0!important;
}
.pt-md-3 {
    padding-top: 20px!important;
}
}.image-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.image-responsive::before {
    display: block;
    content: ""}
.image-responsive .image-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.image-responsive-21by9::before {
    padding-top: 42.857143%}
.image-responsive-16by9::before {
    padding-top: 56.25%}
.image-responsive-4by3::before {
    padding-top: 75%}
.image-responsive-1by1::before {
    padding-top: 100%}
.image-responsive .fill {
    object-fit: contain;
}
.image-responsive .contain {
    object-fit: contain;
}
.image-responsive .cover {
    object-fit: cover;
}
.image-responsive .none {
    object-fit: none;
}
.image-responsive .scale-down {
    object-fit: scale-down;
}
@media only screen and (max-width:768px) {
    .image-responsive-21by9::before {
    padding-top: 0;
}
.image-responsive .image-responsive-item {
    position: relative;
}
.contain {
    object-fit: contain!important;
}
}.comment-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin: -10px;
}
.comment-wrapper>.comment-col {
    margin: 10px;
}
.comment-wrapper .btn-link {
    font-weight: 400;
    border: none;
    text-decoration: underline;
}
.comment-wrapper .btn-link:hover {
    text-decoration: none;
}
.comment-links {
    display: flex;
    align-items: center;
    margin: -5px;
}
.comment-links>a {
    margin: 5px;
}
.comment-links .btn-link {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
}
.comment-links .btn-link:hover {
    color: #212529;
    text-decoration: underline;
}
.reply-btns {
    margin: -5px;
    display: flex;
    justify-content: flex-end;
}
.reply-btns>button {
    margin: 5px;
}
.reply-btns .btn-link {
    border: none;
    font-weight: 600;
}
.reply-btns .btn-link:focus, .reply-btns .btn-link:hover {
    border: none;
    text-decoration: underline;
}
.deleted-card {
    background-color: #efefef;
    border-radius: .25rem;
    border: none;
}
.deleted-card .d-body {
    text-align: center;
    padding: 1rem 1rem;
}
.iconNext, .iconPrevious {
    font-size: 48px;
    color: #c8102e;
    cursor: pointer;
    margin: 3px;
}
.vdGallery {
    object-fit: fill;
    width: 100%;
    height: 632px;
}
.iconGalleryImgVd {
    font-size: 55px;
}
.containerGallery {
    column-count: 4;
    column-gap: 20px;
}
.viewCalendarMobileBigSmall {
    display: none;
}
@media (max-width:1200px) {
    .containerGallery {
    column-count: 3;
    column-gap: 20px;
}
}@media (max-width:800px) {
    .containerGallery {
    column-count: 2;
    column-gap: 20px;
}
.vdGallery {
    width: 90%}
.containerGallery img {
    width: 90%!important;
}
}@media (max-width:600px) {
    .containerGallery {
    column-count: 1;
}
}@media (max-width:991px) {
    .vdGallery {
    object-fit: none;
    height: auto;
    width: 90%}
.containerGallery img {
    width: 90%!important;
}
}@media (min-width:1025px) and (max-width:1280px) {
    .vdGallery {
    height: 426px;
}
}@media (min-width:320px) and (max-width:500px) {
    .buttons-group {
    display: initial!important;
}
.btnToggleEvent {
    flex-direction: column;
}
.view-layout {
    text-align: center;
    padding-top: 14px;
    height: 67px;
    background-color: #fff;
}

.filter-buttons a.active {
    padding-bottom: 2px;
    border-bottom: 3px solid #c8102e;
}

.viewCalendar {
    padding-bottom: 14px;
    padding-top: 8px;
}
}
.containerGallery img, .containerGallery video {
    width: 100%;
    height: auto;
    margin: 4% auto;
}
.select2-container--default .select2-selection--multiple {
    height: 55px;
    color: inherit;
    border: 1px solid rgba(33, 37, 41, .2)!important;
    padding: .4rem .45rem;
    border-radius: .25rem;
    background: #fff url(../img/icons/angle-down.svg) no-repeat right .75rem center/24px 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #c8102e!important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #b9babb!important;
    color: #000!important;
}
.btnHomeVd {
    font-weight: 500;
    color: #fff;
    border-color: #c8102e;
    background-color: #c8102e;
}
.btnHomeVd:focus {
    outline: 0;
}
.btnHomeVd:hover {
    color: #fff;
}
.fileCommentOff[type=file]+label {
    pointer-events: none;
}
.fileComment[type=file] {
    height: 0;
    overflow: hidden;
    width: 0;
}
.fileComment[type=file]+label {
    text-decoration: underline;
    color: #ce2b46;
    font-weight: 400;
    cursor: pointer;
}
.fileComment[type=file]+label:hover {
    text-decoration: none;
}
.imagesUpload .imgUpload {
    width: 250px;
    height: 167px;
}
.contentIconImg {
    text-align: end;
    top: 30px;
    position: relative;
    left: 37px;
}
.contentIconImg i {
    background-color: #c8102e;
    color: #fff;
    border-radius: 50%;
    padding: 7px;
    cursor: pointer;
}
.card {
    border: none!important;
}
.card .imgComment {
    width: 250px;
    height: 167px;
}
.product-card .card .price {
    width: 35px;
    height: 35px;
    font-weight: 600;
    border-radius: 50%;
    font-size: 19px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    background-color: #c8102e;
    line-height: 37px;
    position: absolute;
    left: 224px;
    top: -5px;
    letter-spacing: 0;
}
.imgComment {
    width: 250px;
    height: 167px;
}
#user-subs-sorts ul li {
    display: inline-block;
    font-size: 15px;
    margin: 0 10px 0 5px;
    background: #fff;
    height: 40px;
    line-height: 40px;
    padding: 5px 20px;
     text-align: center;
     position: relative;
    -webkit-box-shadow: 0 8px 10px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 8px 10px 0 rgb(0 0 0 / 5%);
    border-radius: 35px;
    vertical-align: top;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    box-sizing: content-box;
}
.card-header.formGallery {
    border-bottom: none;
    background-color: #f1f1f1;
}
.card-body.formGallery ul li {
    background-color: #f1f1f1;
    margin-bottom: 16px;
    padding: 10px;
}
.card-body.formGallery ul li i {
    float: right;
    line-height: 28px;
    color: #c8102e;
}
.card-title i {
    color: #c8102e;
}
.card-title .badge {
    float: left;
    margin-top: 3px;
}
.accordion .card-header.formGallery:after {
    font-family: FontAwesome;
    content: "\f077";
    float: right;
    color: #c8102e;
}
.accordion .card-header.formGallery.collapsed:after {
    content: "\f078";
    color: #c8102e;
}
.avatar-author .top-profile {
    position: relative;
    bottom: 30px;
    font-size: 0.8rem;
    padding: 0.5rem 30px;
    border-radius: 25px;
}
@media (min-width:1200px) {
    .form-inline .custom-select, .form-inline .input-group {
    width: 20vw;
}
.width-no-follow {
    max-width: 85vw;
}
}.h-128 {
    min-height: 128px;
}
.close-follow {
    top: 20px;
    right: 20px;
    z-index: 100;
}
.modal-content-follow {
    background: #fafafa;
    border-radius: 0;
}
.modal-content-follow .modal-body {
    overflow: hidden;
}
.img-no-follow {
    background: url(../img/bg-maintenance.jpg)no-repeat center center;
    background-size: cover;
    min-height: 25vh;
}
@media (min-width: 768px) {
    .img-no-follow {
    min-height: 45vh;
}
}@media (min-width: 992px) {
    .img-no-follow {
    min-height: 75vh;
}
}.filter-underline a  {
     text-transform:  uppercase;
    font-size:  1.2rem;
    color:  #484d51;
    text-decoration:  none;
    position:  relative;
    display:  block;
}
.filter-underline a:before,  .filter-underline a:after  {
    content:  '';
    border-bottom:  solid 3px #c8102e;
     position:  absolute;
     bottom:  0;
     width:  0;
 }
.filter-underline a:before  {
     left:  0;
 }
 .filter-underline a:after  {
     right:  0;
 }
 .filter-underline a:hover:before,  .filter-underline a:hover:after  {
    width:  50%;
}
.filter-underline a:before,  .filter-underline a:after  {
    -webkit-transition:  all 0.2s ease;
    transition:  all 0.2s ease;
}
#user-subs-sorts .active-subs  {
    background-color:  #000000;
     color:  #f0f0f0;
}
.dynamic-form {
    position: relative;
}
.product {
    padding: 1rem;
}
.google-search-autocomplete {
    background-color: #fff;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: calc(100% - 1px);
    width: 100%;
    z-index: 10;
    display: none;
}
.google-search-autocomplete-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.google-search-autocomplete-item {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}
.google-search-autocomplete-item:hover {
    background-color: #eee;
}
.autocomplete-suggestion {
    text-decoration: none;
    color: #222;
    font-weight: 700;
    text-transform: lowercase;
    outline: 0!important;
}
.autocomplete-suggestion-remove {
    text-decoration: none;
    color: #36c;
    font-size: 13px;
}

.page-banner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
}

.btn-banner-search{
    background-color: var(--color-3);
    color:white;
    border-radius: 4px;
    border: 1px solid var(--color-3);
    border-left: none;
}

.btn-banner-search:hover{
    color:white;
}

.banner-input{
    border-radius: 4px;
    min-width: 300px !important;  
    border: 1px solid rgba(33, 37, 41, 0.2);
    transition: none !important;
}

.banner-input:focus{
    /* border: 1px solid var(--color-3); */
    border-radius: 4px;
    /* box-shadow: none!important; */
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: none;
}

.banner-input:focus + .input-group-append .btn-banner-search {
    border-radius: 0 5px 5px 0;
}

.banner-input::placeholder{
    color: var(--color-2);
    font-size: 15px;
    font-weight: regular;
}

.btn-results {
    color: var(--color-3);
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-primary);
    cursor: pointer;
    display: inline-block;
  }
  
.btn-results:hover {
    background: none;
    color: var(--color-3);
    font-weight: 500;
}
  .font-primary{
    font-family: var(--font-primary) !important;
  }

.img-result-container{
    aspect-ratio: 3/2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
   
.img-result{
    border-radius: 5px;
}

.img-result-link{
    position: relative;
}

 
.img-inscrip{
    position: absolute;
    top: 20px;
    left: 55px;
    background: rgba(200, 16, 46, .70);
    border-radius: 5px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    font-family: var(--font-primary);
    padding: 4px 10px;
}

.img-user-result{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.font-user-result{
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
}

.page-not-results{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.tittle-two-lines{   
    text-overflow:ellipsis;
    overflow:hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
 }

 .results-input{
    border-radius: 0 0px;
    border: none;
    box-shadow: rgb(0 0 0 / 10%) 0px 3px 8px 0px, rgb(0 0 0 / 8%) 0px 0px 0px 1px; 
 }

 .btn-category {
    color: var(--color-2);
    border: none;
    background-color: transparent;  
  }
  
  .btn-category:hover {
    background: none;
    color: var(--color-3)
  }

  .btn-category .active {
    background: none;
    color: var(--color-3)
  }


  .fixed-sidebar{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .input-date {
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    background-color: #fff;
    padding: 3px 20px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    width: 100%;
    height: 55px;
    display: flex;
  }

.input-hint{
    font-size: 12px;
    line-height: 16px;
}

.input-interests + button{
    background: var(--background);
    border: 1px solid rgba(33, 37, 41, 0.2);
    font: var(--font-primary);
    height: 55px;
}

.input-interests + button .filter-option{
    display: flex;
    align-items: center;
}

.img-gallery{
    max-height: 90vh;
}

.info-tooltip-2 {
    padding: 0;
    margin: 0.05rem;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    font-size: 14px; 
    border-radius: 5rem;
    color: #C8102E !important;
    box-shadow: none!important;
}


.info-tooltip {
    padding: 0;
    margin: 0.05rem;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    font-size: 17px; 
    border-radius: 5rem;
    color: #C8102E !important;
    box-shadow: none!important;
}

.redes {
    display: inline-block;
    padding: 0;
    margin: 0.05rem;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5rem;
    background-color: var(--color-3);
    color: white !important;
    box-shadow: none!important;
}

.redes:hover {
    background-color: #ef5350;
}

.banner-heart::before{
    padding-top: 11px;
}

.text-nab{
    font-weight: 500;
    font-size: 16px;
}

.btn-text {
    color: var(--color-3);
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-primary);
    cursor: pointer;
    display: inline-block;
    padding: 0px 5px 0px 0px;
  }
  
.btn-text:hover {
    background: none;
    color: var(--color-3);
    font-weight: 500;
}

.text-results{
    font-size: 24px;
}

.footer-text{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
   
.footer-img{
    width: 150px !important;
}

.subtitle-reto{
    font-size: 22px;
    font-weight: 400;
}

.event-list{
    background-color: transparent!important;
    border-bottom: 0.5px solid rgba(150, 150, 150, 0.5);
}

.user-count {
    font-weight: 500;
    color:  #c8102e;
    border: 1.5px solid #c8102e;
    border-radius: 4px;
    background-color: rgba(200, 16, 46, 0.2);
    display: flex;
    justify-content: center;
    padding: 0.5rem 2rem;

}

.event-title{
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.modal-img-editor{
    max-width: 900px;
}

#editor_container label{
    margin-bottom: 0!important;
}

.FIE_editor-content{
    overflow-y: hidden !important;
}

.FIE_topbar-close-button {
    display: none!important;
    }

    .SfxSlider-root{
    color: #C8102E !important;
} 

.ekqjSs{
    background: #C8102E !important;
}

.SfxButton-Label{
    font-family: var(--font-primary) !important;
}


.SfxModalContent-root{
    display:none;
}


.scroll-menu { 
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap; 
    font-weight: 500;   
}

.scroll-menu .nav-link:first-child { 
  padding-left: 0px!important;   
}



.scroll-menu::-webkit-scrollbar {
    -webkit-appearance: none;
    height: 3px;
  }
  
  .scroll-menu::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(0,0,0,.3);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.3);
  }
  
  .scroll-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

.perfil-container{
    width: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    border-radius: 0px 0px 5px 5px;
   
}



.seguidores-img{
    border-radius: 100%;
    border: 2px solid #C8102E;
    width: 5rem !important;
}

.perfil-seguidores-img{
    width: 100% !important;
    height: 170px !important;
    overflow: hidden;
    justify-content: center;
    border-radius: 10%;
    overflow: hidden;
    object-fit: cover;
    object-position: center; 
    border: 2px solid #F1F1F1;
}


.perfil-container h3{
    font-weight: 400;
    font-size: 16px;
    margin: 10px 0px;
}

.perfil-container-img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border: 5px solid var(--color-3);
    display: flex;
    justify-content: center;
    margin-top: -100px;
}

.perfil-banner{
    border-radius: 20px 20px 20px 0px;
}

.scroll-menu .active{
    color: var(--color-3);
    border-bottom: none;
}


.scroll-menu .hover{
    color: var(--color-3);
    border-bottom: none!important;
}

.scroll-menu .nav-link:hover{
    color: var(--color-3);
}



.gallery-perfil {
    width: 100%;
    overflow:hidden;
   }
 .row {
    display: flex;
    
   }


.badge-perfil-seguidores{
    left: -50px!important;
}

.badge-perfil-ambassador{
    right: 12px!important;
    bottom: 12px!important;
}

.user-container-img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border: 5px solid var(--color-3) ;
    display: flex;
    justify-content: center;
}

.user-profile h3{
    font-weight: 400;
    font-size: 16px;
    margin: 5px 20px 10px 0px;
}

.btn-profile:hover{
    background-color: var(--color-3)!important;
    color: #fff;
    border-color: var(--color-3);
}

.profile-icon{
    font-size: 18px;
}

.profile-icon i{
   margin-right: 1rem;
}

.events .profile-icon, .products .profile-icon {
    font-size: 18px;
    color: var(--color-3);
}

.tittle-one-lines{   
    text-overflow:ellipsis;
    overflow:hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
 }

 .perfil-carrusel div{
    max-height: 450px;
 }

.audio-blog {
    display: inline-block;
    padding: 0;
    margin: 0.05rem;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    font-size: 20px;
    border-radius: 5rem;
    background-color: var(--color-3);
    color: white;
    position: absolute;
    bottom: 0;
    top: 10px;
    right: 10px;
}

td .btn-link{
    border-bottom: none;
}

td .btn-link:hover{
    border-bottom: none;
}

.overlay-disabled {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255, 0.2);
    border-radius: 0.25rem;
}

.overlay-disabled-dark {
background: none!important;
}

.date-badge-disabled {
    text-align: center;
    color: #fff;
    padding: 0.3rem 1.25rem;
    border-radius: 0.25rem;
    position: absolute;
    z-index: 1;
    left: 1rem;
    top: 1rem;
    background-color: #000000;
}

.social-profile{
    color: var(--color-3) ;
    background-color: white;
}

.social-input input {
    border-left: none;
}

.social-input .prepend-social-icon span {
    border-right: none;
}
.prepend-social-img{
    border: 1px solid rgba(33, 37, 41, .2);
    border-right: none;
    border-radius: 5px 0px 0px 5px;
}

.social-input .prepend-social-img,
.social-input .prepend-social-icon span {
    background-color: white;
    width: 50px;
    height: 55px;
    display: grid;
    place-items: center;
}

.social-input .prepend-social-img img  {
    width: 16px
}
  


.profile-container-img{
    border-radius: 50%;
    width: 170px;
    height: 170px;
    overflow: hidden;
    border: 5px solid var(--color-3) ;
    display: flex;
    justify-content: center;
}

.wrapper {
    position: relative;
}

.wrapper span {
    position: absolute;
    left: 2px;
}

.nav-text{
    font-weight: 500;
}

.scroll-menu .pn-ProductNav_Link{
    border-bottom: none!important;
}

.text-nowrap{
    white-space: nowrap;
}

.title-register{
    font-size: 32px;
    font-weight: 400;
}


.facebook-register{
 border-radius: 5rem;
}

.facebook-register .icon{
 border-radius: 5rem;
}

.icon-information{
    color: var(--color-3);
    font-size: 26px;
}

.text-event{
    font-size: 18px;
}

.jury-contest{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.icon-prize{
    color: var(--color-3);
    font-size: 32px;
}

.contest-tittle{
    font-size: 40px;
    font-weight: 400;
}

.contest-tittle-retos{
    font-size: 2.2em;
    font-weight: 400;
}

.contest-subtittle{
    font-size: 20px;
    font-weight: 500;
}

.tittle-winner{
    font-size: 20px;
    color: var(--color-3);
    text-transform:uppercase;
}

.event-photo{
    max-height: 50vh; 
    width: auto; 
    max-width: 100%
}

.event-description{
    max-width: 1200px; 
    margin: 0 auto;
}

.badge-costum{
    width: 60px;
}

.badge-costum-profile{
    width: 60px;
}

.badge-costum-blog{
    width: 70px;
}

.jury-container-img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.jury-container-img-2{
    border-radius: 50%;
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.jury-container-img img{
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.img-banner-reto{
    max-height: 90vh; 
    max-width: 100%;
}

.input-prize{
    width: 100%;
}

/* Componente chat */

  .menu-item, .menu-open-button {
    background: var(--color-3);
    border-radius: 100%;
    width: 3rem;
    height: 3rem;
    margin-left: -40px;
    position: absolute;
    top: 20px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate3d(0, 0, 0);
    transition: transform ease-out 200ms;
  }
  
  .menu-open {
    display: none;
  }
  

  .menu {
 
    padding-top: 20px;
    padding-left: 80px;
 

    box-sizing: border-box;
    font-size: 20px;
    text-align: left;
  }
  
  .menu-item:hover {
    background: var(--color-3);
    color: #ffffff;
  }
  .menu-item:nth-child(3) {
    transition-duration: 180ms;
  }
  .menu-item:nth-child(4) {
    transition-duration: 180ms;
  }
  .menu-item:nth-child(5) {
    transition-duration: 180ms;
  }
  .menu-item:nth-child(6) {
    transition-duration: 180ms;
  }
  
  .menu-open-button {
    z-index: 2;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 400ms;
    transform: scale(1.1, 1.1) translate3d(0, 0, 0);
    cursor: pointer;
  }
  
  .menu-open-button:hover {
    transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  }
  
  .menu-open:checked + .menu-open-button {
    transition-timing-function: linear;
    transition-duration: 200ms;
    transform: scale(0.8, 0.8) translate3d(0, 0, 0);
  }
  
  .menu-open:checked ~ .menu-item {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .menu-open:checked ~ .menu-item:nth-child(3) {
    transition-duration: 190ms;
    transform: translate3d(0, -70px, 0);
  }
  .menu-open:checked ~ .menu-item:nth-child(4) {
    transition-duration: 290ms;
    transform: translate3d(0, -140px, 0);
  }
  .menu-open:checked ~ .menu-item:nth-child(5) {
    transition-duration: 390ms;
    transform: translate3d(0, -210px, 0);
  }
  .menu-open:checked ~ .menu-item:nth-child(6) {
    transition-duration: 490ms;
    transform: translate3d(0, -440px, 0);
  }

  #chat-widget-minimized {
   
  }

  .btn-chat {
    position: fixed;
    bottom: 80px;
    right: 50px;
    z-index: 2000;
}

/* Componente chat */


.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    /*border-radius: 50%;
     background: 
       radial-gradient(closest-side, white 79%, transparent 80% 100%),
      conic-gradient(#c8102e 70%, #F5F5F5 0);    */
  }
  
  .progress-bar::before {
    content: "10 de 18";
    color: var(--color-3);
    font-weight: 500;
  }

  .avatar-winner{
    width: 8rem;
    height: 8rem;
    border: solid 3px #ffffff;
    outline: solid 10px rgba(254, 157, 29, 0.2);
  }

  .badge-winner{
    background-color: #fe9d1d;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.card-insignias{
    border-radius: 20px;
    
}

.text-modal-badge{
    font-size: 14px!important;
    align-items: center;
}

.text-modal-insignia{
    text-decoration: underline;
    color: var(--color-3);
}

.icon-index {
    font-size:15px;
    color: var(--color-3);
}

.title-index:hover{
    color: var(--color-3)!important;
    text-decoration: underline;
}

.link-index{
    color: #FFFFFF;
    text-decoration: none!important;
}

.title-link:hover{
   border-bottom: 1px #C8102E;
   color: var(--color-3);
}

.btn-banner{
    background-color: #000000;
    color: #FFFFFF;
    border-color:#000000 ;
}


.btn-banner:hover{
    background-color: var(--color-3);
    border-color:var(--color-3) ;
}

.text-banner-section{
    font-size: 30px;
}

.text-galery-home{
    font-size: 14px;
}

.galery-placeholder::placeholder{
color: #FFFFFF!important;
}

.text-cancel{
    text-decoration: underline;
}

.modal-search-header{
    background-color: rgba(0,0, 0, 0.3); 
}

/* CSS Carousel */

.slide-container{
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
  }
  .slide-content{
    margin: 0 40px;
    overflow: hidden;
  }
  
  .swiper-navBtn{
    color: #c8102e!important;
    transition: color 0.3s ease;
  }
  .swiper-navBtn:hover{
    color: #c8102e!important;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 35px;
  }
  .swiper-button-next{
    right: 0;
  }
  .swiper-button-prev{
    left: 0;
  }
  .swiper-pagination-bullet{
    background-color: #c8102e!important;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    background-color: #c8102e!important;
  }
  
  @media screen and (max-width: 768px) {
    .slide-content{
      margin: 0 10px;
    }
    .swiper-navBtn{
      display: none;
    }
  }
  /* CSS Carousel */


@keyframes travel {
    0%, 100% {
       transform: translate3d(0,0,0);
     }
    50% {
       transform: translate3d(-100%,0,0);
     }
  }

/* media query mobile */
@media (max-width: 438px) {
    .FIE_tool-options-wrapper{
        max-height: none!important;
    }
    .HugYR{
        flex-wrap: wrap;
    }

   
}


@media (max-width: 768px) {
    .banner-input{
        min-width: 100px !important;
    }
    .page-banner h1, .page-not-results h1{
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .text-results{
        font-size: 20px;
    }  
    .subtitle-reto{
        font-size: 20px;
        font-weight: 400;
    }
    .custom-file-label::after {
        line-height: 2.2;
    }

    .insignia-group{
        display: flex;
        align-items: center;
    }

    .center {
        text-align: center;
    }

    .redes {
        display: inline-block;
        padding: 0;
        margin: 0.05rem;
        width: 2.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        border-radius: 5rem;
        background-color: var(--color-3)!important;
        color: white!important;
        box-shadow: none!important;
    }

    .redes-small li{
        width: 2rem!important;
        height: 2rem!important;
        line-height: 2rem!important;
        margin: 0.40rem!important;
    }

    .perfil-banner{
        border-radius: 20px 20px 0px 0px;
    }

    .nav-text{
        font-size: 16px;    
    }


.dropdown-item-1{
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
 }

 .dropdown-item-1 a:active {
    color:#C8102E;
 }

    .subtitle-perfil{
        font-size: 16px;
    }

    .subtitle-perfil{
        font-size: 16px;
    }

    .interest-small{
        font-size: 10px!important;
    }

    .banner-heart::before{
        padding-top: 8px;
    }

    .badge-costum{
        width: 50px;
    }

    .badge-costum-profile{
        width: 40px;
    }

    .badge-costum-blog{
        width: 40px;
    }

    .text-badge-small{
        font-size: 18px;
    }

    .progress-bar {
        width: 200px;
        height: 200px;
      }

      .text-banner-section{
        font-size: 20px;
    }

    .subtitulo{
        font-size: 1.5rem !important;
    }
    
}



@media (max-width: 1200px) {
    .event-title{
        display: block;
    }
    .user-count {
        font-weight: 500;
        font-size: 16px;
        padding: 0.25rem 1.5rem;
        margin-top: 0.5rem;
    
    }

    .icon-index {
        font-size: 15px;
    }
    
}

@media (max-width: 1024px) {
   .ipad-pro {
        min-height: 30vh;     
    }
}


.card-index-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 95%;
    height: auto;
    background: #000;
}
.card-index-info .image-index-info {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.card-index-info .image-index-info img {
    width: 100%;
    transition: .5s;
}
.card-index-info:hover .image-index-info img {
    opacity: .5;
    transform: translateX(30%);/*100%*/
}
.card-index-info .details-index-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;/*100%*/
    height: 100%;
    background: #000000;
    transition: .5s;
    transform-origin: left;
    transform: perspective(2000px) rotateY(-90deg);
}
.card-index-info:hover .details-index-info {
    transform: perspective(2000px) rotateY(0deg);
}
.card-index-info .details-index-info .center-index-info {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.card-index-info .details-index-info .center-index-info h1 {
    margin: 0;
    padding: 0;
    color: #ff3636;
    line-height: 20px;
    font-size: 20px;
    text-transform: uppercase;
}
.card-index-info .details-index-info .center-index-info h1 span {
    font-size: 14px;
    color: #262626;
}
.card-index-info .details-index-info .center-index-info p {
    margin: 10px 0;
    padding: 0;
    color: #262626;
}
.card-index-info .details-index-info .center-index-info ul {
    margin: 10px auto 0;
    padding: 0;
    display: table;
}
.card-index-info .details-index-info .center-index-info ul li {
    list-style: none;
    margin: 0 5px;
    float: left;
}
.card-index-info .details-index-info .center-index-info ul li a {
    display: block;
    background: #262626;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform: .5s;
}
.card-index-info .details-index-info .center-index-info ul li a:hover {
    background: #ff3636;
}


.name-jurado{
    color: #212529;
    font-weight: 400px;
}

.name-jurado a:hover{
  border-bottom: 1px solid #C8102E;
}


.link-red {
    color: #C8102E;
    font-weight: 400px;
}

.link-red a:hover{
  border-bottom: 1px solid #C8102E;
}

.link-red-retos a:hover{
    border-bottom: 1px solid #C8102E;
    color: #C8102E;
  }
  

.background {
    background-color: #fafafa;
}

.red {
    color: #C8102E;
}


.category-episodios {
    background-color: #E4E5E5;
    color: black;
    padding: 6px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.img-portada {
    width: 120px;
    height: 135px;
}

.img-podcast {
    width: 340px;
    height: 340px;
    aspect-ratio: 1/1;
}


.img-episodios {
    width: 100%;
    height: auto;
    background-size: cover;
    object-fit: center top;
    aspect-ratio: 16/9;
}

.img-portadas-podcasts {
    width: 100% !important;
    min-height: 100px;
    overflow: hidden;
    justify-content: center;
    border-radius: 5%;
    overflow: hidden;
    object-fit: cover;
    object-position: center; 
    border: 1px solid #F1F1F1;
    aspect-ratio: 1/1;
}


.close-reproductor {
    position: absolute;
    width: 35px;
    height: 35px;
    top: -35px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #C8102E;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    cursor: pointer;
    z-index: 99;
}

.close-reproductor:hover{
    color: white;
    background-color: #ef5350;
    cursor: pointer;
}

.close-reproductor:active{
    background-color:#C8102E;
}

.btn-play{
    color: #C8102E;
    font-size: 30px;
}

.banner-container-2 {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    color: #8F8878 !important;
}

.btn-arrow:hover {
    color: #C8102E !important;
}

@media (max-width: 991px) {
    .carrusel-novedades-arrow {
        display: none !important;
    }
}