	/* obavestenja - custom */
			
#myContent {
    position: fixed;
    z-index: 9999;

    background-color: #fff;
    border: 5px solid #7761df;
    border-radius: 0.3rem;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-width: 95vw;
    max-height: calc(100vh - 4rem);

    overflow: auto;

    display: flex;
    flex-direction: column;
}

#myHeader {
	/*
	display: flex;
	width: 100%;
	height: 70px;
	border-bottom: 1px solid #777;
	*/
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;

}			
.myTitle {
	color: #a6a6a6;
	margin-bottom: 0;
	line-height: 1.5;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
    font-weight: 700;
}

/* The Close Button */
#myContent .close_custom {
	color: #aaaaaa;
	font-size: 36px;
	font-weight: bold;
	position: absolute;
	right: 15px;
	top: 5px;
	/* line-height: 30px; */
}

#myContent .close_custom:hover,
#myContent .close_custom:focus {
	color: #dddddd;
	text-decoration: none;
	cursor: pointer;
}

.myBody {
	overflow-y: auto;

	position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
	/* max-height: calc(100% - 3.5rem); */
	max-height: calc(100% - 55px);
	
}

.myFooter {
	height: 50px;
	color: #a6a6a6;	
	/* text-align: center; */ 	
	font-size: 12px;   
	display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
	
}
		
/* Modal Content */
#myContent .modal-content_my {
	background-color: #fefefe;

}
			
#myContent .modal-content_my img {
	/* width:100%; */

}
