.wrap {
     position: absolute;
     right: 0;
     width: 100%;
     left: 0;
     margin: 0 auto;
 }

.select { 
    position: relative;
    width: 100%;
}

.container1 {
        border: 2px solid #dedede;
        background-color: #f1f1f1;
        border-radius: 5px;
        padding: 10px;
        margin: 10px 0;

    }

.darker {
        border-color: #ccc;
        background-color: #ddd;
    }

.modal-content {
    /* 80% of window height */
    height: 80%;
}

.modal-body {
    /* 100% = dialog height, 120px = header + footer */
    max-height: calc(100% - 120px);
    overflow-y: scroll;
}

hr:last-child {
display: none;
}

a:link {
    color:#0088cc;
}

a:visited {
    color:#0088cc;
}

textarea{
    background-color: transparent;
    width: 100%;
    display:block;
    overflow: hidden;
    resize: vertical;
    font-size: 14px;
    border-radius: 0;
    border: 1px solid #757575;
    border-bottom: 1px solid rgba(0,0,0, 0.12);
    border-bottom:1px solid #757575;
    outline-color: #0088cc;
}

textarea:focus {
    border:1px solid #0088cc;
}

.select-text {
    position: absolute;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 10px 10px 10px 0;
    font-size: 14px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0, 0.12);
    border-bottom:1px solid #757575;
}

/* Remove focus */
.select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0,0,0, 0);
    border-bottom:1px solid #757575;
}

/* Use custom arrow */
.select .select-text {
    appearance: none;
    -webkit-appearance:none
}

.select:after {
    position: absolute;
    top: 18px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}



/* active state */
.select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
    color: #0088cc;
    /*top: -20px;*/
    transition: 0.2s ease all;
    font-size: 14px;
}

/* BOTTOM BARS ================================= */
.select-bar {
    position: relative;
    display: block;
    width: 100%;
}

.select-bar:before, .select-bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #0088cc;
    transition: 0.2s ease all;
}

.select-bar:before {
    left: 50%;
}

.select-bar:after {
    right: 50%;
}

/* active state */
.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after ~ .select-bar:before,  {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}