.calls-unsuscribe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .1);
    cursor: pointer;
}

.calls-unsuscribe-box {
    background-color: #ffffff;
    padding: 1rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.call-form {
    background-color: #f1f1f1;
    padding: 1rem;
}

.call-form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.call-form-container legend {
    font-weight: 600;
    font-size: 1.5rem;
}

.call-form-field-container {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.call-form-field-container label {
    text-align: left;
}

.call-form-field-container input[type=text], input[type=email], select {
    padding: .75rem 1rem;
}

.call-form-container input[type=submit] {
    padding: .5rem 2rem;
    color: var(--portales-animsa-btn_txt, #ffffff);
    background-color: var(--portales-animsa-btn_bg, #336699);
    border: none;
}

.call-subscribe-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1c1c1c;
    color: #fff;
    padding: .5rem;
    border: none;
    cursor: pointer;
}

.call-item {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.call-item-title {
    font-size: 1.75rem;
}

.call-item p {
    color: #545454;
    margin: 0;
}

.call-status-container {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9em;
}

.call-status {
    width: 16px;
    height: 16px;
}

.call-status--open {
    background-color: #16A34A;
}

.call-status--closed {
    background-color: #DC2626;
}

.call-status--pending {
    background-color: #F59E0B;
}

.call-subscribe-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .15);
    z-index: 999;
}

.call-subscribe-popup--show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-subscribe-popup-container {
    width: 800px;
    max-width: 90%;
    background-color: #f1f1f1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.call-subscribe-popup-container p {
    color: #545454;
}

.call-subscribe-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.call-subscribe-popup-close {
    border: none;
    background: transparent;
    padding: .5rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.call-classification {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: #f1f1f1;
    font-size: .9rem;
}

.calls-not-found {
    text-align: center;
    font-size: 1.35rem;
    margin-top: 2rem;
}
