﻿.cl-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999999;
    background-color: rgba(0,0,0,0.5);
    display: none;
}

.cl-modal-content {
    width: 500px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    margin: 100px auto;
}

.cl-modal-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    border-bottom: 1px solid #e5e5e5;
}

.cl-modal-body {
    padding: 15px;
}

.cl-modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.cl-modal .close {
    cursor: pointer;
}

.cl-modal .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
}
.cl-modal .btn-default {
    background-color:#ccc;
}
.cl-modal .warning-color {
    background-color: #ccc;
    background: #BB8E13;
    color: #fff;
}
