.popup-container {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 1000;
}
.popup-bg {
    position: fixed;
    background-color: #000000;
    opacity: 0.75;
    filter: alpha(opacity=75);
    width: 100%;
    height: 100%;
}
.popup-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.popup-box {
    position: relative;
    background-color: #CDCDCD;
    min-width: 350px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 15px 20px 15px 20px;
}
.popup-container .popup-title {
    font-size: 20px;
    line-height: 120%;
    color: #333;
    text-align: left;
    border-bottom: 1px dotted #999;
}
.popup-container .popup-content {
    margin-top: 15px;
}
.popup-container .popup-content input[type=text],
.popup-container .popup-content input[type=password] {
    background-color: rgb(255,255,255);
    width: 150px;
    height: 17px;
    border: 1px solid rgb(153,153,153);
    padding: 2px 5px 0 7px;
    margin: 0 5px 0 0;
    font-size: 12px;
    line-height: 120%;
    color: rgb(51,51,51);
    text-align: left;
}
#bulk-class-rename-form input[type=text] {
    height:20px;
    border: 1px solid rgb(153, 153, 153);
    font-weight:bold;
}
#bulk-class-rename-form input[disabled] {
    background-color:rgb(238,238,238);
    font-size:13px;
    color:rgb(153,153,153);
}
#bulk-class-rename-form table {
    border-collapse: separate;
    border-spacing: 2px;
}
#bulk-class-rename-form th {
    text-align: left;
}
#bulk-class-rename-form td {
    padding-bottom: 6px;
}
#bulk-class-rename-form td.separator {
    width: 13px;
    padding-right: 4px;
    font-size:13px;
    font-weight:bold;
    color:rgb(51,51,51);
    text-align:center;
}
#bulk-class-rename-form .scroll-container {
    max-height: 300px;
    overflow: auto;
}
.popup-container .controls {
    text-align: right;
    width: 100%;
    padding-top: 18px;
    margin-top: 11px;
    border-top: 1px dotted rgb(153, 153, 153);
}
.popup-container .controls input, .popup-container .controls button {
    width: 80px;
}
