/*
 *  webui popover plugin  - v1.2.17
 *  A lightWeight popover plugin with jquery ,enchance the  popover plugin of bootstrap with some awesome new features. It works well with bootstrap ,but bootstrap is not necessary!
 *  https://github.com/sandywalker/webui-popover
 *
 *  Made by Sandy Duan
 *  Under MIT License
 */

.webui-popover-content {
    display: none;
}
.webui-popover-rtl {
    direction: rtl;
    text-align: right;
}

/*  webui popover  */

.webui-popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    min-width: 50px;
    min-height: 30px;
    text-align: left;
    white-space:nowrap;
    background-color: transparent;
    background-clip: padding-box;
}
.webui-popover .webui-popover-title{
    display: none;
}

/*  Positions  */

.webui-popover.top,
.webui-popover.top-left,
.webui-popover.top-right {
    margin-top: -10px;
}
.webui-popover.right,
.webui-popover.right-top,
.webui-popover.right-bottom {
    margin-left: 10px;
}
.webui-popover.bottom,
.webui-popover.bottom-left,
.webui-popover.bottom-right {
    margin-top: 10px;
}
.webui-popover.left,
.webui-popover.left-top,
.webui-popover.left-bottom {
    margin-left: -10px;
}

/*  Fade  */

.webui-popover.fade,
.webui-popover.fade-out {
    -webkit-transition: opacity 200ms linear;
    -moz-transition: opacity 200ms linear;
    opacity: 0;
}
.webui-popover.out {
    opacity: 0;
}
.webui-popover.in {
    opacity: 1;
}

/*  Content  */

.webui-popover .webui-popover-content {
    overflow: hidden;
    display: block;
}
.webui-popover-content {
    overflow: hidden;
    display: none;
}

/*  Arrows  */

.webui-popover>.webui-arrow,
.webui-popover>.webui-arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.webui-popover>.webui-arrow {
    border-width: 11px;
}
.webui-popover>.webui-arrow:after {
    border-width: 10px;
    content: "";
}
.webui-popover.top>.webui-arrow,
.webui-popover.top-right>.webui-arrow,
.webui-popover.top-left>.webui-arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999999;
    border-top-color: transparent; /* rgba(0, 0, 0, 0.25) */
    border-bottom-width: 0;
}
.webui-popover.top>.webui-arrow:after,
.webui-popover.top-right>.webui-arrow:after,
.webui-popover.top-left>.webui-arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-top-color: #ffffff;
    border-bottom-width: 0;
}
.webui-popover.right>.webui-arrow,
.webui-popover.right-top>.webui-arrow,
.webui-popover.right-bottom>.webui-arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: transparent; /* rgba(0, 0, 0, 0.25) */
}
.webui-popover.right>.webui-arrow:after,
.webui-popover.right-top>.webui-arrow:after,
.webui-popover.right-bottom>.webui-arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #ffffff;
}
.webui-popover.bottom>.webui-arrow,
.webui-popover.bottom-right>.webui-arrow,
.webui-popover.bottom-left>.webui-arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-bottom-color: #999999;
    border-bottom-color: transparent; /* rgba(0, 0, 0, 0.25) */
    border-top-width: 0;
}
.webui-popover.bottom>.webui-arrow:after,
.webui-popover.bottom-right>.webui-arrow:after,
.webui-popover.bottom-left>.webui-arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-bottom-color: #ffffff;
    border-top-width: 0;
}
.webui-popover.left>.webui-arrow,
.webui-popover.left-top>.webui-arrow,
.webui-popover.left-bottom>.webui-arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: transparent; /* rgba(0, 0, 0, 0.25) */
}
.webui-popover.left>.webui-arrow:after,
.webui-popover.left-top>.webui-arrow:after,
.webui-popover.left-bottom>.webui-arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #ffffff;
    bottom: -10px;
}

/*//////////////////////////////////////////*/
/* Language */
/*//////////////////////////////////////////*/

.design_settings{
    width:250px;
    background: #ffffff;
    padding:10px 5px 0;
}
.design_settings strong{
    display: block;
    color: #adb5bd;
    font-size:12px;
    text-transform: uppercase;
    margin:0 5px 10px;
}
.design_settings ul{
    display: block;
    font-size: 0;
    white-space: normal;
}
.design_settings ul li{
    display: inline-block;
    margin:0 5px 10px;
}
.design_settings ul li a{
    display: block;
}
.design_settings ul.colors li a{
    width:50px;
    padding:5px 0;
    border:2px solid #f5f7fe;
}
.design_settings ul.colors li a:hover{
    border:2px solid #00c3f9;
}
.design_settings ul.colors li a svg{
    display: block;
    margin:0 auto;
    transform: rotate(-45deg);
}
.design_settings ul.covers li a{
    width:70px;
    height:50px;
    background-color: var(--test_1);
}
