.popup-row td {
font-size: 16px;
padding: 15px 10px;
}
.popup-row-delete,
.popup-row-edit {
cursor: pointer;
}
.qsm-row {
display: block;
width: 100%;
margin-bottom: 15px;
font-size: 16px;
}
.qsm-row label {
font-weight: bold;
display: block;
}
.qsm-row select, .qsm-row input {
width: 100%;
}
.qsm-row.x-seconds {
display: none;
} .qsm-popup {
font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}
.qsm-popup__overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.6);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.qsm-popup .qsm-popup__container {
background-color: #fff;
padding: 0;
margin-top: 20px;
min-width: 500px;
max-width: 98%;
border-radius: 5px;
box-sizing: border-box;
}
.qsm-popup .qsm-popup__header {
display: flex;
justify-content: space-between;
align-items: center;
text-align: unset;
padding: 15px;
border-bottom: solid 1px #f5f5f5;
}
.qsm-popup__header .qsm-popup__title {
margin: 0;
font-size: 30px;
}
.qsm-popup__close {
background: transparent;
border: 0;
color: #00449e;
text-decoration: none;
}
.qsm-popup__header .qsm-popup__close:before { 
content: "\2715"; 
}
.qsm-popup .qsm-popup__content {
line-height: 1.5;
color: rgba(0,0,0,.8);
text-align: unset;
max-height: calc(85vh - 60px);
overflow-y: auto;
padding: 0 20px;
}
.qsm-popup__btn {
font-size: .875rem;
padding-left: 1rem;
padding-right: 1rem;
padding-top: .5rem;
padding-bottom: .5rem;
background-color: #e6e6e6;
color: rgba(0,0,0,.8);
border-radius: .25rem;
border-style: none;
border-width: 0;
cursor: pointer;
-webkit-appearance: button;
text-transform: none;
overflow: visible;
line-height: 1.15;
margin: 0;
will-change: transform;
-moz-osx-font-smoothing: grayscale;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translateZ(0);
transform: translateZ(0);
transition: -webkit-transform .25s ease-out;
transition: transform .25s ease-out;
transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}
.qsm-popup__btn:focus, .qsm-popup__btn:hover {
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
.qsm-popup__btn-primary {
background-color: #00449e;
color: #fff;
}
.qsm-copy-embedcode {
color: #007cba;
}
@media only screen and (max-width: 475px) {
.qsm-popup .qsm-popup__container {
min-width: 98%;
}
} @keyframes mmfadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes mmfadeOut {
from { opacity: 1; }
to { opacity: 0; }
}
@keyframes mmslideIn {
from { transform: translateY(15%); }
to { transform: translateY(0); }
}
@keyframes mmslideOut {
from { transform: translateY(0); }
to { transform: translateY(-10%); }
}
.qsm-popup-slide {
display: none;
}
.qsm-popup-slide.is-open {
display: block;
}
.qsm-popup-slide[aria-hidden="false"] .qsm-popup__overlay {
animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.qsm-popup-slide[aria-hidden="false"] .qsm-popup__container {
animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}
.qsm-popup-slide[aria-hidden="true"] .qsm-popup__overlay {
animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.qsm-popup-slide[aria-hidden="true"] .qsm-popup__container {
animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}
.qsm-popup-slide .qsm-popup__container,
.qsm-popup-slide .qsm-popup__overlay {
will-change: transform;
}
.qsm-popup-slide pre {
white-space: normal;;
}
#popup-embedcode {
width: 100%;
height: 120px;
}
.copy-icon {
margin-bottom: 10px;
float: right;;
}
.copy-icon .copy-msg {
font-size: 12px;
margin-right: 10px;
color: green;
}