.event-page {
    padding: 15px;
    background-color: var(--bg-color);
}

.event-page .is-today {
    border: 1px solid var(--border-color);
}

.box-event-item {
    border-radius: 12px;
}
.box-event-item .title {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    background-color: var(--tabs-bg-item-color);
    border-radius: 10px 10px 0 0;
    color: var(--text-color-white);
    font-size: var(--fsize-14);
    font-family: var(--font-family);
    line-height: 14px;
    word-wrap: break-word;
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    gap: 5px;
    padding: 10px;
}

.btn.btn-event-item-detail:hover,
.btn.btn-event-item-detail:focus,
.btn.btn-event-item-detail:active,
.btn.btn-event-item-detail:focus-visible {
  background-color: var(--bg-item-color);
  color: inherit !important;
  box-shadow: none !important;
  outline: none !important;
}

.btn-event-item-detail {
    display: flex;
    background-color: var(--bg-item-color);
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    position: relative;
    padding: 30px 15px 30px 15px  ;
    margin-top: 15px;
    position: relative;
}

.btn-event-item-detail:before,
.btn-event-item-detail:after {
    width: 100%;
    height: 0px;
    border-top: 1px var(--border-color) dashed;
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    content: " ";
}
.btn-event-item-detail:before {
    top: 12px;
}
.btn-event-item-detail:after {
    bottom: 12px;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:focus-visible {
  background-color: var(--bg-item-color);
  color: inherit !important;
  box-shadow: none !important;
  outline: none !important;
}

.is-today .btn-event-item-detail {
    display: flex;
    background-color: var(--bg-item-color);
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    position: relative;
    padding: 20px;
    margin-top: unset;
}

.is-today .btn-event-item-detail:before,
.is-today .btn-event-item-detail:after {
    width: 100%;
    height: 0px;
    border-top: 1px var(--border-color) dashed;
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    content: " ";
}
.is-today .btn-event-item-detail:before {
    top: 12px;
}
.is-today .btn-event-item-detail:after {
    bottom: 12px;
}

.box-item-left,
.box-item-right {
    display: flex;
    align-items: center;
    gap: 5px;
}
.box-item-left {
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    flex-grow: 1;
}
.box-item-right {
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
    width: 140px;
}

.box-item-title {
    color: var(--text-color);
    font-size: var(--fsize-15);
    font-family: var(--font-family);
    font-weight: 600;
    line-height: var(--line-height-16);
    word-wrap: break-word;
    justify-content: flex-start;
}
.box-item-left > div,
.box-item-left > span,
.box-item-right > div,
.box-item-right > span {
    width: 100%;
}
.box-item-right .text,
.box-item-left .text {
    color: var(--text-color-label);
    font-size: var(--fsize-13);
    font-family: var(--font-family);
    font-weight: 600;
    line-height: var(--line-height-16);
    word-wrap: break-word;
}
.box-item-left .text {
    justify-content: flex-start;
}

.is-past-events .box-item-title{
    color: var(--text-color-label);
}

.group-is-past-events {
    padding-left: 0 !important;
}
