.modal-text{
    font-size: 20px;
    color: #fff;
    display: block;
    text-align: center;
}
#modal-celebrate .modal-body, #modal-error .modal-body{
    text-align: center;
    color: #fff;
    padding: 30px;
    background-color: #4599d5;
    background: url(/img/modal-back.png) 50% no-repeat #4599d5;
}
.modal-btn{
    background-color: #e75440;
    background-image: -webkit-linear-gradient(top, #e75440, #b02411);
    background-image: -moz-linear-gradient(top, #e75440, #b02411);
    background-image: -ms-linear-gradient(top, #e75440, #b02411);
    background-image: linear-gradient(to bottom, #e75440, #b02411);
    border: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    padding: 14px 15px;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
}
#modal-celebrate .modal-body>* {
    display: block;
    margin-bottom: 20px;
}
#modal-celebrate .modal-title, #modal-error .modal-title{
    color: #fff;
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
	font-weight: bold;
    text-transform: uppercase;
}
#modal-celebrate .modal-phones{
    display: flex;
    justify-content: space-between;
}
.modal-phones span{
	background: #fff;
    color: #e2503c;
    font-size: 30px;
    font-weight: bold;
    display: inline-block;
    position: relative;
}
.modal-phones span:first-child{
	padding: 20px 20px 20px 0;
}
.modal-phones span:first-child:before{
    border: 32px solid transparent;
    border-right: 20px solid #fff;
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    content: '';
    top: 0;
    left: -52px;
}
.modal-phones span:last-child{
	padding: 20px 0px 20px 20px;
}
.modal-phones span:last-child:before{
    border: 32px solid transparent;
    border-left: 20px solid #fff;
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    content: '';
    top: 0;
    right: -52px;
}
#modal-error .modal-body>*{
    margin-bottom: 40px;
}
.modal-body .close{
	position: absolute;
    right: 15px;
    top: 10px;
    color: #fff;
    opacity: 1;
    text-shadow: none;
    font-weight: 400;
    font-size: 14px;
}
@media screen and (max-width: 767px){
	#modal-celebrate .modal-title, #modal-error .modal-title{
		font-size: 24px;
		margin-bottom: 20px;
	}
	#modal-celebrate .modal-body>* {
		margin-bottom: 10px;
	}
	.modal-text {
		font-size: 14px;
	}
	#modal-celebrate .modal-phones{
		flex-direction: column;
		align-items: center;
	}
	.modal-phones span{
		font-size: 24px;
	}
	.modal-phones span:first-child{
		padding: 10px;
		margin-bottom: 10px;
	}
	.modal-phones span:last-child{
		padding: 10px;
	}
	.modal-phones span:first-child:before, .modal-phones span:last-child:before{
		display: none;
	}
}