/* set this class to hide layers on pageload */
.tiny-layer-hide {
    display: none;
}

.tiny-layer-item {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .2);
    z-index: 10000;
    transition: opacity 0.01s;
    opacity: 0;
}
.tiny-layer-item.is-visible {
    opacity: 1;
}
.tiny-layer-item .layer-item-content {
    position: relative;
    min-width: 250px;
    max-width: 500px;
    padding: 30px 40px 30px 30px;
    border-radius: 3px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .25);
    background: #fff;
}

.tiny-layer-item .layer-item-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
    background-color: #ebebeb;
    border: 0;
    border-radius: 3px;
}

.tiny-layer-item h3 {
    line-height: 25px;
}

.btn-wrap {
    margin-top: 3px;
}
.btn {
    display: inline-block;
    position: relative;
    padding: 3px 3px;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
    margin-bottom: 5px;
    margin-top: 2px;
    /* Disables the default callout shown when you touch and hold a touch target  */
    -webkit-touch-callout: none;
    -ms-touch-action: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.btn-default {
    color: #6f6f77;
    background: #e1e8ec;;
}
.btn-default:focus,
.btn-default:hover {
    outline: none;
    color: #000;
}