﻿.theme-light #preloader {
    opacity: 90%;
}

.preloader-hide {
    opacity: 0 !important;
}

.input-form {
    position: relative;
    margin-bottom: 15px !important;
}

    .input-form.has-icon.has-borders input, .input-form.has-icon.has-borders select, .input-form.has-icon.has-borders textarea {
        padding-left: 35px !important;
    }

    .input-form.has-borders input, .input-form.has-borders select, .input-form.has-borders textarea {
        height: 53px;
        border-left-width: 1px !important;
        border-right-width: 1px !important;
        border-top-width: 1px !important;
        padding-left: 13px !important;
        padding-right: 10px !important;
        border-radius: 10px !important;
    }

    .input-form.has-icon input, .input-form.has-icon select, .input-form.has-icon textarea {
        padding-left: 25px;
    }

    .input-form input, .input-form select, .input-form textarea {
        font-size: 12px;
        width: 100%;
        line-height: 45px;
        height: 45px;
        border-top-width: 0px;
        border-right-width: 0px;
        border-left-width: 0px;
        padding: 0px;
        border-radius: 0px;
    }

    .input-form.has-icon.has-borders i:first-child {
        position: absolute;
        top: 50%;
        width: 10px;
        padding-left: 15px !important;
        text-align: center;
        margin-top: -7px;
    }

    .input-form.has-icon i:first-child {
        position: absolute;
        top: 50%;
        width: 10px;
        text-align: center;
        margin-top: -8px;
    }

    .input-form label {
        opacity: 0;
        left: 0px !important;
        transform: translateX(30px);
        position: absolute;
        top: -12px;
        height: 10px;
        font-size: 10px;
        transition: all 150ms ease;
        background-color: #FFF;
    }

    .input-form.has-borders .valid, .input-form.has-borders .invalid, .input-form.has-borders span, .input-form.has-borders em {
        margin-right: 10px;
    }

    .input-form em, .input-form span {
        margin-top: -12px;
        font-size: 10px;
        font-style: normal;
        opacity: 0.3;
    }

    .input-form em, .input-form span {
        position: absolute;
        top: 50%;
        margin-top: -5px;
        right: 5px;
        pointer-events: none;
    }

.blurred {
    filter: blur(4px);
    pointer-events: none; /* optional: prevent clicks */
    opacity: 0.6; /* optional: dim it */
    transition: filter 0.3s ease, opacity 0.3s ease;
}

#page {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

body {
    background-image: url(/images/academy/background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: luminosity;
    background-position-y:-30px;
}

.bg-mps {
    background-image: url(../images/bg/bg-mps.png);
    height: 170px;
}


/* Hides the playback rate selection menu in Webkit browsers */
video::-webkit-media-controls-playback-speed-display {
    display: none !important;
}

/* Hides the 'three dots' settings menu entirely if preferred */
video::-internal-media-controls-overflow-button {
    display: none !important;
}

/* Hide the actual checkbox */
.hidden-check {
    display: none;
}

/* Style the label to look like a clickable card */
.answer-card {
    display: block;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.2s ease-in-out;
    position: relative;
    background: #fff;
    height: 100%;
}

    /* Hover effect */
    .answer-card:hover {
        border-color: #highlight-color-here; /* e.g., #007bff */
        background-color: #f8f9fa;
    }

/* Style when the hidden checkbox is checked */
.hidden-check:checked + .answer-card {
    border-color: #28a745; /* Green for selection */
    background-color: rgba(40, 167, 69, 0.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Image scaling */
.answer-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Optional: Checkmark overlay when selected */
.selection-indicator {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #28a745;
    font-size: 20px;
}

.hidden-check:checked + .answer-card .selection-indicator {
    display: block;
}