<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    --pf-color-body-background: #f0f0f0;
    --pf-color-button-primary-hover: #006fdc;
    --pf-color-button-primary: #1089ff;
    --pf-color-button-text: #fff;
    --pf-color-check-ok: #21b36f;
    --pf-color-input-addon-background: #f0f0f0;
    --pf-color-primary: #1089ff;
    --pf-color-text-dark: #000;
    --pf-color-text-light: #fff;
    --pf-color-validation-warning: #ff8b10;
    --pf-color-wrapper-background: #fff;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--pf-color-body-background);
    font-family: Segoe UI Light;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.8;
    margin: 0;
}

main {
    display: flow-root;
    margin-left: auto;
    margin-right: auto;
    padding: 11vh 0;
}

main #booking-form-payments-credit-card-details {
    margin: 0 !important;
    padding: 20px 0 0 0 !important;
}

main img {
    width: 50px;
}

.wrapper {
    background-color: var(--pf-color-wrapper-background);
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    display: flex;
    width: 100%;
}

.no-gutters {
    padding: 0;
}

.form-wrap {
    margin-top: 0;
    padding: 40px;
}

.form-wrap h3 {
    color: var(--pf-color-text-dark);
    font-size: 30px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin-top: -11px;
}

.finish-wrap {
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.finish-wrap i {
    color: var(--pf-color-check-ok);
    font-size: 100px;
}

.finish-wrap h3 {
    font-size: 40px;
}

.finish-wrap p {
    font-size: 35px;
}

@keyframes confetti {
    0% { transform: translateY(-10vh) rotateZ(15deg); }
    10% { transform: rotateZ(0deg); }
    20% { transform: rotateZ(15deg); }
    100% { transform: translateY(100vh) translateX(50px) rotateZ(105deg); }
}

.confetti-piece {
    animation: confetti 5s linear;
    background: red;
    height: 20px;
    left: 15%;
    position: absolute;
    top: -20px;
    width: 10px;
}

.confetti-piece:nth-child(2n) {color: cornflowerblue;
    animation-delay: -1.3s;
    background: blue;
    left: 20%;
    /* Ajusta el valor de left para cada pieza de confeti */
}

.confetti-piece:nth-child(3n) {
    animation-delay: -1.8s;
    background: yellow;
    left: 50%;
}

.confetti-piece:nth-child(4n) {
    background: green;
    animation-delay: -2.5s;
    left: 60%;
}

.confetti-piece:nth-child(5n) {
    background: orange;
    animation-delay: -2.4s;
    left: 35%;
}

.confetti-piece:nth-child(6n) {
    background: olive;
    animation-delay: -0.8s;
    left: 30%;
}

.confetti-piece:nth-child(7n) {
    background: black;
    animation-delay: -2.6s;
    left: 23%;
}

.confetti-piece:nth-child(4n) {
    background: violet;
    animation-delay: -1.6s;
    left: 43%;
}

#amount-error,
#email-error,
#name-error,
#reference-number-error {
    color: var(--pf-color-validation-warning);
    display: flex;
    font-weight: bold;
    justify-content: end;
    margin-bottom: -29px;
    position: absolute;
    top: 50px;
    width: 100%;
}

#payment-form .form-control {
    font-size: 16px;
}

.input-group {
    margin-bottom: 30px;
}

.check-group  {
    margin-top: -10px;
    margin-bottom: 15px;
    text-align: center;
    white-space: nowrap;
}

.check-group input {
    vertical-align: middle;
}

.input-group-text {
    background-color: var(--pf-color-input-addon-background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: none;
    border-radius: 2px;
    justify-content: center;
    min-width: 50px;
}

.form-control {
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--pf-color-text-dark);
    font-size: 14px;
    height: 52px;
}

.check-passed {
    color: var(--pf-color-check-ok);
    margin-top: 50px;
    position: absolute;
    right: 0;
}

#check-amount,
#check-email,
#check-name,
#check-reference-number {
    display: none;
}

.btn {
    border-radius: 5px;
    border-width: 1px;
    box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    padding: 15px;
    position: relative;
    transition: 0.3s;
}

.btn:hover,
.btn:active,
.btn:focus {
    box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22);
}

.btn.btn-primary {
    background-color: var(--pf-color-button-primary);
    border-color: var(--pf-color-primary);
    color: var(--pf-color-button-text);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: var(--pf-color-button-primary-hover);
    border-color: var(--pf-color-primary-hover);
}

.info-wrap-container {
    padding-right: 0;
}

.info-wrap {
    background-color: var(--pf-color-primary);
    border-radius: 5px;
    color: var(--pf-color-text-light);
    min-height: 695px;
    margin-bottom: -20px;
    margin-top: -20px;
    padding: 50px;
}

.info-wrap .dbox {
    display: flex;
    margin-bottom: 35px;
    width: 100%;
}

.info-wrap .dbox .icon {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.info-wrap .dbox .icon i {
    font-size: 20px;
}

.info-wrap .dbox .text {
    align-items: center;
    display: flex;
    padding-left: 16px;
    width: calc(100% - 50px);
}

.dropdown-toggle::after {
    content: none;
}

.info-wrap .dbox p {
    color: var(--pf-color-text-light);
    font-size: 19px;
    margin-bottom: 0;
}

.info-wrap .dbox a {
    color: var(--pf-color-text-light);
    font-size: 19px;
    padding: 0;
    text-decoration: none;
}

.info-wrap .dbox a i {
    margin: 5px 3px;
}

.info-wrap .dbox a:focus,
.info-wrap .dbox a:hover {
    background-color: transparent !important;
}

.info-wrap .dbox .dropdown-menu a {
    background-color: var(--pf-color-text-light);
    color: var(--pf-color-text-dark);
    padding: 5px 20px;
}

.info-wrap .dbox .dropdown-menu a:hover {
    text-decoration: underline;
}

#generate-link {
    display: flex;
    font-size: 14px;
    justify-content: center;
    cursor: pointer;
}

.recaptcha-group {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

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

@media (max-width: 1138px) {
    main {
        padding: 4vh 0;
    }
}

@media (max-width: 1024px) {
    main {
        padding: 7vh 0;
    }
}

@media (max-width: 991px) {
    main {
        padding: 3vh 0;
    }

    .wrapper {
        display: block;
    }

    .contact-data {
        display: flex;
    }

    .form-wrap {
        margin: 0;
    }

    .info-wrap {
        border-radius: 0;
        display: flow;
        min-height: 0;
        padding: 20px;
    }

    .info-wrap-container {
        margin-top: 20px;
        padding: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .info-wrap .dbox a,
    .info-wrap .dbox p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .contact-data {
        display: block;
    }

    .check-group {
        margin-top: 0;
        text-align: left;
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .btn {
        font-size: 18px;
        padding: 10px;
    }

    main {
        margin: 0 -15px;
        padding: 0;
    }

    .form-wrap {
        margin: 0;
        padding: 20px;
    }

    .form-wrap h3 {
        font-size: 22px;
        letter-spacing: 0;
    }

    #payment-form {
        padding: 0 0 20px 0;
    }

    .info-wrap .dbox a,
    .info-wrap .dbox p {
        font-size: 17px;
    }
}

@media (max-width: 375px) {
    .btn {
        font-size: 16px;
    }

    .form-wrap h3 {
        font-size: 20px;
    }

    .info-wrap .dbox a,
    .info-wrap .dbox p {
        font-size: 15px;
    }

    .company-info {
        font-size: 14px;
    }

    #amount-error,
    #email-error,
    #name-error,
    #reference-number-error {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .form-wrap h3 {
        font-size: 17px;
    }

    #amount-error,
    #email-error,
    #name-error,
    #reference-number-error {
        font-size: 12px;
    }
}</pre></body></html>