@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900|Roboto:300,400,500,700,900&display=swap&subset=cyrillic,latin-ext');
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: local('Lato'), url(../fonts/Lato-Light.ttf) format('ttf');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    src: local('Lato Regular'), url(../fonts/Lato-Regular.ttf) format('ttf');
}

body {
    background: #F4F2ED;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_call {
    display: block;
    max-width: 100%;
    background: #fff;
    width: 400px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Lato', serif;
}

.input-phone {
    width: 100%;
    height: 60px;
    font-size: 1.4em;
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid #888888;
    max-width: 323px;
    color: #888888;
}

.input-phone:active,.input-phone:focus {
    outline: none;
    color: #333;
    border-color: #333;
}

.modal_call_subtitle {
    font-family: 'LatoWeb', sans-serif;
    margin-bottom: 25px;
    font-size: 18px;
}

.modal_call form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.modal_call_img {
    margin: 20px 0 0 0;
    width: 250px;
}

#catalog-send {
    background-color: #D93C23;
    color: rgb(255,255,255)!important;
    font-size: 21px;
    display: block;
    width: 100%;
    height: 60px;
    cursor: pointer;
    border: none;
    outline: none;
    margin-top: 17px;
    border-radius: 8px;
    padding: 10px 25px;
    max-width: 323px;
    -webkit-appearance: none;
    position: relative;
    overflow: hidden;
    font-family: 'LatoWeb', serif;
}

.modal_call_title {
    font-family: 'Playfair Display', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 28.8px;
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}

@media(max-width: 500px) {
    .modal_call {
        margin: 10px;
        padding: 20px;
    }

    .modal_call_subtitle {
        font-size: 16px;
    }
}

.ink {
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.3);
    border-radius: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    /* height: 260px; */
    /* width: 260px; */
}

.animate {
    -webkit-animation: ripple .65s linear;
    -moz-animation: ripple .65s linear;
    -ms-animation: ripple .65s linear;
    -o-animation: ripple .65s linear;
    animation: ripple .65s linear;
}

@-webkit-keyframes ripple {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5)
    }
}

@-moz-keyframes ripple {
    100% {
        opacity: 0;
        -moz-transform: scale(2.5)
    }
}

@-o-keyframes ripple {
    100% {
        opacity: 0;
        -o-transform: scale(2.5)
    }
}

@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5)
    }
}
