.pnm-create-form {
	width: 100% !important;
    max-width: 100% !important;
    font-family: sans-serif;
}

.pnm-create-form .field-wrap {
    padding: 0 30px;
    margin: 20px 0;
}

.pnm-create-form label {
    display: block;    
    font-weight: bold;
    font-size: 21px;
    color: #444;
}

.pnm-create-form input[type="text"], .pnm-create-form textarea {
    border: 1px solid black;
    padding: 5px 10px;
    width: 80% !important;
    background: none;
    line-height: 1.1em;
}

.pnm-create-form .pnm-create-form-notice {
    font-size: 15px;
    text-align: right;
}

.pnm-create-form .pnm-form-separator {
    width: 100%;
    height: 10px;
    background: #ddd;
    margin: 25px 0px;
}

.pnm-create-category-select {
  position: relative;
  font-family: Arial;
  width: 70%;
}

.pnm-create-category-select select {
  display: none; /*hide original SELECT element:*/
}

.pnm-create-button {
	width: 300px;
    background: #4267b2;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    margin-left: 30px;
    color: #fff;
    transition: .3s all;
}

.pnm-create-error {
	border: 2px solid #fd7b7b !important;
    box-shadow: 0px 0px 2px 1px #fd7b7b !important;
}

.pnm-create-button:hover, .pnm-create-button:active,
.pnm-create-add-trivia:hover, .pnm-create-add-trivia:active,
.pnm-create-remove-trivia:hover, .pnm-create-remove-trivia:active {
	cursor: pointer;
	background: #8697b7;
}

.pnm-create-content-image-preview {
  max-width: 100px;
  display: block;
  margin: 10px 0;
}

.pnm-error-notice {
  text-align: center;
  max-width: 100%;
  border: 2px solid #fd7b7b !important;
  box-shadow: 0px 0px 2px 1px #fd7b7b !important;
  background: #f9d0d0;
  color: #fb3030;
}

.pnm-success-notice {
  text-align: center;
  max-width: 100%;
  border: 2px solid #32a917 !important;
  box-shadow: 0px 0px 2px 1px #32a917 !important;
  background: #d7f9cf;
  color: #32a917;
}

.pnm-create-trivia-button {
  background: #4267b2;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 45px;
  border-radius: 50px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  margin-top: -70px;
  float: right;
  margin-right: 0%;
}

.pnm-create-trivia-button.pnm-create-remove-trivia {
  margin-right: 75px;
  font-weight: normal;
  font-size: 54px;
  line-height: 43px;
}

.select-selected {
  background-color: #fff;
  color: #111 !important;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
  transform: translateY(-25%);
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
	color: #000;
	padding: 5px 10px;
	border: 1px solid #000;
	cursor: pointer;
	user-select: none;
	border-radius: 3px;
	line-height: 1.4em;
	font-size: 20px;
}

.select-items div {
	border:none;
	border-bottom:1px solid black;
    border-radius:0px;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border:0;
  max-height: 200px;
  overflow: scroll;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.admin-bar #footer .nav-container {
  z-index: 0;
}