#win {
    display: none;
}

#win.scale_on[data-scale] {
    -webkit-transition: -webkit-transform 0.2s linear;
    -moz-transition: -moz-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    transition: transform 0.2s linear;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

#win.scale_on[data-scale="30"] {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
}

#win.scale_on[data-scale="100"] {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

#win .contentWrap>.content>div[data-title]:before,
#win .contentWrap>.content>div[data-title-1]:after,
#win .contentWrap>.content>div[data-title-2]:before {
    content: attr(data-title);
    display: block;
    position: absolute;
    top: -40px;
    left: 0px;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 40px;
}

#win .contentWrap>.content>div[data-title-1]:after {
    content: attr(data-title-1);
    top: -90px;
}

#win .contentWrap>.content>div[data-title-2]:before {
    content: attr(data-title-2);
    font-weight: 500;
}

#win .contentWrap>.content>div.title_off[data-title]:before,
#win .contentWrap>.content>div.title_off[data-title-1]:after,
#win .contentWrap>.content>div.title_off[data-title-2]:before {
    color: transparent;
    transition: color 0.8s ease;
    -o-transition: color 0.8s ease;
    -ms-transition: color 0.8s ease;
    -moz-transition: color 0.8s ease;
    -webkit-transition: color 0.8s ease;
}

#win.style_white {
    color: #000;
    /*background: #f3f3eb;*/
    background: #fff;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
}

#win_text_form {
    display: none;
    width: 300px;
    text-align: left;
    color: #fff;
}

#win.style_white #win_text_form {
    color: #000;
}

#win_text_form h1 {
    padding-left: 0;
}

#win h1 {
    border-bottom: 1px solid #c6ab0d;
}

#win.style_white h1 {
    color: #000;
    text-shadow: #fff 1px 1px 2px;
    border-bottom: 1px solid #000;
}

#win.style_white h2 {
    color: #000;
    text-shadow: #fff 1px 1px 2px;
    border-bottom: 1px solid #000;
}

#win.close_off .popup_close {
    display: none;
}

#win .popup_close a {
    z-index: 5000;
    float: right;
    margin: 0;
    padding: 0;
    display: block;
    text-indent: -9999px;
    background-image: url(https://cdn.wholeworld.org/images/bt_close.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 40px;
    height: 40px;
    position: relative;
    bottom: 13px;
    left: 2px;
}

#win.style_white .popup_close a {
    background-image: url(https://cdn.wholeworld.org/images/bt_close_black.png);
}

#win .r-star-shape {
    position: relative;
    padding: 10px 0;
}

#win .r-star-shape .contentWrap {
    background: url(https://cdn.wholeworld.org/images/bg4_r.png) top right repeat-y;
    padding-right: 1px;
}

#win.style_white .r-star-shape .contentWrap {
    background: none;
}

#win .r-star-shape .content {
    background: url(https://cdn.wholeworld.org/images/bg4_l.png) repeat-y;
    padding: 10px 20px;

}

#win.style_white .r-star-shape .content {
    background: none;
}

#win .r-star-shape .cn {
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    top: -10px;
    background: url(https://cdn.wholeworld.org/images/bg4.png);
}

#win.style_white .r-star-shape .cn {
    background: none;
}

#win .r-star-shape .cn.tr,
#win .r-star-shape .cn.br {
    height: 10px;
    margin-left: 100%;
}

#win .r-star-shape .cn.tr {
    top: 0px;
    background-position: 0 -10px;
}

#win .r-star-shape .cn.br {
    top: 0px;
    background-position: 0 -30px;
}

#win .r-star-shape .cn.bl,
#win .r-star-shape .cn.br {
    top: auto;
}

#win .r-star-shape .cn.tl,
#win .r-star-shape .cn.bl {
    width: 100%;
    height: 10px;
}

#win .r-star-shape .cn.tl {
    top: 0px;
    background-position: 10px 0;
    background-repeat: no-repeat;
}

#win .r-star-shape .cn.bl {
    background-position: 10px -20px;
    background-repeat: no-repeat;
}

#win dl.row dt.label {
    padding-right: 15px;
}

/* close */
#win .popup_close a {
    position: relative;
    bottom: 13px;
    left: 2px;
    width: 40px !important;
    height: 40px !important;
    cursor: pointer;
    background: none !important;
}

#win .popup_close a div {
    position: absolute;
    margin-left: 8px;
    margin-top: 8px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url(https://cdn.wholeworld.org/new/general/icon-24-close.png);
    background-position: center top;
    background-repeat: no-repeat;
}

#win .popup_close a .normal {
    z-index: 1;
    transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: filter 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
}

#win .popup_close a .hover {
    z-index: 2;
    background-position: center bottom;
    opacity: 0.0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    -o-opacity: 0.0;
    -moz-opacity: 0.0;
    -khtml-opacity: 0.0;
    transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: filter 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
}

#win .popup_close a:hover .normal {
    opacity: 0.0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    -o-opacity: 0.0;
    -moz-opacity: 0.0;
    -khtml-opacity: 0.0;
    transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: filter 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
}

#win .popup_close a:hover .hover {
    opacity: 1.0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    -o-opacity: 1.0;
    -moz-opacity: 1.0;
    -khtml-opacity: 1.0;
    transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: filter 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
}

/* /close */

#win h1,
#win h2,
#win h3,
#win h4,
#win h5,
#win h6 {
    margin: 0 !important;
    padding: 0 !important;
    color: #565d62;
    font-weight: 300 !important;
    text-shadow: none !important;
    border: none !important;
}

/*
* links
*/
#win .contentWrap>.links {
    display: none;
    text-align: center;
    margin-top: 20px;
}

#win .contentWrap>.links,
#win .contentWrap>.links * {
    cursor: default;
    user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

#win .contentWrap>.links a,
#win .contentWrap>.links a * {
    cursor: pointer;
}

#win .contentWrap>.links a,
#win .contentWrap>.links a:link,
#win .contentWrap>.links a:hover,
#win .contentWrap>.links a:active,
#win .contentWrap>.links a:visited {
    text-decoration: none;
}

#win .contentWrap>.links a {
    padding-left: 15px;
    padding-right: 15px;
    color: #818181;
    font-size: 16px;
}

#win .contentWrap>.links a:hover,
#win .contentWrap>.links a:active {
    color: #fa6126;
}
