@charset "utf-8";

/* #feedback {
	font-size: 1.4em; 
} */

#selectable .ui-selecting { 
	background: #FECA40; 
}

/*#selectable .selected { */
	/*background: #F39814; */
	/*color: white; */
/*}*/

/* * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
} */

#selectable { 
	list-style-type: none; 
	width: 100%;
	display: flex;
	justify-content: space-between;
}
#selectable  > div > div.selected img {
    border: 1px solid #FECA40;
}
#selectable  > div > div { 
	margin: 3px; 
	padding: 1px; 
	width: 150px;
	height: 150px;
	font-size: 4em;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#selectable  > div > div > img {
	width: 150px;
	height: 150px;
}

#calculator {
	margin-top: 15px;
/*	display: none; */    /*uncomment when it will be necessary */
}

#calculator input {
	margin: 0 15px;
	border: 1px solid gray;
	font-size: 17px;
	text-indent: 5px;
	height: 30px;
}

#target {
	width: 1px;
	height: 1px;
	position: absolute;
	z-index: -2;
}



@charset "utf-8";

#overlay1 {
  opacity: 1/* 0.9; */
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  display: none;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 100;
}
#overlay2 {
  opacity: 1/* 0.9; */
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  display: none;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 100;
}
#modal1 {
  width: 380px;
  margin-left: -190px; /* 50% от width */
  background: #FFF;
  box-shadow: 0 3px 7px #000;
  border-radius: 15px;
  border: 1px solid #000;
  left: 50%;
  top: 10%;
  position: fixed;
  z-index: 101;
}
#modal2 {
  width: 380px;
  margin-left: -190px; /* 50% от width */
  background: #FFF;
  box-shadow: 0 3px 7px #000;
  border-radius: 15px;
  border: 1px solid #000;
  left: 50%;
  top: 10%;
  position: fixed;
  z-index: 101;
}

.modal-body {
  position: relative;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  min-height: 200px;
  height: 250px;
}
.close {
  position: absolute;
  right: 35px;
  top: 10px;
  cursor: pointer;
}
.closeImg {
  position: absolute;
  right: 15px;
  top: 25px;
  cursor: pointer;
}


.parent {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: auto;
}

.block {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}


@media only screen and (max-width: 1100px)
{
 
#selectable  > div > div { 
	margin: 3px; 
	padding: 1px; 
	width: 120px; 
	height: 120px; 
	font-size: 4em;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#selectable  > div > div > img {
	width: 120px;
	height: 120px;
}



}