﻿/*:root {
    --type1-color: #e1f5fe;
    --type1-border: var(--type1-color);
    --type2-color: #f1f8e9;
    --type2-border: var(--type2-color);
    --type3-color: #fff3e0;
    --type3-border: var(--type3-color);
}*/
:root {
    --text-max-width: 750px;
    --big-content-max-width: 1440px;
    --type3-color: #ee7733;
    --type2-color: #009988;
    --type1-color: #0277BB;
}


.page-monitor h2 {
    margin: 80px auto 20px;
    text-align: center;
    max-width: var(--big-content-max-width);
    line-height: 1.5;
}
.page-monitor h2:empty {
    display:none;
}
.page-summary {
    max-width: var(--text-max-width);
    margin: auto;
    padding-left: 0;
    list-style: none;
    width: 100%;
    text-align: center;
}
.page-summary a 
{
    text-decoration: underline;
    
}
.filter-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-item input {
    margin-right: 8px;
    cursor: pointer;
}

.type1-label {
    color: var(--type1-color); /*var(--type1-color);*/
    font-weight: 500;
}

.type2-label {
    color: var(--type2-color); /*var(--type2-color);*/
    font-weight: 500;
}

.type3-label {
    color: var(--type3-color); /*var(--type3-color);*/
    font-weight: 500;
}

.table-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #f8f9fa;
    border-bottom: 2px solid #eaeaea;
}

th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaeaea;
}

tr:last-child td {
    border-bottom: none;
}



.data-type {
    font-size: 0.85em;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
}

.type3 {
    background-color: #e1f5fe;
    color: var(--type1-color);
    border: 1px solid var(--type1-color);
}

.type2 {
    background-color: #f1f8e9;
    color: var(--type2-color);
    border: 1px solid var(--type2-color);
}

.type1 {
    background-color: #fff3e0;
    color: var(--type3-color);
    border: 1px solid var(--type3-color);
}

.hidden {
    display: none;
}

.empty-state {
    padding: 30px;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    display: none;
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    vertical-align: middle;
}
/*Status of measure*/
.status-position {
    display: flex;
    -webkit-align-items: inherit;
    align-items: inherit;

}
.status-active {
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/svg/circle-check-sharp-solid.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    margin-right: 4px;
}
.status-announced {
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/svg/megaphone-sharp-solid.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    margin-right: 4px;
}
.status-investigation {
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/svg/folder-magnifying-glass-sharp-solid.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    margin-right: 4px;
}

.status-suspended {
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/svg/circle-pause-sharp-solid.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    margin-right: 4px;
}
.status-terminated {
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/svg/circle-xmark-sharp-solid.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    margin-right: 4px;
}
.status-unknown {
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/svg/circle-question-sharp-solid.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    margin-right: 4px;
}

.status-pending {
    background-color: var(--type3-color);
}

/*EffectonTrade*/
.status-restrictive {
    background-color: red;
}
.status-liberalising {
    background-color: green;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 350px;
    display: inline-block;
    border-bottom: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    height: 100%;
    white-space: unset;
    position: relative;
    padding-right: 15px;
}

.expand {
    border: none;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
}
.main-search-container {
    position: relative;
    background: url(../images/background/header-image-full.jpg) center 40% / cover;
    height: 300px;
}
.main-search-container .container {
    height: 100%;
}
.main-search-container .container .search-box {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
    }

    th, td {
        padding: 10px;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* summary */
#section-II {
    max-width: 750px;
    margin: auto;
    h2 {
        margin-top: 60px;
    }
}
#subtile-summary {
    margin: auto;
    text-align: center;
    margin: 40px auto 20px;
}
.page-monitor {
    h3
{
    max-width: 1440px;
    text-align: center;
    text-align: center;
    margin: 40px auto 20px;

}
h4 {
    margin: 10px 0;
    margin-bottom: 20px;
    font-size: 16px !important;
}
    .group-text {
        text-align: center;
    }
    .nav-tabs {
        display: flex;
        justify-content: center;
    }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
        color: #fff;
        background-color: #002c53;
        border-color: #002c53;
    }
    .nav-tabs > li > a {
        padding: 12px 19px;
        font-size: 13px;
        line-height: 15px;
        border: 1px solid #c5c5c5;
        display: inline-block;
        vertical-align: middle;
        border-left-width: 0;
        cursor: pointer;
        white-space: nowrap;
        color: #002c53;
        transition: all .3s;
    }
.filter-container {
    box-shadow: none;
    max-width: 750px;
    margin: auto;
    margin-bottom: 20px;
    font-size: 16px;
}
    /* table */


    .table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
        border: none;
    }
tr.type1-row td:first-child {
    border-left: 10px solid var(--type1-color);
}

tr.type2-row td:first-child {
    border-left: 10px solid var(--type2-color);
}

tr.type3-row td:first-child {
    border-left: 10px solid var(--type3-color);

}
.trade-direction {
    display: block;
    position: relative;
}

.trade-direction:after {
    position: absolute;
    display: inline-block;
    top: 6px;
    right: -10px;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 4px;
    border: 1px solid #fff;
}
.table > thead > tr > th.sorting_asc:after {
    background-image: url('../images/icons/svg/sort.svg');
    transform: scaleY(-1);
}

.table > thead > tr > th.sorting_desc:after {
    background-image: url('../images/icons/svg/sort.svg');
}
table thead {
    background: #ebeef2;
}
    table thead th {
        background: #062B55;
        color: #FFF;
        vertical-align:top;
    }

#map-import-view,#map-export-view {
    margin:auto;
    max-width: var(--big-content-max-width);
}
ul.updates li{
    margin: 10px 0;
}
.map-note {
    margin: auto;
    max-width: 1440px;
    width: 100%;
    text-align: right;
    cursor: pointer;
    color: #999999;
    font-size: 13px;
    font-style: normal;
    fill: #999999;
}
#table-view-content{
    margin: 0 5%;
}

@media (max-width: 1199px) {
    .hero-banner .inner-wrapper .title, .main-search-container .container .search-box .title {
        color: #FFF;
    }
    .term-group {
        background:none !important;
    }
}
.truncate + .expand {
  transform: translateY(-100%);
}

#geo-updates
{
    list-style-type: none;
}
#geo-updates {
    li {
        display: none;
        border-left: 10px solid var(--type3-color);
        padding-left: 10px;
    }

    li:nth-child(-n+5) {
        display: list-item;
    }
}

#ukr-updates {
    list-style-type: none;
}
#ukr-updates {
    li {
        display: none;
        border-left: 10px solid var(--type2-color);
        padding-left: 10px;
    }

    li:nth-child(-n+5) {
        display: list-item;
    }
}
.read-more {

    cursor: pointer;
    display: inline-block;
    margin-left: 30px;
    font-size: 16px;
    color: #fff;
    background-color: #002c53;
    border-color: #002c53;
    padding: 10px 20px;
    text-transform: uppercase;
}
.dropdown-checkbox {
    position: relative;
    display: inline-block;
}

.dropdown-checkbox-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    height: 320px;
    overflow: scroll;
    overflow-x: scroll;
    overflow-x: hidden;
}

    .dropdown-checkbox-content label {
        display: block;
        padding: 8px;
        background-image: none;
        color: #062B55;
        border-bottom: solid 1px;
    }

.dropdown-checkbox:hover .dropdown-checkbox-content {
    display: block;
}
.dropdown-checkbox button {
    background: #062B55;
    color: #FFF;
    padding: 2px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.filter-input {
    width: 100%;
    box-sizing: border-box;
    padding: 4px;
    margin-bottom: 4px;
}
.column-filter-input {
   
    padding: 8px;
    margin-bottom: 8px;
    color: #000;
}
.filter-box {
    width: 100px !important;
    color: #062B55 !important;
}
.filterToggleBtn {
    cursor: default;
    line-height: 1.42857143;
    color: #428bca;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    background-image: url(../images/icons/svg/dropdown_small.svg);
    background-repeat: no-repeat;
    padding: 5px;
    background-position: right 10px center;
    width:120px;
    font-weight:bolder;
    font-size: 16px;
}

.column-filter-input {
    background-image: url(../images/icons/svg/dropdown_small.svg);
    background-repeat: no-repeat;
    padding: 5px;
    background-position: right 10px center;
}
.table-pagination {
    text-align: right;
}

    .table-pagination .dataTables_paginate {
        float: none;
        display: inline-block;
    }
