.button{
    padding: 12.5px 24px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-color);
    background: #054857;
    transition: background ease-in-out .15s;
    display: flex;
    line-height: 140%;
    width: max-content;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

h2 {
    font-size: 32px;
}
a.title {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    display: block;
}
span.date {
    font-size: 12px;
    display: inline-block;
    color: var(--date-color);
}

a.image {
    width: 100%;
    display: inline-block;
}

a.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more {
    padding: 14px 0;
    border-top: 1px solid var(--soft-blue-color);
    margin-top: 60px;
}

.more a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}


.popup-container, .modal-container {
    
    position: fixed;
        
    left: 0;
        
    right: 0;
        
    bottom: 0;
        
    top: 0;
        
    background: rgba(0, 0, 0, 0.5);
        
    display: none;
        
    z-index: 9999;
        
    overflow: hidden;
    }
    .popup-flex, .modal-flex{
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .popup-body, .modal-body{
        background: #fff;
        border-radius: 8px;
        margin: auto;
        padding: 50px;
        position: relative;
        overflow-y: auto;
        max-height: 90%;
    }
    .popup-container .closepopup-cross{
        height: 25px;
        width: 25px;
        position: absolute;
        right: 30px;
        top: 30px;
        z-index: 10;
    }
    .popup-container .popup-content, .modal-container .modal-content {
        /* width: 661px; */
        height: auto;
        max-height: 100%;
        overflow-y: auto;
    }   

    a.button.register_to_event {
        width: 100%;
    }
    
.field, .media-field {
    margin-bottom: 24px;
}

input.input-text, .select, input.input-password {
    color: var(--gray-color);
    height: 40px;
    padding-left: 20px;
    border-radius: 6px;
    width: 100%;
    border: 2px solid var(--soft-blue-color);
    margin-top: 10px;
}

svg.img-error-svg{
    max-width: 100%;
    height: auto;
}