.single-event__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.single-event__wrapper > div {
    flex: 1 1 auto;
}

.single-event__article {
    border-right: 1px solid #f2f2f2;
    padding-right: 45px;
}

.single-event__counter {
    background-color: var(--dc-primary-color);
    background-image: url(../../images/dots-render.png);
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    padding: 45px 30px;
    margin-top: 60px;
    text-align: center;
}

.single-event__counter .title,
.single-event__counter .counter {
    font-family: "Jost", serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #fff;
}

.single-event__counter .counter {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-top: 30px;
}

.single-event__counter .subtitle {
    font-family: "Jost", serif;
    font-size: 14px;
    margin-top: 10px;
}

.single-event__form {
    width: 100%;
    max-width: 400px;
    background: #f2f2f2;
    padding: 15px;
}

.single-event__form .widget-title {
    font-size: 16px;
    margin: 0 0 15px 0;
    padding: 0;
}

.single-event__form .widget-title span {
    font-size: 18px;
    font-weight: 700;
    display: block;
}
.single-event__form .widget-title span > span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
}

.single-event__form .widget-title strong {
    font-size: 22px;
}

.single-event__form .wppb-success {
    color: green;
    margin-bottom: 15px
}

.single-event__form form {
    padding-bottom: 30px;
}

.single-event__form .form-group {
    padding: 15px 0;
}

.single-event__form input[type="text"],
.single-event__form input[type=file] {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    min-height: 48px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
}


.single-event__form input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: var(--dc-primary-color);
    padding: 5px 20px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.single-event__form input[type=file]::file-selector-button:hover {
    background: #000;
}

.single-event__form input[type="submit"] {
    width: 100%;
    margin: 0;
    border: 0;
}

.single-event__form input[type="submit"][disabled] {
    opacity: 0.75;
    background: var(--dc-primary-color);
}

.widget-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}


@media (max-width: 1280px) {

}

@media (max-width: 992px) {
    .single-event__wrapper {
        flex-direction: column;
    }

    .single-event__article {
        width: 100%;
        border-right: 0;
        padding-right: 0;
        order: 2;
    }

    .single-event__counter {
        padding: 30px;
        margin-top: 30px;
    }

    .single-event__form {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }


    .single-event__counter .title, .single-event__counter .counter {
        font-size: 18px;
    }

    .single-event__counter .counter {
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 576px) {

}