/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

/*web content Certificates of Authorisation Heading (Payment and Settlement)*/

 .image-modal-popup {
			display: none;
	 }

	 .modal.video-overlay .modal-content .image-popup-overlay-content {
			display: flex;
			justify-content: center;
	 }

	 .modal_inner_wrapper {
			position: relative;
			width: 100%;

			.closePopUp-wrapper img {
				 @media screen and (max-width:768px) {
						width: 10px;
						height: 10px;
				 }
			}

			.modal_header {
				 position: relative;
				 display: flex;
				 justify-content: space-between;
				 padding-bottom: 16px;

				 @media screen and (max-width:768px) {
						padding-bottom: 12px;
				 }
			}

			.closePopUp-wrapper {
				 position: static !important;
			}
	 }

	 .socian_icon {
			display: flex;
			align-items: center;

			p {
				 color: var(--white);
				 font-size: var(--fnt_14);

				 @media screen and (max-width:768px) {
						font-size: var(--fnt_10);
				 }
			}

			ul {
				 display: flex;

				 li {
						margin-left: 15px;

						@media screen and (max-width:768px) {
							 margin-left: 12px;
						}

						a {
							 display: inline-block;
							 position: relative;

							 img {
									@media screen and (max-width:768px) {
										 width: 13px;
										 height: 12px;
									}
							 }
						}
				 }
			}
	 }

	 .hover_tooltip {
			position: absolute;
			border-radius: 6px;
			padding: 10px 8px 8px 8px;
			background-color: var(--last-update-bg);
			bottom: -50px;
			left: 50%;
			color: var(--primary-color-dark);
			font-size: var(--fnt_12);
			font-weight: var(--medium);
			font-family: var(--fontFamily);
			display: none;

			&:before {
				 content: "";
				 position: absolute;
				 width: 0;
				 height: 0;
				 border-left: 6px solid transparent;
				 border-right: 6px solid transparent;
				 border-bottom: 10px solid var(--last-update-bg);
				 position: absolute;
				 left: 50%;
				 margin-left: -6px;
				 top: -10px;
			}
	 }