﻿

/********************************************************
  
    DIALOG

********************************************************/

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

    .modal .modal-content {
        background-color: #fefefe;
        margin: auto;
        border: 1px solid #888;
        width: 500px;
    }

    .modal .modal-header {
        background: #df0054;
        color: white;
        font-size: 22px;
        font-weight: 100;
        padding: 25px;
        width: -webkit-fill-available;
        vertical-align: super;
    }

    .modal .close {
        color: #fff;
        float: right;
        font-size: 32px;
        position: relative;
        top: -5px;
    }

        .modal .close:hover,
        .modal .close:focus {
            color: #a4a4a4;
            text-decoration: none;
            cursor: pointer;
        }

    .modal .modal-body {
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .modal .modal-body .sms-call-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 10px;
            background: url(../img/mobile.svg) no-repeat
        }

        .modal .modal-body h3 {
            display: block;
            line-height: 50px;
            font-size: 23px;
            color: #656565;
        }

        .modal .modal-body p {
            line-height: 25px;
            text-align: center;
        }

        .modal .modal-body p b {
           font-weight: bold;

        }

        .modal .modal-body .input_confirmCode {
            text-align: center;
            margin-top: 22px;
        }


            .modal .modal-body .input_confirmCode input {
                border-radius: 3px;
                width: 150px;
                padding: 15px 2px 15px 15px;
                border: 1px #707070 solid;
                margin: 0 5px 0 5px;
                text-align: center;
                font-size: 20px;
                font-weight: 500;
                color: #707070;
                letter-spacing: 10px;
            }

        .modal .modal-body .button-group {
            margin-top: 20px;
        }
