/*general styles*/
/*popup layout*/
.popup {
    background-color: #ffffff;
    border-radius: 5px;
    border: 5px solid #2f3437;
    box-shadow: #000000 0px 0px 6px;
    font-family: Tahoma,Geneva,sans-serif; 
    font-size: 12px;
    margin: -4px 0px 0px 26px;
    padding: 0 0 20px 0;
    /* position: relative; */
    width: 360px;
}

.arrow-left:before {
    border-bottom: 8px solid transparent;
    border-right: 8px solid #2f3437;
    border-top: 8px solid transparent;
    content: "";
    height: 0;
    left: -11px;
    position: absolute;
    top: 13px;
    width: 0;
}
.arrow-right:before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #2f3437;
    right: -13px;
    content: "";
    height: 0;
    position: absolute;
    top: 13px;
    width: 0;
}


.popup * {
    box-sizing: border-box;
}

.popup h3 {
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
    text-rendering: optimizelegibility;
}

.popup a {
    color: #1f9bcd;
    text-decoration: none;
}

.popup ul {
    margin: 0 0 10px 25px;
    padding: 0;
}

.popup li {
    font-size: 12px;
    margin: 7px 0;
}

.popup__content {
    /*height: 348px;*/
    margin-right: 10px;
    overflow: auto;
    padding: 2px 15px 0 15px;
}

/*popup title*/
.popup__title {
    background-color: #dce0e0;
    border-bottom: 1px solid #c7cbcb;
    color: #3a4044;
    margin-top: 0;
    padding: 0 15px;
}

/*popup close button*/
.popup__close {
    font-size: 28px;
    line-height: normal;
    opacity: 0.7;
    overflow: hidden;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 4px;
    width: 25px;
}

.popup__close:hover {
    opacity: 1;
}

.popup__close:before {
    background-color: #4db6e3;
    border-radius: 100%;
    bottom: 6px;
    content: '';
    left: 6px;
    position: absolute;
    right: 6px;
    top: 6px;
    z-index: 5;
}

.popup__close i {
    color: #000;
    position: relative;
    z-index: 10;
}

/*popup inner box*/
.popup__content__box {
    background-color: #f2f6f6;
    width: 320px;
    margin-bottom: 10px;
}

.popup__content__box .title {
    background: #FF5899;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#FF5899',EndColorStr='#E54F8A')";
    /*
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…dpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    */
    background-image: linear-gradient(to bottom,#FF5899,#E54F8A);
    background-size: 100%;
    background: -ms-linear-gradient(#FF5899 0%,#FF5899 100%);
    border-top: 1px solid #FF5899;
    color: #fff;
    display: block;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#FF5899',EndColorStr='#E54F8A');
    font-weight: bold;
    padding: 7px 12px;
    text-shadow: rgba(0,0,0,0.2) 0px -1px 0;
}

.popup__content__box i {
    float: right;
    margin-top: 3px;
}

.popup__content__box .text {
    color: #51595f;
    font-size: 12px;
    padding: 10px 12px;
}

/*popup inner list*/
.popup__content__list h3 {
    margin: 10px 0;
}

.popup__content__list p {
    color: #51595f;
    font-size: 12px;
}