	.onas-body {
    	padding: 1vw;
    	background-color: white;
    	color: black;
   		font-size: clamp(16px, 1.6vw, 26px);
    	/* margin-top: 2vw; */
    	box-sizing: border-box;
    }

	.onas-body.color-variant-onas1 {
		background-color: #E8F4FF;
	}
	
    .onas-header-line {
    	width: 100%;
    	height: 1px;
    	background-color: #00C;
    	margin-bottom: 1vw;
    }

    .onas-flex-container {
    	display: flex;
    	flex-direction: row;
    	width: 100%;
    	gap: 1vw;
    	align-items: center;
    	flex-wrap: nowrap;
    	box-sizing: border-box;
    }

    .onas-text-wrapper,
    .onas-img-wrapper {
    	flex: 0 0 49%;
    	box-sizing: border-box;
    }

    .onas-text-wrapper {
    	display: flex;
    	flex-direction: column;
    	justify-content: center;
    	padding: 1vw;
    }

    .onas-text-wrapper p {
    	/* font-size: calc(0.6rem + 0.7vw);
    	color: black; */
    	line-height: 1.2;
    }

    .onas-text-wrapper strong {
    	font-weight: bold;
    }

    .onas-text-wrapper-last {
    	display: flex;
    	align-items: center;
    	gap: 20px;
    	flex-wrap: nowrap;
    }

    .onas-text-wrapper-last p {
    	margin: 0;
    }

    /* Pečiatka s fixnými rozmermi a pridaným marginom vpravo */
    .onas-official-stamp {
    	display: block;
    	height: calc(1em * 4.5 * 1.2);
    	width: auto;
    	margin-right: 20px;
    	object-fit: contain;
    	cursor: pointer;
    	transition: transform 0.1s ease;
    }

    .onas-official-stamp:hover {
    	transform: scale(1.25);
    }

    /*************************************************************************************/
    .onas-certif-modal-overlay {
    	position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    	background: rgba(0, 0, 0, 0.5);
    	display: none;
    	z-index: 9998;
    }

    .onas-certif-wrapper {
    	position: fixed;
    	top: 50%;
    	left: 50%;
    	transform: translate(-50%, -50%);
    	display: inline-block;
    	background-color: white;
    	border: 2px solid #444;
    	z-index: 9999;
    	display: none;
    	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    	box-sizing: border-box;
    }

    /*************************************************************************************/
    .onas-certif-header {
    	display: flex;
    	justify-content: flex-end;
    	background: #eee;
    	padding: 4px;
    	box-sizing: border-box;
    }

    .onas-certif-header button {
    	background: none;
    	border: none;
    	font-size: 18px;
    	cursor: pointer;
    	margin-left: 5px;
    }

    /*************************************************************************************/
    .onas-certif {
    	max-width: 100vw;
    	max-height: 100vh;
    	box-sizing: border-box;
    }

    .onas-certif img {
    	max-width: 90vw;
    	max-height: 90vh;
    	height: auto;
    	display: block;
    }

    /*******************************************************************************************/
	.onas-img-wrapper {
		padding: 4vw;
	}

    .onas-img-wrapper-inner {
    	width: 100%;
    	height: 100%;
    	overflow: hidden;
    }

    .onas-img img {
    	width: 100%;
    	object-fit: contain;
    	display: block;
    }

    /*******************************************************************************************/
    @media (max-width: 762px) {
    	.onas-body {
    		min-height: auto;
    	}

    	.onas-flex-container {
    		flex-direction: column;
    		align-items: center;
    		padding-top: 0;
    	}

		.onas-flex-container.column-reverse{
    		flex-direction: column-reverse;
    	}


    	.onas-text-wrapper,
    	.onas-img-wrapper {
    		flex: 0 0 100%;
    	}
    }