
.gseAnketTable label
{
   font-size: 15px;
}

.anket_branch_name
{
	display: none;
	font-size: 18px;
	color: #c1172a;
	margin-top: 0px ;
	margin-bottom: 3px ;

}

.anket_branch_div
{
	margin: 0px ;
	background-color: #f0f0f0;
	border-color: #f0f0f0;
	border-width: 1px !important;
	border-style: solid;
	padding: 10px;
	width: 100%;
}

.anket_question_name
{
	font-size: 23px;
	color: #62aa4d;
    font-family: GloberRegular,Arial,sans-serif;
    margin-top: 20px;
    display: block;

}

.anket_branch_div p
{
	margin: 10px 0 10px 0 !important;
}

.anket_question_checkbox_other_string
{
	display: none;
}
.anket_question_checkbox_other:checked + .anket_question_checkbox_other_string
{
	display: inline;
}


input[type=checkbox]{


}

.radio {
  vertical-align: top;
  width: 25px;
  height: 25px;
  margin: 0px 3px 0 0;
}
.radio + label {
  cursor: pointer;
}
.radio:not(checked) {
  position: absolute;
  opacity: 0;
}
.radio:not(checked) + label {
  position: relative;
  padding: 0 0 0px 35px;
}
.radio:not(checked) + label:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  background: #FFF;
}
.radio:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #62aa4d;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.5);
  opacity: 0;
  transition: all .2s;
}
.radio:checked + label:after {
  opacity: 1;
}
.radio:focus + label:before {
  box-shadow: 0 0 0 3px rgba(255,255,0,.5);
}

.anket_question_div
{
	padding: 10px 0 ;
}








/* Cначала обозначаем стили для IE8 и более старых версий
т.е. здесь мы немного облагораживаем стандартный чекбокс. */
.checkbox {
  vertical-align: top;
  margin: 0 3px 0 0;
  width: 17px;
  height: 17px;
}
/* Это для всех браузеров, кроме совсем старых, которые не поддерживают
селекторы с плюсом. Показываем, что label кликабелен. */
.checkbox + label {
  cursor: pointer;
}

/* Далее идет оформление чекбокса в современных браузерах, а также IE9 и выше.
Благодаря тому, что старые браузеры не поддерживают селекторы :not и :checked,
в них все нижеследующие стили не сработают. */

/* Прячем оригинальный чекбокс. */
.checkbox:not(checked) {
  position: absolute;
  opacity: 0;
}
.checkbox:not(checked) + label {
  position: relative; /* будем позиционировать псевдочекбокс относительно label */
  padding: 0 0 0 35px; /* оставляем слева от label место под псевдочекбокс */
}
/* Оформление первой части чекбокса в выключенном состоянии (фон). */
.checkbox:not(checked) + label:before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  background: #c0c0c0;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.2);
}
/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */
.checkbox:not(checked) + label:after {
 content: '';
    position: absolute;
    top: -2px;
    left: 2px;
    width: 22px;
    height: 22px;
    /* border-radius: 2px; */
    background: #FFF;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    transition: none;
}
/* Меняем фон чекбокса, когда он включен. */
.checkbox:checked + label:before {
  background: #62aa4d;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
}
/* Сдвигаем переключатель чекбокса, когда он включен. */
.checkbox:checked + label:after {
     left: 8px;
    top: -2px;
    width: 10px;
    height: 17px;
    border: solid #fff;
    border-width: 0px 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    border-color: #fff;
    transform: rotate(45deg);
    background: #62aa4d;
    box-shadow: none;

}
/* Показываем получение фокуса. */
.checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(255,255,0,.5);
}




.select
{
    border: 1px solid #CCC;
    overflow: hidden; 
    height: 34px;
    background: white;
    width: 95%;

    padding: 5px;
    font-size: 16px;
    line-height: 1;
    -webkit-appearance: none;
    }

.select:focus
{
    outline: none !important;
	border: 2px solid #62aa4d;
}
   
   .select:before
   {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  background: #62aa4d;
   }

.anket_form_input
{
	height: 34px;
	padding: 4px;
	width: 95% !important;
}

.anket_form_input:focus
{
    outline: none !important;
	border: 2px solid #62aa4d;
}

.anket_question_name sup font
{
	font-size: 30px;
	top: 10px;
	left: 3px;
	
}


.gseAnketSubmit
{
	color: white;
	background: #62aa4d;
	padding: 10px 15px;
	border: 0px solid white;
	border-radius: 10px;
	font-size: 1.15rem;
}

.gseQuestionEmptyRow 
{
	background: white !important;
	height: 10px !important;
}

.gseQuestionRow  td
{
	border-width: 0px !important;
	border-color: white;
}

.gseQuestionTable
{
	border-width: 0px !important;
	border-color: white;
	padding-bottom: 130px;
}

.gseQuestionEmptyCell
{
	display: none;	
}

.anket_question_div 
{
	width 95%;
}

.anket_question_div label
{
	width: 100%;
}


.gseAnketSubmit
{
	color: white !important;
	background: #62aa4d !important;
	padding: 10px 15px !important;
	border: 0px solid white !important;
	border-radius: 10px !important;
	font-size: 20px !important;
	line-height: 10px !important;
}