
/* ------------ CUSTOM TAGS ------------ */

dev-mode {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    background-color: rgba(19, 79, 117, 0.52);
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    user-select: none;
    /*pointer-events: none;*/
    transition: background-color 0.3s;

}
dev-mode:hover {
    background-color: rgba(19, 79, 117, 1);
    cursor: var(--pointer);
}

#dev-info-box {
    flex-direction: column;
    position: fixed;
    top: 40px;
    right: 10px;
    background: #2c3e50;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9998;
    font-family: 'Courier New', monospace;
    line-height: 1.4;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s , transform 0.3s;
}

#dev-info-box.active {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
}

@media (max-width: 600px) {
    dev-mode {
        display: none;
    }
}


optional-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .3);
    height: 18px;
    width: 50px;
    min-width: 50px;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 13px;
    font-family: quan-bold, serif;
    margin-left: auto;
}

caution-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(91, 0, 0, 0.25);
    color: #ff426f;
    height: 18px;
    width: 50px;
    min-width: 50px;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 13px;
    font-family: quan-bold, serif;
    margin-left: auto;
}

angle-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    margin: 0 15px;
    animation: fade 0.5s 0.7s forwards;
}

line-separator {
    display: block;
    content: "";
    height: 1px;
    max-width: 1024px;
    width: 100%;
    background-color: var(--text-secondary-color);
    /* margin: 64px 0; */
}
line-separator-full {
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    background-color: var(--text-secondary-color);
    /* margin: 64px 0; */
}

vertical-line-separator-full {
    display: flex;
    content: "";
    height: 100%;
    width: 2px;
    margin: 0 10px;
    background-color: var(--text-color-05);
    transition: opacity 0.3s;
}

vertical-dot-line-full {
    display: flex;
    content: "";
    height: 100%;
    width: 2px;
    margin: 0 10px;
    border-right: dotted 3px rgba(213, 221, 223, 0.50);
    transition: opacity 0.3s;
}

vertical-line-separator {
    display: flex;
    content: "";
    height: 90%;
    width: 2px;
    margin: 0 10px;
    background-color: #D5DDDF;
    transition: opacity 0.3s;
}

vertical-dot-line {
    display: flex;
    content: "";
    height: 85%;
    width: 2px;
    margin: 0 10px;
    border-right: dotted 3px rgba(213, 221, 223, 0.75);
    transition: opacity 0.3s;
}

horizontal-dot-line {
    display: flex;
    content: "";
    height: 1px;
    width: 95%;
    margin: 10px 0;
    border-bottom: dotted 3px rgba(213, 221, 223, 0.75);
    transition: opacity 0.3s;
}

horizontal-dot-line-sml {
    display: flex;
    content: "";
    height: 1px;
    width: 95%;
    margin: 10px 0;
    border-bottom: dotted 3px rgba(213, 221, 223, 0.75);
    transition: opacity 0.3s;
}
horizontal-spacing {
    display: flex;
    margin: 15px;
    height: 0;
    width: 100%;
}


white-space {
    display: block;
    height: 100px;
    width: 100%;

}

background-blur {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0,0.5);
    filter: blur(.5rem);
    z-index: 30;
}

blur-information {
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(2px);
    position: absolute;
    border-radius: 4px;
    transition: blur 0.3s , background-color 0.3s;
}

blur-information:hover {
    backdrop-filter: blur(0);
    background-color:transparent;

}


quebec-flag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

quebec-flag svg {
    height: 50%;
    width: 50%;
}



quebec-flag .qc_background {
    fill: #2e343d;
    transition: fill 0.5s;
}

quebec-flag .qc_foreground {
    fill: #1e232c;
    transition: fill 0.5s;
}

quebec-flag:hover .qc_background {
    fill: #fff;
}

quebec-flag:hover .qc_foreground {
    fill: #003da5;
}

quebec-flag:hover .quebec_flag_text {
    color: #fff;
}

quebec-flag .quebec_flag_text {
    display: inline-block;
    font-family: quan-bold, serif;
    font-style: italic;
    color: #1e232c;
    font-size: 32px;
    transition: color 0.5s;
}

disclaimer-text {
    font-family: quan, serif;
    font-size: 1vw;
    margin-left: 20px;
    color: rgba(255, 255, 255, .5);
    transition: color 0.3s;

    position: absolute;
    bottom: 0;
    left: 0;
}

disclaimer-text:hover {
    color: rgba(255, 255, 255, 1);
}

world-map {
    position: relative;

    height: 100%;
    width: 100%;
}

world-map svg {
    overflow: visible;
    height: 100%;
    width: 100%;
}

world-map path {
    transition: fill 0.3s , stroke 0.3s , transform 0.3s;
}

world-map path:hover {
    z-index: 100;
}

.countryNameAnim {
    animation: countryNameAnim 0.5s forwards;
}

