
        .modal {
            display: none;
            position: fixed;
            padding: 1rem;
            padding-top: 10rem;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 999;
            background-color: rgba(0, 0, 0, 0.7);
            overflow: auto;
        }

        .modal.show {
            display: block;
        }

        .modal .modal-container {
            width: 100%;
            max-width: 40rem;
            background-color: #FFF;
            border-radius: 5px;
            margin: auto;
            margin-bottom: 10rem;
            z-index: 1000;
            position: relative;
            box-shadow: 0.1rem 1rem 2rem rgba(0, 0, 0, 0.7);
            ;
            -webkit-animation-name: animatetop;
            -webkit-animation-duration: 0.4s;
            animation-name: animatetop;
            animation-duration: 0.4s;
            border: 1px solid #B0904A;
        }

        .modal .modal-header {
            position: relative;
            padding: 20px;
            padding-bottom:  0px;
            padding-left: 20px;
            border-bottom: 1px solid #B0904A;;
            font-size: 1.0rem;
            font-weight: bold;
        }
        .modal .modal-header  h3{
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        .modal .modal-header .close-btn {
            position: absolute;
            right: 1rem;
            top: 0.0rem;
            color: #000;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal .modal-header .close-btn:hover {
            color: #CCC;
        }


        .modal .modal-content {
            padding: 20px;
            padding-left: 20px;
            font-size: 1.0rem;
            text-align: left;
            border-radius: 0px;
            border: 0px;
        }

        .modal .modal-footer {
            padding: 20px;
            padding-left: 20px;

        }
        .modal .modal-footer .modal-footer-btns {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
        }
        #errorModal .modal-footer {
            padding: 20px;
            padding-left: 20px;
            display: flex;
            justify-content: flex-end;

        }

        #errorModal .modal-footer .close-modal-btn {
            right: 1rem;
            bottom: 1rem;
            cursor: pointer;
            padding: .4rem .8rem;
            border-radius: 5px;
            border: 1px solid #B0904A;
            ;
        }

        #errorModal .modal-footer .close-modal-btn:hover {
            color: #FFF;
        }