/*
 * Simple Modal Default Styles
 *
 * Author: Vanessa Coles
 * Description: Some basic default styles for Simple Modal.
 --------------------------------------------------------- */

.modal-content {
    position: relative;
    /* border-radius: 3px; */
    /* box-shadow: 0 15px 50px rgb(0 0 0 / 25%); */
}

.modal-header, .modal-body, .modal-footer {
    padding: 0;
}

/* Modal Header */

.modal-header {
    /* border-bottom: 1
px
 solid rgba(0,0,0,.1); */
    padding-top: 40px;
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: normal;
    font-size: 54px;
    line-height: 63px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
}

.modal-title {
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: normal;
    font-size: 44px;
    line-height: 63px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
}

/* Modal Body */

.modal-body {
    line-height: 0;
    padding-bottom: 25px;
    padding-top: 25px;
}

.modal-body p {
    margin-top: 0;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 33px;
    align-items: center;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
}

.modal-body p:last-child {
	margin-bottom: 0;
}

/* Modal Footer */

.modal-footer {
	background: rgba(0,0,0,.03);
	text-align: right;
}

/* Modal Buttons */

.close-icon {
    webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 0px;
    right: 2px;
    width: 35px;
    height: 35px;
    color: #fff;
    font-size: 14px;
    background: #2220;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: middle;
    z-index: 1000;
}

.modal-footer button {
	webkit-appearance: none;
	appearance: none;
	padding: 0 25px;
	height: 40px;
	font-size: 14px;
	font-weight: bold;
	border: none;
	outline: none;
	border-radius: 2px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

.modal-footer .close-button {
	color: #fff;
	background: #e83030;
	transition: all .3s ease-in-out;
}

.modal-footer .close-button:hover
.modal-footer .close-button:focus {
	background: #e62121;
}
