
.custom-headerQuick_site {
    position: relative;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    margin-right: 20px;
    height: 35px;
}
.custom-headerQuick_label {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    transition: background 0.2s;
    color: #333;
}
.custom-headerQuick_label:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.custom-headerQuick_label img {
    width: 32px;
    height: 24px;
    margin-right: 8px;
}
.custom-headerQuick_label .language {
    font-weight: bold;
    font-size: 14px; 
    margin-right: 5px;
    color: #1E71CE;
}
.custom-icon-arrowdown_line {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 6px;
    margin-bottom: 2px;
    border-right: 2px solid #1E71CE;
    border-bottom: 2px solid #1E71CE;
    transform: rotate(45deg);
}

.custom-compDropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 10000;
    box-sizing: border-box;
    padding-bottom: 18px;
}
.custom-headerQuick_site:hover .custom-compDropdown-panel {
    display: block;
}

.custom-form_label {
    display: block;
    margin: 10px 10px 6px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: #dddddd;
}

.country-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none!important;
    color: #333;
    transition: background-color 0.2s;
}
.country-link-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.country-left-wrap {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.country-link-item img {
    width: 28px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #ddd;
}
.check-mark {
    color: #2677e7; 
    font-weight: bold;
    font-size: 16px;
}
