/* cl-style.css */
.wcl-btn {
    margin-bottom: 50px;
}

.wcl-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3a3a3aa1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 5;
}

.wcl-modal-inner {
    background: #fff;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.wcl-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 40px;
    cursor: pointer;
    padding: 0;
    line-height: 0.5;
    transition: opacity 0.25s;
    color: #151515;
}

.wcl-close:hover {
    opacity: 0.65;
}

.wcl-locked {
    margin-top: 1em;
}


.wcl-error {
  font-weight: bold;
  background: #fff0f0;
  border: 1px solid #e74c3c;
  padding: 10px;
  border-radius: 4px;
}

