.requiredNotePopup{
	position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 20;
}
.requiredNotePopup .background{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #000;
	opacity: 0.5;
}
.requiredNotePopup .title{
	width: 100%;
    text-align: center;
    font-size: 30px;
    color: #fff;
    position: relative;
    margin-top: 50px;
    margin-bottom: 10px;
}
.requiredNotePopup .title .icon{
	margin-right: 10px;
}
.requiredNotePopup .content{
	position: relative;
    width: 700px;
    min-height: 440px;
    /*background: #fff;*/
    margin: 0px auto;
    /*border: 3px solid #000;*/
    /*border-radius: 4px;*/
    overflow: auto;
    max-height: 800px;
}
.requiredNotePopup .content .messageHolder{
	text-align: center;
    width: 600px;
    margin: 30px auto 0px;
    color: #0006;
    font-size: 17px;
}
.requiredNotePopup .content .messageHolder .message{

}
.requiredNotePopup .content .messageHolder .message .messageObjName{
	font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}
.requiredNotePopup .content .warning{
	background: #ffa500;
    border-bottom: 2px solid #fff;
    /*color: #fff;*/
    background: #ffa50026;
    border: 2px solid #ffa500;
    color: #000;

    border-radius: 4px;
    line-height: 32px;
    /*width: 440px;*/
    margin: auto;
    max-width: 600px;
    overflow: auto;
    text-align: center;
    font-size: 17px;
}
.requiredNotePopup .content .messageHolder .message .messageDirections{
	margin-top: 10px;
}


/* --- Note Reasons Holder --- */
.requiredNotePopup .content .noteReasonsHolder{
    /*border-top: 1px solid #808080;*/
    margin-top: 30px;
    position: relative;
}
.requiredNotePopup .content .noteReasonsHolder .reasonHolder{
    width: 540px;
    margin: 20px auto;
}   
.requiredNotePopup .content .noteReasonsHolder .reasonHolder .reasonTitle{
    color: #0000004d;
    margin-bottom: 15px;
    text-align: center;
}
.requiredNotePopup .content .noteReasonsHolder .reasonHolder .reasonBtnsHolder{
    overflow: auto;
    width: fit-content;
    margin: auto;
}
.requiredNotePopup .content .noteReasonsHolder .reasonHolder .reasonBtnsHolder .reasonBtn{
    float: left;
    background: #ccc;
    margin-right: 20px;
    margin-bottom: 15px;
    width: 160px;
    text-align: center;
    line-height: 49px;
    border-radius: 4px;
    cursor: pointer;
}
.requiredNotePopup .content .noteReasonsHolder .reasonHolder .reasonBtnsHolder .reasonBtn.selected{
    background: var(--trackrDarkBlueColor);
    color: white;
}
.requiredNotePopup .content .noteReasonsHolder .reasonDirections{
    clear: both;
    text-align: center;
    color: #0000004a;
    margin-top: 10px;
} 
.requiredNotePopup .content .noteReasonsHolder .reasonsInfoBtn{
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 25px;
    color: #c1c1c1;
    cursor: pointer;
}

.requiredNotePopup .content .requiredNoteHolder{
    padding-bottom: 30px;
    border-bottom: 2px solid #252525;
    padding-top: 30px;
    background: #fff;
    border-radius: 4px;
    border: 2px solid #000;
    margin-bottom: 15px;
}
.requiredNotePopup .content .requiredNoteHolder .requiredNoteInput{
	width: 600px;
    min-height: 150px;
    margin: 15px auto 0px;
    display: block;
    border: 1px solid #808080;
    border-radius: 4px;
    padding: 15px;
    font-size: 15px;
}
.requiredNotePopup .content .requiredNoteHolder .requiredNoteInput::placeholder{
    color: #b9b9b9;
}
.requiredNotePopup .content .bottomBar{
    background: #0000004a;
    overflow: auto;
    border-radius: 4px;
}
.requiredNotePopup .content .submitBtn{
	width: 160px;
    background: var(--positiveColor);
    color: #fff;
    text-align: center;
    line-height: 60px;
    border-radius: 4px;
    font-size: 19px;
    cursor: pointer;
    margin: 30px auto;
    border: 2px solid white;
}
.requiredNotePopup .content .submitBtn.disabled{
	opacity: 0.2;
}