
/*元々の設定　modal-contentがbootstrapのクラス名と同じなため、
  ntc-modal-contentと命名変更 {*/
.ntc-modal-content {
    position: fixed;
    display: none;
    z-index: 1100;
    width: 75%;
    margin: 0;
    padding: 10px 20px;
    border: 2px solid #aaa;
    background: #fff;
    pointer-events: auto;
    color: var(--bs-modal-color);
    pointer-events: auto;
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.js-modal-overlay {
    z-index: 1040;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.5);
}

.css-modal-overlay-cal {
    z-index: 1040;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.5);
}

.modal-title {
    width: 95%;
    text-align: center;
    float: left;
    padding-top: 5px;
    padding-bottom: 5px;
}

.css-modal-close-icon {
    float: right;
    padding-right: 5px;
    padding-top: 4px;
}

p.css-modal-close-icon {
    margin-bottom: 0px;
}

.css-modal-close-icon a {
    color: #fff;
}

.css-modal-form-title {
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #2E73B3;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

div.css-check-group input {
    display: none;
}

div.css-hidden-radio label {
    cursor: pointer;
    padding: 5px 10px;
    float: left;
    border: solid 0px rgb(203,203,203);
    margin-left: -1px;
    background: rgb(203,203,203);
    color: #fff;
    width: 25%;
    text-align: center;
    margin-right: 3%;
    border-radius: 3px;
}

div.css-hidden-radio input:checked + label {
    color: #fff;
    background: rgb(27,161,230);
}


.ntc-modal-content tr.selected {
    background-color: aquamarine;
}

    .ntc-modal-content tr.selected:hover {
        background-color: aqua;
    }






@media(max-width: 1024px) {
    .ntc-modal-content {
        position: fixed;
        display: none;
        z-index: 1100;
        width: 90%;
        margin: 0;
        /*padding:10px 20px;*/
/*border:2px solid #aaa;*/
background: #fff;
    }
}

@media(max-width: 768px) {
    .ntc-modal-content {
        position: fixed;
        display: none;
        z-index: 1100;
        width: 90%;
        margin: 0;
        /*padding:10px 20px;*/
        /*border:2px solid #aaa;*/
        background: #fff;
    }

    #modal-inner-left {
        width: 90%;
        float: none;
        margin-left: 5%;
        margin-right: 5%;
    }

    #modal-inner-right {
        width: 80%;
        /*height: 500px;
    background-color: #ddd;*/
        float: none;
        margin-left: 10%;
        margin-right: 10%;
    }

    #modal-shadow {
        box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
    }
}
