﻿/* MODAL STYLES
-------------------------------*/
.jw-modal {
    /* modals are hidden by default */
    display: none;
    /* modal container fixed across whole screen */
    position: fixed;
    inset: 0;
    /* z-index must be higher than everything else on the page */
    z-index: 10000;
    /* semi-transparent black background exposed by padding */
    background-color: rgba(0, 0, 0, .75);
    padding: 0;
    /* enables scrolling for tall modals */
    overflow: auto;

}

    .jw-modal.open {
        display: block;
    }

.jw-modal-body {
    border-radius: 15px;
    padding: 0;
    background: #fff;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:300px;
}

body.jw-modal-open {
    /* body overflow is hidden to hide main scrollbar when modal window is open */
    overflow: hidden;
}
.modal-header {
    border-radius: 15px 15px 0 0;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ebd417;
    border: 0;
}

    .modal-header .close {
        margin-top:-2px;
    }
.modal-body {
    padding:15px;
}
button.close {
    padding:10px 30px 10px 30px;
    border:0;
    cursor:pointer;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
}

.row {
    display: flex;
}

.col {
    flex: 1;
    margin-left:15px;
}
    .col:first-child {
        margin-left:0;
    }

.progress-text {
    margin-bottom:0;
    width:100%;
    text-align:center;
}
progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width:100%;
    height:20px;
}
    /* Styles determinate progress bars (with a value property) */
/*    progress[value] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }*/

        progress::-webkit-progress-bar {
            background: var(--light-grey);
            border-radius: 10px;
        }

        progress::-webkit-progress-value {
            background-color: #ebd417;
            border-radius: 10px;
        }




