﻿.startrow {
    margin-top: 70px;
    margin-left: 0px;
}

@media (min-width: 1076px) {
    .startrow {
        margin-top: 10px;
        margin-left: 0px;
    }
}

.form-box {
    max-width: 95%;
    font-size: 15px;
    border: 5px solid;
    border-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    margin-bottom: 15px;
}

.btn {
    font-size: 25px;
}

.nomodal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.nomodal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 80%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
    font-size: 20px;
    text-align: justify;
}

.nomodal-header {
    /*display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;*/
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.nomodal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 25px;
}

.nomodal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    font-size: 20px;
}

.form-control:-moz-placeholder {
    color: #d7d7d7;
}

.form-control::-moz-placeholder {
    color: #d7d7d7;
}

.form-control:-ms-input-placeholder {
    color: #d7d7d7;
}

.form-control::-webkit-input-placeholder {
    color: #d7d7d7;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 20px;
    line-height: 1.428571429;
    color: #8e8e93;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #c7c7cc;
    border-radius: 4px;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .form-control:focus {
        border-color: #007AFF;
        outline: 0;
    }

    .form-control[disabled],
    .form-control[readonly],
    fieldset[disabled] .form-control {
        cursor: not-allowed;
        background-color: #f7f7f7;
    }