﻿.btn-success {
    margin: 1%;
}

.btn-success[disabled] {
    background-color: #182e5f !important;
    border-color: #182e5f;
}

.active12 {
    background-color: gray;
}

.button-center {
    text-align: center;
}

label {
    font-weight: 600;
    font-size: 15px;
    color: GrayText;
    display: inline-block;
    width: 140px;
    text-align: right;
}

h4 {
    color: GrayText;
}

.box {
    border: 1px solid;
    border-color: lightgray;
    margin: auto;
    padding-bottom: 30px;
    padding-top: 30px
}

.form-data {
    font-size: 15px;
    color: GrayText;
    padding-bottom: 5px;
    padding-top: 5px;
}

.lightgray_color {
    color: lightgray;
}

.container {
    display: flex;
    flex-direction: row;
}

.container_col-1 {
    width: 50%;
    padding-left: 3px;
    padding-right: 3px;
}

.container_col-2 {
    width: 50%;
    padding-left: 3px;
    padding-right: 3px;
}
/*this is a media query what this does is says when the screen size is smaller than 768px use these styles*/

@media(max-width: 768px) {
    .container {
        flex-direction: column;
    }
    /*  now your first column will take the full width of the parent
        container which will push the second column below it */
    .container_col-1 {
        width: 100%;
    }

    .container_col-2 {
        width: 100%;
    }
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}

    ::-webkit-scrollbar:horizontal {
        height: 12px;
    }

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}

/* Styling modal */
.modal {
    color: black;
    position: fixed;
    top: 3%;
    right: 3%;
    left: 3%;
    width: auto;
    margin: 0;
    z-index: 10001;
}

.modal-body {
    height: 60%;
}
.modal-body label {
    width:auto;
}

.modal-body {
    max-height: 800px;
    padding: 15px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-body h3 {
    font-size: large;
}

.modal-body h4 {
    font-size: large;
}

.modal-header h3 {
    font-size:large;
}
/*.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.modal-dialog {
    display: inline-block;
    vertical-align: middle;
}

.modal .modal-content {
    padding: 20px 20px 20px 20px;
    -webkit-animation-name: modal-animation;
    -webkit-animation-duration: 0.5s;
    animation-name: modal-animation;
    animation-duration: 0.5s;
}

@-webkit-keyframes modal-animation {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes modal-animation {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}*/