﻿
.error-text {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 3px;
}


.cs_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 10001;
    background: rgba(0,0,0,0.75);
    text-align: center;
    display: none;
    backdrop-filter: blur(5px);
}

    .cs_modal .cs_wrp {
        max-width: 360px;
        padding: 25px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 0 40px rgba(0,0,0,0.16);
        box-sizing: border-box;
        margin: 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

        .cs_modal .cs_wrp .cs_close {
            display: inline-block;
            text-align: right;
            float: right;
            padding: 2px 0 2px 8px;
            cursor: pointer;
        }

        .cs_modal .cs_wrp .cs_container .cs_icon {
            padding: 15px 0;
            max-width: 75px;
            margin: 0 auto;
        }

        .cs_modal .cs_wrp .cs_container .cs_content h3 {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .cs_modal .cs_wrp .cs_container .cs_content p {
            font-size: 14px;
            font-weight: 400;
            padding: 0 10%;
            line-height: 18px;
        }

        .cs_modal .cs_wrp .cs_container .cs-btn {
            margin-top: 20px;
        }

            .cs_modal .cs_wrp .cs_container .cs-btn .btn-timout {
                color: #fff;
                border: 0px;
                font-size: 14px;
                font-weight: 600;
                text-align: center;
                border-radius: 4px;
                padding: 9px;
                width: 100%;
                cursor: pointer;
                text-decoration: none;
                display: block;
                background: rgb(40, 125, 250);
                background: -moz-linear-gradient(45deg, rgba(40, 125, 250, 1) 16%, rgba(0, 179, 255, 1) 100%);
                background: -webkit-linear-gradient(45deg, rgba(40, 125, 250, 1) 16%, rgba(0, 179, 255, 1) 100%);
                background: linear-gradient(45deg, rgba(40, 125, 250, 1) 16%, rgba(0, 179, 255, 1) 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#287dfa",endColorstr="#00b3ff",GradientType=1);
            }

.close_modl {
    position: absolute;
    right: 020px;
    font-size: 40px;
    top: 0px;
    cursor: pointer;
}

@media only screen and (max-width: 370px) {
    .cs_modal .cs_wrp {
        max-width: 340px;
    }
}