p.result{ display: inline-block; font-size:30px; line-height: 28px; border-right: 0px solid #000; padding-right: 2px; box-sizing: border-box;}

/*
p.result{ display: inline-block; font-size:30px; line-height: 28px; border-right: 1px solid #000; padding-right: 2px; box-sizing: border-box; animation: cursor 0.4s infinite;}

@keyframes cursor{ 
      0%{border-right: 1px solid #fff} 
      50%{border-right: 1px solid #000} 
      100%{border-right: 1px solid #fff} 
    }

*/
/* @media all and (min-width: 600px) {
	  .container {
    width: 100%;
    }
}
@media all and (min-width:801px) and (max-width:1024px) {
  .container {
    width: 600px;
    }
}
@media all and (min-width:1025px) {
	.container {
		width: 800px;
	}
} */
	.selectbox {
  position: relative;
  width: 200px;/* �ʺ��� */
  
  border: 1px solid #999; /* �׵θ� ���� */
  
  z-index: 1;
  
  /* focus ȿ��*/
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* focus ȿ�� */
.selectbox.focus {
  border-color: #66afe9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

/* ���� �����ڸ� Ȱ�� ȭ��ǥ ��ü */
.selectbox:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -1px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #313131;
}

/* #paint2 {
  width: 100px;
  height: 57.735px;
  position: relative;
} */
#paint2::before {
  content: "";
  position: absolute;
  top: -28.8675px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 28.8675px solid;
}
#paint2::after {
  content: "";
  position: absolute;
  bottom: -28.8675px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 28.8675px solid;
}

.selectbox label {
  position: absolute;
  top: 1px; /* ��ġ���� */
  
  left: 5px; /* ��ġ���� */
  
  padding: .5em .5em; /* select�� ���� ũ�� ��ŭ */
  
  color: #333;
  z-index: -1; /* IE8���� label�� ��ġ�� ���� Ŭ������ �ʴ� �� �ذ� */
}

.selectbox select {
  width: 100%;
  height: auto;  /* ���� �ʱ�ȭ */  
  line-height: normal; /* line-height �ʱ�ȭ */  
  font-family: inherit; /* ��Ʈ ��� */  
  padding: .8em .5em;  /* ����� ���� ���� */  
  border: 0;
  opacity: 0;  /* ����� */ 
  filter: alpha(opacity=0);  /* IE8 ����� */
  
  -webkit-appearance: none;  /* ����Ƽ�� ���� ���߱� */ 
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand{ display:none /* ȭ��ǥ ���ֱ� for IE10, 11*/ }
textarea::-ms-clear{ display:none /* ȭ��ǥ ���ֱ� for IE10, 11*/ }


