/*Front ccs for custom widget plugin*/

.boss-info-window {
	display: none;
}

.boss-info-window.open {
	display: block;
}

.boss-info-window .boss-info-window-layout {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    z-index: 9999999999;
}

.boss-info-window .boss-info-window-container {
	width: 90%;
    height: 80%;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    top: 10%;
    z-index: 9999999999;
    background-color: #ffffff;
}

.boss-info-window-container iframe{
	width: 100%;
	height: calc(100% - 32px);
	top: 32px;
}

.boss-info-window-close {
	height: 32px;
    background-color: #2196F3;
    color: #ffffff;
}


.boss-info-window-close:after {
	display: block;
    content: "x";
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    right: 10px;
    cursor: pointer;
}

.boss-info-window-close:hover {
	color: red;
}