@import url('https://fonts.cdnfonts.com/css/buda');
@import url('https://fonts.cdnfonts.com/css/thasadith');

*,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
}

.woocommerce form .form-row .input-text, .woocommerce-page form .form-row .input-text{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.woocommerce-billing-fields h3, .woocommerce-additional-fields h3, #order_review_heading{
    color: #8a1fa2;
    font-family: 'Buda', cursive;
}

.woocommerce-terms-and-conditions-wrapper{
    display: none;
}

/*
 * animations * */
@keyframes floating {
    from {
        transform: translate(0, 0px)
    }

    65% {
        transform: translate(0, 15px)
    }

    to {
        transform: translate(0, 0px)
    }
}

@keyframes floatingNew {
    from {
        transform: translate(0, 0px)
    }

    85% {
        transform: translate(0, 5px)
    }

    to {
        transform: translate(0, 0px)
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body {
    background: url("../images/background-home.jpg");
    background-size: cover;
    background-repeat: repeat;
}

header {
    max-width: 60%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

header img {
    max-width: 290px;
}

.header-container {
    flex-direction: column;
    align-items: center;
}

.header-container a.back {
    text-decoration: none;
    color: #8a1fa2;
    margin-top: 30px;
    display: block;
    font-family: 'Buda', cursive;
    font-size: 17px;
}

.header-container a.back img {
    width: 22px;
    position: relative;
    top: -2px;
}

.menu-responsive {
    display: none;
    position: absolute;
    top: 35px;
    width: 100%;
    z-index: 2;
}

.menu-responsive .icon-menu {
    width: 50px;
    margin-left: auto;
    top: 25px;
    position: relative;
    right: 9px;
    z-index: 10;
}

.menu-responsive .icon-menu img {
    width: 100%;
}

.menu-responsive .items-menu {
    background: #6c39a5d1;
    top: 0px;
    position: absolute;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    transition: all ease-in-out .4s;
    backdrop-filter: blur(3px);
}

.items-menu--open {
    height: 100vh !important;
    transition: all ease-in-out .7s;
}

.menu-responsive .items-menu ul {
    margin: 0px;
    padding: 0px;
    padding-top: 75px;
}

.menu-responsive .items-menu ul li {
    list-style: none;
    margin-bottom: 12px;
    text-align: center;
}

.menu-responsive .items-menu ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 25px;
    font-family: 'Buda', cursive;
}

.menu-footer ul{
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-footer ul li {
    list-style: none;
    margin: 10px;
    margin-bottom: 0px;
}

.menu-footer ul li a{
    text-decoration: none;
    font-family: 'Buda', cursive;
    color: #6c0eb8;
    font-size: 17px;
}

.menu-footer--pages ul li a{
    color: #FFFFFF;
    text-shadow: 0 0 9px #470096;
}

.legal--home p{
    text-shadow: none !important;
}

.main {
    min-height: 70vh;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #8e69d5;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-1.is-active .line{
    background-color: #FFFFFF;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(3px) rotate(45deg);
    -ms-transform: translateY(3px) rotate(45deg);
    -o-transform: translateY(3px) rotate(45deg);
    transform: translateY(3px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

/*
 * section-sup-buttons * */
.section-sup-buttons {
    position: absolute;
    width: 100%;
    top: 0;
    animation-name: floatingNew;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.section-sup-buttons a {
    transition: transform .2s;
}

.section-sup-buttons a:hover {
    transform: scale(1.1);
}

.section-sup-buttons img {
    max-width: 200px;
}

/* 
 * section-intro * */
.section-intro {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.section-intro br{
    display: none;
}

.section-intro h1 {
    font-family: 'Buda', cursive;
    font-size: 40px;
    color: #8425AB;
    font-weight: bold;
}

.section-intro p {
    font-family: 'Thasadith', sans-serif;
    font-size: 22px;
    color: #8425AB;
}

/*
 * section-earths * */
.section-earths {
    margin-bottom: 100px;
}

.section-earths img {
    animation-name: floating;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.earth:hover a h2 {
    opacity: 1;
}

.earth a {
    text-decoration: none;
    text-align: center;
}

.earth a h2 {
    font-family: 'Buda', cursive;
    color: #FFFFFF;
    opacity: 0;
    transition: .8s;
    font-size: 40px;
    animation: fadeOut 0.3s;
    margin-top: 3px;
    padding-top: 28px;
}

.earth:last-child a p {
    color: #2334CC;
}

.earth a p {
    font-size: 23px;
    color: #8425AB;
    position: relative;
    top: 33px;
}

.earth--book a h2 {
    background: url("../images/back-book-button.png");
    background-repeat: no-repeat;
    background-position: center;
}

.earth--coaching a h2 {
    background: url("../images/back-coaching-button.png");
    background-repeat: no-repeat;
    background-position: center;
}

/*
 * section-content * */
.section-content {
    text-align: center;
    padding-top: 30px;
}

.section-content .content{
    max-width: 50%;
    width: 90%;
    margin: 0 auto 0 auto;
}

body.carrito .section-content .content, body.finalizar-compra .section-content .content{
    max-width: 90% !important;
}

.section-content>.container {
    background: #ffffffab;
    border-radius: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 8px 1px #00000021;
    max-width: 60%;
}

.section-content h1 {
    font-family: 'Buda', cursive;
    font-size: 21px;
    color: #a276c5;
    margin-bottom: 14px;
    font-weight: bold;
}

.section-content h2 {
    font-family: 'Buda', cursive;
    font-size: 30px;
    color: #8425AB;
    margin-bottom: 14px;
    font-weight: bold;
}

.section-content p {
    font-family: 'Thasadith', sans-serif;
    font-size: 17px;
    color: #8425AB;
    font-weight: bold;
    margin-bottom: 22px;
}

.section-content p strong{
    font-weight: bold;
}

.wc-block-featured-product__wrapper {
    max-width: 300px;
    padding-top: 23px;
    padding-bottom: 23px;
    margin: 0 auto 0 auto;
}

.wc-block-featured-product__wrapper img {
    object-fit: contain !important;
    height: 250px !important;
    margin-bottom: 20px !important;
}

.wp-element-button {
    background: #8425AB;
    padding: 7px 22px;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 19px;
    font-family: 'Buda', cursive;
    border-radius: 50px;
    transition: all ease-in-out .5s;
}

.wp-element-button:hover {
    opacity: .6;
    color: #FFFFFF;
    transition: all ease-in-out .5s;
}

span.woocommerce-Price-amount {
    font-size: 20px;
    color: #8425AB;
    font-family: 'Thasadith', sans-serif;
}

.background-dim__overlay {
    display: none;
}

.wc-block-featured-product__background-image {
    position: relative !important;
}

.wc-block-featured-product__title {
    margin-top: 12px;
    color: #8425AB !important;
    margin-bottom: 0px !important;
    padding: 0px !important;
    font-family: 'Buda', cursive;
}

.wp-block-button__link {
    background: #c98edd !important;
    padding: 10px 24px !important;
    border-radius: 60px !important;
    font-family: 'Buda', cursive;
    font-size: 21px;
    color: #6c0eb8 !important;
    font-weight: bold;
}

/*
 * ninja form * */
.nf-form-cont {
    max-width: 434px;
    margin: 35px auto 0 auto;
}

input,
select,
textarea {
    background: #FFFFFF !important;
    border: none !important;
    border-radius: 19px !important;
    box-shadow: 0px 0px 12px #12121229 !important;
    font-family: 'Buda', cursive;
    color: #000000 !important;
}

.nf-error.field-wrap .nf-field-element:after {
    border-radius: 30px !important;
    background: #cc5050 !important;
}


.nf-form-content .list-select-wrap .nf-field-element>div {
    background: transparent !important;
    border: none !important;
}

.nf-form-content label {
    font-size: 15px !important;
    color: #8425AB;
    text-shadow: 0 0 2px #ffffff6b;
    font-family: 'Thasadith', sans-serif;
    font-weight: bold !important;
}

.nf-error .nf-error-msg,
.nf-error-msg,
.ninja-forms-req-symbol {
    color: #cc5050 !important;
    font-size: 14px !important;
    font-family: 'Thasadith', sans-serif;
}

#ninja_forms_required_items,
.nf-field-container {
    margin-bottom: 15px !important;
}

.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
    background: #c98edd !important;
    padding: 10px 24px !important;
    border-radius: 60px !important;
    font-family: 'Buda', cursive;
    font-size: 21px;
    color: #6c0eb8 !important;
    font-weight: bold;
}

.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit]:hover {
    opacity: .5;
}

.nf-form-fields-required {
    display: none;
}

.wp-block-separator {
    background: none !important;
    border: none !important;
    margin-bottom: 50px;
}

.add_to_cart_inline {
    padding: 0px !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.add_to_cart_inline a {
    background: #FFFFFF !important;
    padding: 10px 24px !important;
    border-radius: 60px !important;
    font-family: 'Buda', cursive;
    font-size: 21px;
    color: #6c0eb8 !important;
    font-weight: bold !important;
    margin-top: 10px !important;
}

.wp-block-image {
    margin-top: 22px;
}

.wp-element-caption {
    font-family: 'Buda', cursive;
    font-size: 23px;
    color: #8425AB;
    font-weight: bold;
}

.woocommerce #content table.cart img,
.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img {
    width: 115px;
}

.woocommerce table.shop_table th {
    font-family: 'Buda', cursive;
    font-size: 18px;
    color: #8425AB;
}

.woocommerce-cart-form__cart-item a {
    font-family: 'Buda', cursive;
    font-size: 18px;
    color: #8425AB;
    text-decoration: none;
}

#coupon_code {
    width: 150px;
    padding: 0px 10px;
}

.woocommerce-notices-wrapper {
    opacity: .4;
}

.woocommerce-Price-amount {
    font-weight: bold;
}

.woocommerce-cart-form__cart-item .product-thumbnail a {
    cursor: default;
    pointer-events: none;
}

.added_to_cart {
    font-size: 20px;
    text-decoration: none;
    background: purple !important;
    padding: 1px 18px !important;
    color: #FFFFFF !important;
}

.woocommerce-message {
    border-radius: 50px;
}

/* 
 * footer * */
footer .legal {
    /* position: absolute; */
    padding-top: 30px;
    padding-bottom: 30px;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
}

.hola-mundo footer .legal p{
    color: #6c0eb8;
}

footer .legal p {
    font-size: 13px;
    color: #FFFFFF;
    text-shadow: 0 0 9px #470096;
}

.woocommerce .products ul, .woocommerce ul.products{
    align-items: center;
    justify-content: center;
    display: flex;
}

.woocommerce-page.columns-5 ul.products li.product, .woocommerce.columns-5 ul.products li.product{
    margin: 0px;
}

.nf-field-description{
    text-align: left;
    font-size: 12px;
    margin-bottom: 9px;
    margin-top: -8px;
}

/* .woocommerce-NoticeGroup-checkout{display: none;} */

.nf-field-description{
    color: #8425AB;
    font-size: 12px !important;
}

.select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: none !important;
}

.woocommerce-input-wrapper > strong, .select2-selection__rendered{
    background: #FFFFFF !important;
    border: none !important;
    border-radius: 19px !important;
    box-shadow: 0px 0px 12px #12121229 !important;
    font-family: 'Buda', cursive;
    color: #000000 !important;
    width: 100%;
    display: block;
    padding: 5px;
    text-align: left;
    padding-left: 10px;
}

#billing_state_field, #shipping_state_field{
    margin-bottom: 17px;
}

#ship-to-different-address span{
    color: #8a1fa2 !important;
    font-family: 'Buda', cursive !important;    
}

.woocommerce-shipping-totals td{
    color: #8a1fa2 !important;
    font-family: 'Buda', cursive !important;
}

.woocommerce ul#shipping_method li label{
    font-size: 20px;
    font-weight: bold;
}

/* #billing_state_field{
    display: none !important;
} */

.swastarkencl-wrapper{display: none;}

.cart-ico{
    position: absolute !important;
    top: 66px;
    bottom: 0;
    text-align: center;
    z-index: 20;
    left: 0 !important;
    width: 127px !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
}

.cart-ico span{
    color: #8a1fa2 !important;
    font-family: 'Buda', cursive !important;
}

.cart-ico-container{
    position: relative;
    max-width: 180px;
}

.cart-ico-container > img{
    position: absolute;
    /* position: absolute; */
    top: 0;
    bottom: 0;
    text-align: center;
    z-index: 10;
    left: 0;
}

.cart-ico img{
    width: 30px;
}

.section-sup-buttons a:hover{
    transform: none;
}

.carrito .cart-ico{
    display: none !important;
}

.message-checkout{
    background: #c06cff;
    padding: 7px;
    color: #FFF !important;
    font-weight: 500 !important;
}

.message-checkout strong{
    font-weight: bold;
}
