.selectQuiz {
	width: 1380px;
	height: auto;
	background: rgb(255, 255, 255);
	border-radius: 12px;
	border: 3px solid rgb(224, 224, 224);
	line-height: 1.15em;
	font-size: 1.2em;
}

.selectQuiz select{
    text-align-last: center;
	text-align: center;
	font-size: 16px;
	padding: 2px;
}



/* Grid */

.grid .mrow:nth-child(even) {
    background: #dddddd;
}

  .mrow::after {
    content: "";
    clear: both;
    display: table;
  }
  
  [class*="mcol-"] {
    float: left;
    padding: 12px;
    box-sizing: border-box;
	display: inline-block;
   float: none;
   vertical-align: middle;
  }
  
  .mcol-1 {width: 8.33%;}
  .mcol-2 {width: 16.66%;}
  .mcol-3 {width: 25%;}
  .mcol-4 {width: 33.33%;}
  .mcol-5 {width: 41.66%;}
  .mcol-6 {width: 50%;}
  .mcol-7 {width: 58.33%;}
  .mcol-8 {width: 66.66%;}
  .mcol-9 {width: 75%;}
  .mcol-10 {width: 83.33%;}
  .mcol-11 {width: 91.66%;}
  .mcol-12 {width: 100%;}


  details.select_container {
    display: inline-block;
    width: 100%;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    position: relative;
    color: #454545;
  }
  
  details.select_container[open] {
    border-radius: 3px 3px 0 0;
  }
  
  details.select_container summary::after {
    content: "\00203A";
    position: absolute;
    right: 6px;
    top: 16px;
    transform: translateY(-50%) rotate(90deg);
    pointer-events: none;
  }
  
  details.select_container[open] summary::after {
    content: "\002039";
  }
  
  details.select_container summary {
    cursor: pointer;
    padding: 6px 12px;
    background: #f6f6f6;
    color: black;
    list-style: none;
  }
  
  details.select_container summary::-webkit-details-marker {
    display: none;
  }
  
  details.select_container summary:hover {
    background: #ededed;
  }
  
  details.select_container .select {
    position: absolute;
    display: flex;
    flex-direction: column;
    border: 1px solid #c5c5c5;
    width: 100%;
    left: -1px;
    border-radius: 0 0 3px 3px;
    background: #fff;
  }
  
  details.select_container .select__option {
    cursor: pointer;
    padding: 6px 12px;
  }
  
  details.select_container .select:hover .select__option.active {
    background: #fff;
    color: #454545;
  }
  
  details.select_container .select__option.active,
  details.select_container .select:hover .select__option.active:hover,
  details.select_container .select__option:hover {
    background: #007fff;
    color: #fff;
  }
  
  details.select_container .select__option input {
    display: none;
  }