@media only screen and (max-width: 760px) {
    .modal-dialog {
        margin: 0px 65px !important;
    }
}


.Drop {
    position: relative;
}

    .Drop label {
        cursor: pointer;
        display: inline-block;
        transition: all 0.3s ease;
        width: 100%;
        height: 100%;
    }

    .Drop input {
        display: none;
    }


.space1 {
    display: inline-block;
    width: 1em;
}

.space2 {
    display: inline-block;
    width: 2em;
}

.right {
    float: right;
}


@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    src: url(../lib/material-symbols.woff2) format('woff');
}


.msicon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}


.modal-dialog p {
    font-size: 20pt;
    text-align: center;
}

/****   input-group   ****/
.input-group {
    position: relative;
    margin-bottom: 30px;
}

    .input-group label {
        position: absolute;
        top: -10px;
        left: 15px;
        background-color: transparent;
        padding: 0 10px;
        color: #555555;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        z-index: 2;
        border-radius: 4px;
        pointer-events: none;
    }

    .input-group input,
    .input-group textarea,
    .input-group select {
        width: 100%;
        padding: 16px;
        border: 2px solid #ddd;
        border-radius: 8px !important;
        font-size: 1rem;
        background-color: white;
        transition: all 0.3s ease;
        outline: none;
    }

        .input-group input:focus,
        .input-group textarea:focus,
        .input-group select:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

            .input-group input:focus + label,
            .input-group textarea:focus + label,
            .input-group select:focus + label {
                color: #2980b9;
                font-weight: 700;
            }

    .input-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .input-group select {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
        padding-right: 45px;
    }
