/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

#wpcontent {
    padding: 0;
}
.kl-dashboard {
    padding: 20px 20px 0;
    font-size: 16px;
    line-height: 1.2;
    color: rgb(33,37,41);
}
.kl-dashboard * {
    box-sizing: border-box;
}
.kl-dashboard a, .kl-dashboard a:focus, .kl-dashboard button, .kl-dashboard button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}
.kl-dashboard input:focus , .kl-dashboard textarea:focus {
    outline: none;
    box-shadow: none;
}
.kl-dashboard-left {
    flex: 1;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    border-radius: 4px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
.kl-dashboard-right {
    flex: 1;
}
.kl-title {
    padding: 15px 20px;
    font-weight: 600;
    font-size: 20px;
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.kl-setting-box {
    padding: 20px 20px;
}
.kl-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.kl-box + .kl-box {
    margin-top: 20px;
}
.kl-box-title {
    padding: 15px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.kl-inner-box {
    padding: 15px;
}
.kl-field {
    position: relative;
}
.kl-field label {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-bottom: 3px;
    font-weight: 500;
}
.kl-field .kl-input {
    width: 100%;
    border: solid 1px rgb(218,220,224);
    border-radius: 4px;
    padding: 0 10px;
    height: 32px;
    line-height: 32px;
    transition: all 0.15s ease-in-out;
}
.kl-field textarea.kl-input {
    line-height: 24px;
    height: 90px;
    padding: 5px 10px;
    max-width: 360px;
}
.kl-field .kl-input:focus {
    border-color: #4285f4;
}
.kl-field + .kl-field {
    margin-top: 15px;
}
body *.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    border: 0 !important;
}

.kl-radio-list {

}
.kl-radio-buttons {
    display: inline-flex;
    /*flex-wrap: wrap;*/
    border-radius: 4px;
    background-color: #E4E4E4;
    margin: 0;
    line-height: 30px;
    align-items: center;
    padding: 3px;
}
.kl-radio-button {
    margin: 0;
    padding: 0;
    vertical-align: middle;
    display: inline-flex;
}
.kl-radio-buttons label {
    padding: 0 10px;
    display: inline-flex;
    border-radius: 4px;
}
.kl-radio-buttons input:checked + label {
    background-color: #ffffff;
}
.kl-radio-button + .kl-radio-button {
    margin-left: 2px;
}
.chat-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.chat-button {
    flex: 0 0 48px;
    margin: 5px;
}
.chat-button a {
    display: block;
    width: 48px;
    height: 48px;
    padding: 10px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-size: 0% 0%;
    transition: background-size .25s;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
}
.chat-button a:not(.active) {
    background-color: #ababab;
}
.chat-button a.active, .chat-button a:hover {
    background-size: 100% 100%;
}
.chat-button a .button-icon {
    display: block;
    width: 28px;
    height: 28px;
}
.chat-button a .button-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
}
.button-status {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: green;
    color: #ffffff;
    border-radius: 50%;
    right: -4px;
    top: -4px;
    border: solid 2px #fff;
    display: block;
}
.button-status:before {
    content: "\002B";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    line-height: 11px;
}
.chat-button a.active .button-status {
    background-color: red;
}
.chat-button a.active .button-status:before {
    content: "\2212";
}


.kl-modal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.kl-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.kl-modal-bg {
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    z-index: 99999;
}
.kl-modal-container {
    width: 720px;
    max-width: 90%;
    top: 15%;
    left: 0;
    right: 0;
    position: fixed;
    transform: translate(0px, -25%);
    background-color: #ffffff;
    border-radius: 4px;
    margin: 0 auto;
    min-height: 100px;
    z-index: 100009;
    max-height: 84vh;
    overflow: auto;
    box-shadow: 0 16px 16px -5px rgba(0, 0, 0, 0.22), 0 0 0.8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.kl-modal.m-size .kl-modal-container {
    width: 540px;
}
.kl-modal-title {
    padding: 15px 20px;
    font-weight: 600;
    font-size: 20px;
    border-bottom: 1px solid rgba(0,0,0,.125);
    text-align: center;
}
.kl-modal.active .kl-modal-container {
    transform: translate(0px, 0px);
}
.kl-modal-content {
    position: relative;;
}
.kl-modal-body {
    padding: 15px 15px 25px;
    max-height: calc(70vh - 120px);
    overflow: auto;
}
.kl-example {
    font-size: 12px;
    font-style: italic;
}
.kl-modal-footer {
    padding: 15px 20px 15px;
    border-top: 1px solid rgba(0,0,0,.125);
}
.footer-buttons {
    text-align: center;
}
.kl-button {
    min-width: 100px;
    text-align: center;
    display: inline-block;
    padding: 4px 15px;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
}
.kl-button + .kl-button {
    margin-left: 5px;
}
.kl-button.primary-button {
    border-color: #4285f4;
    background-color: #4285f4;
    color: #ffffff;
}
.kl-button.trash-button {
    border-color: #F44336;
    background-color: #F44336;
    color: #ffffff;
}
.kl-buttons {
    padding: 25px 0 0;
    display: flex;
}
.kl-buttons .kl-loader {
    display: none;
    line-height: 30px;
    padding-left: 10px;
}
.kl-buttons .kl-loader svg {
    height: 20px;
    width: 20px;
    vertical-align: text-bottom;
    fill: #4285f4;
    animation:spin 1.5s linear infinite;
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}
.kl-buttons .kl-loader.active {
    display: block;
}
.slack-button:not(.active) .fill-color, .slack-button:not(.active):not(:hover) .fill-color {
    color: #ffffff;
    fill: #ffffff;
}
.kl-input-message {
    color: #F44336;
    font-size: 14px;
}
.kl-error-message {
    display: none;
    color: #F44336;
    font-size: 14px;
}
.kl-field.has-input-error label {
    color: #F44336;
}
.kl-field.has-input-error input, input.has-error {
    border-color: #F44336 !important;
}
.kl-field.has-input-error .kl-error-message {
    display: block;
}
.qcb-content svg, .qcb-content.has-single-button .qcb-main-button .chat-btn a svg {
    fill: #ffffff;
}
.qcb-main-button .chat-button {
    margin: 0;
}
.qcb-content {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}
.qcb-content .chat-btn {
    width: 64px;
    height: 64px;
    padding: 5px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.qcb-content .channel-btn {
    display: block;
    width: 54px;
    height: 54px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
    margin: 0 auto;
}
.qcb-content .channel-btn:focus, .qcb-content .channel-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
}
.qcb-content .channel-btn svg {
    width: 100%;
    height: 100%;
}
.channel-tooltip {
    position: relative;
}
.channel-tooltip:before {
    content: attr(data-title);
    position: absolute;
    background: #fff;
    line-height: 20px;
    font-size: 14px;
    white-space: pre-wrap;
    width: max-content;
    left: 50%;
    transform: translate(-50%, -25px);
    bottom: 100%;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 25px;
    font-weight: 400;
    opacity: 0;
    transition: all 0.3s linear;
    pointer-events: none;
}

.channel-tooltip:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
    clear: both;
    transform: translate(-5px, -20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s linear;
}
.channel-tooltip:hover:before {
    opacity: 1;
    transform: translate(-50%, -10px);
}
.channel-tooltip:hover:after {
    opacity: 1;
    transform: translate(-5px, -5px);
}

.qcb-content .qcb-main-button .channel-btn {
    position: relative;
}
.kl-main-icon, .kl-close-icon {
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.3s ease-in-out;
}
.qcb-buttons .chat-btn {
    opacity: 0;
    pointer-events: none;
    margin: 0 auto;
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}
.qcb-content:not(.has-single-button) .qcb-main-button .channel-btn {
    transition: all 0.3s ease-in-out;
}
.qcb-content .qcb-buttons .chat-btn {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    transform: scale(0) translate(0, 0);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}
.qcb-content.show-icons .qcb-buttons .chat-btn {
    opacity: 1;
    pointer-events: auto;
}
.qcb-content .qcb-main-button .kl-main-icon {
    opacity: 1;
    transform: translate(0, -50%) rotate(0deg);
}
.qcb-content .qcb-main-button .kl-close-icon {
    opacity: 0;
    transform: translate(0, -50%) rotate(-360deg);
}
.qcb-content.show-icons .qcb-main-button .kl-main-icon {
    opacity: 0;
    transform: translate(0, -50%) rotate(360deg);
}
.qcb-content.show-icons .qcb-main-button .kl-close-icon {
    opacity: 1;
    transform: translate(0, -50%)rotate(0deg);
}
.kl-button-text {
    display: block;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(-10px, -50%);
    background: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    overflow: visible;
    white-space: pre-wrap;
    width: max-content;
    text-align: center;
    min-width: 1px;
    max-width: 320px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    font-size: 16px;
    line-height: 20px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    color: #333;
    pointer-events: none;
}
.kl-button-text:after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 4px 8px 4px;
    border-color: transparent transparent #ffffff transparent;
    transform: rotate(90deg) translate(-50%, -7px);
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
}
.qcb-content.show-icons .qcb-main-button .chat-btn {
    padding: 10px;
}
.qcb-content .qcb-buttons {
    transform: translate(0, 5px);
}
.kl-tooltip .kl-button-text {
    opacity: 0;
    visibility: hidden;
    transform: translate(-30px, -50%);
    pointer-events: none;
    transition: all 0.1s ease-in-out;
}
.kl-tooltip:hover .kl-button-text {
    opacity: 1;
    visibility: visible;
    transform: translate(-10px, -50%);
    pointer-events: none;
}
.qcb-content.show-icons .qcb-main-button .kl-button-text {
    display: none;
}
.kl-pos-right.kl-tooltip .kl-button-text {
    right: auto;
    transform: translate(30px, -50%);
    left: 100%;
}
.kl-pos-right.kl-tooltip:hover .kl-button-text {
    transform: translate(10px, -50%);
}
.kl-tooltip.kl-pos-right .kl-button-text:after {
    border-width: 8px 4px 0px 4px;
    border-color: #ffffff transparent transparent transparent;
    left: 0;
    transform: rotate(90deg) translate(-50%, 7px);
}
.qcb-content.qcb-left {
    left: 25px;
    right: auto;
}
.kl-button-text.kl-pos-right:after {
    border-width: 8px 4px 0px 4px;
    border-color: #ffffff transparent transparent transparent;
    left: 0;
    transform: rotate(90deg) translate(-50%, 7px);
}
.kl-button-text.kl-pos-right {
    right: auto;
    transform: translate(10px, -50%);
    left: 100%;
}
.kl-button-text.kl-pos-right:after {
     border-width: 8px 4px 0px 4px;
     border-color: #ffffff transparent transparent transparent;
     left: 0;
     transform: rotate(90deg) translate(-50%, 7px);
}
.kl-pos-top .kl-button-text {
    bottom: 100%;
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.kl-pos-top.kl-tooltip:hover .kl-button-text {
    transform: translate(-50%,-15px);
}
.kl-pos-top.kl-tooltip .kl-button-text {
    transform: translate(-50%, -35px);
    margin-left: 50%;
}
.kl-pos-top .kl-button-text:after {
    top: 100%;
    bottom: auto;
    left: 50%;
    border-width: 0 4px 8px 4px;
    border-color: transparent transparent #ffffff transparent;
    transform: rotate(180deg) translate(50%, 0);
}
.qcb-content.qcb-horizontal .qcb-buttons .chat-btn a {
    position: relative;
}



.toasts-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
}

.toasts-container .toast {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 420px;
    min-width: 150px;
    border-radius: 4px;
    padding: 12px 24px;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(100%);
    transition: .25s ease-in-out;
    overflow-x: hidden
}

.toasts-container .toast.active {
    opacity: 1;
    transform: translateY(0)
}

.toasts-container .toast .t-icon {
    margin-right: 10px
}

.toasts-container .toast .t-icon svg {
    fill: #ffffff;
    width: 20px;
    height: 20px
}

.toasts-container .toast .t-message {
    color: #fff;
    line-height: 2rem;
    font-size: 16px;
    flex: 1
}

.toasts-container .toast .t-close {
    position: absolute;
    right: 4px;
    top: 4px
}

.toasts-container .toast .t-close svg {
    fill: #ffffff;
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: opacity .5s;
    cursor: pointer
}

.toasts-container .toast .t-progress-bar {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    border-radius: 0 0 0 .5rem;
    background-color: rgba(255, 255, 255, .5);
    animation: 3s linear forwards progress-bar-animation
}

@keyframes progress-bar-animation {
    from {
        width: 100%
    }
    to {
        width: 0%
    }
}

.toasts-container .toast .t-progress-bar.t-5000 {
    animation-duration: 5s
}

.toasts-container .toast.success {
    background-color: #4caf50
}

.toasts-container .toast.system {
    background-color: #2896f3
}

.toasts-container .toast.warning {
    background-color: #fbc107
}

.toasts-container .toast.error {
    background-color: #f55153
}
.in-flex {
    display: flex;
    align-items: center;
}
.kl-field.in-flex {
    display: flex;
    align-items: flex-start;
}
.kl-field-left {
    flex: 0 0 160px;
}
.kl-field-left label {
    padding-top: 8px;
}
.kl-field-right {
    flex: 1;
}
.pos-input {
    height: 36px !important;
    width: 125px !important;
    position: relative;
}
.label-prefix {
    position: relative;
}
.ml-25 {
    margin-left: 25px;
}
.label-prefix:after {
    position: absolute;
    content: attr(data-prefix);
    right: 4px;
    bottom: 3px;
    height: 30px;
    line-height: 30px;
    width: 40px;
    background: #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 2px;
    text-align: center;
}
body.rtl .label-prefix:after {
    right: auto;
    left: 3px;
}
.container-box {
    background: #f3f3f3;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    max-width: 540px;
}
.mt-15 {
    margin-top: 15px;
}
.flex-1 {
    flex: 1;
}
.d-none {
    display: none;
}
.d-none.active {
    display: block;
}
.mb-10 {
    margin-bottom: 10px;
}
.p-3 {
    padding: 3px 0;
}
.kl-pending-message {
    display: inline-grid;
    position: absolute;
    top: -3px;
    right: -3px;
    height: auto;
    width: auto;
    line-height: 1;
    background-color: #ff0000;
    color: #fff;
    padding: 2px;
    font-size: 7px;
    border-radius: 50%;
    text-align: center;
    z-index: 11;
    min-height: 16px;
    min-width: 16px;
    border: 2px solid #ffffff;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
}
.qcb-content.show-icons .kl-pending-message {
    display: none;
}
.qcb-custom-checkbox {
    --active: #0487ff;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #0487ff;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px !important;
    outline: none !important;
    display: inline-block !important;
    vertical-align: top !important;
    position: relative !important;
    margin: 0 !important;
    cursor: pointer !important;
    border: 1px solid var(--bc, var(--border)) !important;
    background: var(--b, var(--background)) !important;
    transition: background .3s, border-color .3s, box-shadow .2s !important;
    width: 38px !important;
    border-radius: 11px !important;
}
.qcb-custom-checkbox:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
    content: '';
    display: block;
    position: absolute;
    transition: transform var(--d-t, .3s) var(--d-t-e, ease), opacity var(--d-o, .2s);
}
.qcb-custom-checkbox:before {
    content: "" !important;
}
.qcb-custom-checkbox:checked {
    --ab: var(--active-inner);
    --x: 17px;
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}
.qcb-custom-checkbox:disabled:after {
    opacity: .6;
    cursor: not-allowed;
}
.qcb-custom-checkbox + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
}
.qcb-custom-checkbox-box {
    position: relative;
}
.pending-message-color-box .kl-field + .kl-field {
    margin-top: 0;
}
.cta-icon-list {
    margin-top: 5px;
}
.cta-icon-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.cta-icon-list ul li {
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 0;
}
.cta-icon-list ul li label {
    display: inline-block;
    cursor: pointer;
    width: 50px;
    height: 50px;
    padding: 8px;
    border: 1.5px solid #a7a7a7;
    border-radius: 4px
}
.cta-icon-list ul li label svg {
    width: 100%;
    height: 100%;
}
.cta-icon-list ul li svg path {
    fill: #a7a7a7 !important;
}
.cta-icon-list ul li input:checked + label {
    border-color: #0487ff;
}
.cta-icon-list ul li input:checked + label svg path {
    fill: #0487ff !important;
}
.qcb-content.hide-close-button .qcb-buttons .chat-btn {
    bottom: 10px;
}
.qcb-info {
    position: relative;
}
.qcb-info .dashicons {
    display: inline-block;
    vertical-align: middle;
}
[data-qcb-tooltip]:hover:before, [data-qcb-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
    display: block;
}
[data-qcb-tooltip]:hover:after {
    transform: translateX(-50%);
}
[data-qcb-tooltip]:hover:before {
    transform: translate(-50%, -5px);
}
[data-qcb-tooltip]:before {
    font-size: 12px;
    font-weight: 400;
}
[data-qcb-tooltip]:before {
    content: attr(data-qcb-tooltip);
    padding: 4px 10px;
    min-width: 50px;
    max-width: 210px;
    border-radius: 6px;
    font-size: 14px;
    width: max-content;
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -5px) scale(.5);
    line-height: initial;
    white-space: pre-wrap !important;
    text-decoration: none;
}
[data-qcb-tooltip]:after, [data-qcb-tooltip]:before {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    bottom: 100%;
    pointer-events: none;
    transition: .2s;
    will-change: transform;
    white-space: nowrap;
    text-decoration: none;
    display: none;
}
[data-qcb-tooltip]:after {
    content: '';
    border-style: solid;
    border-width: 5px 5px 0;
    border-color: #000 transparent transparent;
    transition-duration: 0s;
    transform-origin: top;
    transform: translateX(-50%) scaleY(0);
    text-decoration: none;
}
.d-flex-end {
    display: flex !important;
    align-items: flex-end;
}
.p-20 {
    padding: 20px 0 10px;
}
.chat-button-list {
    max-width: 640px;
    margin: 0 auto;
}
.chat-button-list .chat-button .slack-button:not(.active):not(:hover) svg path {
    fill: #ffffff;
}
.small_text {
    font-size: 11px;
    margin-left: 3px;
}
.pt-0 {
    padding-top: 2px !important;
}
.small-input {
    max-width: 50px;
}
.SumoSelect>.CaptionCont>span, .SumoSelect>.optWrapper>.options li label {
    font-size: 14px !important;
    font-weight: normal;
}
.trigger-box {
    display: none;
}
.trigger-box.active {
    display: block;
}
.warning-message {
    width: auto;
    background: #fef8e6;
    border: 1px solid #eee2cb;
    border-radius: 4px;
    padding: 5px;
    margin-top: 10px;
    display: none;
    vertical-align: middle;
}
.warning-message.active {
    display: inline-block;
}
.warning-message .warning-icon {
    background: #eea333;
    border: 1px solid #e5b76f;
    border-radius: 4px;
}
.warning-message .warning-icon .dashicons {
    color: #ffffff;
    font-size: 14px;
    line-height: 16px;
    padding: 2px;
}
.warning-message .warning-title {
    margin-left: 5px;
    color: #cfb180;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding-right: 15px;
}
.warning-message .warning-close {
    border-left: 1px solid #eee2cb;
}
.warning-message .warning-close .dashicons {
    color: #d3a254;
    margin-left: 5px;
    cursor: pointer;
}



@media only screen and (max-width: 782px) {
    .qcb-content.qcb-left {
        left: 25px !important;
    }
}
@media only screen and (max-width: 782px) {
    body.rtl .qcb-right {
        right: 25px;
    }
    input[type=email], input[type=number], input[type=tel], input[type=text], input[type=url] {
        min-height: 32px;
    }
}
@media only screen and (max-width: 555px) {
    .kl-btn-position {
        flex-direction: column;
    }
    .kl-btn-position .ml-25 {
        margin-left: 0;
        margin-top: 10px;
    }
}
@media only screen and (max-width: 410px) {
    .kl-radio-list .kl-radio-button label {
        padding: 0 7px;
    }
}
