$primaryColor: #4527a4;

.wp-block-bpsmb-smart-modal-block {

	box-sizing: border-box;

	* {
		box-sizing: border-box;
	}

	.bpsmb_modal_plugin {
		.bpsmb_button_area {

			.btn {
				text-align: center;
				border: none;
				border-radius: 10px;
				cursor: pointer;
			}
		}

		.bpsmb_modal_main_area {
			position: fixed;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			z-index: 9999;
			display: flex;
			align-items: center;
			justify-content: center;
			overflow-y: auto;

			.modal_area {
				position: relative;
				margin: auto;
				background: #fff;
				border-radius: 7px;
				z-index: 99999;
				padding: 20px;
				box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

				h2 {
					margin: 0;
				}

				.desc {
					margin-top: 10px;
				}

				.closeIcon {
					position: absolute;
					right: 15px;
					top: 15px;
					cursor: pointer;

					svg {
						&:hover {}
					}
				}
			}
		}
	}

}