.form-control{
    color: #FFFFFF!important;
}
textarea {
    resize: vertical!important;
    height: 100%!important;
}
.form-check-label {
    color: #FFFFFF!important;
}
.error{
    color: red!important;
}
.pe-none{
    pointer-events: none;
}

/*For select2*/
.select2-container{
    width: 100%!important;
}
.select2-selection__rendered{
    color: #FFFFFF!important;
}
.select2-container--default .select2-selection--single {
    background-color: #2A3038!important;
    height: 100%!important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 10px!important;
}

.select2-container--default .select2-selection--multiple {
    background-color: #2A3038!important;
    height: 100%!important;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow{
    top: 10px!important;
}
    /*select2 end*/


.loader {
    position: absolute;
    left: 50%;
    top: 35%;
    display: none;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
