/* ==========================================================================
   Widget - Are You Ready
   ========================================================================== */

.rw-widget-ayr__heading {
    color: #ffffff;
    background: #000;
    margin: 0;
    border-radius: var(--rw-corners) var(--rw-corners) 0 0;
    padding: 14px 40px;
    min-height: 72px;
}

.rw-widget-ayr__list {
    list-style: none;
    margin: 0;
    padding: 0 25px 10px 25px;
    background: var(--rw-accent);
    border-radius: 0 0 var(--rw-corners) var(--rw-corners);
}

.rw-widget-ayr__item {
    border-bottom: 1px solid #B6B5B5;
}

.rw-widget-ayr__item:last-child {
    border-bottom: none;
}

.rw-widget-ayr__link,
.rw-widget-ayr__link:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 15px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.rw-widget-ayr__link:hover {
    color: var(--rw-primary);
    text-decoration: none;
}

.rw-widget-ayr__item a i {
    color: var(--rw-primary);
}

.rw-single-cpt__sidebar .rw-widget-ayr__link {
    font-size: 20px;
}

.rw-single-cpt__sidebar h3.rw-widget-ayr__heading {
    font-size: 30px;
    min-height: auto;
}


@media ( max-width: 1024px ) {
    .rw-single-cpt__sidebar .rw-widget-ayr__list {
        padding: 0 10px 10px 10px;
    }

    .rw-single-cpt__sidebar h3.rw-widget-ayr__heading {
        padding: 14px 25px;
    }

    .rw-single-cpt__sidebar .rw-widget-ayr__link {
        font-size: 18px;
    }
}

/* Responsive */
@media ( max-width: 1200px ) {

    .rw-widget-ayr__heading {
        font-size: 35px;
    }

}