﻿/*.swal-icon--info {
    border-color: #007bff;
}

.swal-button--confirm {
    background-color: #28a745 !important;
    color: white;
    border-radius: 6px;
    padding: 6px 20px;
    font-size: 16px;
    box-shadow: none;
}

.swal-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

.swal-content p {
    font-size: 16px;
}

.swal-close-button {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    font-weight: bold;
    background: transparent;
    border: none;
    color: #aaa;
    cursor: pointer;
    z-index: 9999;
}




*/


/* =========================================================
   External Link Popup
   Seminole-style .swal-* popup
   ========================================================= */

.swal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, .4);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}


    /* Show overlay */

    .swal-overlay.swal-overlay--show-modal {
        opacity: 1;
        pointer-events: auto;
    }


    /* =========================================================
   Vertical center
   ========================================================= */

    .swal-overlay::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        height: 100%;
    }


/* =========================================================
   Modal
   ========================================================= */

.swal-modal {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    text-align: left;
    font-size: 16px;
    width: 480px;
    max-width: calc(100% - 30px);
    background-color: #fff;
    border-radius: 6px;
    padding: 30px 35px 25px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transform: scale(.9);
    opacity: 0;
    transition: transform .2s, opacity .2s;
}


/* Modal visible */

.swal-overlay--show-modal .swal-modal {
    transform: scale(1);
    opacity: 1;
}


/* =========================================================
   Information icon
   ========================================================= */

.swal-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
}


/* Info icon */

.swal-icon--info {
    border: 4px solid #007bff;
}


    /* The "i" */

    .swal-icon--info::before {
        content: "i";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-family: Arial, sans-serif;
        font-size: 58px;
        font-weight: 400;
        line-height: 1;
        color: #c6dce8;
    }


/* =========================================================
   Title
   ========================================================= */

.swal-title {
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #595959;
}


/* =========================================================
   Content
   ========================================================= */

.swal-content {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #545454;
}


    .swal-content p {
        margin-top: 0;
    }


    /* "You are being redirected to:" */

    .swal-content .external-link-message {
        margin-bottom: 20px;
        font-size: 16px;
        font-weight: 400;
        color: #545454;
    }


    /* Link title */

    .swal-content .external-link-name {
        margin: 0;
        font-size: 17px;
        line-height: 25px;
        font-weight: 700;
        color: #333;
        word-break: break-word;
        overflow-wrap: anywhere;
    }


/* =========================================================
   Footer
   ========================================================= */

.swal-footer {
    margin-top: 25px;
    padding: 0;
    text-align: right;
}


/* =========================================================
   Button
   ========================================================= */

.swal-button {
    display: inline-block;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    min-width: 64px;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    box-shadow: none;
}


    .swal-button:hover {
        background-color: #218838;
    }


    .swal-button:focus {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }


/* =========================================================
   Close X
   ========================================================= */

.swal-close-button {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #aaa;
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}


    .swal-close-button:hover {
        color: #888;
    }


    .swal-close-button:focus {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 576px) {

    .swal-modal {
        width: calc(100% - 30px);
        padding: 30px 20px 25px;
    }


    .swal-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 22px;
    }


    .swal-icon--info::before {
        font-size: 48px;
    }


    .swal-title {
        font-size: 21px;
        line-height: 27px;
        margin-bottom: 25px;
    }
}