.modal-dialog {
    max-width: 300px;
}

@media (min-width: 768px) {
    .modal-dialog {
        max-width: 600px;
    }
}

.modal-header, .modal-footer {
    border: none !important;
}

.modal-body {
    text-align: center;
    padding: 0 20px;
}

.modal-body p {
    word-wrap: break-word;
}

.overflow-y-modal-fix {
	display: none;
	position: fixed;
	height: 100%;
	max-height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	overflow-y: auto;
	z-index: 1003;
}

.overflow-y-modal-fix .modal {
	height: min-content!important;
	max-height: min-content;
	position: relative;
	margin-bottom: 54px;
}