:root {
    --economic-calendar-main-text-color: #040404;
    --economic-calendar-secondary-text-color: #787f86;
    --economic-calendar-positive-color: #04ad49;
    --economic-calendar-positive-background-color: #ebf8f0;
    --economic-calendar-positive-border-color: #d8f2e3;
    --economic-calendar-negative-color: #d40e2e;
    --economic-calendar-negative-background-color: #fceced;
    --economic-calendar-negative-border-color: #f9dadf;
    --economic-calendar-medium-color: #d4b00b;
    --economic-calendar-medium-background-color: #fcf9eb;
    --economic-calendar-medium-border-color: #f9f3da;
}

[v-cloak] {
    display: none;
}

.economic__calendar-outer {
    background-color: transparent !important;
    border: none !important;
}

#economic__calendar {
    color: var(--economic-calendar-main-text-color);
    font-weight: 500;
}

.economic__calendar-section {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e8e9eb;
    border-radius: 5px;
}

.economic__calendar-current-day {
    margin-bottom: 30px;
}

.economic__calendar-back-btn {
    display: inline-block;
    margin-bottom: 21px;
    padding: 3px 0;
    border: none;
    background-color: transparent;
    color: #0c5fd6;
    font-size: 14px;
    font-weight: 700;
    outline: none;
}

.economic__calendar-back-btn span {
    position: relative;
    display: inline-block;
    padding-inline-end: 5px;
    padding-inline-start: 15px;
}

.economic__calendar-back-btn span::before {
    content: '';
    position: absolute;
    top: 50%;
    inset-inline-start: -3px;
    transform: translate(0, -50%);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../img/back-arrow-icon.svg);
}

.economic__calendar-loader-icon {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 24px;
}

.economic__calendar-loader-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #e8e9eb;
    border-top-color: #787f86;
    border-bottom-color: #787f86;
    -webkit-animation: 1s loader-animation linear infinite;
    animation: 1s loader-animation linear infinite;
    pointer-events: none;
}

.economic__calendar-more-button {
    display: inline-block;
    padding: 5.4px 11px;
    font-size: 14px;
    font-weight: 700;
    color: #344252;
    background-color: #fff;
    border: 1px solid #c6c9cd;
    border-radius: 4px;
    outline: none
}

.economic__calendar-more-button:focus {
    outline: none;
}

.economic__calendar-more-button.loading span {
    position: relative;
    padding-inline-start: 11px;
}

.economic__calendar-more-button.loading span::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    inset-inline-start: 1px;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #e8e9eb;
    border-top-color: #787f86;
    border-bottom-color: #787f86;
    -webkit-animation: 1s loader-animation linear infinite;
    animation: 1s loader-animation linear infinite;
    pointer-events: none;
}

.economic__calendar-mobile-filter-toggle {
    display: none;
}

.economic__calendar-filters {
    display: flex;
    gap: 16px;
}

.economic__calendar-filters .economic__calendar-filter-head {
    display: none;
}

.economic__calendar-filters .economic__calendar-filter {
    min-width: 26.6%;
}

.economic__calendar-filters .economic__calendar-filter-label {
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 1;
    color: var(--economic-calendar-secondary-text-color);
}

.economic__calendar-filters .economic__calendar-filter-selected {
    font-size: 16px;
}

.economic__calendar-filters .economic__calendar-filter-arrow {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    inset-inline-end: 12px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../img/arrow-down.svg);
    transition: transform .25s ease;
}

.economic__calendar-filters .economic__calendar-select-trigger.loader .economic__calendar-filter-arrow {
    background-image: none;
}

.economic__calendar-filters .economic__calendar-select-trigger.loader .economic__calendar-filter-arrow::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 80%;
    height: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #e8e9eb;
    border-top-color: #787f86;
    border-bottom-color: #787f86;
    -webkit-animation: 1s loader-animation linear infinite;
    animation: 1s loader-animation linear infinite;
    pointer-events: none;
}

.economic__calendar-filters .economic__calendar-select-trigger.active .economic__calendar-filter-arrow {
    transform: translateY(-50%) rotate(180deg);
}

@keyframes loader-animation {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.economic__calendar-filters .economic__calendar-select-trigger {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5px 12px;
    background-color: #fff;
    border: 1px solid #c6c9cd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .25s ease;
}

.economic__calendar-filters .economic__calendar-select-trigger.loader {
    pointer-events: none;
    opacity: .5;
}

.economic__calendar-filters .economic__calendar-select {
    position: relative;
}

.economic__calendar-filters .economic__calendar-select-dropdown {
    position: absolute;
    padding: 8px;
    top: 110%;
    left: 0;
    width: 100%;
    max-height: 410px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .08);
    z-index: 10;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.economic__calendar-filters .economic__calendar-select-dropdown::-webkit-scrollbar {
    display: none;
}

.economic__calendar-filters .economic__calendar-select-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 10px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.economic__calendar-filters .economic__calendar-select-option.active {
    padding-inline-end: 42px;
}

.economic__calendar-filters .economic__calendar-select-option.active::before {
    content: '';
    position: absolute;
    inset-inline-end: 10px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translate(0, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../img/dropdown-checkmark-thin-icon.svg);
}

.economic__calendar-filters .economic__calendar-select-option input {
    display: none;
}

.economic__calendar-filters .economic__calendar-select-option .economic__calendar-select-checkbox {
    position: relative;
}

.economic__calendar-filters .economic__calendar-select-option .economic__calendar-select-checkbox {
    content: '';
    width: 24px;
    height: 24px;
    background-color: #e8e9eb;
    border: 1px solid #c1c3c5;
    border-radius: 4px;
}

.economic__calendar-filters .economic__calendar-select-option input:checked + .economic__calendar-select-checkbox {
    background-color: #04ad49;
    border-color: #04a047;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../img/dropdown-checkmark-icon.svg);
}

.economic__calendar-filters .economic__calendar-submit {
    min-width: 15.6%;
}

.economic__calendar-filters .economic__calendar-submit-btn {
    min-width: 100%;
    height: 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background-color: #04ad49;
    border: 1px solid #04a047;
    border-radius: 8px;
    outline: none;
}

.economic__calendar-filters .economic__calendar-submit-btn[disabled] {
    opacity: .7;
}

.economic__calendar-section--events {
    margin-top: 20px;
}

.economic__calendar-section--events .economic__calendar-events-mobile {
    display: none;
}

.economic__calendar-events-table {
    margin-bottom: 0;
}

.economic__calendar-events-table thead {
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #e8e9eb;
}

.economic__calendar-events-table thead th {
    padding: 23px 14px 15px 14px;
    color: var(--economic-calendar-secondary-text-color);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.economic__calendar-events-table thead th.center {
    text-align: center;
}

.economic__calendar-events-table tbody {
    border: none;
}

.economic__calendar-events-table tbody .economic__calendar-events-table-row {
    cursor: pointer;
}

.economic__calendar-events-table tbody tr:nth-child(even) {
    background-color: transparent;
}

.economic__calendar-events-table tbody td {
    min-height: 58px;
    padding: 12px 14px;
    border-bottom: 1px solid #e8e9eb;
    font-size: 14px;
}

.economic__calendar-events-table tfoot {
    background-color: transparent;
    border: none;
}

.economic__calendar-events-table tfoot td {
    padding: 12px;
    border: none;
}

.economic__calendar-events-table .economic__calendar-events-table-time,
.economic__calendar-events-table .economic__calendar-events-table-country {
    font-family: Inter, Roboto, Helvetica, Arial, sans-serif;
}

.economic__calendar-events-table .economic__calendar-events-table-flex {
    display: flex;
    align-items: center;
}

.economic__calendar-events-table .economic__calendar-events-table-date p {
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: var(--economic-calendar-secondary-text-color);
}

.economic__calendar-events-table .economic__calendar-event-icon {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-inline-end: 5px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.economic__calendar-events-table .economic__calendar-event-icon.complete {
    background-image: url(../img/complete-event-icon.svg);
}

.economic__calendar-events-table .economic__calendar-event-icon.coming {
    background-image: url(../img/coming-event-icon.svg);
}

.economic__calendar-events-table .economic__calendar-events-table-country span {
    font-size: 16px;
    text-transform: uppercase;
}

.economic__calendar-events-table .economic__calendar-events-table-flag {
    width: 100%;
    max-width: 32px;
    height: 32px;
    margin-inline-end: 10px;
}

.economic__calendar-events-table .economic__calendar-events-table-impact span {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
}

.economic__calendar-events-table .economic__calendar-events-table-impact span.low {
    color: var(--economic-calendar-positive-color);
    background-color: var(--economic-calendar-positive-background-color);
    border: 1px solid var(--economic-calendar-positive-border-color);
}

.economic__calendar-events-table .economic__calendar-events-table-impact span.medium {
    color: var(--economic-calendar-medium-color);
    background-color: var(--economic-calendar-medium-background-color);
    border: 1px solid var(--economic-calendar-medium-border-color);
}

.economic__calendar-events-table .economic__calendar-events-table-impact span.high {
    color: var(--economic-calendar-negative-color);
    background-color: var(--economic-calendar-negative-background-color);
    border: 1px solid var(--economic-calendar-negative-border-color);
}

.economic__calendar-events-table .economic__calendar-events-table-actual .positive {
    color: var(--economic-calendar-positive-color);
}

.economic__calendar-events-table .economic__calendar-events-table-actual .negative {
    color: var(--economic-calendar-negative-color);
}

.economic__calendar-events-table .economic__calendar-events-table-actual,
.economic__calendar-events-table .economic__calendar-events-table-forecast,
.economic__calendar-events-table .economic__calendar-events-table-previous {
    direction: ltr;
    text-align: center;
}

.economic__calendar-events-table .economic__calendar-events-table-more {
    padding-top: 32px;
}

.economic__calendar-events-table .economic__calendar-events-table-more .economic__calendar-events-table-flex {
    justify-content: center;
}

.economic__calendar-events-table .economic__calendar-events-table-loader {
    border-bottom: 1px solid #e8e9eb;
}

.economic__calendar-section--empty {
    margin-top: 20px;
}

.economic__calendar-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    text-align: center;
}

.economic__calendar-empty .economic__calendar-empty-icon {
    width: 100%;
    max-width: 78px;
    margin: 0 auto;
}

.economic__calendar-empty-txt {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
}

.economic__calendar-event-detail .economic__calendar-event-detail-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.economic__calendar-event-detail .economic__calendar-event-detail-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.economic__calendar-event-detail .economic__calendar-event-detail-flag {
    width: 100%;
    max-width: 44px;
}

.economic__calendar-event-detail .economic__calendar-event-detail-currency-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.economic__calendar-event-detail .economic__calendar-event-detail-currency {
    font-size: 20px;
    font-weight: 700;
}

.economic__calendar-event-detail .economic__calendar-event-detail-impact span {
    display: inline-block;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
}

.economic__calendar-event-detail .economic__calendar-event-detail-impact span.low {
    color: var(--economic-calendar-positive-color);
    background-color: var(--economic-calendar-positive-background-color);
    border: 1px solid var(--economic-calendar-positive-border-color);
}

.economic__calendar-event-detail .economic__calendar-event-detail-impact span.medium {
    color: var(--economic-calendar-medium-color);
    background-color: var(--economic-calendar-medium-background-color);
    border: 1px solid var(--economic-calendar-medium-border-color);
}

.economic__calendar-event-detail .economic__calendar-event-detail-impact span.high {
    color: var(--economic-calendar-negative-color);
    background-color: var(--economic-calendar-negative-background-color);
    border: 1px solid var(--economic-calendar-negative-border-color);
}

.economic__calendar-event-detail .economic__calendar-event-detail-country {
    margin-top: 3px;
    color: var(--economic-calendar-secondary-text-color);
    font-size: 14px;
}

.economic__calendar-event-detail .economic__calendar-event-detail-stats {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 30px 0;
    margin-top: 18px;
    border-top: 1px solid #e8e9eb;
    border-bottom: 1px solid #e8e9eb;
}

.economic__calendar-event-detail .economic__calendar-event-detail-col {
    min-width: 130px;
}

.economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-icon.complete {
    background-image: url(../img/complete-event-icon.svg);
}

.economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-icon.coming {
    background-image: url(../img/coming-event-icon.svg);
}

.economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-value {
    font-size: 14px;
    font-weight: 500;
}

.economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-countdown {
    color: #0c5fd6;
}

.economic__calendar-event-detail .economic__calendar-event-detail-label {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--economic-calendar-secondary-text-color);
}

.economic__calendar-event-detail .economic__calendar-event-detail-value {
    display: block;
    font-weight: 700;
    direction: ltr;
}

.economic__calendar-event-detail .economic__calendar-event-detail-value.positive {
    color: var(--economic-calendar-positive-color);
}

.economic__calendar-event-detail .economic__calendar-event-detail-value.negative {
    color: var(--economic-calendar-negative-color);
}

.economic__calendar-event-detail .economic__calendar-event-detail-description {
    margin-top: 40px;
}

.economic__calendar-event-detail .economic__calendar-event-detail-description p {
    margin: 0;
    color: #383f46;
}

.economic__calendar-event-detail .economic__calendar-event-detail-col--previous .economic__calendar-event-detail-value {
    color: var(--economic-calendar-secondary-text-color);
}

.economic__calendar-event-detail .economic__calendar-event-detail-trade {
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e9eb;
}

.economic__calendar-event-detail .economic__calendar-event-detail-trade-button {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #04ad49;
    border: 1px solid #04a047;
    border-radius: 8px;
    text-decoration: none;
}

.economic__calendar-event-detail-history {
    margin-top: 18px;
}

.economic__calendar-event-detail-history .economic__calendar-event-detail-history-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.economic__calendar-event-detail-history-table {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 14px;
}

.economic__calendar-event-detail-history-table thead,
.economic__calendar-event-detail-history-table tbody,
.economic__calendar-event-detail-history-table tfoot {
    background-color: transparent;
    border: none;
}

.economic__calendar-event-detail-history-table tr:nth-child(even) {
    background-color: transparent;
}

.economic__calendar-event-detail-history-table th {
    color: var(--economic-calendar-secondary-text-color);
    font-weight: 500;
    border: none;
    border-bottom: 1px solid #e8e9eb;
}

.economic__calendar-event-detail-history-table td {
    border: none;
    border-bottom: 1px solid #e8e9eb;
    font-weight: 700;
}

.economic__calendar-event-detail-history-table td:last-child {
    color: var(--economic-calendar-secondary-text-color);
}

.economic__calendar-event-detail-history-table tfoot td {
    border: none;
}

.economic__calendar-event-detail-history-table .economic__calendar-event-detail-history-table-value {
    display: block;
    direction: ltr;
}

.economic__calendar-event-detail-history-table .economic__calendar-events-table-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.economic__calendar-event-detail-history-table .positive {
    color: var(--economic-calendar-positive-color);
}

.economic__calendar-event-detail-history-table .negative {
    color: var(--economic-calendar-negative-color);
}

.economic__calendar-event-detail-history-table .economic__calendar-event-detail-history-table-label {
    display: none;
}

.economic__calendar-event-detail-history-table .economic__calendar-history-date-mobile {
    display: none;
}

.economic__calendar-event-detail-history-error {
    margin-top: 30px;
}

.economic__calendar-section--error {
    margin-top: 20px;
}

.economic__calendar-section--error .economic__calendar-error-txt {
    margin-bottom: 0;
}

.rtl .economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-value {
    direction: rtl;
}

.rtl .economic__calendar-more-button.loading span::before {
    inset-inline-start: -9px;
}

.rtl .economic__calendar-back-btn span::before {
    transform: translate(0, -50%) rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
    .economic__calendar-more-button:hover {
        background-color: #ececec;
    }

    .economic__calendar-filters .economic__calendar-select-trigger:hover {
        background-color: #ebecec;
    }

    .economic__calendar-filters .economic__calendar-select-option:hover {
        background-color: #f5f5f5;
    }

    .economic__calendar-filters .economic__calendar-submit-btn:hover {
        background-color: #47a34a;
        border-color: #47a34a;
    }

    .economic__calendar-events-table tbody .economic__calendar-events-table-row:hover {
        background-color: #f4f5f5;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-trade-button:hover {
        background-color: #47a34a;
        border-color: #47a34a;
    }
}

@media (max-width: 1999px) {
    .economic__calendar-filters .economic__calendar-filter {
        min-width: 26.3%;
    }
}

@media (max-width: 1199px) {
    .economic__calendar-events-table thead th {
        white-space: initial;
    }
}

@media (max-width: 991px) {
    .economic__calendar-section {
        padding: 15px;
        border-radius: 16px;
    }

    .economic__calendar-current-day {
        margin-bottom: 25px;
        color: var(--economic-calendar-secondary-text-color);
    }

    .economic__calendar-section--filters {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        padding: 0;
        background-color: #f4f5f5;
        z-index: 999999;
    }

    .economic__calendar-section--filters.mobile-filters-visible {
        display: block;
    }

    .economic__calendar-filters .economic__calendar-filter-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        padding: 10px 15px;
        background-color: #fff;
        border-bottom: 1px solid #e8e9eb;
    }

    .economic__calendar-filters .economic__calendar-filter-title {
        font-size: 20px;
        font-weight: 700;
    }

    .economic__calendar-filters .economic__calendar-filter-close {
        display: block;
        width: 24px;
        height: 24px;
        padding: 0;
        border: none;
        outline: none;
        background-repeat: no-repeat;
        background-color: transparent;
        background-position: center;
        background-size: 100%;
        background-image: url(../img/close-icon.svg);
    }

    .economic__calendar-section--filters .economic__calendar-filters {
        flex-direction: column;
        min-height: 100vh;
    }

    .economic__calendar-filters .economic__calendar-filter {
        padding: 0 15px;
        min-width: 100%;
    }

    .economic__calendar-filters .economic__calendar-select-dropdown {
        max-height: 350px;
    }

    .economic__calendar-filters .economic__calendar-submit {
        margin-top: auto;
        padding: 15px;
        background-color: #fff;
        border-top: 1px solid #e8e9eb;
    }

    .economic__calendar-mobile-filter-toggle {
        display: block;
        margin-bottom: 25px;
        padding-inline-start: 8px;
        padding-inline-end: 12px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-weight: 700;
        color: #383f46;
        background-color: transparent;
        border: 1px solid #c6c9cd;
        border-radius: 4px;
    }

    .economic__calendar-mobile-filter-toggle span {
        position: relative;
        padding-inline-start: 20px;
    }

    .economic__calendar-mobile-filter-toggle span::before {
        content: '';
        position: absolute;
        top: 50%;
        inset-inline-start: 0;
        transform: translate(0, -50%);
        width: 16px;
        height: 16px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        background-image: url(../img/filters-icon.svg);
    }

    .economic__calendar-section--events {
        margin: 0;
        padding: 0;
        background-color: transparent;
        border: none;
    }

    .economic__calendar-section--events .economic__calendar-events-desktop {
        display: none;
    }

    .economic__calendar-section--events .economic__calendar-events-mobile {
        display: block;
    }

    .economic__calendar-section--events .economic__calendar-events-mobile .economic__calendar-events-mobile-date {
        margin: 14px 0;
        color: var(--economic-calendar-secondary-text-color);
    }

    .economic__calendar-events-mobile-item {
        display: flex;
        padding: 16px;
        gap: 12px;
        margin-bottom: 4px;
        background-color: #fff;
        border: 1px solid #e8e9eb;
        border-radius: 16px;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-country {
        width: 100%;
        max-width: 40px;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-info {
        width: calc(100% - 52px);
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-head {
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-currency {
        margin-inline-end: 8px;
        text-transform: uppercase;
        font-family: Inter, Roboto, Helvetica, Arial, sans-serif;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-impact {
        margin-inline-end: 18px;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-impact span {
        display: inline-block;
        padding: 2px 6px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 4px;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-impact span.low {
        color: var(--economic-calendar-positive-color);
        background-color: var(--economic-calendar-positive-background-color);
        border: 1px solid var(--economic-calendar-positive-border-color);
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-impact span.medium {
        color: var(--economic-calendar-medium-color);
        background-color: var(--economic-calendar-medium-background-color);
        border: 1px solid var(--economic-calendar-medium-border-color);
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-impact span.high {
        color: var(--economic-calendar-negative-color);
        background-color: var(--economic-calendar-negative-background-color);
        border: 1px solid var(--economic-calendar-negative-border-color);
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-time {
        display: flex;
        align-items: center;
        font-family: Inter, Roboto, Helvetica, Arial, sans-serif;
    }

    .economic__calendar-events-mobile-item  .economic__calendar-events-mobile-item-icon {
        display: inline-block;
        width: 11px;
        height: 11px;
        margin-inline-end: 5px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }

    .economic__calendar-events-mobile-item  .economic__calendar-events-mobile-item-icon.complete {
        background-image: url(../img/complete-event-icon.svg);
    }

    .economic__calendar-events-mobile-item  .economic__calendar-events-mobile-item-icon.coming {
        background-image: url(../img/coming-event-icon.svg);
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-title {
        margin-top: 8px;
        font-size: 14px;
        color: var(--economic-calendar-secondary-text-color);
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-stats {
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-col {
        width: 100%;
        font-weight: 700;
        font-size: 14px;
        direction: ltr;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-col:nth-child(2) {
        padding: 0 5px;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-label {
        display: block;
        margin-bottom: 2px;
        font-size: 14px;
        font-weight: 500;
        color: var(--economic-calendar-secondary-text-color);
        direction: rtl;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-col .positive {
        color: var(--economic-calendar-positive-color);
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-col .negative {
        color: var(--economic-calendar-negative-color);
    }

    .economic__calendar-events-mobile-loader {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .economic__calendar-events-mobile-more {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
    }

    .economic__calendar-more-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 330px;
        height: 48px;
        background-color: transparent;
        font-size: 16px;
        border-radius: 8px;
    }

    .economic__calendar-section--empty {
        background-color: transparent;
        border: none;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-stats {
        flex-wrap: wrap;
        padding-bottom: 16px;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-col {
        min-width: auto;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-col:nth-child(2) {
        text-align: left;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-col:nth-child(3) {
        text-align: center;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-col:nth-child(4) {
        text-align: right;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-col--time {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        width: 100%;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e8e9eb;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-label {
        margin-bottom: 0;
        padding-inline-end: 10px;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-trade {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .economic__calendar-event-detail .economic__calendar-event-detail-trade-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 330px;
    }

    .economic__calendar-event-detail-history-table thead {
        display: none;
    }

    .economic__calendar-event-detail-history-table .economic__calendar-event-detail-history-table-label {
        display: block;
        margin-bottom: 12px;
        font-size: 12px;
        font-weight: 500;
        color: var(--economic-calendar-secondary-text-color);
    }

    .economic__calendar-event-detail-history-table .economic__calendar-history-date-mobile {
        display: block;
        font-size: 12px;
    }

    .economic__calendar-event-detail-history-table .economic__calendar-history-date-desktop {
        display: none;
    }

    .economic__calendar-event-detail-history-table td {
        padding: 12px 5px;
        text-align: center;
    }

    .economic__calendar-event-detail-history-table td:first-child {
        padding-inline-start: 0;
        text-align: left;
        font-size: 12px;
    }

    .economic__calendar-event-detail-history-table td:last-child {
        padding-inline-end: 0;
    }

    .rtl .economic__calendar-event-detail .economic__calendar-event-detail-col:nth-child(2) {
        text-align: right;
    }

    .rtl .economic__calendar-event-detail .economic__calendar-event-detail-col:nth-child(4) {
        text-align: left;
    }

    .rtl .economic__calendar-event-detail-history-table td:first-child {
        text-align: right;
    }
}

@media (max-width: 575px) {
    #economic__calendar {
        padding: 0 15px;
    }
}

@media (max-width: 520px) {
    .economic__calendar-mobile-filter-toggle,
    .economic__calendar-filters .economic__calendar-filter-selected,
    .economic__calendar-filters .economic__calendar-select-option {
        font-size: 14px;
    }

    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-title,
    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-col,
    .economic__calendar-events-mobile-item .economic__calendar-events-mobile-item-label {
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-value {
        max-width: 120px;
        text-align: right;
    }

    .rtl .economic__calendar-event-detail .economic__calendar-event-detail-col--time .economic__calendar-event-detail-value {
        max-width: 120px;
        text-align: left;
    }
}

@media (max-width: 375px) {
    .economic__calendar-filters .economic__calendar-select-dropdown--countries {
        max-height: 290px;
    }

    .economic__calendar-event-detail-history-table td {
        font-size: 12px;
    }
}
