/* common button styles */
a,
button {
    display: inline-block;
    background-color: var(--btn);
    border: none;
    color: var(--btn_txt);
    padding: 0px 20px 0px 20px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* button hover effect */
button:hover {
    background-color: var(--btn_hover);
}

.path {
    /* stroke: var(--icn_stroke);*/
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.dots {
    /*  stroke: var(--icn_stroke);*/
    stroke-width: 3.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

svg #svg {
    display: none;
    height: 32px;
    width: 32px;
}

/* action icons - round */
.icn_action {
    display: block;
    position: relative;
    text-decoration: none;
    width: 26px;
    height: 26px;
    margin: 5px 5px 0 5px;
    border-radius: 50%;
    fill: none;
    stroke: var(--icn_stroke);
    stroke-width: 1px;
}

/* navigation icons - square rounded */
.icn_nav {
    display: block;
    position: relative;
    text-decoration: none;
    width: 26px;
    height: 32px;
    margin: 0;
    border-radius: 25%;
    stroke-width: 2px;
    fill: none;
    stroke: var(--icn_stroke);
}

.icn_action.open,
.icn_action.open:hover {
    background-color: var(--nav_sel_bkgr);
    fill: none;
    stroke: var(--nav_sel_txt);
    border-radius: 50% 50% 0% 0%;
}

/* dropdown open state */
.icn_nav.open,
.icn_nav.open:hover {
    background-color: var(--nav_sel_bkgr);
    stroke: var(--nav_sel_txt);
    border-radius: 25% 25% 0% 0%;
}

/* selected state for action and nav icons */
.selected .icn_action,
.selected .icn_nav {
    background-color: var(--icn_hover);
    /*  fill: var(--icn_sel_fill);*/
    stroke: var(--icn_sel_stroke);
}

/* hover and active states for action, nav, and drop icons */
.icn_action:hover,
.icn_nav:hover {
    background-color: var(--icn_hover);
}

/* active state for action and nav icons */
.icn_action:active,
.icn_nav:active {
    background-color: var(--icn_hover);
    stroke: var(--icn_sel_stroke);
}

/* main navigation icons*/
.icn_mainnav {
    display: block;
    position: relative;
    text-decoration: none;
    width: 32px;
    height: 32px;
    margin-left: 4px;
    margin-right: 4px;
    padding: 2px;
    border-radius: 25%;
    fill: none;
    stroke: var(--icn_stroke);
    stroke-width: 1.5px;
}

.msg_arrow {
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--nav_bkgr);
    width: fit-content;
    height: 50px;
    color: var(--nav_txt);
    margin-top: 50px;
    border-radius: 8px;
    font-size: 16px;
    padding: 20px;
    margin-left: 25px;
}

.msg_arrow::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background-color: var(--nav_bkgr);
    border-radius: 0 0 0 4px;
}

[data-state="hidden"] {
    display: none;
}

[data-state="disabled"] {
    opacity: 0.5;
    pointer-events: none;
}

[data-state="enabled"] {
    opacity: 1;
    pointer-events: auto;
}

.loading {
    margin-left: 20px;
    fill: hsl(270, 50%, 50%);
    width: 50px;
    height: 10px;
}

.select {
    margin-left: 25px;
    margin-top: 42px;
    animation: nudge 1s ease-in-out infinite;
    fill: none;
    stroke: var(--nav_txt);
    stroke-width: 1.5px;
}

@keyframes nudge {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }
}

/* --------------- checked --------------- */