* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-text: #ffffff;
    --color-primary: #9846A2;
    --color-secound: hsl(262 75% 35%);
    --color-thrid: #623FA1;
    --color-thrid-hover: #6c5d8a;
    --color-primary-hover: #6c5d8a;
    --color-white-hover: rgba(255, 255, 255, 0.9);
    --color-white: #fff;
    --black-900: #000;
    --black-700: #222;
    --btn-call-to-action-bg: #9846A2;
    --btn-bg: rgba(255, 240, 255, 1);
    --btn-bg-filter: backdrop-filter: blur(10px);
    --btn-bg-transition: all 0.3s ease;
    --btn-bg-shadow: 2.1134300231933594px 3.698502779006958px 4.649546146392822px -1.0567150115966797px rgba(110, 76, 153, 1);
    --button-back-bg: #8E7AB5;
    --quiz-container-bg: rgba(70, 9, 114, 0.20999999344348907);
}

@keyframes glow-up {
    from {
        filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 0.5));
    }

    to {
        filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5));
    }
}

@keyframes load {
    from {
        width: 100%;
    }

    to {
        width: 0px;
    }
}

@keyframes pulse-animation {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@keyframes fadeIn {

    0%,
    50% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes progress-forward {
    0% {
        width: 0%;
    }

    25% {
        width: 50%;
    }

    50% {
        width: 75%;
    }

    75% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

a {
    color: initial;
    text-decoration: none;
}

button {
    cursor: pointer;
    background: initial;
    border: none;
}

li {
    list-style: none;
}

body {
    background: #e0e6f4;
}

body,
input,
button,
textarea,
select {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5 strong {
    font-weight: 600;
}

.container {
    margin: auto;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.title-h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 78px;
}

#page-wrapper {

    padding: 24px 16px;
    min-height: 100vh;
    max-height: -webkit-fill-available;
    position: relative;
}

.hide {
    visibility: hidden;
    height: 0;
    opacity: 0;
    display: none !important;
    overflow: hidden;
}

.glowUp {
    animation: glow-up 1s ease-in-out infinite alternate;
}

.btn-item {
    width: calc(15% - 10px);
    height: calc(15% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    background: #FFF0FF;
    border: 1px solid #B05ABB;
    color: #000;
    border-radius: 5px;
}

.list-itens .btn-item.active {
    box-shadow: 2.1134302616119385px 3.698502779006958px 4.6495466232299805px -1.0567151308059692px rgba(110, 76, 153, 1);
    border-color: rgba(176, 90, 187, 1);
    background-color: rgba(152, 70, 162, 1);
    color: #fff;
}

.btn-item:hover {
    background: var(--color-white-hover);
}

.loading-container {
    position: fixed;
    height: 100%;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    z-index: 9999;
}

.loading-container.initial {
    position: fixed;
    bottom: 0;
    left: 0;
}

.loading-container h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--quiz-container-bg);
}

.loading-container h3#btn-loading-initial {
    height: 35px;
}


.progress-fill {
    position: absolute;
    height: 100%;
    width: 0%;
    animation: progress-forward 2s infinite;
    background: linear-gradient(100deg,rgba(176, 90, 187, 1) 0%, rgba(255, 164, 125, 1) 100%);;
    border-radius: 30px;
}

body {
    background-image: url(../images/bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #251d39;
}

.background-image-sign {
    filter: brightness(20%);
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 0;
    z-index: -1;
}





.section-wrapper {
    min-height: 100vh;
    max-height: -webkit-fill-available;
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-content: center;
    flex-wrap: wrap;
}

.section-wrapper.container {
    max-width: 886px;
}

.section-wrapper .section-paragraph {
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 15px;
}

.section-alert-heading {
    background-color: rgba(152, 70, 162, 1);
    flex-shrink: 0;
    border-radius: 4.2864203453063965px;
    padding: 5.7152276039123535px 80px;
    font-size: 2.25rem;
    line-height: 1.2;
    animation: sparkle 2s infinite;
    font-weight: 700;
    margin-top: 30px;
}

.section-wrapper .section-form {
    box-shadow: 6px 11px 23.299999237060547px 8px rgba(0, 0, 0, 0.2199999988079071);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: var(--quiz-container-bg);
    border-color: rgba(241, 129, 255, 1);
    border-style: solid;
    border-width: 1px;
    border-radius: 16px;
}


.section-wrapper .section-form {


    flex-shrink: 0;
    width: 800px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;

    padding: 66px;
}

.date-sign-control {
    padding: 13.924168586730957px;
    flex-shrink: 0;
    border-color: rgba(176, 90, 187, 1);
    border-style: solid;
    border-width: 1px;
    border-radius: 12.53175163269043px;
    background-color: rgba(44, 25, 71, 0.5899999737739563);
}

.item-checkbox {
    display: flex;
    gap: 10px;
    align-items: center;
}

.section-life-categories .options-itens {
    max-width: 600px;
    gap: 15px;
    flex-wrap: wrap;
}

.section-life-categories .option-item.image-text {
    width: calc(50% - 8px);
    padding: 0;
}

.section-life-categories .option-item.image-text button.category-item-btn {
    width: 100%;
    background: #252b4c;
    padding: 25px;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-life-categories button.category-item-btn img {
    filter: invert(1);
    height: 80px;
}

.section-life-categories button.category-item-btn p {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 500;
    width: 80%;
}

.section-life-categories .options-itens .option-item .item-checkbox {
    width: 100%;
}

.options-itens .option-item .item-checkbox {
    gap: 5px;
}

.section-header-form {
    max-width: 886px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
    flex-direction: column;
    margin-bottom: 32px;
}

.steps-list {
    list-style: none;
    margin: 0 auto;
}

.steps-list li {
    float: left;
    background-color: #59477A;
    margin-left: 2px !important;
    width: 74px;
    height: 14px;
    border-radius: 3px;
    margin: 0 auto;
}

.step-active-1 .steps-list li:nth-child(1) {
    background: #B05ABB;
}

.step-active-2 .steps-list li:nth-child(2),
.step-active-2 .steps-list li:nth-child(1) {
    background: #B05ABB;
}

.step-active-3 .steps-list li:nth-child(3),
.step-active-3 .steps-list li:nth-child(2),
.step-active-3 .steps-list li:nth-child(1) {
    background: #B05ABB;
}

.step-active-4 .steps-list li:nth-child(4),
.step-active-4 .steps-list li:nth-child(3),
.step-active-4 .steps-list li:nth-child(2),
.step-active-4 .steps-list li:nth-child(1) {
    background: #B05ABB;
}

.step-active-5 .steps-list li:nth-child(5),
.step-active-5 .steps-list li:nth-child(4),
.step-active-5 .steps-list li:nth-child(3),
.step-active-5 .steps-list li:nth-child(2),
.step-active-5 .steps-list li:nth-child(1) {
    background: #B05ABB;
}

.step-active-6 .steps-list li:nth-child(6),
.step-active-6 .steps-list li:nth-child(5),
.step-active-6 .steps-list li:nth-child(4),
.step-active-6 .steps-list li:nth-child(3),
.step-active-6 .steps-list li:nth-child(2),
.step-active-6 .steps-list li:nth-child(1) {
    background: #B05ABB;
}

.step-active-7 .steps-list li:nth-child(7),
.step-active-7 .steps-list li:nth-child(6),
.step-active-7 .steps-list li:nth-child(5),
.step-active-7 .steps-list li:nth-child(4),
.step-active-7 .steps-list li:nth-child(3),
.step-active-7 .steps-list li:nth-child(2),
.step-active-7 .steps-list li:nth-child(1) {
    background: #B05ABB;
}

.step-active-8 .steps-list {
    display: none;
}

.section-life-categories h2 {
    font-size: 2.125rem !important;
}

.section-header-form h2.section-heading {
    display: block;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 10px;
}

p.section-subheading {
    font-size: 1.125rem;
    font-weight: 400;
    max-width: 768px;
    text-align: center;
    color: #fff;
    padding: 5px;
}



.section-wrapper .section-form .form-container {
    /* display: grid; */
    /* grid-template-rows: 1fr auto; */
    display: flex;
    flex-direction: column;
    min-height: 378px;
    gap: 25px;
    justify-content: center;
}

.section-form .form-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    flex-wrap: wrap;
}

.section-form .form-content.sing-moon-step-five,
.section-form .form-content.sing-moon-step-six {
    grid-template-rows: inherit;
}

.btns-modal-step-five {
    margin-top: -30px;
}


.square {
    width: 25px;
    height: 25px;
    border: 2px solid #9F9F9F;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.active .square span {
    display: block;
}

.square span {
    height: 20px;
    width: 20px;
}

.active .square{
    border-color:#FFF;
    background: var(--color-primary);
}
.active .square span {
    background: #FFF;
    padding: 2px;
    border: 2px solid var(--color-primary);
}
.circle {
    width: 20px;
    height: 20px;
    border: 2px solid #9F9F9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.active .circle span {
    display: block;
}

.circle span {
    height: 12px;
    width: 12px;
    line-height: 0;
    background: #9F9F9F;
    border-radius: 50%;
    display: none;
}

.civil-state-btn .state-control {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
    padding-left: 10px;
}

.form-content.sing-moon-step-eight .field-first-name {
    text-align: center;
    height: 100%;
    justify-content: center;
    align-items: center;

}

.sing-moon-step-eight .field-first-name .form-control {
    width: 100%;
}

.form-content.sing-moon-step-eight .field-first-name #first-name {
    margin: auto;
    margin-bottom: 2rem;
}

.form-content .btn-back::before {
    content: "";
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    background-image: url(../images/back.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 10px;
}

.step-title-container {
    display: flex;
}

.step-title-icon {
    width: 30px;
    height: 30px;
    background-image: url(../images/emojione-monotone_up-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 10px;
}

.form-content .btn-back {
    background: var(--color-thrid);
    color: #fff;
    padding: 10px 24px;
    margin: 50px auto auto auto;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    min-width: 100px;
    padding: 6px 15px 6px 45px;
    border-radius: 12px;
    position: relative;
}

.form-content .btn-back:hover,
.form-content .step-back:hover {
    background: var(--color-thrid-hover);
}

.btn-back .far {
    font-family: 'fontawesome';
    font-size: 1.25rem;
    margin-bottom: -4px;
}

.form-content h3.title-mobile {
    display: none;
}

.form-content h3+#box-header {
    color: #d1d5db;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 24px;
}

.form-content h3 {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
}



.form-button {
    text-align: center;
}

.form-button .button-form {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    background-color: var(--btn-call-to-action-bg);
    color: #FFF;
    width: 350px;
    border-radius: 6px;
    padding: 10px 30px;
    animation: pulse-animation 2s infinite;
    margin-bottom: 10px;
}

.form-button .button-form.btn-life-categories {
    margin-top: 25px;
}

.form-button .button-form:hover {
    background-color: var(--color-primary-hover);
    animation: shake 2s infinite;
}

.frame {
    font-style: normal;
    font-weight: 600;
    font-family: 'Poppins';
    line-height: 1.2;
    display: inline-block;
    text-align: center;
    font-size: 1.75rem;
    max-width: calc(100% - 32px);
    top: 30px;
}

.sign-buttons-container {
    display: grid;
    flex-wrap: wrap;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sign-buttons-container .button-sing {
    min-height: 80px;
    background: var(--btn-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--btn-bg-transition);
    box-shadow: var(--btn-bg-shadow);



    padding: 6.115698337554932px 12.231396675109863px 7.338837623596191px;
    flex-shrink: 0;
    border-color: rgba(176, 90, 187, 1);
    border-style: solid;
    border-width: 1.2231396436691284px;
    border-radius: 7.338837623596191px;

}

.sign-buttons-container .button-sing.active {


    box-shadow: 2.1134302616119385px 3.698502779006958px 4.6495466232299805px -1.0567151308059692px rgba(110, 76, 153, 1);
    border-color: rgba(176, 90, 187, 1);
    background-color: rgba(152, 70, 162, 1);
}

.sign-buttons-container .button-sing.active p {
    color: rgba(152, 70, 162, 1);
    background-color: #fff;
}

.active .button-sing-img img {
    filter: brightness(2.5);
}

.sign-buttons-container .button-sing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsl(262 83% 58% / 0.3);
    background: linear-gradient(135deg, hsl(244 58% 93% / 0.9), hsl(244 58% 93% / 0.95));
}

.sign-buttons-container .button-sing p {
    gap: 12.231396675109863px;
    display: flex;
    padding: 1.2231396436691284px 18.347097396850586px;
    align-items: center;
    flex-shrink: 0;
    border-radius: 4.892558574676514px;
    justify-content: center;
    background-color: rgba(152, 70, 162, 1);
}

.sign-buttons-container .button-sing img {
    height: 65px;
    margin-bottom: 6px;
}

.alert-modal.error {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: 4px auto;
    border-radius: 0px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px;
    background-color: rgb(206, 53, 44);
    color: rgb(255, 255, 255);
    width: 310px;
    cursor: pointer;
    min-height: 59.9297px;
    padding: 0px;
    list-style-type: none;
    z-index: 10000000;
}

.alert-modal.error .alert-mensage {
    font-size: 14px;
    font-weight: 400;
    font-family: open sans, sans-serif;
    color: #eee;
    text-align: center;
    padding: 1.25rem;
    width: auto;
    position: relative;
}

.alert-modal.error .alert-scroll {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 4px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.2;
    transition: all 100ms linear 0s;
    animation: load 2s linear;
}

.alert-modal.error .alert-scroll:hover {
    width: 100%;
}

.date-sign-control .date-header {
    text-align: center;
}

.date-sign-container {
    display: flex;
    gap: 15px;
}

.date-sign-container .date-sign-control {
    width: calc(50% - 7px);
}

.date-sign-control .date-list li {
    width: calc(15% - 10px);
    height: calc(15% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    background: #FFF0FF;
    border: 1px solid #B05ABB;
    color: #000;
    border-radius: 5px;
}

.date-sign-control .date-list li:hover {
    background: var(--color-white-hover);
    border-bottom: 3px solid var(--color-primary);
}

.date-sign-container .date-header {
    background: var(--color-primary);
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 10px;
}

.date-sign-container .date-header h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.date-sign-control .date-list li.active {
    box-shadow: 2.1134302616119385px 3.698502779006958px 4.6495466232299805px -1.0567151308059692px rgba(110, 76, 153, 1);
    border-color: rgba(176, 90, 187, 1);
    background-color: rgba(152, 70, 162, 1);
    color: #fff;
}

.section-form .decade-sign-container,
.section-form .years-sign-container {
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
}

.decade-sign-container ul {
    max-width: 600px;
    justify-content: center;
}

.years-sign-container ul {
    max-width: 600px;
    justify-content: center;
}

.list-itens {
    margin-top: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hours-birthdate-quest {
    /* display: grid; */
    /* grid-template-rows: auto 1fr; */
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.hours-birthdate-quest span,
.country-quest span {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    line-height: 1;

}

.buttons-control {
    display: flex;
    gap: 24px;
}

.btn-secound {
    width: 136px;
    height: 52px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 5px;
    color: #fff;
    background-color: var(--color-primary);
}

.btn-secound:hover {
    background-color: var(--color-primary-hover);
}

/* .btn-true{
      background-color: #43BF0D;
  }
  .btn-false{
      background-color: #EE4242;
  } */

.hours-birthdate-container {
    display: flex;
    flex-direction: column;
    /* display: grid;
    grid-template-rows: auto 1fr; */
    justify-items: center;
    height: 100%;
}

.hours-birthdate-container .title-hours-field {
    margin-bottom: 10px;
}

.hours-birthdate-container .title-hours-field h4 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.hours-birthdate-container .hours-fields span {
    font-size: 1.125rem;

    max-width: 700px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
}

.hours-birthdate-container .hours-fields {
    /* display: grid; */
    /* grid-template-rows: auto 1fr; */
    /* justify-items: center; */
    /* max-width: 100%; */
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-items: center;
}

.hours-birthdate-container .hours-fields input[type='time'] {
    border: none;
    font-size: 1.125rem;
    padding: 4px 10px;
    outline: none;
    border-radius: 5px;
    width: 116px;
    color: #000;
}

.hours-birthdate-container .field-control-hours {
    display: flex;
    gap: 10px;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.hours-birthdate-container .btn-hours-confirm {
    background: var(--color-primary);
    color: #fff;
    height: 55px;
    padding: 0px 18px;
    border-radius: 5px;
    animation: pulse-animation 2s infinite;
}

.hours-birthdate-container .btn-hours-confirm i {
    font-size: 1.5rem;
}

.hours-birthdate-container .btn-hours-confirm:hover {
    background: var(--color-primary-hover);
}

.sing-moon-loading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sing-moon-loading img {
    width: 170px;
}

.country-quest {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    width: 100%;
    justify-items: center;
    gap: inherit;
}

.country-quest .btns-modal-country {
    align-items: center;
}

.modal-wrapper-container {
    position: relative;
}

.modal-wrapper-container.active .modal-wrapper-list {
    display: flex;
}

.country-selector-container .country-modal {
    margin: auto;
    max-width: 220px;
}

.modal-wrapper-list {
    background-color: #222;
    max-width: 200px;
    width: 100%;
    flex-direction: column;
    position: absolute;
    margin-top: 2px;
    max-height: 150px;
    overflow-y: scroll;
    display: none;
}

.modal-wrapper-list.civil-status-list,
.modal-wrapper-list.gender-list {
    position: relative;
    left: calc(50% - 100px);
    margin-top: -5px;
}

.modal-wrapper-list::-webkit-scrollbar-thumb {
    background: #ccc;
    height: 90%;
}

.modal-wrapper-list::-webkit-scrollbar {
    width: 5px;
}

.modal-wrapper-head.country-modal-head {
    position: relative;
    margin-top: 40px;
}

.modal-wrapper-head .modal-wrapper-icons {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 1.25rem;
    cursor: pointer;
}

.modal-wrapper-container .modal-wrapper-icons .fa-chevron-down {
    transform: rotate(0deg);
    transition: 0.4s;
    color: #000;
}

.modal-wrapper-container.active .modal-wrapper-icons .fa-chevron-down {
    transform: rotate(180deg);
}

.modal-wrapper-list.gender-list {
    overflow: inherit;
}

.modal-wrapper-list li {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 14px 20px;
}

.modal-wrapper-list li.active {
    background-color: rgba(175, 53, 137, 0.9);
}

.modal-wrapper-list li:hover {
    background-color: var(--color-primary-hover);
}

.modal-wrapper-list li img {
    width: 25px;
    border: 1px solid #000;
}

.modal-wrapper-list li span {
    padding-left: 6px;
    font-weight: 500;
    font-size: 0.875rem;
}

.modal-wrapper-head {
    width: 100%;
    max-width: 220px;
    margin: auto;
    position: relative;
}

.modal-wrapper-head:before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    cursor: pointer;
}

.modal-wrapper-head input {
    width: 100%;
    background: var(--color-white);
    color: #000;
    border-radius: 5px;
    border: none;
    border-bottom: 3px solid var(--color-primary);
    cursor: pointer;
    padding: 10px 15px;
    text-transform: capitalize;
}

.modal-wrapper-head input::placeholder {
    color: #000;
}

.input-control {
    position: relative;
    display: contents;
}

.modal-wrapper-list.country-list {
    background-color: #222;
    border: 1px solid var(--color-primary);
    width: 200px;
    margin: -7px 10px 0;
    padding: 10px 0;
}

.modal-wrapper-list.country-list li {
    padding: 7px 20px;
}

.input-control .field-input {
    background-color: #fff;
    border-radius: 5px;
    border: none;
    border-bottom: 3px solid var(--color-primary);
    padding: 10px 15px;
    outline: none;
    color: #000;
}

.input-control .field-input[type="text"],
.input-control .field-input[type="email"] {
    width: 90%;
    margin-bottom: 2rem;
}

.input-control .field-input::placeholder {
    color: #000;
}

.input-control.error-field .field-input {
    border-color: #cc1006;
}

.input-control .error-field {
    color: #cc1006;
    font-size: 0.75rem;
    margin-top: 5px;
    width: 100%;
    text-align: center;
}

.loading-container {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #34284F;
}

.sing-moon-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-container h3,
.sing-moon-loading h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFF;
}

.progress-bar {
    position: relative;
    height: 40px;
    width: 90%;
    max-width: 300px;
    background: var(--color-white);
    border-radius: 30px;
    border: 1px solid var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

/*  .progress-fill {
    position: absolute;
    height: 100%;
    width: 0%;
    animation: progress-forward 2s infinite;
    background-image: url(../assets/imgs/destino-signo/progress.jpg);
    object-fit: cover;
    border-radius: 30px;
  } */
.section-modal-pitch .modal-pitch {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.section-modal-pitch .modal-pitch-container {
    width: 100%;
    margin: auto;
    max-width: 700px;
    padding: 30px;
    background: var(--quiz-container-bg);
    min-height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.section-modal-pitch .modal-pitch-title h3 {
    text-align: center;
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 600;
}

.section-modal-pitch .modal-pitch-button {
    text-align: center;
    margin-top: 80px;
}

.section-modal-pitch .modal-pitch-button button {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    background-color: var(--btn-call-to-action-bg);
    color: #FFF;
    max-width: 450px;
    border-radius: 30px;
    padding: 10px 30px;
    animation: pulse-animation 2s infinite;
    margin-bottom: 10px;
}

.section-modal-pitch .modal-pitch-button button:hover {
    animation: shake 2s infinite;
    background: var(--color-btn-hover);
}

.section-modal-pitch .modal-pitch-button button:hover {
    animation: shake 2s infinite;
    background: transparent;
}

.section-wrapper .animation-section {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.animation-section .animation-container {
    height: calc(100vh - 200px);
    width: 100%;
    max-height: 700px;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1px;
    overflow-y: hidden;
}

.animation-section .animation-container .modal-animation {
    width: 100%;
}

.animation-section .modal-animation .modal-audio-container {
    border: 2px solid #F181FF;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

#audio-astrology {
    height: 128px;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    border: 2px solid #F181FF;
}

#audio-astrology .audio-astrology-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

#audio-astrology .video-js {
    padding: 25px 40px 25px 25px !important;
    height: 100% !important;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

#audio-astrology .video-js .vjs-volume-panel {
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 20px;
    right: 15px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#audio-astrology .video-js .vjs-mute-control {
    height: auto;
    width: auto;
}

#audio-astrology .video-js .vjs-play-control {
    height: auto;
    width: 40px;
    display: none;
}

#audio-astrology .vjs-has-started .vjs-control-bar {
    display: none;
}

#audio-astrology .vjs-text-track-cue {
    height: 100% !important;
    top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#audio-astrology .vjs-text-track-cue>div {
    font-family: 'Poppins' !important;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    background: initial !important;
}

#audio-astrology .buttons-audio-container {
    /*     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 69px;
    height: fit-content;
    padding: 25px 20px;
    border-left: 4px solid var(--color-primary-hover);
    position: absolute;
    right: 0;
    top: calc(50% - 55.5px); */
}

#audio-astrology .buttons-audio-container .start-pause-audio {
    height: 40px;
    width: 40px;
    position: absolute;
    top: 20px;
    right: 15px;
}

#audio-astrology .buttons-audio-container .volume-video {
    display: none;
}

#audio-astrology .button-video .fas {
    display: none;
    color: #fff;
}

#audio-astrology .start-pause-audio .fas {
    font-size: 1.375rem;
}

#audio-astrology .volume-video .fas {
    font-size: 1.5rem;
}

#audio-astrology .start-pause-audio.active .fa-pause,
#audio-astrology .start-pause-audio.false .fa-play {
    display: block;
}

#audio-astrology .volume-video.active .fa-volume-up,
#audio-astrology .volume-video.false .fa-volume-off {
    display: block;
}

#audio-astrology .vjs-text-track-display {
    bottom: initial !important;
    position: static;
    height: 100%;
}

#audio-astrology .vjs-text-track-display>div {
    position: static !important;
    height: 100%;
    margin: 0 !important;
}


#audio-astrology .vjs-text-track-cue>div {
    background-color: transparent !important;
    position: relative !important;
    font-family: 'Poppins' !important;
    font-size: 1.25rem;
}

#audio-astrology .video-js .vjs-control-bar {
    background: none;
    display: flex !important;
    position: absolute;
    bottom: 0;
    right: 0;
    left: initial;
    width: auto;
    align-items: center;
}

#audio-astrology .vjs-modal-dialog .vjs-modal-dialog-content {
    z-index: 0;
}

#audio-astrology .video-js .vjs-play-control .vjs-icon-placeholder:before {
    font-size: 2.5rem;
    line-height: 0;
    position: initial;
}

#audio-astrology .video-js .vjs-volume-panel .vjs-icon-placeholder:before {
    font-size: 2rem;
    position: initial;
    line-height: 0;
}

#audio-astrology .video-js .vjs-control-bar .vjs-progress-control,
#audio-astrology .video-js .vjs-control-bar,
#audio-astrology .video-js .vjs-control-bar .vjs-subs-caps-button,
#audio-astrology .video-js .vjs-control-bar .vjs-fullscreen-control,
#audio-astrology .video-js .vjs-control-bar .vjs-time-control,
#audio-astrology .video-js .vjs-control-bar .vjs-volume-control {
    display: none;
}


.modal-warning {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.modal-warning .btn-play {
    font-size: 1.375rem;
    color: #fff;
    width: 100%;
    max-width: 280px;
    padding: 13px 0;
    font-weight: 500;
    border-radius: 6px;
    background: var(--color-primary);

    outline: none;
    transition: opacity 1s;
    animation: pulse-animation 2s infinite;
}

.modal-warning .btn-play:hover {
    background: var(--color-primary-hover);
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.modal-warning p {
    font-size: 1.25rem;
    font-weight: 500;
}

.modal-warning h3 span {
    color: #F181FF;
}

.modal-warning h3 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
}

.modal-warning .content-warning {
    text-align: center;
    margin-bottom: 40px;
    max-width: 620px;
    padding: 0 20px;
    color: #fff;
}

.section-header-form h2.section-heading-mobile {
    display: none;
}

.gender-modal .gender-modal-container {
    display: flex;
    gap: 36px;
}

.gender-modal .gender-modal-container button.gender-button {
    background: var(--btn-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--btn-bg-transition);
    box-shadow: var(--btn-bg-shadow);
    padding: 1rem;
    border-radius: 1.3rem;
    color: #000;
}

button.gender-button img {
    height: 150px;
}

.gender-control input {
    display: none;
}

.gender-button.active {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.gender-button.active label {
    color: #fff !important;
}

.gender-button.active img {
    filter: invert(1) brightness(1.5);
}


.gender-modal .gender-modal-container .gender-control {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    line-height: 1;
    margin-top: 9px;
}

.gender-modal .gender-control label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 2px;
    color: #000;
}

.gender-modal .gender-control input {
    background: transparent;
    appearance: none;
    border: 2px solid var(--color-secound);
    height: 20px;
    width: 20px;
    border-radius: 10px;
    position: relative;
}

.gender-modal .gender-control input:checked::before {
    content: '';
    background-color: #fff;
    border-radius: 50%;
    display: block;
    height: 12px;
    width: 12px;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
}

.modal-hours-controls {
    display: flex;
    gap: 20px;
    max-width: 300px;
    align-items: center;
    margin: 0 auto;
}

.cta-astrologia-section .cta-image-product {
    padding: 0px 30px 0px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-astrologia-section .cta-image-product img {
    width: 100%;
}

.cta-astrologia-section .text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-astrologia-section .cta-paragraph h3 {
    color: #000;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
}

.cta-astrologia-section .cta-content {
    padding: 15px 30px;
}

.cta-astrologia-section .cta-product {
    display: grid;
    grid-template-columns: minmax(100px, 335px) minmax(100px, 300px);
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta-astrologia-section .cta-warranty h3 {
    color: #000;
    font-weight: 600;
    font-size: 10px;
}

.cta-astrologia-section .cta-warranty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.cta-astrologia-section .cta-warranty img {
    max-width: 75px;
}

.cta-astrologia-section .cta-button {
    text-align: center;
    width: 100%;
}

.cta-astrologia-section .cta-button .cta-btn {
    color: #fff;
    background: #fd1c16;
    padding: 12px 0;
    max-width: 240px;
    width: 100%;
    display: inline-block;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(0.75rem, 3vw, 1rem);
    box-shadow: 0px 1px 5px #6f6f6f;
    text-decoration: none;
}

.cta-btn:hover {
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.cta-astrologia-section .cta-security {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.cta-astrologia-section .cta-security img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cta-astrologia-section .cta-security p {
    font-size: clamp(0.5rem, 3vw, 0.75rem);
    text-align: center;
}

.cta-astrologia-section .cta-payments {
    width: clamp(90%, 17vw, 95%);
}

.cta-astrologia-section .cta-payments img {
    object-fit: contain;
    object-position: center;
}

.cta-astrologia-section .cta-user {
    display: flex;
    align-items: center;
    border: 1px dotted #000;
    width: 100%;
}

.cta-astrologia-section .cta-user img {
    width: 62px;
    height: auto;
    object-position: center;
    object-fit: contain;
}

.cta-astrologia-section .cta-user p {
    font-size: 9px;
    font-style: italic;
    color: #000;
    background: #fff;
    padding: 4px 8px;
}

.cta-header {
    text-align: center;
    font-weight: 500;
    padding: 8px;
    font-size: 11px;
    width: calc(100% + 21px);
    background: #333157;
}

.cta-header span {
    color: yellow;
    display: block;
}

.cta-astrologia-section .cta-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1;
    padding: 0px 10px 10px 10px;
    border-radius: 10px;
    height: fit-content;
    max-height: 90vh;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    background-color: #e3e3e3;
    border: none;
}

.modal-finish-cta {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.modal-finish-cta .finish-container {
    background: #222;
    border: 2px solid var(--color-primary);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 5px #444;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    min-height: 300px;
    position: relative;
}

.modal-finish-cta .finish-header {
    margin-bottom: 30px;
}

.modal-finish-cta .finish-header h1 {
    font-size: 1.75rem;
    text-align: center;
    line-height: 1.2;

    color: var(--color-text);
}

.modal-finish-cta .close-modal-finish {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 8px 10px;
    line-height: 0;
}

.modal-finish-cta .close-modal-finish i {
    color: #fff;
    font-weight: 600;
    font-size: 1.375rem;
}

.modal-finish-cta .finish-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-finish-cta .finish-field {
    margin-bottom: 30px;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 6px;
}

.modal-finish-cta .finish-field #phone {
    padding-left: 90px;
}

.modal-finish-cta .tell-field>.iti>.iti {
    width: 100%;
}

.modal-finish-cta .finish-field label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.modal-finish-cta .finish-field input {
    width: 100%;
    border: 1px solid var(--color-primary);
    padding: 10px 20px;
    color: var(--color-primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.125rem;
    outline: none;
}

.modal-finish-cta .finish-field input::placeholder {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
}

.modal-finish-cta .finish-field .iti__selected-flag {
    padding: 0 20px 0;
    background: var(--color-secound);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.modal-finish-cta .btn-finish-cta {
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.5rem;
    padding: 8px 30px;
    border-radius: 30px;
    width: fit-content;
    animation: pulse-animation 2s infinite;
}

.modal-finish-cta .btn-finish-cta:hover {
    background: var(--color-white-hover);
}

.container-hours-cards,
.container-minutes-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 20px 0 40px;
}

.card {
    background: #fff;
    border-bottom: 3px solid var(--color-primary);
    min-width: 55px;
    text-align: center;
    padding: 10px 5px;
    color: #000;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 5px;
    cursor: pointer;
}

.card:hover {
    opacity: 0.9;
    transition: opacity 0.2s;
}

.card.active {
    background: var(--color-secound)
}

.civil-status-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

button.civil-state-btn {
    background: var(--btn-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--btn-bg-transition);
    box-shadow: var(--btn-bg-shadow);
    padding: 1rem;
    border-radius: 0.4rem;
    color: var(--color-secound);
    flex-basis: 47%;
}

button.category-item-btn {
    background: var(--btn-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--btn-bg-transition);
    box-shadow: var(--btn-bg-shadow);
    padding: 1rem;
    border-radius: 0.4rem;
    color: var(--color-secound);
    flex-basis: 47%;
}
.civil-state-btn.active,
.category-item-btn.active{
    background: var(--color-primary);
    color: #FFF;
}

button.civil-state-btn img {
    height: 45px;

    filter: brightness(0) invert(1) sepia(1) saturate(800%) hue-rotate(184deg) brightness(0.5) contrast(9.5);
}

.links_footer {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.disclaimer-footer {
    width: 783px;
    text-align: center;
    margin: 0 auto;
    font-size: 11px;
}

.links_footer li {
    list-style: none;
    display: inline-block;
    margin: 0 10px;
}

.links_footer a:hover {
    color: var(--color-thrid) !important;
}

.options-itens {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%;
}

.sing-moon-step-seventh .option-item {
    background: var(--btn-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--btn-bg-transition);
    box-shadow: var(--btn-bg-shadow);
    padding: 1rem;
    border-radius: 0.4rem;
    color: var(--color-secound);
    flex-basis: 47%;
}

.sing-moon-step-seventh .option-item img {
    filter: brightness(0) invert(1) sepia(1) saturate(800%) hue-rotate(184deg) brightness(0.5) contrast(9.5);
}

.sing-moon-step-seventh .option-item p {
    color: var(--color-secound);
}

.timer {
    background: #d3a300;
    max-width: 90%;
    margin: 20px auto;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0px 0px 7px #0f0f0f;
    position: relative;
    height: 70px;
    transition: all 0.3s;
}

.timer.end {
    background: var(--color-red-hover);
    font-size: 1.75rem;
}

.timer-icon {
    line-height: 0;
}

.timer-container {
    position: relative;
}

.timer .milliseconds {
    font-size: 1rem;
    color: #e5e5e5;
    position: absolute;
    bottom: 0;
    right: -33px;
    top: 12px;
    font-weight: 600;
}

.timer #time {
    letter-spacing: 1px;
}

.timer-icon svg {
    height: 34px;
    width: 30px;
    stroke-width: 3px;
}

footer {
    flex-direction: column;
    display: flex;
    padding: 34.556312561035156px 0;
    overflow: hidden;
    background: linear-gradient(141deg, rgba(233, 161, 154, 0.4699999988079071) 0%, rgba(133, 109, 228, 0.4699999988079071) 100%);
    box-shadow: 1px -7px 29.799999237060547px 0px rgba(0, 0, 0, 0.2199999988079071);
    align-items: center;
    flex-shrink: 0;

    justify-content: center;
    background-color: var(--dl-color-default-rodape);
}

footer #copy-footer {
    background-color: #00000039;
    text-align: center;
    margin: 20px 0;
}

footer section.footer {
    width: 100%;
}

footer section.footer p {
    padding: 0 10px;
}

@media (min-width: 768px) and (max-height: 650px) {
    .date-sign-control .date-list li {
        width: calc(13% - 9px);
        height: 40px;
        font-size: 1.25rem;
    }

    .date-sign-container .date-header h4 {
        font-size: 1.25rem;
        line-height: 1;
    }

    .form-content h3 {
        font-size: 2rem;
    }

    p.section-subheading {
        margin-bottom: 10px;
    }

    .section-header-form {
        margin-bottom: 10px;
    }

    .section-header-form h2.section-heading {
        font-size: 2.25rem !important;
        line-height: 1.2;
    }

    .logo-style img {
        height: 50px;
    }

    .sign-buttons-container .button-sing img {
        height: 50px;
    }

    .sign-buttons-container {
        gap: 10px;
    }

    .form-content .btn-back {
        padding: 6px 15px 6px 45px;
        font-size: 1.25rem;
        margin-top: 30px;
    }

    button.gender-button img {
        height: 100px;
    }

    .btn-item {
        padding: 8px;
        font-size: 1.125rem;
    }

    .gender-modal .gender-modal-container button.gender-button {
        padding: 6px 25px;
    }

    button.civil-state-btn {
        padding: 10px;
        font-size: 1rem;
    }

    .form-button .button-form {
        font-size: 1.5rem;
    }

    .options-itens .option-item img {
        max-width: 140px;
    }

    #audio-astrology {
        height: 100px;
    }

    #audio-astrology .buttons-audio-container {
        height: calc(100% - 20px);
        top: 10px;
        border-width: 2px;
    }

    #audio-astrology .start-pause-audio .fas,
    #audio-astrology .volume-video .fas {
        font-size: 1rem;
    }

    #audio-astrology .vjs-text-track-cue>div {
        font-size: 1rem;
    }

    .section-wrapper {
        gap: 10px;
    }

    .cta-astrologia-section .cta-modal {
        overflow-x: hidden;
        height: 100%;
        max-height: 410px;
    }

    .cta-astrologia-section {
        height: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 950px;
        padding: 0 2.15rem;
    }

    .sing-moon-step-eight .field-first-name #first-name {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 768px) {

    body {
        background-size: contain;
        background-position: top;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-color: #34274f;
    }


    footer {
        width: 353px;
        margin: 0 auto;
        border-color: rgba(255, 255, 255, 1);
        border-style: solid;
        border-width: 1px;
        border-radius: 17px;
        flex-direction: column;
        font-size: 10px;
        margin-top: 20px;
        text-align: center;

    }

    footer img {
        width: 80%;
    }

    .links_footer {
        gap: 0;
        width: 100%;
        margin: 0 auto;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .links_footer li {
        width: 43%;
        font-size: 13px;
        text-align: left;
    }

    .links_footer li a {
        text-decoration: none;
        color: #fff;
    }

    .links_footer li a:hover {
        text-decoration: underline;
    }

    #page-wrapper {
        padding: 0px 0px;
    }

    #page-wrapper>.container {
        padding: 0px 2px;
    }

    .section-alert-heading {
        font-size: 18px;
        margin-top: 10px;
    }

    .section-header-form {
        margin-bottom: 10px;
    }

    .sign-buttons-container {
        display: grid;
        flex-wrap: wrap;
        gap: 1rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: space-between;
        align-items: center;
        justify-items: center;
        align-content: center;
    }

    .footer_nav {
        flex-direction: column;
    }

    .options-itens .option-item .item-checkbox {
        display: flex;
    }

    .option-item.image-text img {
        width: 80px;
    }

    .section-header-form h2.section-heading,
    .form-content h3 {
        display: none;
    }

    .section-life-categories .section-header-form h2.section-heading {
        display: block;
        line-height: 1.2;
        font-size: 1.5rem !important;
        margin-bottom: 15px;
    }

    .section-life-categories button.category-item-btn img {
        height: 50px;
        width: auto;
    }

    .section-life-categories button.category-item-btn p {
        font-size: 0.75rem;
    }

    .section-life-categories .option-item.image-text button.category-item-btn {
        padding: 15px;
        min-height: 130px;
    }

    .section-header-form h2.section-heading-mobile {
        display: block;
        font-size: 26px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 10px;
        margin-top: 20px;
        line-height: 35px;
        color: var(--color-text);
    }

    .steps-list {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .steps-list li {
        width: 40px;
    }

    .form-content.sing-moon-step-one h3.title-mobile {

        padding: 5px;
        border-radius: 5px;
    }

    .form-content h3.title-mobile {
        display: block;
        width: 100%;
        margin-bottom: 25px;
    }

    .form-content h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    p.section-subheading {
        font-size: 1rem;
        line-height: 1.3;

        margin-bottom: 20px;
    }

    .sign-buttons-container {
        gap: 5px;
        max-width: 390px;
    }

    .sign-buttons-container .button-sing {
        width: 100%;
        padding: 5px 0;
        aspect-ratio: 1/0.7;
    }

    .sign-buttons-container .button-sing img {
        height: 35px;
        margin-bottom: 0;
    }

    .sign-buttons-container .button-sing p {
        font-size: 0.8125rem;
        display: inline-block;
        padding: 1px 5px;
        min-width: 80%;
    }

    .section-wrapper {
        padding: 15px 0;
        min-height: calc(100vh - 40px);
        display: grid;
        grid-template-rows: 1fr auto;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .date-sign-container {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 10px;
    }

    .date-sign-container .list-itens {
        gap: 5px;
    }

    .date-sign-container .date-sign-control {
        width: 100%;
    }

    .date-sign-container .date-header {
        margin-bottom: 3px;
        padding: 3px;
    }

    .date-sign-container .date-header h4 {
        font-size: 1.125rem;
    }

    .date-sign-control .date-list li {
        width: calc(17% - 5.5px);
        font-size: 1rem;
        height: auto;
        aspect-ratio: 1.15/1;
        margin-bottom: 0;
    }

    .form-content .btn-back {

        padding: 6px 15px 6px 40px;
        font-size: 1.125rem;
        gap: 5px;
        position: relative;
        top: 0;
        left: inherit;

        margin-top: 30px;
    }


    .btn-back .far {
        font-size: 1rem;
    }

    .decade-sign-container ul,
    .years-sign-container ul {
        max-width: 320px;
        gap: 5px;
        justify-content: left;
        margin-top: 0;
    }

    .section-form .years-sign-container,
    .section-form .decade-sign-container {
        margin-bottom: 20px;
        margin-top: 0px;
        align-items: baseline;
    }

    .btn-item {
        width: calc(33% - 3px);
        font-size: 1.25rem;
    }



    .sing-moon-step-seventh .field-first-name #first-name {
        margin: inherit;
    }

    .sing-moon-step-seventh .field-first-name {
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .section-form .form-content.sing-moon-step-seventh {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    /*  .section-form .form-content.moon-phases-step-two {
      justify-content: space-between;
    }
    .section-form .form-content.moon-phases-step-two .btn-back {
      bottom: -64px;
    } */
    .form-button .button-form {
        font-weight: 600;
        line-height: 1.2;
        padding: 10px 15px;
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .reading-moon-container .field-email-control input {

        margin-bottom: 30px;
    }

    .section-form .form-content.reading-moon-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: initial;
    }

    .section-modal-pitch .modal-pitch-title h3 {
        font-size: 1.5rem;
    }

    .section-modal-pitch .modal-pitch-button button {
        font-size: 1.125rem;
    }

    .hours-birthdate-container .hours-fields {
        align-items: inherit;
        gap: 15px;
    }

    .container-hours-cards,
    .container-minutes-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
        margin: 0 0 10px;
    }

    .card {
        min-width: 35px;
        text-align: center;
        padding: 8px 4px 6px;
        font-size: 0.875rem;
        line-height: 1;
    }

    .alert-modal.error {
        bottom: initial;
        left: initial;
        top: 20px;
        width: 100%;
        max-width: 280px;
    }

    #audio-astrology .buttons-audio-container {
        /*       position: initial;
      border-left: initial;
      border-top: 2px solid var(--color-primary);
      flex-direction: row-reverse;
      justify-content: center;
      align-items: center;
      margin: auto;
      width: calc(100% - 32px);
      padding: 7px;
      gap: 30px; */
    }

    #audio-astrology .vjs-text-track-displa div {
        font-size: 1.25rem !important;
    }


    #audio-astrology .start-pause-audio .fas,
    #audio-astrology .volume-video .fas {
        font-size: 1.25rem;
    }

    .modal-hours-controls {
        gap: 10px;
        height: fit-content;
        margin-bottom: 155px;
    }

    #audio-astrology {
        height: 120px;
        display: flex;
        flex-direction: column;
    }

    #audio-astrology .audio-astrology-container {
        width: 100%;
    }

    #audio-astrology .vjs-text-track-cue>div {
        font-size: 1rem;
        line-height: 1.2;
    }

    .loading-container h3,
    .sing-moon-loading h3 {
        text-align: center;
        font-size: 1.25rem;
    }

    .animation-section .animation-container {
        height: 100%;
        padding: 0;
        grid-template-rows: initial;
    }

    .section-moon-phases .gender-modal {
        width: 100%;
        max-width: 300px;
    }

    .gender-modal .gender-modal-container {
        gap: 15px;
        margin-bottom: 20px;
    }

    .gender-modal .gender-modal-container button.gender-button {
        padding: 20px 20px 10px;
        width: 100%;
    }

    .gender-modal button.gender-button img {
        height: 90px;
    }

    .frame {
        font-size: 1.25rem;
    }

    .cta-astrologia-section .cta-user img {
        width: 50px;
    }

    .cta-astrologia-section .cta-modal {
        height: 100%;
        gap: 12px;
        overflow-y: auto;
    }

    .cta-header span {
        color: yellow;
        display: inline-block;
    }

    .cta-astrologia-section .cta-image-product {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        margin-bottom: 6px;
    }

    .cta-astrologia-section .cta-content {
        padding: 0;
    }

    .cta-astrologia-section .cta-product {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    .cta-astrologia-section .cta-payments {
        width: 75%;
    }

    .cta-astrologia-section .cta-button .cta-btn {
        padding: 14px 18px;
        font-size: 1rem;
        animation: shake 2s infinite;
    }

    .cta-astrologia-section .cta-paragraph h3 {
        font-size: 0.5rem;
    }

    .cta-astrologia-section .text-content {
        gap: 6px;
    }

    .cta-astrologia-section .cta-user p {
        font-size: 0.5rem;
    }

    .cta-astrologia-section .cta-warranty h3 {
        font-size: 0.5rem;

        line-height: 1.2;
    }

    .cta-astrologia-section .cta-warranty img {
        max-width: 70px;
    }

    .cta-astrologia-section .cta-security img {
        width: 35px;
        height: 35px;
    }

    .cta-astrologia-section .cta-security p {
        font-size: 0.55rem;
    }

    .cta-astrologia-section .cta-image-product img {
        margin: 0 auto;
        width: 100%;
        max-width: 360px;
    }

    .cta-astrologia-section {
        height: 100%;
    }

    .cta-header span {
        color: yellow;
        display: inline-block;
    }

    .cta-astrologia-section .cta-modal {
        height: 100%;
        gap: 12px;
        overflow-y: auto;
    }

    .modal-wrapper-list {
        max-height: 110px;
    }

    .modal-wrapper-list li {
        padding: 7px 12px;
    }

    .modal-wrapper-list.country-list li {
        padding: 7px 12px;
    }

    .country-selector-container .country-modal {
        margin-bottom: 130px;
    }

    .section-moon-sign.remove-subtitle .section-subheading {
        display: none;
    }

    .section-wrapper .section-form .form-container {
        min-height: initial;
        gap: initial;
    }

    .modal-finish-cta .finish-container {
        min-height: 60%;
        height: auto;
    }

    .modal-finish-cta .btn-finish-cta {
        width: 100%;
    }

    .modal-finish-cta .finish-container {
        width: calc(100% - 30px);
        padding: 15px;
    }

    .square {
        width: 25px;
        height: 25px;
    }

    .square span {
        width: 20px;
        height: 20px;
    }

    .circle {
        width: 16px;
        height: 16px;
        border-width: 1px;
    }

    .circle span {
        width: 10px;
        height: 10px;
    }

    .options-itens .option-item p {
        font-size: 0.7125rem;
    }

    .civil-status-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    button.civil-state-btn {
        background: var(--btn-bg);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        transition: var(--btn-bg-transition);
        box-shadow: var(--btn-bg-shadow);
        padding: 1rem;
        border-radius: 0.4rem;
        color: var(--color-secound);
        flex-basis: 47%;
    }

    button.civil-state-btn img {
        height: 60px;
    }

    .country-quest .btns-modal-country {
        margin: 25px 0;
    }

    .logo-style {
        display: flex;
        justify-content: center;
    }

    .logo-style img {
        height: 35px;
    }

    .section-life-categories .options-itens {
        gap: 10px;
    }

    .input-control .field-input {
        width: 100%;
    }

    .section-wrapper .section-form {
        margin: 10px;
        padding: 25px 0px;
        width: calc(100% - 10px);
        margin: 0 auto;
    }

    .gender-modal .gender-control label {
        font-size: 0.75rem;
    }

    .gender-modal .gender-control input {
        height: 16px;
        width: 16px;
        border-width: 1px;
    }


    #audio-astrology .video-js .vjs-control-bar {
        /*       padding-left: 0;
      padding-right: 4px;
      gap: 6px;
      transform: none;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      border: none;
      top: 0px;
      height: 34px;
      line-height: 0;
      right: 0;
      bottom: initial; */
    }

    #audio-astrology .video-js .vjs-play-control {
        height: 30px;
        align-items: center;
        width: auto;
    }

    #audio-astrology .video-js .vjs-volume-panel {
        height: 20px;
        bottom: 15px;
        right: 10px;
        align-items: center;
        width: auto;
    }

    #audio-astrology .buttons-audio-container .start-pause-audio {
        height: 25px;
        width: 23px;
        top: 15px;
        right: 10px;
    }

    #audio-astrology .start-pause-audio .fas {
        font-size: 1rem;
    }

    #audio-astrology .video-js .vjs-play-control .vjs-icon-placeholder:before {
        font-size: 1.5rem;
    }

    #audio-astrology .video-js .vjs-volume-panel .vjs-icon-placeholder:before {
        font-size: 1.375rem;
    }

    #audio-astrology .vjs-text-track-cue {
        padding: 20px 10px 5px;
    }

    #audio-astrology .vjs-text-track-cue>div {
        font-size: 1rem;
        padding: 0;
        height: auto;
        width: 100%;
    }
}

.video-js .vjs-modal-dialog {
    background: rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    overflow: auto;
}