html,
body {
    height: 100%;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}


/*JQUERY UI TIMEPICKER PLUGIN*/
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; }
.ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; }
.ui-timepicker-div dl dd { margin: 0 10px 10px 40%; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
.ui-timepicker-div .ui_tpicker_unit_hide{ display: none; }

.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input { background: none; color: inherit; border: none; outline: none; border-bottom: solid 1px #555; width: 95%; }
.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus { border-bottom-color: #aaa; }

.ui-timepicker-rtl{ direction: rtl; }
.ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
.ui-timepicker-rtl dl dt{ float: right; clear: right; }
.ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; }

/* Shortened version style */
.ui-timepicker-div.ui-timepicker-oneLine { padding-right: 2px; }
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time,
.ui-timepicker-div.ui-timepicker-oneLine dt { display: none; }
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label { display: block; padding-top: 2px; }
.ui-timepicker-div.ui-timepicker-oneLine dl { text-align: right; }
.ui-timepicker-div.ui-timepicker-oneLine dl dd,
.ui-timepicker-div.ui-timepicker-oneLine dl dd > div { display:inline-block; margin:0; }
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_minute:before,
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before { content:':'; display:inline-block; }
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before,
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before { content:'.'; display:inline-block; }
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide,
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before{ display: none; }


.sparkle-btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin-left: 30px;

    /* Giccses pink gradient */
    background: linear-gradient(145deg, #FFB6E1 0%, #E0B0FF 50%, #D8A4F4 100%);
    border: 2px solid #E0B0FF;
    border-radius: 8px;

    color: #4A0E4E;
    font-weight: 600;
    text-decoration: none;

    /* Glossy effect */
    box-shadow:
            0 4px 15px rgba(224, 176, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.6),
            inset 0 -2px 5px rgba(0, 0, 0, 0.1),
            0 0 20px rgba(224, 176, 255, 0.3);

    transition: all 0.3s ease;
    overflow: visible;
}

/* Rainbow text animation */
.rainbow-text {
    position: relative;
    color: #4A0E4E;
    animation: rainbow-cycle 11.5s infinite;
}

.rainbow-text::before {
    content: 'Levél létrehozása';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(
            90deg,
            #FF1493 0%,
            #FF69B4 15%,
            #FFB6E1 30%,
            #E0B0FF 45%,
            #9370DB 60%,
            #FF69B4 75%,
            #FF1493 90%,
            #FF1493 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0;
    /*animation: rainbow-flash 11.5s infinite;*/
}

@keyframes rainbow-flash {
    0%, 47.8% {
        opacity: 0;
        background-position: 0% 50%;
    }
    48% {
        opacity: 1;
        background-position: 0% 50%;
    }
    53% {
        opacity: 0;
        background-position: 200% 50%;
    }
    53.2%, 100% {
        opacity: 0;
        background-position: 200% 50%;
    }
}

@keyframes rainbow-cycle {
    0%, 47.8% {
        color: #4A0E4E;
    }
    48%, 53.2% {
        color: transparent;
    }
    53.3%, 100% {
        color: #4A0E4E;
    }
}

/* Glossy shine overlay */
.sparkle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

/* Sparkle dots */
.sparkle-btn::after {
    content: '✨';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 18px;
    opacity: 0;
    animation: sparkle-pulse 2s infinite;
    pointer-events: none;
}

/* Hover state */
.sparkle-btn:hover {
    background: linear-gradient(145deg, #FFC9EA 0%, #E8BFFF 50%, #E0B0FF 100%);
    box-shadow:
            0 8px 25px rgba(224, 176, 255, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.8),
            inset 0 -2px 5px rgba(0, 0, 0, 0.1),
            0 0 30px rgba(224, 176, 255, 0.5),
            0 0 40px rgba(255, 182, 225, 0.3);

    transform: translateY(-2px);
    border-color: #FFB6E1;
}

.sparkle-btn:hover::before {
    left: 100%;
}

.sparkle-btn:hover::after {
    opacity: 1;
}

/* Magic wand animation */
.sparkle-btn .fa-magic {
    display: inline-block;
    margin-left: 8px;
    transition: all 0.3s ease;
    color: #4A0E4E;
}

.sparkle-btn:hover .fa-magic {
    animation: wand-wiggle 0.6s ease infinite;
    filter: drop-shadow(0 0 4px #FFB6E1);
}

/* Keyframe animations */
@keyframes wand-wiggle {
    0%, 100% {
        transform: rotate(0deg) translateY(0px);
    }
    25% {
        transform: rotate(-10deg) translateY(-3px);
    }
    75% {
        transform: rotate(10deg) translateY(-2px);
    }
}

@keyframes sparkle-pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Active/click state */
.sparkle-btn:active {
    transform: translateY(0px);
    box-shadow:
            0 2px 10px rgba(224, 176, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.wizard-btn {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* maga az ikon */
.wizard-btn .fa-magic {
    transition: all 0.3s ease;
    display: inline-block;
}

/* hover glow */
.wizard-btn:hover .fa-magic {
    transform: rotate(-15deg) scale(1.2);
    filter: drop-shadow(0 0 6px #ff66ff)
    drop-shadow(0 0 10px #ff99ff);
}

/* kis csillám részecske */
.wizard-btn::after {
    content: "✨";
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
}

.wizard-btn:hover::after {
    animation: sparkle-burst 0.8s ease-out forwards;
}





.wizard-btn-off {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
    cursor:default !important;
}

/* maga az ikon */
.wizard-btn-off .fa-magic {
    transition: all 0.3s ease;
    display: inline-block;
    color:#c0c0c0;

}

/* kis csillám részecske */
.wizard-btn-off::after {
    content: "✨";
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    color:#c0c0c0
}



@font-face {
    font-family: 'DSEGG';
    src: url('./../../webfonts/DSEG7ModernMini-Bold.woff2') format('woff2');
    /*src: url('/webfonts/DSEG7ClassicMini-Regular.woff2') format('woff2');*/
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}








@keyframes sparkle-burst {
    0% {
        opacity: 1;
        transform: scale(0.5) translate(0,0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translate(6px,-8px) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translate(12px,-16px) rotate(360deg);
    }
}

