:root {
  --primarycolor: #F86638;
}

input {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.icklmaker {
  border-radius: 16px;
  position: absolute;
  background: #FFFFFF;
  width: 300px;
  height: 400px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .10);
  left: 160px;
  top: -80px;
  display: none;
}

.icklmaker .nav {
  height: 40px;
  width: 100%;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .10);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 4px;
  box-sizing: border-box;
  font-size: 12px;
}

.icklmaker .nav img {
  width: 24px;
  height: 24px;
}

.icklmaker .nav .close {
  position: absolute;
  right: 12px;
  border-radius: 4px;
  cursor: pointer;
}

.icklmaker .nav .close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.icklmaker .title {
  margin: 0 0 8px 0;
  font-size: 14px;
  height: auto;
  color: #333;
}

.icklmaker .iconname {
  margin-bottom: 24px;
}

.icklmaker .iconname input {
  height: 40px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0 12px;
  transition: 0.2s all;
}

.icklmaker .iconname input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, .2);
}

.icklmaker .iconname input:hover {
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 3px rgba(258, 102, 56, 0.15);
}

.icklmaker .iconname .title::before {
  content: "1";
  height: 16px;
  width: 16px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background: #EEEEEE;
  margin-right: 4px;
  font-size: 12px;
  color: #666;
}

.icklmaker .content {
  padding: 24px 16px 0 16px;
  width: 100%;
  display: flex;
  flex-flow: column;
  box-sizing: border-box;
}

.icklmaker .content .iconsize {
  display: flex;
  flex-flow: column;
}

.icklmaker .content .iconsize .size {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.icklmaker .sizeradio input[type=radio] {
  flex: 1;
  height: 40px;
  margin: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.icklmaker .sizeradio input[type=radio]:hover+.radio {
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 2.5px rgba(258, 102, 56, 0.2);
}

.icklmaker .radiogroup {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.icklmaker .radiogroup .sizeradio {
  position: relative;
  min-width: calc((100% - 16px) / 3);
}

.icklmaker .radiogroup .sizeradio .radio {
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 0;
  pointer-events: none;
  transition: all 0.2s;
}

.icklmaker .radiogroup .checked {
  background: var(--primarycolor);
  color: #fff;
}

.icklmaker .iconsize .title::before {
  content: "2";
  height: 16px;
  width: 16px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background: #EEEEEE;
  margin-right: 4px;
  font-size: 12px;
  color: #666;
}

.icklmaker .customsize,
.icklmaker .customsize .input {
  display: flex;
  flex-flow: row;
  flex-flow: 1;
}

#customsize_1,
#customsize_2 {
  width: 100%;
  margin: 6px 0;
  background: #F6F6F6;
  border-width: 0px;
  text-align: center;
  border-radius: 4px;
}

.icklmaker .customsizefocus {
  background: var(--primarycolor);
}

.icklmaker .customsize {
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0 12px;
  margin-top: 8px;
  display: flex;
  font-size: 12px;
  transition: 0.2s all;
}

.icklmaker .customsize:hover {
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 2.5px rgba(258, 102, 56, 0.2);
}

.icklmaker .customsize .label {
  margin: 0;
  line-height: 40px;
  white-space: nowrap;
  font-size: 12px;
  margin-right: 8px;
  opacity: .8;
}

.icklmaker .customsize .input span {
  min-width: 24px;
  text-align: center;
  line-height: 40px;
}

.icklmaker .inputing {
  background: var(--primarycolor);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #fff;
}

.icklmaker .create {
  height: 40px;
  width: calc(100% - 24px);
  margin: 12px;
  position: absolute;
  bottom: 0;
  background: var(--primarycolor);
  color: #fff;
  border: 0px;
  border-radius: 8px;
  transition: 0.2s filter;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.icklmaker .create:hover {
  cursor: pointer;
  filter: brightness(1.2);
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}