widget.horoscope-form .o-form-container {
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

widget.horoscope-form .o-form-container form {
    padding: 10px;
    margin-bottom: 0;
}

widget.horoscope-form .o-form-container .o-form-title {
    font-size: 1.25em;
    text-align: center;
}

widget.horoscope-form .o-form-container .o-form-title span {
    font-size: 1em;
    text-align: center;
}

widget.horoscope-form .o-form-brand {
    border: 1px solid black;
    padding: 10px;
    border-radius: 20px;
    background: #aed9ff;
}

widget.horoscope-form .o-form-brand-img {
    width: 100%;
    max-width: 400px;
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
}

widget.horoscope-form .o-side-h1 {
    width: 50px !important;
}

widget.horoscope-form .zodiac-sign {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 5px;
    cursor: pointer;
}

widget.horoscope-form .zodiac-sign img {
    width: 100%;
}

widget.horoscope-form .zodiac-sign p {
    font-size: 0.5em;
}

widget.horoscope-form .o-sign-selected {
    border: 2px solid #393939;
    border-radius: 12px;
}

widget.horoscope-form .o-sign-disabled {
    opacity: 0.4;
}

widget.horoscope-form .o-form-error .o-form-select.required {
    color: red;
}

widget.horoscope-form .o-form-error .o-form-label.required {
    color: red;
}

widget.horoscope-form .o-form-label {
    font-size: 1em;
    margin-left: 5px;
    vertical-align: middle;
}

widget.horoscope-form .o-form-text-start {
    text-align: start;
}

widget.horoscope-form .o-form-text-center {
    text-align: center;
}

widget.horoscope-form .o-form-legend {
    text-align: center;
    padding: 0 15px;
    font-size: 1.4em;
}

widget.horoscope-form .o-form-ask-astro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 0.875em;
    font-weight: bold;
    color: white;
    background-color: lightseagreen;
    border-radius: 50%;
    cursor: default;
    user-select: none;
    font-family: sans-serif;
}

widget.horoscope-form .o-form-row {
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;

    flex-direction: row;
    text-align: center;
}

widget.horoscope-form .o-form-row > *, widget.horoscope-form .o-form-row-gutter {
    padding-right: calc(10px * .5);
    padding-left: calc(10px * .5);
    margin-top: 5px;
}

widget.horoscope-form .o-form-row > *, widget.horoscope-form .city-container > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

widget.horoscope-form .o-form-back-arrow {
    cursor: pointer;
    font-size: 2em;
}

widget.horoscope-form .email-container .o-form-back-arrow {
    font-size: 1.5em;
}

widget.horoscope-form .o-form-col {
    flex: 1 0 0;
}

widget.horoscope-form .o-form-col-3 {
    width: 33.33%;
}

widget.horoscope-form .o-form-col-2 {
    width: 50%;
}

widget.horoscope-form .o-form-col-4 {
    width: 25%;
}

widget.horoscope-form .o-form-error-message .o-form-subtitle {
    font-size: 0.9375em;
    color: red;
    margin-bottom: 0 !important;
}

widget.horoscope-form .o-form-mt-1 {
    margin-top: 1rem;
}

widget.horoscope-form .o-form-m-auto {
    margin: auto;
}

widget.horoscope-form .o-form-mt-2 {
    margin-top: 2rem;
}

widget.horoscope-form .o-form-btn {
    display: inline-block;
    max-width: 720px;
    width: 100%;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 1rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    border-radius: 50px;
    background: #2dc92d;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    border: #2dc92d 4px solid;
    padding: 15px 0;
}

widget.horoscope-form .o-form-btn:hover {
    border: #117911 4px solid;
}

widget.horoscope-form .o-form-select {
    display: block;
    width: 100%;
    padding: .375rem 0 .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    background-color: white;
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: black solid 1px;
    border-radius: 2px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

widget.horoscope-form .o-form-col-auto {
    flex: 0 0 auto !important;
    width: auto !important;
}

widget.horoscope-form {
    max-width: 285px;
}

widget.horoscope-form .loader {
    width: 32px;
    height: 32px;
    border: 5px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

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

@media (min-width: 375px) {
    widget.horoscope-form {
        max-width: 340px;
    }

    widget.horoscope-form .zodiac-sign p {
        font-size: 0.75em;
    }
}

@media (min-width: 425px) {
    widget.horoscope-form {
        max-width: 390px;
    }

    widget.horoscope-form .zodiac-sign p {
        font-size: 0.8125em;
    }
}

@media (min-width: 479px) {
    widget.horoscope-form {
        max-width: 445px;
    }

    widget.horoscope-form .zodiac-sign p {
        font-size: 0.875em;
    }
}

@media (min-width: 599px) {
    widget.horoscope-form {
        max-width: 565px;
    }

    widget.horoscope-form .zodiac-sign p {
        font-size: 0.9375em;
    }
}

@media (min-width: 768px) {
    widget.horoscope-form {
        max-width: 700px;
    }

    widget.horoscope-form .o-form-container form {
        padding: 20px;
    }

    widget.horoscope-form .o-form-container .o-form-title {
        font-size: 2em;
    }

    widget.horoscope-form .o-form-label {
        font-size: 1.3em;
        margin-left: 10px;
    }

    widget.horoscope-form .o-form-error-message .o-form-subtitle {
        font-size: 1.5em;
    }

    widget.horoscope-form .zodiac-sign p {
        font-size: 1em;
    }
}
