* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
}

.ct-font {
    font-family: "Crimson Text", serif;
}

.orange-txt {
    color: #E86138;
}

.a-btt-o {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-family: Helvetica Neue, Arial, sans-serif;
    background-color: #E86138;
    border: 1px solid #E86138;
    transition: 300ms;
}

.a-btt-o:hover {
    color: rgba(255, 255, 255);
    background-color: rgb(170, 67, 43);
    border: 1px solid rgb(170, 67, 43);
}

.a-btt-g {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-family: Helvetica Neue, Arial, sans-serif;
    background-color: #315d55;
    border: 1px solid #315d55;
    transition: 300ms;
}

.a-btt-g:hover {
    color: rgba(255, 255, 255);
    background-color: #23423b;
    border: 1px solid #23423b;
}

.a-link {
    text-decoration: underline;
    color: #E86138;
    font-family: Helvetica Neue, Arial, sans-serif;
}

.a-btt-o-alt {
    text-decoration: none;
    color: #E86138;
    font-family: Helvetica Neue, Arial, sans-serif;
    border: 1px solid #E86138;
    transition: 300ms;
}

.a-btt-o-alt:hover {
    color: #fff;
    background-color: #E86138;
}

.a-btt-w {
    text-decoration: none;
    color: #fff;
    font-family: Helvetica Neue, Arial, sans-serif;
    border: 1px solid #fff;
    transition: 300ms;
}

.a-btt-w:hover {
    color: #00504A;
    background-color: #fff;
}

/* Modal thanks popup */
#modal-thanks-wrapper {
    display: none;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: Helvetica Neue, Arial, sans-serif;
    color: #004540;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

#modal-thanks-wrapper #modal-thanks-header {
    align-self: flex-end;
}

#modal-thanks-wrapper #modal-thanks-header .f-btt-close {
    cursor: pointer;
    margin-right: 25px;
    font-size: 34px;
    line-height: unset;
    color: #E8E7DB;
    transition: 300ms;
}

#modal-thanks-wrapper #modal-thanks-header .f-btt-close:hover {
    color: #E86138;
}

#modal-thanks-wrapper #modal-thanks-content {
    width: calc(100% - 60px);
    height: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#modal-thanks-wrapper #modal-thanks-content #modal-thanks-prompt {
    width: fit-content;
    height: fit-content;
    max-width: 580px;
    padding: 20px 24px;
    margin: auto 0;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
}

#modal-thanks-wrapper #modal-thanks-content button {
    padding: 16px 21px;
    font-size: 16px;
    border-radius: 15px;
}