﻿/* The following I am keeping since I need them for modal styles */
div#deletePendingPaymentConfirmation .modal-title,
div#paymentNoteModal .modal-title {
    display: inline-block;
    vertical-align: middle;
}

div#paymentNoteModal textarea#newPaymentNote {
    resize: vertical;
}

div#paymentNoteModal td.close-column {
    vertical-align: middle;
}


/* The rest of these styles are the ones that are trivial to me currenty */

div#paymentNoteModal div.modal-dialog {
    overflow-y: initial !important;
}

div#paymentNoteModal tbody {
    /* 	height: 250px;
	overflow-y: auto;
	display:block; */
}

.hidden-header .th-inner {
    position: static;
    overflow-y: hidden;
    height: 0;
    white-space: nowrap;
    padding-right: 5px;
}

.th-inner {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 5;
    line-height: 37px;
    text-align: left;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-left: 8px;
    margin-left: -9px;
    background: #f4f4f4;
}

.payment-note-container {
    max-height: 250px;
    overflow-y: auto;
}

    .payment-note-container table {
        margin-bottom: 0;
    }

.payment-note-wrapper {
    position: relative;
    overflow: hidden;
}
/*modal*/
/*Confirm Modal*/

.modal-backdrop {
    opacity: 0.5 !important;
}

.modal-confirm {
    color: #636363;
    width: 30%;
    font-size: 17px;
}

    .modal-confirm .modal-content {
        padding: 20px;
        border-radius:19px;
        border: none;
    }

    .modal-confirm .modal-header {
        border-bottom: none;
        position: relative;
    }

    .modal-confirm h4 {
        text-align: center;
        font-size: 26px;
        margin: 30px 0 -15px;
    }

    .modal-confirm .form-control, .modal-confirm .btn {
        min-height: 40px;
        border-radius: 3px;
    }

    .modal-confirm .close {
        position: absolute;
        top: -5px;
        right: -5px;
    }

    .modal-confirm .modal-footer {
        border: none;
        text-align: center;
        border-radius: 5px;
        font-size: 13px;
    }

    .modal-confirm .icon-box {
        color: #fff;
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: -70px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        z-index: 9;
        background: #82ce34;
        padding: 15px;
        text-align: center;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    }

        .modal-confirm .icon-box i {
            font-size: 58px;
            position: relative;
            top: 3px;
        }

    .modal-confirm.modal-dialog {
        /*margin-top: 80px;*/
    }

    .modal-confirm .btn {
        color: #fff;
        border-radius: 4px;
        background: #82ce34;
        text-decoration: none;
        transition: all 0.4s;
        line-height: normal;
        border: none;
    }

        .modal-confirm .btn:hover, .modal-confirm .btn:focus {
            background: #6fb32b;
            outline: none;
        }

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}