/* General */
:root{
    --text-facebook: #1877f2;
    --text-youtube: #FF0000;
    --text-whatsapp: #25D366;
    --text-instagram: #D43089;
    --text-pinterest: #BD081C;
    --text-twitter: #1DA1F2;
    --text-linkedin: #0073b1;
    --color-deshop-primary: #ff5e00;
}

.text-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.text-lines.one {
    -webkit-line-clamp: 1;
}
.text-lines.two {
    -webkit-line-clamp: 2;
}
.text-lines.three {
    -webkit-line-clamp: 3;
}

.word-break-all {
    word-break: break-all;
}
.gap-10px {
    gap: 10px;
}
.outline-none {
    outline: none!important;
}
.custom-content img{
    max-width: 100%!important;
    height: auto;
}

/* Variantes */
.btn-group-toggle.custom-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.table-style1 tbody tr td {
    padding: 5px 0;
}
.btn-variants {
    padding: 2px 8px;
    border: 2px solid var(--background-primary);
}
.btn-variants.disabled {
    background: var(--background-primary);
    opacity: .65;
}
.btn-variants:not(.disabled):hover, .btn-variants.active {
    background: var(--background-primary);
    color: white;
}
.btn-modal-add-cart {
    background: var(--background-primary);
    color: var(--text-primary);
    transition: .5s;
}
.btn-modal-add-cart:not(:disabled):hover {
    background: var(--background-secondary);
    font-weight: bold;
}
.modal {
    z-index: 1150;
}
.js-price-prev {
    color: rgb(228 55 11);
    text-decoration: line-through;
}
.js-price-main {
    font-weight: bold;
    font-size: 20px;
}

.form-control-outline-none:focus {
    outline: 0;
}

.mt-30px {
    margin-top: 30px;
}

.lh-15px {
    line-height: 15px;
}

.fz-14px {
    font-size: 14px;
}

/* Modal user */
#modalLogin .modal-content {
    border: 0;
    border-radius: 0;
}
#modalLogin .modal-header {
    background: var(--background-primary);
    border-radius: 0;
}
#modalLogin .modal-icon-header {
    padding: 0 2rem;
}
#modalLogin .content-icon-main {
    position: absolute;
    border-radius: 50%;
    background: red;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    right: 0;
    top: -25px;
    box-shadow: 0em 0em 1px 2px #ffffff;
}
#modalLogin .content-icon-main i {
    font-size: 20px;
    color: white;
}
#modalLogin .modal-title {
    text-transform: uppercase;
    color: var(--text-primary);
}
#modalLogin .modal-header button.close {
    color: var(--text-primary);
    opacity: 1;
    transition: transform 0.2s linear;
}
#modalLogin .modal-header button.close:focus {
    outline: 0;
}
#modalLogin .modal-header button.close:hover {
    transform: scale(1.2);
}
#modalLogin .modal-body {
    padding: 2rem;
}
#modalLogin .modal-body .form-group{
    margin-bottom: 2rem;
}
#modalLogin .modal-body .icon-label {
    font-size: 35px;
    color: #555555;
}
#modalLogin .modal-body input.form-control  {
    border: 0;
    border-bottom: 2px solid #b0b0b0;
    border-radius: 0;
    padding: 0;
    height: 30px;
}
#modalLogin .modal-body input.form-control::placeholder {
    color: #b0b0b0;
}
#modalLogin .modal-body button {
    text-transform: uppercase;
}
#modalLogin .modal-footer {
    padding-left: 2rem;
    padding-right: 2rem;
}
#modalLogin .modal-footer a{
    color: gray;
}
/* Card Gallery */

.gallery-card {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.gallery-card:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--background-primary);
}

.gallery-card .img-gallery {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform .5s linear;
}

.gallery-card .content-title-gallery {
    padding: 0.5rem 1rem 0.3rem 1rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.gallery-card .content-description {
    position: absolute;
    right: 0;
    left: 0;
    background: var(--background-transparent);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    bottom: -100px;
    opacity: 0;
    transition: 1s;
}

.gallery-card .limit-content {
    display: block;
    position: relative;
    overflow: hidden;
}

/* Card Catalog */
.catalog-card {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.catalog-card:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--background-primary);
}
.catalog-card .content-title-catalog {
    padding: 0.5rem 1rem 0.3rem 1rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.catalog-card .limit-content {
    position: relative;
    overflow: hidden;
}
.catalog-card .img-catalog {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform .5s linear;
}
.catalog-card .background-buttons {
    position: absolute;    
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: 1s;
}
.catalog-card .button-catalog {
    height: 40px;
    width: 40px;
    background: var(--background-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: 0.5s;
}
.catalog-card .content-description {
    position: absolute;  
    right: 0;
    left: 0;
    background: var(--background-transparent);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    bottom: -100px;
    opacity: 0;
    transition: 1s;
}

/* Card Live */
.live-card {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.live-card:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--background-primary);
}
.live-card:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--background-primary);
}
.live-card .content-title-live {
    padding: 0.5rem 1rem 0.3rem 1rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.live-card .limit-content {
    position: relative;
    overflow: hidden;
}
.live-card .img-catalog {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform .5s linear;
}
.live-card .content-img {
    position: relative;
}
.live-card .content-img:after {
    background-color: #8080804a;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
}
.live-card .content-description {
    position: absolute;  
    right: 0;
    left: 0;
    background: var(--background-transparent);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    bottom: -100px;
    opacity: 0;
    transition: 1s;
}
.live-card .content-detail {
    padding: 1rem;
}
.live-card .content-detail .content-date {
    font-size: 14px;
    color: #545454;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.live-card .links {
    color: var(--background-primary);
}
@media (max-width: 575px) {
    .gallery-card .content-description {
        opacity: 1;
        bottom: 0;
        background: var(--background-transparent-movil);
    }
    .catalog-card .background-buttons {
        opacity: 1;
    }
    .catalog-card .content-description {
        opacity: 1;
        bottom: 0;
        background: var(--background-transparent-movil);
    }
    .live-card .content-description {
        opacity: 1;
        bottom: 0;
        background: var(--background-transparent-movil);
    }
}
@media (min-width: 576px) {
    .gallery-card:hover .img-gallery {
        transform: scale(1.2);
    }
    .gallery-card:hover .content-description {
        opacity: 1;
        bottom: 0;
    }
    .catalog-card:hover .img-catalog {
        transform: scale(1.2);
    }
    .catalog-card:hover .background-buttons {
        opacity: 1;
        background-color: #8080804a;
    }
    .catalog-card .button-catalog:hover {
        transform: scale(1.2);
    }
    .catalog-card:hover .content-description {
        opacity: 1;
        bottom: 0;
    }
    .live-card:hover .img-catalog {
        transform: scale(1.2);
    }
    .live-card:hover .content-img:after {
        opacity: 1;
    }
    .live-card:hover .content-description {
        opacity: 1;
        bottom: 0;
    }
}

/* gallery */
#sourceImgOverlay{
	z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
}

.permanentSquare{
	position:absolute;
	background: rgb(0 0 0 / 18%);
	border: 2px solid var(--background-primary);
	z-index: 8;
}

.tagTitle{
	background: var(--background-primary);
    border: 2px solid var(--background-primary);
    color: var(--text-primary);
    width: 100%;
    position: absolute;
    top: -25px;
    left: -2px;
    text-align: center;
    font-size: 15px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.editTag{
	position: absolute;
    right: -45px;
    bottom: calc(50% + 20px);
    display: none;
}

.deleteTag{
	position: absolute;
    right: -45px;
    bottom: calc(50% - 20px);
    display: none;
}
.page-inner-container{
    padding-left: 2rem;
    padding-right: 2rem;
}

.tagButtonsContainer{
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: all .4s ease;
    transform: translate3d(0,15px,1px);
    background: var(--background-primary);
    width: 100%;
    opacity: 0;
    display: flex;
    justify-content: center;
    z-index: 20;
}

.tagContainer{
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}

.permanentSquare:hover .tagContainer .tagButtonsContainer{
    opacity: 0.9;
    transform: translate3d(0,0,1px);
}

.tagButtonsContainer:hover{
    background: var(--background-secondary);
    display: flex;
    justify-content: center;
}

.tagButtonsContainer button, .tagButtonsContainer a{
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.tagUrl{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.card-tags{
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 1);
    border-radius: 8px;
    overflow: hidden;
    transition: all .075s ease-out;
    transform-style: preserve-3d;
    justify-content: center;
}

.card-tags .link-tag{
    transition: all .25s ease-out;
    text-decoration: none;
}

.card-tags .img-tag {
    pointer-events: none;
    transition: all .2s ease-out;
    width: 100%;
    max-height: 600px;
    background: rgba(255, 255, 255, 1);
}

.card-tags .content-tag-img {
    position: relative;
    overflow: hidden;
    height: auto;
}

.galleryListName{
    text-align: center;
    padding-top: 12px;
    border-top: 12px solid var(--background-primary);
    margin-bottom: 5px;
    margin-top: 12px;
}

.list-gallery-description{
    letter-spacing: .005em;
    line-height: 27px;
    font-size: 14px;
}

.listGalleryImage{
    max-width: 100%;
}

.popover-header,.popover-header:empty + .popover-body{
    text-align: center;
    font-size: 7px;
    padding: 5px;
    max-width: 190px;
    font-weight: 700;
}

@media (min-width: 576px) {
    .popover-header,.popover-header:empty + .popover-body{
        font-size: 14px;
    }
}

.popover-header{
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: unset;
}

.popover-body{
    text-align: center;
    font-weight: 500;
}

.menu-dropdown:hover .dropdown-menu{
    display: block;
    margin-top: 0;
}

.custom-file-label-es::after {
    content: "Subir" !important;
}

.popover{
    z-index: 10;
}

.not-italic {
    font-style: normal !important;
}

.contact-social-network {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.contact-social-network a {
    color: #c4c4c4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.contact-social-network a:hover {
    background-color: #333;
    color: #fff;
    text-decoration: none;
}

.contact-social-network a.social-facebook {
    color: var(--text-facebook);
}

.contact-social-network a:hover.social-facebook {
    background-color: var(--text-facebook);
    color: #fff;
}

.contact-social-network a.social-twitter {
    color: var(--text-twitter);
}

.contact-social-network a:hover.social-twitter {
    background-color: var(--text-twitter);
    color: #fff;
}

.contact-social-network a.social-instagram {
    color: var(--text-instagram);
}

.contact-social-network a:hover.social-instagram {
    background-color: var(--text-instagram);
    color: #fff;
}

.contact-social-network a.social-youtube {
    color: var(--text-youtube);
}

.contact-social-network a:hover.social-youtube {
    background-color: var(--text-youtube);
    color: #fff;
}

.contact-social-network a.social-whatsapp {
    color: var(--text-whatsapp);
}

.contact-social-network a:hover.social-whatsapp {
    background-color: var(--text-whatsapp);
    color: #fff;
}

.contact-social-network a.social-pinterest {
    color: var(--text-pinterest);
}

.contact-social-network a:hover.social-pinterest {
    background-color: var(--text-pinterest);
    color: #fff;
}

.whitespace-pre {
    white-space: pre;
}

.whitespace-break-spaces {
    white-space: break-spaces;
}

.block-sucursal {
    padding: 0 .8em;
    max-height: 300px;
    overflow-y: auto;
}

.block-sucursal > *	{
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #c1c1c1;
    padding-bottom: 5px;
    margin-bottom: 1em;
}

.btn-secondary-deshopstore {
    color: #fff;
    background-color: #ff5e00;
    border-color: #ff5e00;
}

.btn-secondary-deshopstore:hover {
    color: #fff;
    background-color: #e65500;
    border-color: #e65500;
}

.btn-secondary-deshopstore:focus,
.btn-secondary-deshopstore.focus {
    box-shadow: 0 0 0 0.2rem #ff8e4d;
}

.btn-secondary-deshopstore.disabled,
.btn-secondary-deshopstore:disabled {
    color: #fff;
    background-color: #ff5e00;
    border-color: #ff5e00;
}

.btn-secondary-deshopstore:not(:disabled):not(.disabled):active,
.btn-secondary-deshopstore:not(:disabled):not(.disabled).active,
.show > .btn-secondary-deshopstore.dropdown-toggle {
    color: #fff;
    background-color: #e65500;
    border-color: #e65500;
}

.btn-secondary-deshopstore:not(:disabled):not(.disabled):active:focus,
.btn-secondary-deshopstore:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary-deshopstore.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #ff8e4d;
}

.w-25px {
    height: 25px;
    width: 25px;
    object-fit: contain;
    object-position: center;
}

.img-mw-100 {
    max-width: 100%;
    height: auto;
    max-height: 100px;
}

.bg-invoice{
    background-color: #cccccc;
}

.img-evidencia img {
    height: auto;
    max-width: 100%;
}

.fz-13-middle {
    font-size: 13px !important;
    vertical-align: middle !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

/* Start Calendar styles */
.calendar-stores .fc-toolbar {
    justify-content: center!important;
    flex-wrap: wrap;
    gap: 10px;
}
.calendar-stores .fc-toolbar-title {
    font-size: 18px!important;
    font-weight: bold;
    text-transform: uppercase;
}
.calendar-stores thead {
    background: #e9ecee;
    font-size: 13px;
    text-transform: uppercase;
}
.calendar-stores .fc-timegrid-slot-label-frame {
    font-size: 13px;
}
.calendar-stores .fc-button-primary {
    font-size: 14px!important;
    padding: 2px 6px!important;
}
@media (min-width: 768px) {
    .calendar-stores .fc-toolbar {
        justify-content: space-between!important;
    }
    .calendar-stores .fc-toolbar-title {
        font-size: 28px!important;
    }
    .calendar-stores thead {
        font-size: 16px;
    }
    .calendar-stores .fc-timegrid-slot-label-frame {
        font-size: 16px;
    }
    .calendar-stores .fc-button-primary {
        font-size: 16px!important;
        padding: 4px 10px!important;
    }
}
/* End Calendar styles */

/* Start service styles */
.title-legend {
    font-weight: 500;
    text-align: left;
    font-size: 14px;
}
.schedule-list-legend {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 20px;
}
.schedule-list-legend li {
    margin-bottom: 10px;
}
.schedule-list-legend .text-schedule {
    font-size: 14px;
    line-height: 15px;
}
.group-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rectangle {
    height: 18px;
    min-width: 40px;
    border-radius: 3px;
}
.rectangle.available {
    background-color: #2cba00;
}
.rectangle.no-available {
    background-color: red;
}
/* End service styles */

/* Start blog styles */
.blog-card.card-home {
    position: relative;
}
.blog-content-img {
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-content-img.column {
    min-height: 103px;
    height: auto;
}
.blog-card .background-img {
    transition: opacity .3s,transform .3s;
}
.blog-content-img:hover .background-img {
    background: var(--background-primary);
    transform: scale(1.1);
}
.blog-img-sheet {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}
.blog-img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    transition: opacity .3s,transform .3s;
}
.blog-content-img:hover .blog-img {
    opacity: 0.9;
}

.blog-date {
    background-color: var(--background-primary);
    color: var(--text-primary);
    min-width: 73px;
    min-height: 73px;
    font-size: 16px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s linear 0s;
    -moz-transition: all .3s linear 0s;
    -ms-transition: all .3s linear 0s;
    -o-transition: all .3s linear 0s;
    transition: all .3s linear 0s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.card-home .blog-date:before {
    content: "";
    background: var(--text-primary);
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    float: left;
    border-radius: 50%;
    -webkit-transition: all .3s linear 0s;
    -moz-transition: all .3s linear 0s;
    -ms-transition: all .3s linear 0s;
    -o-transition: all .3s linear 0s;
    transition: all .3s linear 0s;
}
.card-home:hover .blog-date:before {
    width: 73px;
    height: 73px;
    top: 0;
    left: 0;
    opacity: 1;
}
.card-home .blog-date{
    position: absolute;
    top: 15px;
    left: 15px;
}

.card-list .blog-date, .section-blog-post .blog-date {
    margin-right: 20px;
}

.blog-date-day {
    font-weight: bold;
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 7px;
}
.blog-date-month {
    font-style: italic;
    line-height: 14px;
}
.card-home:hover .blog-date .blog-date-day, .card-home:hover .blog-date .blog-date-month {    
    color: var(--background-primary);
    z-index: 2;
}

.blog-header {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.blog-header h4{
    margin: 0;
}

a.blog-title {
    text-decoration: none;
}
.blog-title {
    text-transform: uppercase;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    transition: all .3s 0s ease;
}
.subtitle {
    font-size: 20px;
    margin-bottom: 25px;
}
.blog-title2 {
    color: var(--background-primary);
    margin-top: 6px;
    margin-bottom: 0;
    text-transform: capitalize;
}
.card-home .blog-title {
    color: var(--background-primary);
}

a.blog-title:hover {
    color: var(--background-primary);
}
.card-home .blog-title:hover {
    color: #333;
}
.blog-text {
    font-weight: 300;
    color: #777;
}
.blog-card .blog-text {
    margin-top: 15px;
    margin-bottom: 0;
}
.card-list .blog-text {
    margin-top: 25px;
}
.tag-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.line-divider {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid #e5e5e5;
}

.nav-custom-blog .nav {
    border-bottom: 1px solid var(--background-primary);
}
.nav-custom-blog .nav-link {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 15px;
    color: rgba(56, 68, 79, 1);
    padding: 6px 10px;
    border-bottom: 1px solid transparent;
}
.nav-custom-blog .nav-item.active {
    border-bottom: 2px solid var(--background-primary);
}
.nav-custom-blog .tab-content {
    padding-top: 15px;
}

.swiper-custom-blog .swiper-button-next, .swiper-custom-blog .swiper-button-prev {
    width: 25px;
    height: 25px;
    background-color: var(--background-primary);
    color: var(--text-primary);
    text-shadow: 1px 1px #585858;
    top: -27px;
}
.swiper-custom-blog .swiper-button-next:hover, .swiper-custom-blog .swiper-button-prev:hover {
    background-color: var(--background-primary);
    color: var(--text-primary);
}
.swiper-custom-blog .swiper-button-next:after, .swiper-custom-blog .swiper-button-prev:after {
    font-family: "Font Awesome 6 Free"!important;
    font-weight: 900;
    font-size: 15px!important;
}
.swiper-custom-blog .swiper-button-prev {  
    left: auto;
    right: 26px;
}
.swiper-custom-blog .swiper-button-next {
    left: auto;
    right: 0;
}
.swiper-custom-blog .swiper-button-prev:after {  
    content: "\f060"!important;
}
.swiper-custom-blog .swiper-button-next:after {
    content: "\f061"!important;
}
.img-gallery-blog {
    width: 100%;
    height: 80px;
    object-fit: contain;
    border: 1px solid #cfcfcf;
}

.max-w-200px {
    max-width: 200px;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .img-gallery-blog {
        height: 100px;
    }
    .line-divider-left {
        border-left: 1px solid #e5e5e5;
    }
}
/* End blog styles */
#html-content img {
    max-width: 100%!important;
    height: auto;
}

/* Start styles - Button register demo template */
#btn-register-template-demo {
    position: fixed;
    bottom: 115px;
    left: 25px;
    z-index: 99999;
}
.btn-deshop-register {
    color: #fff;
    background-color: var(--color-deshop-primary);
    border-color: var(--color-deshop-primary);
    max-width: 160px;
    white-space: break-spaces;
    font-size: 13px;
    box-shadow: 1px 1px 4px rgb(60 60 60 / 40%);
    transition: all .5s;
}
.btn-deshop-register:hover {
    background-color: var(--color-deshop-primary);
    border-color: var(--color-deshop-primary);
    box-shadow: 0 0 11px 2px #ff9d00;
}
/* End styles - Button register demo template */

/* Start description styles */
#section-description #myTabTitle {
    gap: 2px;
}
#section-description .nav-link {
    font-size: inherit;
    font-weight: normal;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: black;
    background: #dee2e680;
}
#section-description .nav-link:hover {
    background: #dee2e6;
}
#section-description .nav-link.active {
    background-color: #fff;
    border-color: #dee2e6;
    font-weight: bold;
    pointer-events: none;
}
#section-description #myTabContent {
    padding: 15px;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
#section-description #myTabContent .tab-pane.active {
    white-space: pre-line;
}
@media (max-width: 576px) {
    #section-description #myTabTitle {
        flex-direction: column;
    }
    #section-description .nav-link {
        border: 1px solid #dee2e6;
    }
}

/* End description styles */

@keyframes spin {
    from {
        transform:rotate(0)
    }
    to {
        transform:rotate(360deg)
    }
}

.btn-whatsapp {
    color: #fff;
    background-color: #075E54;
    border-color: #075E54;
}

.btn-whatsapp:hover {
    color: #fff;
    background-color: #128C7E;
    border-color: #128C7E;
}

.btn-whatsapp:focus, .btn-whatsapp.focus {
    color: #fff;
    background-color: #128C7E;
    border-color: #128C7E;
    box-shadow: 0 0 0 0.2rem rgba(18, 140, 126, 0.5);
}

.btn-whatsapp.disabled, .btn-whatsapp:disabled {
    color: #fff;
    background-color: #075E54;
    border-color: #075E54;
}

.btn-whatsapp:not(:disabled):not(.disabled):active,
.btn-whatsapp:not(:disabled):not(.disabled).active,
.show > .btn-whatsapp.dropdown-toggle {
    color: #fff;
    background-color: #128C7E;
    border-color: #128C7E;
}

.btn-whatsapp:not(:disabled):not(.disabled):active:focus,
.btn-whatsapp:not(:disabled):not(.disabled).active:focus,
.show > .btn-whatsapp.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 140, 126, 0.5);
}

.is-loading:after {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent;
    border: 3px solid #e5e2e2;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: 1s spin linear infinite;
}
  
.is-loading {
    position: relative;
    color: transparent !important;
}
  
.is-loading > * {
    opacity: 0.2 !important;
}
  
.is-loading:after {
    position: absolute;
    top: calc(50% - 1.5rem/2);
    left: calc(50% - 1.5rem/2);
    content: '';
}
  
.is-loading-lg:after {
    top: calc(50% - 2rem/2);
    left: calc(50% - 2rem/2);
}
  
.is-loading-sm:after {
    top: calc(50% - 1rem/2);
    left: calc(50% - 1rem/2);
}
  
.is-loading-lg:after {
    width: 2rem;
    height: 2rem;
    border-width: 5px;
}
  
.is-loading-sm:after {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}
  
.is-loading-primary:after,
.is-loading-secondary:after,
.is-loading-info:after,
.is-loading-success:after,
.is-loading-warning:after,
.is-loading-danger:after {
    border-bottom-color: transparent !important;
}
  
.btn-primary.is-loading:after,
.btn-secondary.is-loading:after,
.btn-info.is-loading:after,
.btn-success.is-loading:after,
.btn-warning.is-loading:after,
.btn-danger.is-loading:after {
    border-color: #fff;
}