/* EMBED MODAL */

#koe-embed-modal{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:999999;
align-items:center;
justify-content:center;
}

/* modal box */

.koe-embed-box{
background:#fff;
width:520px;
max-width:90%;
padding:30px;
border-radius:10px;
box-shadow:0 20px 60px rgba(0,0,0,0.25);
font-family:inherit;
}

/* title */

.koe-embed-box h3{
margin-top:0;
margin-bottom:20px;
font-size:22px;
}

/* labels */

.koe-embed-box label{
display:block;
margin-top:15px;
margin-bottom:5px;
font-weight:600;
}

/* inputs */

.koe-embed-box input,
.koe-embed-box select{
width:100%;
padding:8px 10px;
border:1px solid #ddd;
border-radius:6px;
}

/* textarea */

#koe-embed-code{
width:100%;
height:90px;
margin-top:15px;
font-family:monospace;
font-size:12px;
}

/* copy button */

#koe-copy-embed{
margin-top:10px;
padding:8px 14px;
background:#ff2a6d;
color:#fff;
border:0;
border-radius:6px;
cursor:pointer;
}

/* button hover */

#koe-copy-embed:hover{
opacity:0.9;
}

.koe-embed-close{
position:absolute;
top:10px;
right:15px;
border:0;
background:none;
font-size:28px;
cursor:pointer;
color:#333;
}

.koe-embed-box{
position:relative;
}

.koe-open-embed{
background:#ff2a6d;
color:#fff !important;
}

.koe-open-embed:hover{
opacity:0.9;
}