@charset "UTF-8";

.widget_popup{position:fixed;z-index:1000000;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,0.5);box-sizing:border-box;display:flex;flex-wrap:nowrap;flex-direction:column;align-items:center;justify-content:center;display:none;}
.widget_popup .window{position:relative;margin:0;padding:0;width:500px;max-width:calc(100% - 30px);}
.widget_popup .window .window_header{position:relative;margin:0;padding:0;margin-bottom:10px;display:flex;flex-wrap:nowrap;flex-direction:row;align-items:center;justify-content:space-between;gap:10px;}
.widget_popup .window .window_header .today{position:relative;margin:0;padding:0;border:0;border-radius:0;-webkit-appearance:none;font-family:inherit;font-size:14px;font-weight:400;line-height:1;color:#FFFFFF;background-color:transparent;cursor:pointer;}
.widget_popup .window .window_header .close{position:relative;margin:0;padding:0;border:0;border-radius:0;-webkit-appearance:none;width:22px;aspect-ratio:1/1;background-color:transparent;cursor:pointer;display:flex;flex-wrap:nowrap;flex-direction:column;align-items:center;justify-content:center;flex-shrink:0;}
.widget_popup .window .window_header .close:before{content:"\F4C7";position:relative;display:block;margin:0;padding:0;color:inherit;font-family:"remixicon";font-size:20px;color:#FFFFFF;line-height:1;font-weight:100;}
.widget_popup .window .window_content{position:relative;aspect-ratio:500/500;overflow:auto;background-color:#FFFFFF;}
.widget_popup .window .window_content .popup{position:relative;}
.widget_popup .window .window_content .popup img{display:block;max-width:100% !important;width:100% !important;}
.widget_popup .window .window_content .popup p{margin:0;padding:0;}
.widget_popup .window .window_footer{position:relative;margin:0;padding:0;height:40px;background-color:#DFDFDF;display:flex;flex-wrap:nowrap;flex-direction:column;}
.widget_popup .window .window_footer .tabs{position:relative;margin:0;padding:0;display:flex;flex-wrap:nowrap;flex-direction:row;flex:1;}
.widget_popup .window .window_footer .tabs .item{position:relative;margin:0;padding:5px;border:0;border-radius:0;-webkit-appearance:none;min-width:0;font-family:inherit;font-size:13px;font-weight:400;line-height:1;color:#000000;text-align:center;white-space:nowrap;background-color:transparent;box-sizing:border-box;cursor:pointer;display:flex;flex-wrap:nowrap;flex-direction:row;align-items:center;justify-content:center;flex:1;transition:color ease 250ms,background-color ease 250ms;}
.widget_popup .window .window_footer .tabs .item:hover{background-color:#DADADA;}
.widget_popup .window .window_footer .tabs .item:active{background-color:#D5D5D5;}
.widget_popup .window .window_footer .tabs .item.active{color:#FFFFFF;background-color:#000000;}
.widget_popup .window .window_footer .tabs .item + .item{border-left:1px solid rgba(0,0,0,0.1);}
.widget_popup .window .window_footer .tabs .item span{position:relative;display:block;margin:0;padding:0;border:0;text-overflow:ellipsis;overflow:hidden;}
.widget_popup.active{display:flex;}

@media all and (max-width:1000px)
{
	.widget_popup .window{width:400px;}
	.widget_popup .window .window_header{margin-bottom:5px;}
	.widget_popup .window .window_header .today{font-size:13px;}
	.widget_popup .window .window_footer .tabs .item{font-size:12px;}
}