/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

.gralink-hover a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.gralink-hover a:hover {
    color: #ffffff !important; /* Svak hvitaktig farge */
    text-decoration: underline;
    text-decoration-color: #ffffff !important;
}

.iconzoom a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, text-decoration-color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* Viktig for at transform skal funke på inline-elementer */
}

.iconzoom a:hover {
    color: #ffffff !important;
    text-decoration: underline;
    text-decoration-color: #ffffff !important;
    transform: scale(1.2); /* Øker størrelsen med 20% ved hover */
}

.menu-btn-container.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #066aab;
    color: white;
    border: 2px solid #066aab;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.menu-btn-container.btn:hover {
    background-color: transparent;
    color: #066aab;
    border: 1px solid #066aab;
}
.nf-field-element input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background-color: #f0f0f0; /* Lys grå bakgrunn */
    border: 1px solid #ccc; /* Grå kant */
    border-radius: 4px; /* Litt avrundede hjørner */
    appearance: none; /* Fjern standard stil */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.nf-field-element input[type="checkbox"]:checked {
    background-color: #e0e0e0; /* Litt mørkere grå når krysset av */
    border-color: #bbb; /* Litt mørkere kant ved avkrysset */
}


.menu-primary-inner.menu-smart.sm a {
  color: inherit; /* Beholder vanlig farge før hover/aktiv */
  transition: color 0.3s ease;
}

.menu-primary-inner.menu-smart.sm a:hover,
.menu-primary-inner.menu-smart.sm .current-menu-item > a,
.menu-primary-inner.menu-smart.sm .current_page_item > a {
  color: #066aab !important; /* Blåfargen du bruker */
}
