.chatgpt-ia-summary-wrapper {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.chatgpt-ia-summary-wrapper a {
    display: inline-block;
    border-bottom: 2px solid #a7c93e !important;
    padding: 0 0 5px 0;
    font-size: 140%;
}

.ico-chatgpt-ia-post-summary {
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: text-bottom;
}

.ia-summary-response.active {
    display: block;
    width: 100%;
    text-align: justify;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #f4f4f4;
    border-left: 3px solid #a7c93e;
}

.chatgpt-post-summary-loading {
    display: inline-block;
    margin-top: 2rem;
    color: #a7c93e;
}

.chatgpt-post-summary-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 900;
    display: none;
}

.chatgpt-post-summary-modal.active{
    display: flex;
    animation: showmodal 0.35s ease-out;
}

@keyframes showmodal {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.chatgpt-post-summary-modal-content {
    width: 100%;
    max-width: 650px;
    color: white;
    line-height: 1.5;
    border: 2px solid #666;
    background: #2d2d2d;
    padding: 1.5rem 2rem;
    border-radius: 15px;
}

.chatgpt-post-summary-modal-content h2,
.chatgpt-post-summary-modal-content h3,
.chatgpt-post-summary-modal-content h4 {
    color: white;
}

.chatgpt-post-summary-modal-content .gform_wrapper .gform_validation_errors,
.chatgpt-post-summary-modal-content .gform_wrapper .gform_heading{
    display: none !important;
}

.chatgpt-post-summary-modal-content .gform_wrapper.gform_validation_error .gfield_validation_message{
    position: relative !important;
    top: inherit !important;
    right: inherit !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    color: red !important;
}

.chatgpt-post-summary-modal-content .gform_wrapper.gravity-theme .gfield_error label{
    color: white;
}

.chatgpt-post-summary-modal-content .gform_wrapper .gform_footer .button.gform_button{
    background-color: #c78b1e;
    border: 0 !important;
    border-radius: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-shadow: 0 0 7px black;
    cursor: pointer !important;
    margin-bottom: 0 !important;
}

.chatgpt-ps-close {
    display: block;
    width: 35px;
    height: 35px;
    color: black;
    margin-left: auto;
    font-size: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: -3rem;
    margin-top: -2rem;
}

.chatgpt-ps-user-register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatgpt-ps-user-register-form>div {
    width: 100%;
}

.chatgpt-ps-user-register-form>div:first-child {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: nowrap;
}

.chatgpt-ps-user-register-form>div:first-child>div {
    width: 50%;
}

.chatgpt-ps-user-register-form label {
    display: inline-block;
    margin-bottom: 10px;
}

form .checkboxes .ginput_container{
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: 100%;
}

form .checkboxes .ginput_container label{
    margin-bottom: 0;
}

#chatgpt-post-summary-modal,
#chatgpt-post-summary-modal label,
#chatgpt-post-summary-modal .gform-field-label{
    color: white !important;
}

#chatgpt-post-summary-modal input[type=checkbox]{
    padding: inherit !important;
}

form#gform_15 .cf-turnstile-br,
form#gform_9 .cf-turnstile-br{
  display: none;
}
form#gform_15 .gf-turnstile-container,
form#gform_9 .gf-turnstile-container{
  width: 100%;
}
form#gform_15 .gform_fields,
form#gform_9 .gform_fields{
    row-gap: 2rem;
}

@media screen and (max-width: 599px) {

    .chatgpt-ps-close{
        margin-right: -2.5rem;
    }

    .chatgpt-post-summary-modal-content {
        padding-left: 25px;
        padding-right: 25px;
    }

    .chatgpt-ps-user-register-form>div:first-child {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .chatgpt-ps-user-register-form>div:first-child>div {
        width: 100%;
    }
}
