[data-toggle="modal"] {
	cursor: pointer;
}

.modal-content {
	border-radius: 0!important;
	padding: 60px;
}

.modal-close-btn {
    position: absolute;
    top: 0;
    right: -60px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.modal-close-btn:before {
    content: '';
    background: url('close.svg');
    display: block;
    background-size: cover;
    width: 39px;
    height: 39px;
}

.modal__title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 40px;
	color: #c32327;
}

.modal__body {
	color: #454545;
	font-size: 15px;
	font-weight: 400;
}

@media (max-width: 767px) {
    .modal-dialog {
        margin-top: 50px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-close-btn {
        top: -50px;
        right: 0;
    }

    .modal__title {
        font-size: 16px;
        margin: 0 0 20px;
    }
}