/* ============================================
   SAVE THE DATE
   ============================================ */

.krem-save-the-date {
    position: relative;
    display: inline-block;
}

.krem-std-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: 2px black solid;
    cursor: pointer;
    padding: 5px;
}

button.krem-std-trigger:hover{
	background-color: #00000045;
}
button.krem-std-trigger:active{
	background-color: #00000045;
}
button.krem-std-trigger:focus{
	background-color: #00000045;
}

.krem-std-icon {
    width: 52px;
    height: 52px;
}

.krem-std-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #222;
}

.krem-std-dropdown {
    display: none;
}

.krem-std-dropdown.is-open {
    display: block;
/*     position: absolute; */
    top: 100%;
/*     left: 50%; */
/*     transform: translateX(-50%); */
    z-index: 9999;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
/*     min-width: 220px; */
    overflow: hidden;
}

.krem-std-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f60c0eff;
    transition: background 0.15s ease, color 0.15s ease;
}

.krem-std-option:last-child {
    border-bottom: none;
}

.krem-std-option svg {
    flex-shrink: 0;
}

.krem-std-em-real {
    display: none !important;
}
