
  
  .select-size label {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    line-height: 30px;
    cursor: pointer;
    border-radius: 30px;
  }
  
  .select-size .answer_A:checked ~ label[class="select_A"],
  .select-size .answer_B:checked ~ label[class="select_B"],
  .select-size .answer_C:checked ~ label[class="select_C"],
  .select-size .answer_D:checked ~ label[class="select_D"],
  .select-size .answer_E:checked ~ label[class="select_E"] {
    background: #999;
    color: #fff;
  }

  .answer-box {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }

  #refresh_button {
    vertical-align: middle;
    font-size: 1.5em;
    cursor: pointer;

    -moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

#refresh_button:hover{
    text-shadow: 2px 2px #2e88c4;;   
}

#refresh_button:active{
    text-shadow: 2px 2px #25f0ff;;   
}

.field-icon {
    float: right;
    margin-right: 7px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
  }

.info-box-ico {
    border-top-left-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 2px;
    display: block;
    margin: 0 auto;
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    background: rgba(0,0,0,0.2);
    background-color: rgba(0, 0, 0, 0.2); 
    border-radius: 7px;
}

.youtubeVid {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.vidYou {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kazanim_baslik {
  vertical-align: bottom!important;
  text-align: center;
}

.kazanim_icerik {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}


.select-size input {
	width: auto;
	height: 100%;
	appearance: none;
	outline: none;
	cursor: pointer;
	border-radius: 2px;
	padding: 4px 8px;
	background: #e2dede;
	color: #000;
	font-size: 14px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
		"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	transition: all 100ms linear;
}

.select-size input:checked {
	background-image: linear-gradient(180deg, #95d891, #74bbad);
	color: #fff;
	box-shadow: 0 1px 1px #0000002e;
	text-shadow: 0 1px 0px #79485f7a;
}

.select-size input:before {
	content: attr(label);
	display: inline-block;
	text-align: center;
	width: 100%;
}