/*----------------------------------------------------
    Modal
----------------------------------------------------*/
.modal {
    display: none;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    }
    .modal .box {
    display: none;
    position: fixed;
    width: 600px;
    height: 242px;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -121px;
    box-shadow: 2px 0 2px rgba(0, 0, 0, 0.3);
    }
    @media only screen and (max-width: 787px) {
    .modal .box {
        width: 98%;
        width: 88%;
        margin-left: 0;
        left: 0;
        margin: auto;
        right: 0;
        top: 0;
        bottom: 0;
    }
    }
    .modal .box .btnClose a {
    float: right;
    position: relative;
    top: 6px;
    color: #fff;
    font-size: 30px;
    padding: 8px;
    border-radius: 6px 6px 0 0;
    background: #35AFC2;
    }
    .modal .box .btnClose a i {
    font-size: 100%;
    }
    .modal .box .btnClose a .fa:before {
    padding: 0;
    }
    .modal .box .boxInside {
    padding: 40px;
    background: #ffffff;
    border: 8px solid #35AFC2;
    border-radius: 5px;
    text-align: center;
    }
    @media only screen and (max-width: 787px) {
    .modal .box .boxInside {
        padding: 10px;
    }
    }
    .modal .box .boxInside .alert {
    background: url(../img/common/alert_ico_note.gif) no-repeat scroll 10px 50% #fefdcc;
    border: 1px solid #e2dc58;
    }
    .modal .box .boxInside p {
    float: none;
    margin-left: 33px;
    line-height: 30px;
    text-align: left;
    }
    @media only screen and (max-width: 787px) {
    .modal .box .boxInside p {
        line-height: 1.5;
        padding: 10px;
    }
    }
    .modal .box .boxInside .btnsList {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    }
    .modal .box .boxInside .btnsList .btn {
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 0 12px;
    display: inline-block;
    min-width: 10em;
    height: 50px;
    line-height: 50px;
    margin: 0 5px;
    text-align: center;
    border: none;
    font-size: 110%;
    background-color: #eee;
    border: 1px solid #585858;
    color: #585858;
    }
    .modal .box .boxInside .btnsList .btn:hover {
    opacity: 0.8;
    }
    .modal .box .boxInside .btnsList .formBtn {
    margin: 0;
    display: block;
    }
    .modal .box .boxInside .btnsList .formBtn .btn {
    background-color: #FEB606;
    color: #fff;
    border: 1px solid #FEB606;
    }
    @media only screen and (max-width: 787px) {
    .modal .box .boxInside .btnsList {
        padding-top: 20px;
    }
    }

    /*----------------------------------------------------
        modalProgress
    ----------------------------------------------------*/
    #modalProgress{
    height:100%; 
    width:100%;
    }
    #modalProgress .progressBox{
    width:380px;
    height:50px;
    position:absolute;
    top:calc(50% - 25px);
    left:calc(50% - 190px);
    }
    #modalProgress .progressBox .textArea{
    color:#fff;
    margin-bottom:10px;
    }
    #modalProgress .progressBox .barArea{
    background:#fff;
    }
    #modalProgress .progressBox .barArea #bar{
    background:#35AFC2;
    height:20px;
    }
    @media only screen and (max-width: 787px) {
    #modalProgress .progressBox{
        width:80%;
        left:10%;
    }
    }
    