@import url('https://fonts.googleapis.com/css?family=Ubuntu');
body{
    margin-bottom: 50px;
}
[disabled] {
    cursor: not-allowed !important; 
    opacity: 0.9 !important;
}
fieldset[disabled] {
  opacity: 1 !important;
}
/*Login Form*/
.login-form {
  width: 800px;
  top: 50%;
  left: 50%;
  position: absolute;
  overflow: hidden;
  transform: translate(-50%,-50%);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.login-form:before {
  content: ' ';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-image: url(../img/login.jpg);
  background-position: center top;
  -webkit-background-size: cover;
          background-size: cover;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  animation-name: backgroundImg;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@-webkit-keyframes backgroundImg {
  from { 
    -webkit-transform: scale(1) translate(0px);
            transform: scale(1) translate(0px); 
    -webkit-transform-origin: center top;
            transform-origin: center top; 
  }
  to { 
    -webkit-transform: scale(1.3) translate(0px);
            transform: scale(1.3) translate(0px); 
    -webkit-transform-origin: center top;
            transform-origin: center top; 
  }
}
.login-form form {
  margin-bottom: 15px;
  padding: 60px;
}
.login-form h1 {
  margin: 0 0 30px;
  font-size: 50px;
  color: black;
  font-family: 'Ubuntu', "sans-serif";
}
.login-form h2 {
  margin: 0 0 30px;
  font-family: 'Ubuntu', "sans-serif";
}
.login-form .inp {
  position: relative;
  margin: auto;
  width: 85%;
  margin-bottom: 20px;
  font-family: 'Ubuntu', "sans-serif";
  /*max-width: 280px;*/
}
.login-form .valid {
  font-style: italic;
  color: red;
  padding: 10px 75px;
}
.login-form button[type="submit"] {
  margin: 20px 0 0 25px;
  position: relative;
  padding: 10px 30px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  color: #435a6b;
  font-family: 'Ubuntu', "sans-serif";
}
.login-form button[type="submit"]::before,
.login-form button[type="submit"]::after {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 2px solid;
  transition: all 0.6s ease;
  border-radius: 2px;
}
.login-form button[type="submit"]::before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: #435a6b;
  border-left-color: #435a6b;
}
.login-form button[type="submit"]::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #435a6b;
  border-right-color: #435a6b;
}
.login-form button[type="submit"]:hover:before,
.login-form button[type="submit"]:hover:after {
  border-bottom-color: #435a6b;
  border-right-color: #435a6b;
  border-top-color: #435a6b;
  border-left-color: #435a6b;
  width: 100%;
  height: 100%;
}
.login-form .fp {
  margin-right: 30px;
  text-decoration: none;
}


/*Materialize design input*/
.inp {
  position: relative;
  margin: auto;
  width: 100%;
  margin-bottom: 20px;
  font-family: 'Ubuntu', "sans-serif";
}
.inp .label {
  position: absolute;
  padding: 0;
  top: 16px;
  left: 0;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  width: 100%;
  text-align: left;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
}
.inp .border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: black;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
}
.inp>input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 12px 0;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid #a9afbc;
  background: none;
  border-radius: 0;
  color: #223254;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
}
.inp span i {
  font-size: 14px;
}
.inp>input:not([type="radio"]):not([type="checkbox"]):hover {
  background: rgba(34,50,84,0.03);
}
.inp>input:not([type="radio"]):not([type="checkbox"]):not(:placeholder-shown) + span {
  color: #5a667f;
  -webkit-transform: translateY(-26px) scale(0.75);
          transform: translateY(-26px) scale(0.75);
}
.inp>input:not([type="radio"]):not([type="checkbox"]):focus {
  background: none;
  outline: none;
}
.inp>input:not([type="radio"]):not([type="checkbox"]):focus + span {
  color: black;
  -webkit-transform: translateY(-26px) scale(0.75);
          transform: translateY(-26px) scale(0.75);
}
.inp>input:not([type="radio"]):not([type="checkbox"]):focus + span + .border {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.inp select {
  border-radius: 0!important;
  height: 50px!important;
  font-size: 16px!important;
  width: 100%;
}
.inp>input:not([type="radio"]):not([type="checkbox"])[readonly] {
  background: #eee;
  cursor: not-allowed; 
  pointer-events: none; 
}
.inp>input:not([type="radio"]):not([type="checkbox"])[readonly]:focus + span {
  color: none;
}
.inp>input:not([type="radio"]):not([type="checkbox"])[readonly]:focus + span + .border {
  background: none;
}


/*Check for Valid*/
.validHint {
  height: 30px; 
  text-align: left; 
  color: red; 
  font-style: italic;
}


a.pwBtn {
  text-decoration: none;
  cursor: pointer;
}
a.pwBtn span {
  padding: 15px;
  font-size: 16px;
  background-color: #f2f2f2;
}



.c-box .chkbox {
  display: none;
}

.c-box .chkbox + label {
  display: inline-block;
  position: relative;
  width: 130px;
  height: 55px;
  background: linear-gradient(to right, #de474e 0, #86d993 100%) 0 0;
  background-size: 650px 100%;
  border-radius: 70px;
  padding: 7px;
  cursor: pointer;
  transition: all 500ms ease;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2) inset;
}
.c-box .chkbox + label:before {
  content: "Suspend";
  width: 70px;
  height: 42px;
  position: absolute;
  left: 7px;
  top: 7px;
  border-radius: 70px;
  background: #fff;
  text-align: center;
  line-height: 3;
  font-family: "Cabin", sans-serif;
  /*font-size: 35px;*/
  font-weight: bold;
  color: #fd1a15;
  /*letter-spacing: 3px;*/
  text-transform: uppercase;
  transition: left 500ms ease, color 500ms ease, -webkit-transform 150ms ease;
  transition: left 500ms ease, color 500ms ease, transform 150ms ease;
  transition: left 500ms ease, color 500ms ease, transform 150ms ease, -webkit-transform 150ms ease;
}
.c-box .chkbox + label:active:before {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.c-box .chkbox:checked + label {
  background-position-x: -350px;
}
.c-box .chkbox:checked + label:before {
  content: "Active";
  color: #007177;
  left: 55px;
}



/*Modal redesign*/
.d-modal .modal-content {
  border-radius: 0!important;
}
.d-modal .modal-header{
  text-align: center!important;
  background-color: #34495e!important;
  color: #fff!important;
}
.d-modal .modal-header button.close {
  color: #fff!important;
  opacity: 1!important;
}
.d-modal .modal-body table tr th, 
.d-modal .modal-body table tr td, 
.d-modal .modal-body table caption {
  padding: 5px 15px;
}

.d-modal .select-label {
    color: #5a667f; 
    -webkit-transform: translateY(-30px) scale(0.75); 
    transform: translateY(-30px) scale(0.75);
  }

/*Submit button*/
.reg {
  line-height: 25px;
  overflow: hidden;
  outline: none;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  background-color: black;
  position: relative;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
/*  transform: scale(0.85);
  -webkit-transform: scale(0.85);*/
}
.reg span {
  line-height: 25px;
  color: #fff;
  display: inline-block;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.reg .icon {
  font-size: 80%;
  line-height: 25px;
  position: absolute;
  right: -30px;
  top: 0;
  color: #fff;
  padding: 10px 5px;
  background-color: #F44336;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
/*.reg:hover {
  padding: 10px 25px 10px 10px;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
}
.reg:hover .icon {
  right: 0px;
}*/
.reg:hover span {
  color: #F44336;
  /*margin-right: 5px;*/
}
.reg[disabled="disabled"],
.reg[disabled="disabled"]:hover,
.reg[disabled="disabled"]:hover span {
  background-color: #BFBFBF;
  cursor: not-allowed;
  color: #FFFFFF;
  margin-right: 0;
}
.reg[disabled="disabled"]:hover .icon {
  right: -40px;
}

/*Navigation Bar*/
.navbar-inverse,
.navbar {
  border-radius: 0!important;
}
.navbar-inverse .navbar-nav>.active {
  border-bottom: 2px solid red;
}

/*Details Bar Button*/
.btn-border-o {
  display: inline-block;
  line-height: 35px;
  margin: auto 3px;
  padding: 0 15px;
  font-size: 15px;
  position: relative;
  opacity: .999;
  border-radius: 3px;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #B3B3B3;
  color: #808080;
  cursor: pointer;
}
.btn-border-o:before, 
.btn-border-o:after {
  content: '';
  border-style: solid;
  position: absolute;
  z-index: 5;
  border-radius: 3px;
  box-sizing: content-box;
}
.btn-border-o:before {
  width: 0;
  height: 100%;
  border-width: 1px 0 1px 0;
  top: -1px;
  left: 0;
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.btn-border-o:after {
  width: 100%;
  height: 0;
  border-width: 0 1px 0 1px;
  top: 0;
  left: -1px;
}
.btn-border-o:hover:before {
  width: 100%;
}
.btn-border-o:hover:after {
  height: 100%;
}
.btn-border-o.btn-navy:before, 
.btn-border-o.btn-navy:after {
  border-color: #34495e;
}
.btn-border-o.btn-navy:hover,
.btn-border-o.btn-navy:focus {
  color: #34495e;
  text-decoration: none;
  cursor: pointer;
}
.btn-nav, 
.btn-border-o:before, 
.btn-border-o:after {
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}

/*Small nav detail bar*/
.detailsbar li.active .btn-border-o.btn-navy {
  border-color: #34495e;
  background-color: #34495e;
  color: white;
}
ul.detailsbar {
  list-style-type: none;
  vertical-align: center;
  padding: 0;
}
ul.detailsbar li span {
  color: #333;
  font-size: 25px;
  font-weight: 400;
}
ul.detailsbar li a {
  line-height: 3;
  text-decoration: none;
}
li{
  display: inline;
}

ul.detailsbar.hml li a {
  font-size: 20px;
  line-height: 2;
  color: black;
  margin: 0 20px;
}
ul.detailsbar.hml li span {
  font-size: 15px;
  color: white;
}
ul.detailsbar.hml li.active {
  font-weight: bold;
}

/*Active Suspend*/
.active-color {
  width: 30px;
  height: 30px;
  background-color: #99e699;
  margin: auto 5px;
}
.suspend-color {
  width: 30px;
  height: 30px;
  background-color: #ff8080;
  margin: auto 5px;
}
.warning-color {
  width: 30px;
  height: 30px;
  background-color: #ffff80;
  margin: auto 5px;
}


/*Table some design*/
.table thead tr th {
  text-align: center;
  background-color: #34495e;
  color: white;
  border-color: #34495e; 
  vertical-align: middle; 
}
.table tbody tr td {
  vertical-align: middle;
  line-height: 2;
}
.table>tbody>tr:hover {
  background-color: rgba(206, 217, 228, 0.5)!important;
}
.pagination>.active>a {
  border-color: #34495e!important;
  background-color: #34495e!important;
}

[valign="top"] {
  vertical-align: top !important;
}

[valign="middle"] {
  vertical-align: middle !important;
}

[valign="bottom"] {
  vertical-align: bottom !important;
}

.table.table-custom td{
  line-height: 1.42857143 !important;
}

/*Panel design*/
.my-panel {
  box-shadow: 0 0 2px 0 #6b8cae;
  padding: 0!important;
  margin-bottom: 20px;
}
.my-panel-title {
  background-color: #34495e;
  padding: 0 20px;
  cursor: pointer;
}
.my-panel-title h4,
.my-panel-title span {
  margin-top: 0 !important; 
  margin-bottom: 0 !important; 
  line-height: 3;
  color: #fff;
}
.my-panel-body {
  margin-bottom: 15px;
  padding: 30px 20px 20px 20px;
}
.my-panel-body#control1 table tr td{
  padding: 0 15px;
}



.noticeUpdate {
  background: #99e699!important;
}

.hideSomething{
  display: none;
}



 #password + .glyphicon {
   cursor: pointer;
   pointer-events: all;
 }

tr td.mysuccess{
    background-color: #99e699!important;
}
tr td.mysuccess:hover{
    /*background-color: #7bea7b!important;*/
}
tr td.mywarning{
    background-color: #ffff80!important;
}
tr td.mywarning:hover{
    /*background-color: #ffa366!important;*/
}
tr td.mydanger{
    background-color: #ff8080!important;
}
tr td.mydanger:hover{
    /*background-color: #ff6666!important;*/
}

.loaderbox, .saverbox{
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.5)!important;
    color: white;
    visibility: hidden;
}

.saverbox{
    position: absolute;
    background-color: rgba(255,255,255,0.6)!important;
    color: black;
}

.loader , .saver{
    margin: auto;
    border: 14px solid #3498db;
    border-top: 14px solid #f3f3f3;
    border-radius: 50%;
    -webkit-border-top: 14px solid #f3f3f3;
    -webkit-border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1.5s linear infinite;
    -webkit-animation: spin 1.5s linear infinite;
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
 
.border_table th, 
.border_table td {
    border: 1px solid #333 !important; 
    word-break: break-word;
}


/*chat box*/
.chatbox{
    position: fixed!important;
    left: 10%;
    bottom: -475px;
    width: 80%;
}

.first-section:hover{
  cursor: pointer;
}
.open-more{
  bottom:0px;
}
.border-chat{
  border:1px solid #336699;
  margin: 0px;
}
.first-section{
  background-color:#336699;
}
.first-section p{
  color:#fff;
  margin:0px;
  padding: 10px 0px;
}
.first-section p:hover{
  color:#fff;
  cursor: pointer;
}
.right-first-section{
   text-align: right;
}
.right-first-section i{
  color:#fff;
  font-size: 15px;
  padding: 12px 3px;
}
.right-first-section i:hover{
  color:#fff;
}
.chat-section ul li{
  list-style: none;
  margin-top:10px;
  position: relative;
}
.chat-section{
  overflow-y: scroll;
  height: 400px;
}
.chat-section ul{
  padding: 0px;
}

.chat-section .unread-btn{
  position: absolute;
  bottom: 0;
  right: 0;
}



.left-chat img,.right-chat img{
  width:50px;
  height:50px;
  float:left;
  margin:0px 10px;
}
.right-chat img{
  float:right;
}
.second-section{
  padding: 0px;
  margin: 0px;
  background-color: #F3F3F3;
  height: 400px;
}
.left-chat, .right-chat{
  overflow: hidden;
  margin: 5px 5px 0 5px;
}
.left-chat p,.right-chat p{
    display: inline-block;
  background-color:#336699;
  color:#fff;
  border-radius: 5px; 
  text-align: left;
  max-width: 70%;
  margin-bottom: 0px;
  overflow-wrap: break-word;
  padding: 10px;
  border-radius: 10px;
  white-space: pre-wrap;
}
.right-chat p{
  background-color: #FFFFFF;
  color:#336699;
  border: 1px solid darkgray;
}

.left-chat a{
  color: #fff;
}

.right-chat a{
  color: #336699;
}

.left-div h5, 
.right-div h5 {
    color: black;
    font-size: 15px;
}

.left-div{
    margin-left: 10px;
    bottom: 0px;
    color:#B7BCC5;
}

.right-div{
    text-align: right;
    margin-right: 10px;
    bottom: 0px;
    color:#B7BCC5;
}
.third-section{
  border-top: 1px solid #F3F3F3;
  background-color: black;
}
.text-bar input{
  width:100%; 
  border:1px solid #000;
}
.text-bar a i{
  background-color:#336699;
  color:#fff;
  width:30px;
  height:30px;
  padding:7px 0px;
  border-radius: 50%;
  text-align: center;
}

.center-chat{
  width: 100%;
  border-top: 1px dashed black;
  border-bottom: 1px dashed black;
}

.isDisabled {
  cursor: not-allowed!important;
  opacity: 0.5;
  text-decoration: none;
  pointer-events: none;
}
/*
.left-chat:before{
  content: " ";
  position:absolute;
  top:0px;
  left:10px;
  bottom:150px;
  border:15px solid transparent;
  border-top-color:#336699; 
}
.right-chat:before{
  content: " ";
  position:absolute;
  top:0px;
  right:55px;
  bottom:150px;
  border:15px solid transparent;
  border-top-color:#fff; 
}
*/

.mynav{
  background-color: #009de6!important;
}

.mynav .container-fluid{
  background-color: #009de6!important;
  padding: 0!important;
}

.mynav a {
  color: #eee!important;
  background-color: #009de6!important;
}

.mynav li:hover a, 
.mynav li:focus a{
 color: #fff!important;
 background-color: transparent!important;
}

.mynav .active,
.mynav .active:hover,
.mynav .active:focus{
  background-color: #0088cc!important;
  color: #FFF!important;
}

.mynav li.active > a,
.mynav li.active > a:hover,
.mynav li.active > a:focus{
  background-color: #0088cc!important;
  color: #FFF!important;
}

.mybadge{
  background-color: #0088cc!important;
}

.database_name_res, .package_url_res{
  color: red;
}


/*Alert Box*/
.alertable {
  position: fixed;
  z-index: 9999;
  top: 35vh;
  left: calc(50% - 250px);
  width: 500px;
  background: white;
  border-radius: 4px;
  padding: 30px;
  margin: 0 auto;
}

/* Overlay */
.alertable-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
}

/* Message */
.alertable-message {
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* Prompt */
.alertable-prompt {
  margin-bottom: 20px;
}

.alertable-input {
  width: 100%;
  border-radius: 4px;
  box-shadow: none;
  border: solid 1px #ccc;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 6px 12px;
  display: block;
  box-sizing: border-box;
  margin-bottom: 10px;
}

/* Button group */
.alertable-buttons {
  text-align: center;
}

/* OK button */
.alertable-ok {
  background: #5cb85c;
  border: solid 1px #4cae4c;
  font-family: inherit;
  font-size: 20px;
  color: white;
  border-radius: 100px;
  padding: 15px 20px;
  margin-left: 30px;
  cursor: pointer;
}

.alertable-ok:hover,
.alertable-ok:focus,
.alertable-ok:active {
  outline: none;
}

/* Cancel button */
.alertable-cancel {
  border: solid 1px #d43f3a;
  background: #d9534f;
  font-family: inherit;
  font-size: 20px;
  color: white;
  border-radius: 100px;
  padding: 15px 20px;
  margin-left: 4px;
  cursor: pointer;
}

.alertable-cancel:hover,
.alertable-cancel:focus,
.alertable-cancel:active {
  outline: none;
}

/* border */
.border {
  border: 1px solid #999 !important;
}

.border-top {
  border-top: 1px solid #999 !important;
}

.border-right {
  border-right: 1px solid #999 !important;
}

.border-bottom {
  border-bottom: 1px solid #999 !important;
}

.border-left {
  border-left: 1px solid #999 !important;
}

.border-0 {
  border: none !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}



.titlebar, 
.titlebar td, 
.titlebar th {
  background-color: #009ec3 !important;
  color: #ffffff !important; 
}

/* modify datatable style */
.dataTables_length, 
.dataTables_filter, 
.dataTables_info, 
.dataTables_paginate {
  font-size: 10px; 
}

.dataTables_wrapper .form-control {
  height: 24px !important; 
  font-size: 10px; 
}


hr {
  border-color: #ccc; 
}


.table-dropdown td {
  white-space: pre;
}

/* div as table layout */
div.table {
  display: table;
  width: 100%; 
  max-width: 100%;
  margin: 0;
}

/* div as table layout */
div.table-flex {
  display: flex;
  width: 100%; 
  max-width: 100%;
  margin: 0;
}


div.table div.table-cell {
  display: table-cell;
  max-width: 0;
}



.text-alert {
  animation: infinite 2s linear alert-animate; 
  -webkit-animation: infinite 2s linear alert-animate;
}

@keyframes alert-animate {
  0% { color: red; }
  49% { color: red; }
  50% { color: blue; }
  99% { color: blue; }
  100% { color: red; }
}

@-webkit-keyframes alert-animate {
  0% { color: red; }
  49% { color: red; }
  50% { color: blue; }
  99% { color: blue; }
  100% { color: red; }
}


/* custom checkbox */
label.inp .custom-checkbox-wrapper {
  height: 50px;
}

.btn-module {
    /*float: right !important; */
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* pointer event */
.point-0 {
  pointer-events: none !important;
}

.point, .btn-checkbox {
  pointer-events: all !important;
}


/* chosen custom styling */
a.chosen-single {
  padding: 5px 0 5px 5px !important;
  height: 35px !important;
}

.noresize {
  resize: none !important;
}

.pre-wrap {
  white-space: pre-wrap !important;
}

[data-required]:after {
  color: red;
  content: ' *';
}

.statusbox {
  border-radius: 5px;
  border: 1px solid #666; 
  text-align: center;
  width: 100%; 
  font-weight: bold; 
  background-color: #fefefe;
}

fieldset[readonly] {
  cursor: default !important;
}

fieldset[readonly] input[type="radio"] {
  opacity: 1 !important;
  cursor: default !important;
}